lix/src/libstore/pathlocks.hh

31 lines
554 B
C++
Raw Normal View History

#ifndef __PATHLOCKS_H
#define __PATHLOCKS_H
#include "util.hh"
typedef enum LockType { ltRead, ltWrite, ltNone };
bool lockFile(int fd, LockType lockType, bool wait);
class PathLocks
{
private:
typedef pair<int, Path> FDPair;
list<FDPair> fds;
2003-11-21 16:05:19 +00:00
bool deletePaths;
public:
PathLocks();
PathLocks(const PathSet & paths,
const string & waitMsg = "");
void lockPaths(const PathSet & _paths,
const string & waitMsg = "");
~PathLocks();
2003-11-21 16:05:19 +00:00
void setDeletion(bool deletePaths);
};
#endif /* !__PATHLOCKS_H */