2003-08-01 16:11:19 +02:00
|
|
|
#ifndef __PATHLOCKS_H
|
|
|
|
#define __PATHLOCKS_H
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
/* Delete an open lock file. Both must be called to be fully portable
|
|
|
|
between Unix and Windows. */
|
|
|
|
void deleteLockFilePreClose(const Path & path, int fd);
|
|
|
|
void deleteLockFilePostClose(const Path & path);
|
|
|
|
|
2008-05-21 13:17:31 +02:00
|
|
|
enum LockType { ltRead, ltWrite, ltNone };
|
2003-10-14 17:33:00 +02:00
|
|
|
|
|
|
|
bool lockFile(int fd, LockType lockType, bool wait);
|
|
|
|
|
|
|
|
|
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 = "");
|
|
|
|
void lockPaths(const PathSet & _paths,
|
|
|
|
const string & waitMsg = "");
|
2003-08-01 16:11:19 +02:00
|
|
|
~PathLocks();
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-08-01 16:11:19 +02:00
|
|
|
#endif /* !__PATHLOCKS_H */
|