2019-11-18 13:34:06 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package container;
|
|
|
|
option go_package = "github.com/nspcc-dev/neofs-proto/container";
|
|
|
|
|
|
|
|
import "container/types.proto";
|
|
|
|
import "github.com/nspcc-dev/netmap/selector.proto";
|
|
|
|
import "github.com/gogo/protobuf/gogoproto/gogo.proto";
|
|
|
|
|
|
|
|
option (gogoproto.stable_marshaler_all) = true;
|
|
|
|
|
2019-11-20 17:16:24 +00:00
|
|
|
// Container service provides API for manipulating with the container.
|
2019-11-18 13:34:06 +00:00
|
|
|
service Service {
|
2019-11-20 17:16:24 +00:00
|
|
|
// Put request proposes container to the inner ring nodes. They will
|
|
|
|
// accept new container if user has enough deposit. All containers
|
|
|
|
// are accepted by the consensus, therefore it is asynchronous process.
|
2019-11-18 13:34:06 +00:00
|
|
|
rpc Put(PutRequest) returns (PutResponse);
|
|
|
|
|
2019-11-20 17:16:24 +00:00
|
|
|
// Delete container removes it from the inner ring container storage. It
|
|
|
|
// also asynchronous process done by consensus.
|
2019-11-18 13:34:06 +00:00
|
|
|
rpc Delete(DeleteRequest) returns (DeleteResponse);
|
|
|
|
|
2019-11-20 17:16:24 +00:00
|
|
|
// Get container returns container instance
|
2019-11-18 13:34:06 +00:00
|
|
|
rpc Get(GetRequest) returns (GetResponse);
|
|
|
|
|
2019-11-20 17:16:24 +00:00
|
|
|
// List returns all user's containers
|
2019-11-18 13:34:06 +00:00
|
|
|
rpc List(ListRequest) returns (ListResponse);
|
|
|
|
}
|
|
|
|
|
|
|
|
message PutRequest {
|
2019-11-20 17:16:24 +00:00
|
|
|
// MessageID is a nonce for uniq container id calculation
|
2019-11-18 13:34:06 +00:00
|
|
|
bytes MessageID = 1 [(gogoproto.customtype) = "MessageID", (gogoproto.nullable) = false];
|
2019-11-20 17:16:24 +00:00
|
|
|
|
|
|
|
// Capacity defines amount of data that can be stored in the container (doesn't used for now).
|
|
|
|
uint64 Capacity = 2;
|
|
|
|
|
|
|
|
// OwnerID is a wallet address
|
2019-11-18 13:34:06 +00:00
|
|
|
bytes OwnerID = 3 [(gogoproto.customtype) = "OwnerID", (gogoproto.nullable) = false];
|
2019-11-20 17:16:24 +00:00
|
|
|
|
|
|
|
// Rules define storage policy for the object inside the container.
|
2019-11-18 13:34:06 +00:00
|
|
|
netmap.PlacementRule rules = 4 [(gogoproto.nullable) = false];
|
2019-11-20 17:16:24 +00:00
|
|
|
|
|
|
|
// Signature of the user (owner id)
|
2019-11-18 13:34:06 +00:00
|
|
|
bytes Signature = 5;
|
2019-11-20 17:16:24 +00:00
|
|
|
|
|
|
|
// TTL must be larger than zero, it decreased in every neofs-node
|
2019-11-18 13:34:06 +00:00
|
|
|
uint32 TTL = 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
message PutResponse {
|
2019-11-20 17:16:24 +00:00
|
|
|
// CID (container id) is a SHA256 hash of the container structure
|
2019-11-18 13:34:06 +00:00
|
|
|
bytes CID = 1 [(gogoproto.customtype) = "CID", (gogoproto.nullable) = false];
|
|
|
|
}
|
|
|
|
|
|
|
|
message DeleteRequest {
|
2019-11-20 17:16:24 +00:00
|
|
|
// CID (container id) is a SHA256 hash of the container structure
|
2019-11-18 13:34:06 +00:00
|
|
|
bytes CID = 1 [(gogoproto.customtype) = "CID", (gogoproto.nullable) = false];
|
2019-11-20 17:16:24 +00:00
|
|
|
|
|
|
|
// TTL must be larger than zero, it decreased in every neofs-node
|
2019-11-18 13:34:06 +00:00
|
|
|
uint32 TTL = 2;
|
2019-11-20 17:16:24 +00:00
|
|
|
|
|
|
|
// Signature of the container owner
|
2019-11-18 13:34:06 +00:00
|
|
|
bytes Signature = 3;
|
|
|
|
}
|
|
|
|
|
2019-11-20 17:16:24 +00:00
|
|
|
// DeleteResponse is empty because delete operation is asynchronous and done
|
|
|
|
// via consensus in inner ring nodes
|
2019-11-18 13:34:06 +00:00
|
|
|
message DeleteResponse { }
|
|
|
|
|
|
|
|
|
|
|
|
message GetRequest {
|
2019-11-20 17:16:24 +00:00
|
|
|
// CID (container id) is a SHA256 hash of the container structure
|
2019-11-18 13:34:06 +00:00
|
|
|
bytes CID = 1 [(gogoproto.customtype) = "CID", (gogoproto.nullable) = false];
|
2019-11-20 17:16:24 +00:00
|
|
|
|
|
|
|
// TTL must be larger than zero, it decreased in every neofs-node
|
2019-11-18 13:34:06 +00:00
|
|
|
uint32 TTL = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message GetResponse {
|
2019-11-20 17:16:24 +00:00
|
|
|
// Container is a structure that contains placement rules and owner id
|
2019-11-18 13:34:06 +00:00
|
|
|
container.Container Container = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ListRequest {
|
2019-11-20 17:16:24 +00:00
|
|
|
// OwnerID is a wallet address
|
2019-11-18 13:34:06 +00:00
|
|
|
bytes OwnerID = 1 [(gogoproto.customtype) = "OwnerID", (gogoproto.nullable) = false];
|
2019-11-20 17:16:24 +00:00
|
|
|
|
|
|
|
// TTL must be larger than zero, it decreased in every neofs-node
|
2019-11-18 13:34:06 +00:00
|
|
|
uint32 TTL = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ListResponse {
|
2019-11-20 17:16:24 +00:00
|
|
|
// CID (container id) is list of SHA256 hashes of the container structures
|
2019-11-18 13:34:06 +00:00
|
|
|
repeated bytes CID = 1 [(gogoproto.customtype) = "CID", (gogoproto.nullable) = false];
|
|
|
|
}
|