2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2014-11-25 22:49:25 +00:00
|
|
|
#ifndef cmFileLock_h
|
|
|
|
#define cmFileLock_h
|
|
|
|
|
2017-08-25 18:39:02 +00:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2016-09-01 18:05:48 +00:00
|
|
|
|
2016-09-01 18:59:28 +00:00
|
|
|
#include <string>
|
2014-11-25 22:49:25 +00:00
|
|
|
|
|
|
|
#if defined(_WIN32)
|
2016-05-16 14:34:04 +00:00
|
|
|
#include <windows.h> // HANDLE
|
2014-11-25 22:49:25 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
class cmFileLockResult;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Cross-platform file locking.
|
|
|
|
* @details Under the hood this class use 'fcntl' for Unix-like platforms and
|
|
|
|
* 'LockFileEx'/'UnlockFileEx' for Win32 platform. Locks are exclusive and
|
|
|
|
* advisory.
|
|
|
|
*/
|
|
|
|
class cmFileLock
|
|
|
|
{
|
2017-04-23 20:50:47 +00:00
|
|
|
CM_DISABLE_COPY(cmFileLock)
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
public:
|
2014-11-25 22:49:25 +00:00
|
|
|
cmFileLock();
|
|
|
|
~cmFileLock();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Lock the file.
|
|
|
|
* @param timeoutSec Lock timeout. If -1 try until success or fatal error.
|
|
|
|
*/
|
2014-12-05 14:18:11 +00:00
|
|
|
cmFileLockResult Lock(const std::string& filename, unsigned long timeoutSec);
|
2014-11-25 22:49:25 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Unlock the file.
|
|
|
|
*/
|
|
|
|
cmFileLockResult Release();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Check file is locked by this class.
|
|
|
|
* @details This function helps to find double locks (deadlocks) and to do
|
|
|
|
* explicit unlocks.
|
|
|
|
*/
|
|
|
|
bool IsLocked(const std::string& filename) const;
|
|
|
|
|
2016-05-16 14:34:04 +00:00
|
|
|
private:
|
2014-11-25 22:49:25 +00:00
|
|
|
cmFileLockResult OpenFile();
|
|
|
|
cmFileLockResult LockWithoutTimeout();
|
2014-12-05 14:18:11 +00:00
|
|
|
cmFileLockResult LockWithTimeout(unsigned long timeoutSec);
|
2014-11-25 22:49:25 +00:00
|
|
|
|
|
|
|
#if defined(_WIN32)
|
|
|
|
typedef HANDLE FileId;
|
|
|
|
BOOL LockFile(DWORD flags);
|
|
|
|
#else
|
|
|
|
typedef int FileId;
|
|
|
|
int LockFile(int cmd, int type);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
FileId File;
|
|
|
|
std::string Filename;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // cmFileLock_h
|