1 //===--- LockFileManager.h - File-level locking utility ---------*- C++ -*-===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
8 #ifndef LLVM_SUPPORT_LOCKFILEMANAGER_H
9 #define LLVM_SUPPORT_LOCKFILEMANAGER_H
11 #include "llvm/ADT/Optional.h"
12 #include "llvm/ADT/SmallString.h"
13 #include <system_error>
14 #include <utility> // for std::pair
19 /// Class that manages the creation of a lock file to aid
20 /// implicit coordination between different processes.
22 /// The implicit coordination works by creating a ".lock" file alongside
23 /// the file that we're coordinating for, using the atomicity of the file
24 /// system to ensure that only a single process can create that ".lock" file.
25 /// When the lock file is removed, the owning process has finished the
27 class LockFileManager
{
29 /// Describes the state of a lock file.
31 /// The lock file has been created and is owned by this instance
34 /// The lock file already exists and is owned by some other
37 /// An error occurred while trying to create or find the lock
42 /// Describes the result of waiting for the owner to release the lock.
43 enum WaitForUnlockResult
{
44 /// The lock was released successfully.
46 /// Owner died while holding the lock.
48 /// Reached timeout while waiting for the owner to release the lock.
53 SmallString
<128> FileName
;
54 SmallString
<128> LockFileName
;
55 SmallString
<128> UniqueLockFileName
;
57 Optional
<std::pair
<std::string
, int> > Owner
;
58 std::error_code ErrorCode
;
59 std::string ErrorDiagMsg
;
61 LockFileManager(const LockFileManager
&) = delete;
62 LockFileManager
&operator=(const LockFileManager
&) = delete;
64 static Optional
<std::pair
<std::string
, int> >
65 readLockFile(StringRef LockFileName
);
67 static bool processStillExecuting(StringRef Hostname
, int PID
);
71 LockFileManager(StringRef FileName
);
74 /// Determine the state of the lock file.
75 LockFileState
getState() const;
77 operator LockFileState() const { return getState(); }
79 /// For a shared lock, wait until the owner releases the lock.
80 WaitForUnlockResult
waitForUnlock();
82 /// Remove the lock file. This may delete a different lock file than
83 /// the one previously read if there is a race.
84 std::error_code
unsafeRemoveLockFile();
86 /// Get error message, or "" if there is no error.
87 std::string
getErrorMessage() const;
89 /// Set error and error message
90 void setError(const std::error_code
&EC
, StringRef ErrorMsg
= "") {
92 ErrorDiagMsg
= ErrorMsg
.str();
96 } // end namespace llvm
98 #endif // LLVM_SUPPORT_LOCKFILEMANAGER_H