1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-05-12 08:05:28 +08:00
CMake/Source/cmFileLockPool.h
Kitware Robot 0b96ae1f6a Revise C++ coding style using clang-format with "east const"
Run the `clang-format.bash` script to update all our C and C++ code to a
new style defined by `.clang-format`, now with "east const" enforcement.
Use `clang-format` version 18.

* If you reached this commit for a line in `git blame`, re-run the blame
  operation starting at the parent of this commit to see older history
  for the content.

* See the parent commit for instructions to rebase a change across this
  style transition commit.

Issue: #26123
2025-01-23 13:09:50 -05:00

88 lines
2.0 KiB
C++

/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#pragma once
#include "cmConfigure.h" // IWYU pragma: keep
#include <string>
#include <vector>
#include "cmFileLock.h"
class cmFileLockResult;
class cmFileLockPool
{
public:
cmFileLockPool();
~cmFileLockPool();
cmFileLockPool(cmFileLockPool const&) = delete;
cmFileLockPool& operator=(cmFileLockPool const&) = delete;
//@{
/**
* @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.
*/
cmFileLockResult LockFunctionScope(std::string const& filename,
unsigned long timeoutSec);
cmFileLockResult LockFileScope(std::string const& filename,
unsigned long timeoutSec);
cmFileLockResult LockProcessScope(std::string const& filename,
unsigned long timeoutSec);
//@}
/**
* @brief Unlock the file explicitly.
*/
cmFileLockResult Release(std::string const& filename);
private:
bool IsAlreadyLocked(std::string const& filename) const;
class ScopePool
{
public:
ScopePool();
~ScopePool();
ScopePool(ScopePool const&) = delete;
ScopePool(ScopePool&&) noexcept;
ScopePool& operator=(ScopePool const&) = delete;
ScopePool& operator=(ScopePool&&) noexcept;
cmFileLockResult Lock(std::string const& filename,
unsigned long timeoutSec);
cmFileLockResult Release(std::string const& filename);
bool IsAlreadyLocked(std::string const& filename) const;
private:
using List = std::vector<cmFileLock>;
List Locks;
};
using List = std::vector<ScopePool>;
List FunctionScopes;
List FileScopes;
ScopePool ProcessScope;
};