2012-07-18 20:59:03 +02:00
|
|
|
#pragma once
|
2003-08-01 16:11:19 +02:00
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
#include "types.hh"
|
|
|
|
|
|
|
|
|
|
|
|
namespace nix {
|
2003-08-01 16:11:19 +02:00
|
|
|
|
|
|
|
|
2006-06-20 19:48:10 +02: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. */
|
|
|
|
int openLockFile(const Path & path, bool create);
|
|
|
|
|
2010-02-02 16:28:36 +01:00
|
|
|
/* Delete an open lock file. */
|
|
|
|
void deleteLockFile(const Path & path, int fd);
|
2006-06-20 19:48:10 +02:00
|
|
|
|
2008-05-21 13:17:31 +02:00
|
|
|
enum LockType { ltRead, ltWrite, ltNone };
|
2003-10-14 17:33:00 +02:00
|
|
|
|
2010-02-03 22:38:41 +01:00
|
|
|
bool lockFile(int fd, LockType lockType, bool wait);
|
2003-10-14 17:33:00 +02:00
|
|
|
|
|
|
|
|
2003-08-01 16:11:19 +02:00
|
|
|
class PathLocks
|
|
|
|
{
|
|
|
|
private:
|
2006-09-04 23:06:23 +02:00
|
|
|
typedef std::pair<int, Path> FDPair;
|
2005-01-27 13:19:25 +01:00
|
|
|
list<FDPair> fds;
|
2003-11-21 17:05:19 +01:00
|
|
|
bool deletePaths;
|
2003-08-01 16:11:19 +02:00
|
|
|
|
|
|
|
public:
|
2004-05-11 20:05:44 +02:00
|
|
|
PathLocks();
|
2006-06-15 13:56:49 +02:00
|
|
|
PathLocks(const PathSet & paths,
|
|
|
|
const string & waitMsg = "");
|
2009-03-23 02:05:54 +01:00
|
|
|
bool lockPaths(const PathSet & _paths,
|
|
|
|
const string & waitMsg = "",
|
|
|
|
bool wait = true);
|
2003-08-01 16:11:19 +02:00
|
|
|
~PathLocks();
|
2009-02-16 10:24:20 +01:00
|
|
|
void unlock();
|
2003-11-21 17:05:19 +01:00
|
|
|
void setDeletion(bool deletePaths);
|
2003-08-01 16:11:19 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-08-28 13:36:17 +02:00
|
|
|
bool pathIsLockedByMe(const Path & path);
|
|
|
|
|
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
}
|