You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

68 lines
2.1 KiB

  1. // -*- C++ -*-
  2. //
  3. // Copyright (C) 2012-2013, Vaclav Zeman. All rights reserved.
  4. //
  5. // Redistribution and use in source and binary forms, with or without modifica-
  6. // tion, are permitted provided that the following conditions are met:
  7. //
  8. // 1. Redistributions of source code must retain the above copyright notice,
  9. // this list of conditions and the following disclaimer.
  10. //
  11. // 2. Redistributions in binary form must reproduce the above copyright notice,
  12. // this list of conditions and the following disclaimer in the documentation
  13. // and/or other materials provided with the distribution.
  14. //
  15. // THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
  16. // INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  17. // FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  18. // APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  19. // INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
  20. // DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  21. // OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  22. // ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  23. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  24. // THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  25. #if ! defined (LOG4CPLUS_HELPERS_LOCKFILE_H)
  26. #define LOG4CPLUS_HELPERS_LOCKFILE_H
  27. #include <log4cplus/config.hxx>
  28. #if defined (LOG4CPLUS_HAVE_PRAGMA_ONCE)
  29. #pragma once
  30. #endif
  31. #include <log4cplus/tstring.h>
  32. #include <log4cplus/thread/syncprims.h>
  33. namespace log4cplus { namespace helpers {
  34. class LOG4CPLUS_EXPORT LockFile
  35. {
  36. public:
  37. LockFile (tstring const & lock_file);
  38. ~LockFile ();
  39. void lock () const;
  40. void unlock () const;
  41. private:
  42. void open (int) const;
  43. void close () const;
  44. struct Impl;
  45. tstring lock_file_name;
  46. Impl * data;
  47. };
  48. typedef log4cplus::thread::SyncGuard<LockFile> LockFileGuard;
  49. } } // namespace log4cplus { namespace helpers {
  50. #endif // LOG4CPLUS_HELPERS_LOCKFILE_H