From bb66262068d0fbc495adfd7ab49ba10ab7a2c608 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Thu, 16 Jul 2020 23:34:01 +0100 Subject: feat(3p/nix/nix-daemon): Implement Worker::IsValidPath handler Change-Id: I741c2b9b58f234a21850640e2b0c071ff4441234 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1223 Tested-by: BuildkiteCI Reviewed-by: lukegb Reviewed-by: glittershark --- third_party/nix/src/CMakeLists.txt | 1 + third_party/nix/src/nix-daemon/nix-daemon-proto.cc | 29 ++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 third_party/nix/src/nix-daemon/nix-daemon-proto.cc (limited to 'third_party/nix/src') diff --git a/third_party/nix/src/CMakeLists.txt b/third_party/nix/src/CMakeLists.txt index 3f30b1672562..05386fa2dd7c 100644 --- a/third_party/nix/src/CMakeLists.txt +++ b/third_party/nix/src/CMakeLists.txt @@ -58,6 +58,7 @@ target_sources(nix nix-collect-garbage/nix-collect-garbage.cc nix-copy-closure/nix-copy-closure.cc nix-daemon/nix-daemon.cc + nix-daemon/nix-daemon-proto.cc nix-env/nix-env.cc nix-env/user-env.cc nix-instantiate/nix-instantiate.cc diff --git a/third_party/nix/src/nix-daemon/nix-daemon-proto.cc b/third_party/nix/src/nix-daemon/nix-daemon-proto.cc new file mode 100644 index 000000000000..35171c769ab8 --- /dev/null +++ b/third_party/nix/src/nix-daemon/nix-daemon-proto.cc @@ -0,0 +1,29 @@ +#include "libproto/worker.grpc.pb.h" +#include "libproto/worker.pb.h" +#include "libstore/store-api.hh" + +namespace nix::daemon { + +using ::grpc::Status; +using ::nix::proto::StorePath; +using ::nix::proto::Worker; + +class WorkerServiceImpl final : public Worker::Service { + public: + WorkerServiceImpl(nix::Store* store) : store_(store) {} + + Status IsValidPath(grpc::ServerContext* context, const StorePath* request, + nix::proto::IsValidPathResponse* response) { + const auto& path = request->path(); + store_->assertStorePath(path); + response->set_is_valid(store_->isValidPath(path)); + + return Status::OK; + } + + private: + // TODO(tazjin): Who owns the store? + nix::Store* store_; +}; + +} // namespace nix::daemon -- cgit 1.4.1