diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-07-11T15·08-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-07-11T15·08-0400 |
commit | 58ef4d9a95584fb89ebcf6222fbac6e698aa6b0b (patch) | |
tree | 1e01e79b406f59b06397a24b4b86f1c6fa5fc308 /src/libstore | |
parent | 667d5f1936616dc829f9f92f8e5d5141ba5285a7 (diff) |
Add a function queryValidPaths()
queryValidPaths() combines multiple calls to isValidPath() in one. This matters when using the Nix daemon because it reduces latency. For instance, on "nix-env -qas \*" it reduces execution time from 5.7s to 4.7s (which is indistinguishable from the non-daemon case).
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/local-store.cc | 9 | ||||
-rw-r--r-- | src/libstore/local-store.hh | 2 | ||||
-rw-r--r-- | src/libstore/remote-store.cc | 17 | ||||
-rw-r--r-- | src/libstore/remote-store.hh | 2 | ||||
-rw-r--r-- | src/libstore/store-api.hh | 3 | ||||
-rw-r--r-- | src/libstore/worker-protocol.hh | 1 |
6 files changed, 34 insertions, 0 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc index 89c5279b1b6e..e3d23fdfbcb7 100644 --- a/src/libstore/local-store.cc +++ b/src/libstore/local-store.cc @@ -744,6 +744,15 @@ bool LocalStore::isValidPath(const Path & path) } +PathSet LocalStore::queryValidPaths(const PathSet & paths) +{ + PathSet res; + foreach (PathSet::const_iterator, i, paths) + if (isValidPath(*i)) res.insert(*i); + return res; +} + + PathSet LocalStore::queryAllValidPaths() { SQLiteStmt stmt; diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh index d24c2da0ee17..7398c1b9e5e0 100644 --- a/src/libstore/local-store.hh +++ b/src/libstore/local-store.hh @@ -99,6 +99,8 @@ public: bool isValidPath(const Path & path); + PathSet queryValidPaths(const PathSet & paths); + PathSet queryAllValidPaths(); ValidPathInfo queryPathInfo(const Path & path); diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc index 04a9e28c9007..0cd29c5751d2 100644 --- a/src/libstore/remote-store.cc +++ b/src/libstore/remote-store.cc @@ -217,6 +217,23 @@ bool RemoteStore::isValidPath(const Path & path) } +PathSet RemoteStore::queryValidPaths(const PathSet & paths) +{ + if (GET_PROTOCOL_MINOR(daemonVersion) < 12) { + PathSet res; + foreach (PathSet::const_iterator, i, paths) + if (isValidPath(*i)) res.insert(*i); + return res; + } else { + openConnection(); + writeInt(wopQueryValidPaths, to); + writeStrings(paths, to); + processStderr(); + return readStorePaths<PathSet>(from); + } +} + + PathSet RemoteStore::queryAllValidPaths() { openConnection(); diff --git a/src/libstore/remote-store.hh b/src/libstore/remote-store.hh index 6e92498377dd..2668fe25689f 100644 --- a/src/libstore/remote-store.hh +++ b/src/libstore/remote-store.hh @@ -27,6 +27,8 @@ public: bool isValidPath(const Path & path); + PathSet queryValidPaths(const PathSet & paths); + PathSet queryAllValidPaths(); ValidPathInfo queryPathInfo(const Path & path); diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index 802591766af7..13dcd9269d3a 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -113,6 +113,9 @@ public: /* Check whether a path is valid. */ virtual bool isValidPath(const Path & path) = 0; + /* Query which of the given paths is valid. */ + virtual PathSet queryValidPaths(const PathSet & paths) = 0; + /* Query the set of all valid paths. */ virtual PathSet queryAllValidPaths() = 0; diff --git a/src/libstore/worker-protocol.hh b/src/libstore/worker-protocol.hh index cacd56f14edd..b34ad484613d 100644 --- a/src/libstore/worker-protocol.hh +++ b/src/libstore/worker-protocol.hh @@ -41,6 +41,7 @@ typedef enum { wopImportPaths = 27, wopQueryDerivationOutputNames = 28, wopQuerySubstitutablePathInfos = 29, + wopQueryValidPaths = 30, } WorkerOp; |