aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/binary-cache-store.hh
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-05-30 13:33:05 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-05-30 15:18:12 +0200
commite2224844019d58fc947ce00e18e9fa9974d2c8b5 (patch)
tree20204fa548e7a926e838486c63250572f4d6c2e8 /src/libstore/binary-cache-store.hh
parentb66ab6cdbce5f4ac2db8976872547680242166e8 (diff)
Re-implement the WantMassQuery property of binary caches
Diffstat (limited to 'src/libstore/binary-cache-store.hh')
-rw-r--r--src/libstore/binary-cache-store.hh5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libstore/binary-cache-store.hh b/src/libstore/binary-cache-store.hh
index bb67a8581..c14ab8676 100644
--- a/src/libstore/binary-cache-store.hh
+++ b/src/libstore/binary-cache-store.hh
@@ -33,6 +33,9 @@ protected:
doesn't exist. */
virtual std::shared_ptr<std::string> getFile(const std::string & path) = 0;
+ bool wantMassQuery_ = false;
+ int priority = 50;
+
public:
virtual void init();
@@ -78,6 +81,8 @@ public:
SubstitutablePathInfos & infos)
{ }
+ bool wantMassQuery() { return wantMassQuery_; }
+
void addToStore(const ValidPathInfo & info, const std::string & nar,
bool repair = false) override;