aboutsummaryrefslogtreecommitdiff
path: root/src/libstore
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-11 10:49:04 -0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-11 10:49:04 -0400
commit667d5f1936616dc829f9f92f8e5d5141ba5285a7 (patch)
tree39af0936583fc6a70ffe039d93e4e6a3fcd99b2d /src/libstore
parenteb3036da87659fe7cf384c2362e7f7b8b67189a1 (diff)
Rename queryValidPaths() to queryAllValidPaths()
Diffstat (limited to 'src/libstore')
-rw-r--r--src/libstore/local-store.cc4
-rw-r--r--src/libstore/local-store.hh2
-rw-r--r--src/libstore/optimise-store.cc2
-rw-r--r--src/libstore/remote-store.cc4
-rw-r--r--src/libstore/remote-store.hh2
-rw-r--r--src/libstore/store-api.hh12
-rw-r--r--src/libstore/worker-protocol.hh2
7 files changed, 14 insertions, 14 deletions
diff --git a/src/libstore/local-store.cc b/src/libstore/local-store.cc
index 339e50795..89c5279b1 100644
--- a/src/libstore/local-store.cc
+++ b/src/libstore/local-store.cc
@@ -744,7 +744,7 @@ bool LocalStore::isValidPath(const Path & path)
}
-PathSet LocalStore::queryValidPaths()
+PathSet LocalStore::queryAllValidPaths()
{
SQLiteStmt stmt;
stmt.create(db, "select path from ValidPaths");
@@ -1449,7 +1449,7 @@ void LocalStore::verifyStore(bool checkContents)
/* Check whether all valid paths actually exist. */
printMsg(lvlInfo, "checking path existence...");
- PathSet validPaths2 = queryValidPaths(), validPaths, done;
+ PathSet validPaths2 = queryAllValidPaths(), validPaths, done;
foreach (PathSet::iterator, i, validPaths2)
verifyPath(*i, store, done, validPaths);
diff --git a/src/libstore/local-store.hh b/src/libstore/local-store.hh
index 78217fb71..d24c2da0e 100644
--- a/src/libstore/local-store.hh
+++ b/src/libstore/local-store.hh
@@ -99,7 +99,7 @@ public:
bool isValidPath(const Path & path);
- PathSet queryValidPaths();
+ PathSet queryAllValidPaths();
ValidPathInfo queryPathInfo(const Path & path);
diff --git a/src/libstore/optimise-store.cc b/src/libstore/optimise-store.cc
index 2ca98f46d..a486e66ef 100644
--- a/src/libstore/optimise-store.cc
+++ b/src/libstore/optimise-store.cc
@@ -178,7 +178,7 @@ void LocalStore::optimiseStore(bool dryRun, OptimiseStats & stats)
{
HashToPath hashToPath;
- PathSet paths = queryValidPaths();
+ PathSet paths = queryAllValidPaths();
foreach (PathSet::iterator, i, paths) {
addTempRoot(*i);
diff --git a/src/libstore/remote-store.cc b/src/libstore/remote-store.cc
index 9579481c7..04a9e28c9 100644
--- a/src/libstore/remote-store.cc
+++ b/src/libstore/remote-store.cc
@@ -217,10 +217,10 @@ bool RemoteStore::isValidPath(const Path & path)
}
-PathSet RemoteStore::queryValidPaths()
+PathSet RemoteStore::queryAllValidPaths()
{
openConnection();
- writeInt(wopQueryValidPaths, to);
+ writeInt(wopQueryAllValidPaths, to);
processStderr();
return readStorePaths<PathSet>(from);
}
diff --git a/src/libstore/remote-store.hh b/src/libstore/remote-store.hh
index c1ac2d05a..6e9249837 100644
--- a/src/libstore/remote-store.hh
+++ b/src/libstore/remote-store.hh
@@ -27,7 +27,7 @@ public:
bool isValidPath(const Path & path);
- PathSet queryValidPaths();
+ PathSet queryAllValidPaths();
ValidPathInfo queryPathInfo(const Path & path);
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh
index 37b44d4da..802591766 100644
--- a/src/libstore/store-api.hh
+++ b/src/libstore/store-api.hh
@@ -110,20 +110,20 @@ public:
virtual ~StoreAPI() { }
- /* Checks whether a path is valid. */
+ /* Check whether a path is valid. */
virtual bool isValidPath(const Path & path) = 0;
- /* Query the set of valid paths. */
- virtual PathSet queryValidPaths() = 0;
+ /* Query the set of all valid paths. */
+ virtual PathSet queryAllValidPaths() = 0;
/* Query information about a valid path. */
virtual ValidPathInfo queryPathInfo(const Path & path) = 0;
- /* Queries the hash of a valid path. */
+ /* Query the hash of a valid path. */
virtual Hash queryPathHash(const Path & path) = 0;
- /* Queries the set of outgoing FS references for a store path.
- The result is not cleared. */
+ /* Query the set of outgoing FS references for a store path. The
+ result is not cleared. */
virtual void queryReferences(const Path & path,
PathSet & references) = 0;
diff --git a/src/libstore/worker-protocol.hh b/src/libstore/worker-protocol.hh
index 76721d1fc..cacd56f14 100644
--- a/src/libstore/worker-protocol.hh
+++ b/src/libstore/worker-protocol.hh
@@ -34,7 +34,7 @@ typedef enum {
wopCollectGarbage = 20,
wopQuerySubstitutablePathInfo = 21,
wopQueryDerivationOutputs = 22,
- wopQueryValidPaths = 23,
+ wopQueryAllValidPaths = 23,
wopQueryFailedPaths = 24,
wopClearFailedPaths = 25,
wopQueryPathInfo = 26,