aboutsummaryrefslogtreecommitdiff
#pragma once

#include "types.hh"


namespace nix {


/* 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. */
void deleteLockFile(const Path & path, int fd);

enum LockType { ltRead, ltWrite, ltNone };

bool lockFile(int fd, LockType lockType, bool wait);


class PathLocks 
{
private:
    typedef std::pair<int, Path> FDPair;
    list<FDPair> fds;
    bool deletePaths;

public:
    PathLocks();
    PathLocks(const PathSet & paths,
        const string & waitMsg = "");
    bool lockPaths(const PathSet & _paths,
        const string & waitMsg = "",
        bool wait = true);
    ~PathLocks();
    void unlock();
    void setDeletion(bool deletePaths);
};


bool pathIsLockedByMe(const Path & path);


}
/commit/gnu/packages/android.scm?id=d36d4c55c4a3faf47ee09e1010cb6617c6e39a48'>gnu: android-udev-rules: Update to 20171113....Tobias Geerinckx-Rice 2017-11-17gnu: Move testing packages from python.scm to check.scm....Ricardo Wurmus 2017-10-03gnu: android: Add android-udev-rules package....Maxim Cournoyer 2017-06-04gnu: Add git-repo....Hartmut Goebel 2017-04-18gnu: Add adb....Julien Lepiller