cmake/Source/cmFileLockPool.h

93 lines
2.1 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
2016-10-30 18:24:19 +01:00
#include <cmConfigure.h> // IWYU pragma: keep
2015-04-27 22:25:09 +02:00
2015-08-17 11:37:30 +02:00
#include <list>
2016-10-30 18:24:19 +01:00
#include <string>
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
{
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
cmFileLockPool(const cmFileLockPool&);
cmFileLockPool& operator=(const cmFileLockPool&);
bool IsAlreadyLocked(const std::string& filename) const;
class 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:
2015-04-27 22:25:09 +02:00
ScopePool(const ScopePool&);
ScopePool& operator=(const ScopePool&);
typedef std::list<cmFileLock*> List;
typedef List::iterator It;
typedef List::const_iterator CIt;
List Locks;
};
typedef std::list<ScopePool*> List;
typedef List::iterator It;
typedef List::const_iterator CIt;
List FunctionScopes;
List FileScopes;
ScopePool ProcessScope;
};
#endif // cmFileLockPool_h