78 lines
2.1 KiB
Protocol Buffer
78 lines
2.1 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package moby.buildkit.v1;
|
|
|
|
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
|
|
import "google/protobuf/timestamp.proto";
|
|
|
|
option (gogoproto.sizer_all) = true;
|
|
option (gogoproto.marshaler_all) = true;
|
|
option (gogoproto.unmarshaler_all) = true;
|
|
|
|
service Control {
|
|
rpc DiskUsage(DiskUsageRequest) returns (DiskUsageResponse);
|
|
rpc Solve(SolveRequest) returns (SolveResponse);
|
|
rpc Status(StatusRequest) returns (stream StatusResponse);
|
|
}
|
|
|
|
message DiskUsageRequest {
|
|
}
|
|
|
|
message DiskUsageResponse {
|
|
repeated UsageRecord record = 1;
|
|
}
|
|
|
|
message UsageRecord {
|
|
string ID = 1;
|
|
bool Mutable = 2;
|
|
bool InUse = 3;
|
|
int64 Size = 4;
|
|
}
|
|
|
|
message SolveRequest {
|
|
string Ref = 1;
|
|
repeated bytes Definition = 2; // TODO: remove repeated
|
|
}
|
|
|
|
message SolveResponse {
|
|
repeated Vertex vtx = 1;
|
|
}
|
|
|
|
message StatusRequest {
|
|
string Ref = 1;
|
|
}
|
|
|
|
message StatusResponse {
|
|
repeated Vertex vertexes = 1;
|
|
repeated VertexStatus statuses = 2;
|
|
repeated VertexLog logs = 3;
|
|
}
|
|
|
|
message Vertex {
|
|
string digest = 1 [(gogoproto.customtype) = "github.com/opencontainers/go-digest.Digest", (gogoproto.nullable) = false];
|
|
repeated string inputs = 2 [(gogoproto.customtype) = "github.com/opencontainers/go-digest.Digest", (gogoproto.nullable) = false];
|
|
string name = 3;
|
|
bool cached = 4;
|
|
google.protobuf.Timestamp started = 5 [(gogoproto.stdtime) = true ];
|
|
google.protobuf.Timestamp completed = 6 [(gogoproto.stdtime) = true ];
|
|
}
|
|
|
|
message VertexStatus {
|
|
string ID = 1;
|
|
string vertex = 2 [(gogoproto.customtype) = "github.com/opencontainers/go-digest.Digest", (gogoproto.nullable) = false];
|
|
string name = 3;
|
|
int64 current = 4;
|
|
int64 total = 5;
|
|
// TODO: add started, completed
|
|
google.protobuf.Timestamp timestamp = 6 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false];
|
|
google.protobuf.Timestamp started = 7 [(gogoproto.stdtime) = true ];
|
|
google.protobuf.Timestamp completed = 8 [(gogoproto.stdtime) = true ];
|
|
}
|
|
|
|
message VertexLog {
|
|
string vertex = 1 [(gogoproto.customtype) = "github.com/opencontainers/go-digest.Digest", (gogoproto.nullable) = false];
|
|
google.protobuf.Timestamp timestamp = 2 [(gogoproto.stdtime) = true, (gogoproto.nullable) = false];
|
|
int64 stream = 3;
|
|
bytes msg = 4;
|
|
}
|