about summary refs log tree commit diff
path: root/third_party/nix/src/libstore/remote-fs-accessor.hh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/src/libstore/remote-fs-accessor.hh')
-rw-r--r--third_party/nix/src/libstore/remote-fs-accessor.hh36
1 files changed, 17 insertions, 19 deletions
diff --git a/third_party/nix/src/libstore/remote-fs-accessor.hh b/third_party/nix/src/libstore/remote-fs-accessor.hh
index 4afb3be957..08985de529 100644
--- a/third_party/nix/src/libstore/remote-fs-accessor.hh
+++ b/third_party/nix/src/libstore/remote-fs-accessor.hh
@@ -6,35 +6,33 @@
 
 namespace nix {
 
-class RemoteFSAccessor : public FSAccessor
-{
-    ref<Store> store;
+class RemoteFSAccessor : public FSAccessor {
+  ref<Store> store;
 
-    std::map<Path, ref<FSAccessor>> nars;
+  std::map<Path, ref<FSAccessor>> nars;
 
-    Path cacheDir;
+  Path cacheDir;
 
-    std::pair<ref<FSAccessor>, Path> fetch(const Path & path_);
+  std::pair<ref<FSAccessor>, Path> fetch(const Path& path_);
 
-    friend class BinaryCacheStore;
+  friend class BinaryCacheStore;
 
-    Path makeCacheFile(const Path & storePath, const std::string & ext);
+  Path makeCacheFile(const Path& storePath, const std::string& ext);
 
-    void addToCache(const Path & storePath, const std::string & nar,
-        ref<FSAccessor> narAccessor);
+  void addToCache(const Path& storePath, const std::string& nar,
+                  ref<FSAccessor> narAccessor);
 
-public:
+ public:
+  RemoteFSAccessor(ref<Store> store,
+                   const /* FIXME: use std::optional */ Path& cacheDir = "");
 
-    RemoteFSAccessor(ref<Store> store,
-        const /* FIXME: use std::optional */ Path & cacheDir = "");
+  Stat stat(const Path& path) override;
 
-    Stat stat(const Path & path) override;
+  StringSet readDirectory(const Path& path) override;
 
-    StringSet readDirectory(const Path & path) override;
+  std::string readFile(const Path& path) override;
 
-    std::string readFile(const Path & path) override;
-
-    std::string readLink(const Path & path) override;
+  std::string readLink(const Path& path) override;
 };
 
-}
+}  // namespace nix