diff options
Diffstat (limited to 'third_party/nix/src/nix-daemon/nix-daemon-proto.cc')
-rw-r--r-- | third_party/nix/src/nix-daemon/nix-daemon-proto.cc | 29 |
1 files changed, 29 insertions, 0 deletions
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 |