tvl-depot/tools/depot-scanner/depot_scanner.proto
Florian Klink 6025242fc7 chore(buf): Use nixpkgs-provided buf
The version of buf used is quite old.

nixpkgs provides a more recent version, but it requires us to migrate
config to the latest version.

depot_scanner.proto doesn't honor some of the conventions, so we need
allow_comment_ignores and drop a bunch of comments in there.

Change-Id: Ic978fe92fb7c8471f58c137497528f18aad8f3ab
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7053
Reviewed-by: sterni <sternenseemann@systemli.org>
Reviewed-by: tazjin <tazjin@tvl.su>
Tested-by: tazjin <tazjin@tvl.su>
2022-10-21 18:39:03 +00:00

52 lines
1.2 KiB
Protocol Buffer

// Copyright 2020 TVL
// SPDX-License-Identifier: MIT
syntax = "proto3";
package tvl.tools.depot_scanner;
option go_package = "code.tvl.fyi/tools/depot-scanner/proto";
enum PathType {
UNKNOWN = 0;
DEPOT = 1;
STORE = 2;
CORE = 3;
}
message ScanRequest {
// Which revision of the depot
string revision = 1;
string attr = 2;
// Optionally, the attr to evaluate can be provided as a path to a folder or a
// .nix file. This is used by the HTTP service.
// buf:lint:ignore FIELD_LOWER_SNAKE_CASE
string attrAsPath = 3;
}
message ScanResponse {
// buf:lint:ignore FIELD_LOWER_SNAKE_CASE
repeated string depotPath = 1;
// buf:lint:ignore FIELD_LOWER_SNAKE_CASE
repeated string nixStorePath = 2;
// buf:lint:ignore FIELD_LOWER_SNAKE_CASE
repeated string corePkgsPath = 4;
// buf:lint:ignore FIELD_LOWER_SNAKE_CASE
repeated string otherPath = 3;
bytes derivation = 5;
}
message ArchiveRequest {
// buf:lint:ignore FIELD_LOWER_SNAKE_CASE
repeated string depotPath = 1;
}
message ArchiveChunk {
bytes chunk = 1;
}
service DepotScanService {
rpc Scan(ScanRequest) returns (ScanResponse);
rpc MakeArchive(ArchiveRequest) returns (stream ArchiveChunk);
}