about summary refs log blame commit diff
path: root/src/libstore/pathlocks.hh
blob: 4334389069349a77a88421f25660b23091e42c67 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11





                     




                                                    



                  
                
                     

       


                                           
                 
                                       



                           
#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:
    list<int> fds;
    Paths paths;
    bool deletePaths;

public:
    PathLocks();
    PathLocks(const PathSet & paths);
    void lockPaths(const PathSet & _paths);
    ~PathLocks();
    void setDeletion(bool deletePaths);
};


#endif /* !__PATHLOCKS_H */