2012-07-18 18:59:03 +00:00
|
|
|
#pragma once
|
2003-08-01 14:11:19 +00:00
|
|
|
|
2017-01-25 11:51:35 +00:00
|
|
|
#include "util.hh"
|
2006-09-04 21:06:23 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
2003-08-01 14:11:19 +00:00
|
|
|
|
|
|
|
|
2006-06-20 17:48:10 +00:00
|
|
|
/* Open (possibly create) a lock file and return the file descriptor.
|
|
|
|
-1 is returned if create is false and the lock could not be opened
|
|
|
|
because it doesn't exist. Any other error throws an exception. */
|
2017-01-25 11:51:35 +00:00
|
|
|
AutoCloseFD openLockFile(const Path & path, bool create);
|
2006-06-20 17:48:10 +00:00
|
|
|
|
2010-02-02 15:28:36 +00:00
|
|
|
/* Delete an open lock file. */
|
|
|
|
void deleteLockFile(const Path & path, int fd);
|
2006-06-20 17:48:10 +00:00
|
|
|
|
2008-05-21 11:17:31 +00:00
|
|
|
enum LockType { ltRead, ltWrite, ltNone };
|
2003-10-14 15:33:00 +00:00
|
|
|
|
2010-02-03 21:38:41 +00:00
|
|
|
bool lockFile(int fd, LockType lockType, bool wait);
|
2003-10-14 15:33:00 +00:00
|
|
|
|
|
|
|
|
2017-01-25 11:51:35 +00:00
|
|
|
class PathLocks
|
2003-08-01 14:11:19 +00:00
|
|
|
{
|
|
|
|
private:
|
2006-09-04 21:06:23 +00:00
|
|
|
typedef std::pair<int, Path> FDPair;
|
2005-01-27 12:19:25 +00:00
|
|
|
list<FDPair> fds;
|
2003-11-21 16:05:19 +00:00
|
|
|
bool deletePaths;
|
2003-08-01 14:11:19 +00:00
|
|
|
|
|
|
|
public:
|
2004-05-11 18:05:44 +00:00
|
|
|
PathLocks();
|
2006-06-15 11:56:49 +00:00
|
|
|
PathLocks(const PathSet & paths,
|
|
|
|
const string & waitMsg = "");
|
2009-03-23 01:05:54 +00:00
|
|
|
bool lockPaths(const PathSet & _paths,
|
|
|
|
const string & waitMsg = "",
|
|
|
|
bool wait = true);
|
2003-08-01 14:11:19 +00:00
|
|
|
~PathLocks();
|
2009-02-16 09:24:20 +00:00
|
|
|
void unlock();
|
2003-11-21 16:05:19 +00:00
|
|
|
void setDeletion(bool deletePaths);
|
2003-08-01 14:11:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2016-06-03 13:45:11 +00:00
|
|
|
// FIXME: not thread-safe!
|
2007-08-28 11:36:17 +00:00
|
|
|
bool pathIsLockedByMe(const Path & path);
|
|
|
|
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
}
|