2003-08-01 17:11:19 +03:00
|
|
|
#ifndef __PATHLOCKS_H
|
|
|
|
#define __PATHLOCKS_H
|
|
|
|
|
|
|
|
#include "util.hh"
|
|
|
|
|
|
|
|
|
2003-10-14 18:33:00 +03:00
|
|
|
typedef enum LockType { ltRead, ltWrite, ltNone };
|
|
|
|
|
|
|
|
bool lockFile(int fd, LockType lockType, bool wait);
|
|
|
|
|
|
|
|
|
2003-08-01 17:11:19 +03:00
|
|
|
class PathLocks
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
list<int> fds;
|
2003-10-08 18:06:59 +03:00
|
|
|
Paths paths;
|
2003-11-21 18:05:19 +02:00
|
|
|
bool deletePaths;
|
2003-08-01 17:11:19 +03:00
|
|
|
|
|
|
|
public:
|
2003-10-08 18:06:59 +03:00
|
|
|
PathLocks(const PathSet & _paths);
|
2003-08-01 17:11:19 +03:00
|
|
|
~PathLocks();
|
2003-11-21 18:05:19 +02:00
|
|
|
void setDeletion(bool deletePaths);
|
2003-08-01 17:11:19 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* !__PATHLOCKS_H */
|