about summary refs log tree commit diff
path: root/third_party/nix/src/libstore/s3-binary-cache-store.hh
blob: 3d0d0b3c449621dc4bfe0cbf17a5b9e4b6cacaef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#pragma once

#include <atomic>

#include "libstore/binary-cache-store.hh"

namespace nix {

class S3BinaryCacheStore : public BinaryCacheStore {
 protected:
  S3BinaryCacheStore(const Params& params) : BinaryCacheStore(params) {}

 public:
  struct Stats {
    std::atomic<uint64_t> put{0};
    std::atomic<uint64_t> putBytes{0};
    std::atomic<uint64_t> putTimeMs{0};
    std::atomic<uint64_t> get{0};
    std::atomic<uint64_t> getBytes{0};
    std::atomic<uint64_t> getTimeMs{0};
    std::atomic<uint64_t> head{0};
  };

  virtual const Stats& getS3Stats() = 0;
};

}  // namespace nix