blob: 8db1a9e808d2af5a4c6e93c32b6123cd75664760 (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
syntax = "proto3";
package nix.proto;
// Service representing a worker used for building and interfacing
// with the Nix store.
service Worker {
// Validates whether the supplied path is a valid store path.
rpc IsValidPath (IsValidPathRequest) returns (IsValidPathResponse);
// Checks whether any substitutes exist for the given path.
rpc HasSubstitutes (HasSubstitutesRequest) returns (HasSubstitutesResponse);
// Query referrers for a given path.
rpc QueryReferrers (QueryReferrersRequest) returns (QueryReferrersResponse);
// Add a NAR (I think?) to the store. The first stream request
// should be a message indicating metadata, the rest should be file
// chunks.
rpc AddToStore (stream AddToStoreRequest) returns (AddToStoreResponse);
// Adds the supplied string to the store, as a text file.
rpc AddTextToStore (AddTextToStoreRequest) returns (AddTextToStoreResponse);
}
enum HashType {
MD5 = 0; // TODO(tazjin): still needed?
SHA1 = 1;
SHA256 = 2;
SHA512 = 3;
}
message IsValidPathRequest {
string path = 1;
}
message IsValidPathResponse {
bool is_valid = 1;
}
message HasSubstitutesRequest {
string path = 1;
}
message HasSubstitutesResponse {
bool has_substitutes = 1;
}
message QueryReferrersRequest {
string path = 1;
}
message QueryReferrersResponse {
repeated string paths = 1;
}
message AddToStoreRequest {
message Metadata {
bool fixed = 1;
bool recursive = 2; // TODO(tazjin): what is this? "obsolete" comment?
HashType hash_type = 3;
string base_name = 4;
}
message Chunk {
bytes content = 1;
bool final = 2;
}
oneof add_oneof {
Metadata meta = 1;
Chunk chunk = 2;
}
}
message AddToStoreResponse {
string path = 1;
}
message AddTextToStoreRequest {
string name = 1;
string content = 2;
repeated string references = 3;
}
message AddTextToStoreResponse {
string path = 1;
}
|