cmake/Source/cmFileLockPool.h

91 lines
2.0 KiB
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2015-04-27 22:25:09 +02:00
#ifndef cmFileLockPool_h
#define cmFileLockPool_h
2018-01-26 17:06:56 +01:00
#include "cmConfigure.h" // IWYU pragma: keep
2015-04-27 22:25:09 +02:00
2016-10-30 18:24:19 +01:00
#include <string>
2017-07-20 19:35:53 +02:00
#include <vector>
2015-08-17 11:37:30 +02:00
2015-04-27 22:25:09 +02:00
class cmFileLock;
2016-10-30 18:24:19 +01:00
class cmFileLockResult;
2015-04-27 22:25:09 +02:00
class cmFileLockPool
{
2017-07-20 19:35:53 +02:00
CM_DISABLE_COPY(cmFileLockPool)
2016-07-09 11:21:54 +02:00
public:
2015-04-27 22:25:09 +02:00
cmFileLockPool();
~cmFileLockPool();
//@{
/**
* @brief Function scope control.
*/
void PushFunctionScope();
void PopFunctionScope();
//@}
//@{
/**
* @brief File scope control.
*/
void PushFileScope();
void PopFileScope();
//@}
//@{
/**
* @brief Lock the file in given scope.
* @param timeoutSec Lock timeout. If -1 try until success or fatal error.
*/
2016-07-09 11:21:54 +02:00
cmFileLockResult LockFunctionScope(const std::string& filename,
unsigned long timeoutSec);
cmFileLockResult LockFileScope(const std::string& filename,
unsigned long timeoutSec);
cmFileLockResult LockProcessScope(const std::string& filename,
unsigned long timeoutSec);
2015-04-27 22:25:09 +02:00
//@}
/**
* @brief Unlock the file explicitly.
*/
cmFileLockResult Release(const std::string& filename);
2016-07-09 11:21:54 +02:00
private:
2015-04-27 22:25:09 +02:00
bool IsAlreadyLocked(const std::string& filename) const;
class ScopePool
{
2017-07-20 19:35:53 +02:00
CM_DISABLE_COPY(ScopePool)
2016-07-09 11:21:54 +02:00
public:
2015-04-27 22:25:09 +02:00
ScopePool();
~ScopePool();
2016-07-09 11:21:54 +02:00
cmFileLockResult Lock(const std::string& filename,
unsigned long timeoutSec);
2015-04-27 22:25:09 +02:00
cmFileLockResult Release(const std::string& filename);
bool IsAlreadyLocked(const std::string& filename) const;
2016-07-09 11:21:54 +02:00
private:
2017-07-20 19:35:53 +02:00
typedef std::vector<cmFileLock*> List;
2015-04-27 22:25:09 +02:00
typedef List::iterator It;
typedef List::const_iterator CIt;
List Locks;
};
2017-07-20 19:35:53 +02:00
typedef std::vector<ScopePool*> List;
2015-04-27 22:25:09 +02:00
typedef List::iterator It;
typedef List::const_iterator CIt;
List FunctionScopes;
List FileScopes;
ScopePool ProcessScope;
};
#endif // cmFileLockPool_h