cmake/Source/cmFileLockPool.h

88 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. */
2021-09-14 00:13:48 +02:00
#pragma once
2015-04-27 22:25:09 +02:00
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
2020-08-30 11:54:41 +02:00
#include "cmFileLock.h"
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();
2019-11-11 23:01:05 +01:00
cmFileLockPool(cmFileLockPool const&) = delete;
cmFileLockPool& operator=(cmFileLockPool const&) = delete;
2015-04-27 22:25:09 +02:00
//@{
/**
2018-08-09 18:06:22 +02:00
* @brief Function scope control.
*/
2015-04-27 22:25:09 +02:00
void PushFunctionScope();
void PopFunctionScope();
//@}
//@{
/**
2018-08-09 18:06:22 +02:00
* @brief File scope control.
*/
2015-04-27 22:25:09 +02:00
void PushFileScope();
void PopFileScope();
//@}
//@{
/**
2018-08-09 18:06:22 +02:00
* @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
//@}
/**
2018-08-09 18:06:22 +02:00
* @brief Unlock the file explicitly.
*/
2015-04-27 22:25:09 +02:00
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
{
2016-07-09 11:21:54 +02:00
public:
2015-04-27 22:25:09 +02:00
ScopePool();
~ScopePool();
2019-11-11 23:01:05 +01:00
ScopePool(ScopePool const&) = delete;
2020-08-30 11:54:41 +02:00
ScopePool(ScopePool&&) noexcept;
2019-11-11 23:01:05 +01:00
ScopePool& operator=(ScopePool const&) = delete;
2020-08-30 11:54:41 +02:00
ScopePool& operator=(ScopePool&&) noexcept;
2019-11-11 23:01:05 +01:00
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:
2020-08-30 11:54:41 +02:00
using List = std::vector<cmFileLock>;
2015-04-27 22:25:09 +02:00
List Locks;
};
2020-08-30 11:54:41 +02:00
using List = std::vector<ScopePool>;
2015-04-27 22:25:09 +02:00
List FunctionScopes;
List FileScopes;
ScopePool ProcessScope;
};