2020-01-30 11:41:24 +00:00
|
|
|
syntax = "proto3";
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-08-12 21:43:51 +00:00
|
|
|
package neo.fs.v2.object;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2023-03-07 08:50:02 +00:00
|
|
|
option go_package = "git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/object/grpc;object";
|
2021-03-10 10:54:06 +00:00
|
|
|
option csharp_namespace = "Neo.FileStorage.API.Object";
|
2020-01-30 11:41:24 +00:00
|
|
|
|
|
|
|
import "object/types.proto";
|
2020-08-11 08:59:36 +00:00
|
|
|
import "refs/types.proto";
|
2020-08-19 14:00:23 +00:00
|
|
|
import "session/types.proto";
|
2020-01-30 11:41:24 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// `ObjectService` provides API for manipulating objects. Object operations do
|
2022-04-13 06:21:33 +00:00
|
|
|
// not affect the sidechain and are only served by nodes in p2p style.
|
2020-08-12 21:43:51 +00:00
|
|
|
service ObjectService {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Receive full object structure, including Headers and payload. Response uses
|
2022-04-13 06:21:33 +00:00
|
|
|
// gRPC stream. First response message carries the object with the requested address.
|
2020-10-15 18:28:19 +00:00
|
|
|
// Chunk messages are parts of the object's payload if it is needed. All
|
2022-04-13 06:21:33 +00:00
|
|
|
// messages, except the first one, carry payload chunks. The requested object can
|
2020-10-15 18:28:19 +00:00
|
|
|
// be restored by concatenation of object message payload and all chunks
|
2022-04-13 06:21:33 +00:00
|
|
|
// keeping the receiving order.
|
2021-11-12 16:10:39 +00:00
|
|
|
//
|
2022-03-05 10:57:52 +00:00
|
|
|
// Extended headers can change `Get` behaviour:
|
2023-03-06 11:56:09 +00:00
|
|
|
// * [ __NEOFS__NETMAP_EPOCH | __FROSTFS__NETMAP_EPOCH ] \
|
2022-03-05 10:57:52 +00:00
|
|
|
// Will use the requsted version of Network Map for object placement
|
|
|
|
// calculation.
|
2023-03-06 11:56:09 +00:00
|
|
|
// * [ __NEOFS__NETMAP_LOOKUP_DEPTH | __FROSTFS__NETMAP_LOOKUP_DEPTH ] \
|
|
|
|
// Will try older versions (starting from `__NEOFS__NETMAP_EPOCH`/`__FROSTFS__NETMAP_EPOCH` if specified or
|
2022-05-13 10:27:30 +00:00
|
|
|
// the latest one otherwise) of Network Map to find an object until the depth
|
|
|
|
// limit is reached.
|
2022-03-05 10:57:52 +00:00
|
|
|
//
|
|
|
|
// Please refer to detailed `XHeader` description.
|
|
|
|
//
|
2021-11-12 16:10:39 +00:00
|
|
|
// Statuses:
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **OK** (0, SECTION_SUCCESS): \
|
|
|
|
// object has been successfully read;
|
2022-02-21 15:49:33 +00:00
|
|
|
// - Common failures (SECTION_FAILURE_COMMON);
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **ACCESS_DENIED** (2048, SECTION_OBJECT): \
|
|
|
|
// read access to the object is denied;
|
|
|
|
// - **OBJECT_NOT_FOUND** (2049, SECTION_OBJECT): \
|
|
|
|
// object not found in container;
|
|
|
|
// - **OBJECT_ALREADY_REMOVED** (2052, SECTION_OBJECT): \
|
2022-09-16 06:26:24 +00:00
|
|
|
// the requested object has been marked as deleted;
|
|
|
|
// - **CONTAINER_NOT_FOUND** (3072, SECTION_CONTAINER): \
|
|
|
|
// object container not found;
|
|
|
|
// - **TOKEN_EXPIRED** (4097, SECTION_SESSION): \
|
|
|
|
// provided session token has expired.
|
2020-08-11 09:03:50 +00:00
|
|
|
rpc Get(GetRequest) returns (stream GetResponse);
|
|
|
|
|
|
|
|
// Put the object into container. Request uses gRPC stream. First message
|
2020-10-15 18:28:19 +00:00
|
|
|
// SHOULD be of PutHeader type. `ContainerID` and `OwnerID` of an object
|
|
|
|
// SHOULD be set. Session token SHOULD be obtained before `PUT` operation (see
|
|
|
|
// session package). Chunk messages are considered by server as a part of an
|
|
|
|
// object payload. All messages, except first one, SHOULD be payload chunks.
|
2022-04-13 06:21:33 +00:00
|
|
|
// Chunk messages SHOULD be sent in the direct order of fragmentation.
|
2021-11-12 16:10:39 +00:00
|
|
|
//
|
2022-03-05 10:57:52 +00:00
|
|
|
// Extended headers can change `Put` behaviour:
|
2023-03-06 11:56:09 +00:00
|
|
|
// * [ __NEOFS__NETMAP_EPOCH | __FROSTFS__NETMAP_EPOCH \
|
2022-03-05 10:57:52 +00:00
|
|
|
// Will use the requsted version of Network Map for object placement
|
|
|
|
// calculation.
|
|
|
|
//
|
|
|
|
// Please refer to detailed `XHeader` description.
|
|
|
|
//
|
2021-11-12 16:10:39 +00:00
|
|
|
// Statuses:
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **OK** (0, SECTION_SUCCESS): \
|
|
|
|
// object has been successfully saved in the container;
|
2022-02-15 20:02:18 +00:00
|
|
|
// - Common failures (SECTION_FAILURE_COMMON);
|
2022-09-16 06:26:24 +00:00
|
|
|
// - **ACCESS_DENIED** (2048, SECTION_OBJECT): \
|
|
|
|
// write access to the container is denied;
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **LOCKED** (2050, SECTION_OBJECT): \
|
|
|
|
// placement of an object of type TOMBSTONE that includes at least one locked
|
|
|
|
// object is prohibited;
|
|
|
|
// - **LOCK_NON_REGULAR_OBJECT** (2051, SECTION_OBJECT): \
|
|
|
|
// placement of an object of type LOCK that includes at least one object of
|
|
|
|
// type other than REGULAR is prohibited;
|
|
|
|
// - **CONTAINER_NOT_FOUND** (3072, SECTION_CONTAINER): \
|
|
|
|
// object storage container not found;
|
|
|
|
// - **TOKEN_NOT_FOUND** (4096, SECTION_SESSION): \
|
|
|
|
// (for trusted object preparation) session private key does not exist or has
|
2022-02-21 15:49:33 +00:00
|
|
|
// been deleted;
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **TOKEN_EXPIRED** (4097, SECTION_SESSION): \
|
|
|
|
// provided session token has expired.
|
2020-08-11 09:03:50 +00:00
|
|
|
rpc Put(stream PutRequest) returns (PutResponse);
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Delete the object from a container. There is no immediate removal
|
|
|
|
// guarantee. Object will be marked for removal and deleted eventually.
|
2021-11-12 16:10:39 +00:00
|
|
|
//
|
2022-03-05 10:57:52 +00:00
|
|
|
// Extended headers can change `Delete` behaviour:
|
2023-03-06 11:56:09 +00:00
|
|
|
// * [ __NEOFS__NETMAP_EPOCH | __FROSTFS__NETMAP_EPOCH ] \
|
2022-03-05 10:57:52 +00:00
|
|
|
// Will use the requsted version of Network Map for object placement
|
|
|
|
// calculation.
|
|
|
|
//
|
|
|
|
// Please refer to detailed `XHeader` description.
|
|
|
|
//
|
2021-11-12 16:10:39 +00:00
|
|
|
// Statuses:
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **OK** (0, SECTION_SUCCESS): \
|
|
|
|
// object has been successfully marked to be removed from the container;
|
2022-02-15 20:02:18 +00:00
|
|
|
// - Common failures (SECTION_FAILURE_COMMON);
|
2022-09-16 06:26:24 +00:00
|
|
|
// - **ACCESS_DENIED** (2048, SECTION_OBJECT): \
|
|
|
|
// delete access to the object is denied;
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **LOCKED** (2050, SECTION_OBJECT): \
|
|
|
|
// deleting a locked object is prohibited;
|
|
|
|
// - **CONTAINER_NOT_FOUND** (3072, SECTION_CONTAINER): \
|
|
|
|
// object container not found;
|
|
|
|
// - **TOKEN_EXPIRED** (4097, SECTION_SESSION): \
|
|
|
|
// provided session token has expired.
|
2020-08-11 09:03:50 +00:00
|
|
|
rpc Delete(DeleteRequest) returns (DeleteResponse);
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Returns the object Headers without data payload. By default full header is
|
|
|
|
// returned. If `main_only` request field is set, the short header with only
|
2022-04-13 06:21:33 +00:00
|
|
|
// the very minimal information will be returned instead.
|
2021-11-12 16:10:39 +00:00
|
|
|
//
|
2022-03-05 10:57:52 +00:00
|
|
|
// Extended headers can change `Head` behaviour:
|
2023-03-06 11:56:09 +00:00
|
|
|
// * [ __NEOFS__NETMAP_EPOCH | __FROSTFS__NETMAP_EPOCH ] \
|
2022-03-05 10:57:52 +00:00
|
|
|
// Will use the requsted version of Network Map for object placement
|
|
|
|
// calculation.
|
|
|
|
//
|
|
|
|
// Please refer to detailed `XHeader` description.
|
|
|
|
//
|
2021-11-12 16:10:39 +00:00
|
|
|
// Statuses:
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **OK** (0, SECTION_SUCCESS): \
|
|
|
|
// object header has been successfully read;
|
2022-02-21 15:49:33 +00:00
|
|
|
// - Common failures (SECTION_FAILURE_COMMON);
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **ACCESS_DENIED** (2048, SECTION_OBJECT): \
|
|
|
|
// access to operation HEAD of the object is denied;
|
|
|
|
// - **OBJECT_NOT_FOUND** (2049, SECTION_OBJECT): \
|
|
|
|
// object not found in container;
|
|
|
|
// - **OBJECT_ALREADY_REMOVED** (2052, SECTION_OBJECT): \
|
2022-09-16 06:26:24 +00:00
|
|
|
// the requested object has been marked as deleted;
|
|
|
|
// - **CONTAINER_NOT_FOUND** (3072, SECTION_CONTAINER): \
|
|
|
|
// object container not found;
|
|
|
|
// - **TOKEN_EXPIRED** (4097, SECTION_SESSION): \
|
|
|
|
// provided session token has expired.
|
2020-08-11 09:03:50 +00:00
|
|
|
rpc Head(HeadRequest) returns (HeadResponse);
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Search objects in container. Search query allows to match by Object
|
|
|
|
// Header's filed values. Please see the corresponding NeoFS Technical
|
|
|
|
// Specification section for more details.
|
2021-11-12 16:10:39 +00:00
|
|
|
//
|
2022-03-05 10:57:52 +00:00
|
|
|
// Extended headers can change `Search` behaviour:
|
2023-03-06 11:56:09 +00:00
|
|
|
// * [ __NEOFS__NETMAP_EPOCH | __FROSTFS__NETMAP_EPOCH ] \
|
2022-03-05 10:57:52 +00:00
|
|
|
// Will use the requsted version of Network Map for object placement
|
|
|
|
// calculation.
|
|
|
|
//
|
|
|
|
// Please refer to detailed `XHeader` description.
|
|
|
|
//
|
2021-11-12 16:10:39 +00:00
|
|
|
// Statuses:
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **OK** (0, SECTION_SUCCESS): \
|
|
|
|
// objects have been successfully selected;
|
2022-02-21 15:49:33 +00:00
|
|
|
// - Common failures (SECTION_FAILURE_COMMON);
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **ACCESS_DENIED** (2048, SECTION_OBJECT): \
|
|
|
|
// access to operation SEARCH of the object is denied;
|
2022-09-16 06:26:24 +00:00
|
|
|
// - **CONTAINER_NOT_FOUND** (3072, SECTION_CONTAINER): \
|
|
|
|
// search container not found;
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **TOKEN_EXPIRED** (4097, SECTION_SESSION): \
|
|
|
|
// provided session token has expired.
|
2020-08-11 09:03:50 +00:00
|
|
|
rpc Search(SearchRequest) returns (stream SearchResponse);
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Get byte range of data payload. Range is set as an (offset, length) tuple.
|
|
|
|
// Like in `Get` method, the response uses gRPC stream. Requested range can be
|
2022-04-13 06:21:33 +00:00
|
|
|
// restored by concatenation of all received payload chunks keeping the receiving
|
2020-10-15 18:28:19 +00:00
|
|
|
// order.
|
2021-11-12 16:10:39 +00:00
|
|
|
//
|
2022-03-05 10:57:52 +00:00
|
|
|
// Extended headers can change `GetRange` behaviour:
|
2023-03-06 11:56:09 +00:00
|
|
|
// * [ __NEOFS__NETMAP_EPOCH | __FROSTFS__NETMAP_EPOCH ] \
|
2022-03-05 10:57:52 +00:00
|
|
|
// Will use the requsted version of Network Map for object placement
|
|
|
|
// calculation.
|
2023-03-06 11:56:09 +00:00
|
|
|
// * [ __NEOFS__NETMAP_LOOKUP_DEPTH | __FROSTFS__NETMAP_LOOKUP_DEPTH ] \
|
2022-05-13 10:27:30 +00:00
|
|
|
// Will try older versions of Network Map to find an object until the depth
|
|
|
|
// limit is reached.
|
2022-03-05 10:57:52 +00:00
|
|
|
//
|
|
|
|
// Please refer to detailed `XHeader` description.
|
|
|
|
//
|
2021-11-12 16:10:39 +00:00
|
|
|
// Statuses:
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **OK** (0, SECTION_SUCCESS): \
|
|
|
|
// data range of the object payload has been successfully read;
|
2022-02-21 15:49:33 +00:00
|
|
|
// - Common failures (SECTION_FAILURE_COMMON);
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **ACCESS_DENIED** (2048, SECTION_OBJECT): \
|
|
|
|
// access to operation RANGE of the object is denied;
|
|
|
|
// - **OBJECT_NOT_FOUND** (2049, SECTION_OBJECT): \
|
|
|
|
// object not found in container;
|
|
|
|
// - **OBJECT_ALREADY_REMOVED** (2052, SECTION_OBJECT): \
|
|
|
|
// the requested object has been marked as deleted.
|
2022-03-18 14:49:45 +00:00
|
|
|
// - **OUT_OF_RANGE** (2053, SECTION_OBJECT): \
|
2022-09-16 06:26:24 +00:00
|
|
|
// the requested range is out of bounds;
|
|
|
|
// - **CONTAINER_NOT_FOUND** (3072, SECTION_CONTAINER): \
|
|
|
|
// object container not found;
|
|
|
|
// - **TOKEN_EXPIRED** (4097, SECTION_SESSION): \
|
|
|
|
// provided session token has expired.
|
2020-08-11 09:03:50 +00:00
|
|
|
rpc GetRange(GetRangeRequest) returns (stream GetRangeResponse);
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Returns homomorphic or regular hash of object's payload range after
|
|
|
|
// applying XOR operation with the provided `salt`. Ranges are set of (offset,
|
2022-04-13 06:21:33 +00:00
|
|
|
// length) tuples. Hashes order in response corresponds to the ranges order in
|
|
|
|
// the request. Note that hash is calculated for XORed data.
|
2021-11-12 16:10:39 +00:00
|
|
|
//
|
2022-03-05 10:57:52 +00:00
|
|
|
// Extended headers can change `GetRangeHash` behaviour:
|
2023-03-06 11:56:09 +00:00
|
|
|
// * [ __NEOFS__NETMAP_EPOCH | __FROSTFS__NETMAP_EPOCH ] \
|
2022-03-05 10:57:52 +00:00
|
|
|
// Will use the requsted version of Network Map for object placement
|
|
|
|
// calculation.
|
2023-03-06 11:56:09 +00:00
|
|
|
// * [ __NEOFS__NETMAP_LOOKUP_DEPTH | __FROSTFS__NETMAP_LOOKUP_DEPTH ] \
|
2022-05-13 10:27:30 +00:00
|
|
|
// Will try older versions of Network Map to find an object until the depth
|
|
|
|
// limit is reached.
|
2022-03-05 10:57:52 +00:00
|
|
|
//
|
|
|
|
// Please refer to detailed `XHeader` description.
|
|
|
|
//
|
2021-11-12 16:10:39 +00:00
|
|
|
// Statuses:
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **OK** (0, SECTION_SUCCESS): \
|
|
|
|
// data range of the object payload has been successfully hashed;
|
2022-02-21 15:49:33 +00:00
|
|
|
// - Common failures (SECTION_FAILURE_COMMON);
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **ACCESS_DENIED** (2048, SECTION_OBJECT): \
|
|
|
|
// access to operation RANGEHASH of the object is denied;
|
|
|
|
// - **OBJECT_NOT_FOUND** (2049, SECTION_OBJECT): \
|
|
|
|
// object not found in container;
|
2022-03-18 14:49:45 +00:00
|
|
|
// - **OUT_OF_RANGE** (2053, SECTION_OBJECT): \
|
2022-09-16 06:26:24 +00:00
|
|
|
// the requested range is out of bounds;
|
|
|
|
// - **CONTAINER_NOT_FOUND** (3072, SECTION_CONTAINER): \
|
|
|
|
// object container not found;
|
2022-02-21 16:00:08 +00:00
|
|
|
// - **TOKEN_EXPIRED** (4097, SECTION_SESSION): \
|
|
|
|
// provided session token has expired.
|
2020-08-11 09:03:50 +00:00
|
|
|
rpc GetRangeHash(GetRangeHashRequest) returns (GetRangeHashResponse);
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// GET object request
|
2020-01-30 11:41:24 +00:00
|
|
|
message GetRequest {
|
2020-10-15 18:28:19 +00:00
|
|
|
// GET Object request body
|
2020-08-11 08:59:36 +00:00
|
|
|
message Body {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Address of the requested object
|
2020-08-12 21:43:51 +00:00
|
|
|
neo.fs.v2.refs.Address address = 1;
|
2020-08-11 08:59:36 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// If `raw` flag is set, request will work only with objects that are
|
|
|
|
// physically stored on the peer node
|
2020-08-11 08:59:36 +00:00
|
|
|
bool raw = 2;
|
|
|
|
}
|
|
|
|
// Body of get object request message.
|
|
|
|
Body body = 1;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Carries request meta information. Header data is used only to regulate
|
|
|
|
// message transport and does not affect request execution.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.RequestMetaHeader meta_header = 2;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Carries request verification information. This header is used to
|
|
|
|
// authenticate the nodes of the message route and check the correctness of
|
|
|
|
// transmission.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.RequestVerificationHeader verify_header = 3;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// GET object response
|
2020-01-30 11:41:24 +00:00
|
|
|
message GetResponse {
|
2020-10-15 18:28:19 +00:00
|
|
|
// GET Object Response body
|
2020-08-11 08:59:36 +00:00
|
|
|
message Body {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Initial part of the `Object` structure stream. Technically it's a
|
|
|
|
// set of all `Object` structure's fields except `payload`.
|
2020-08-11 10:54:58 +00:00
|
|
|
message Init {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Object's unique identifier.
|
2020-08-12 21:43:51 +00:00
|
|
|
neo.fs.v2.refs.ObjectID object_id = 1;
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Signed `ObjectID`
|
2020-08-23 11:42:01 +00:00
|
|
|
neo.fs.v2.refs.Signature signature = 2;
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Object metadata headers
|
2020-08-11 10:54:58 +00:00
|
|
|
Header header = 3;
|
|
|
|
}
|
2020-10-15 18:28:19 +00:00
|
|
|
// Single message in the response stream.
|
2020-08-11 15:39:34 +00:00
|
|
|
oneof object_part {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Initial part of the object stream
|
2020-08-23 11:42:01 +00:00
|
|
|
Init init = 1;
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Chunked object payload
|
2020-08-11 08:59:36 +00:00
|
|
|
bytes chunk = 2;
|
2020-12-02 08:33:15 +00:00
|
|
|
|
|
|
|
// Meta information of split hierarchy for object assembly.
|
|
|
|
SplitInfo split_info = 3;
|
2020-08-11 08:59:36 +00:00
|
|
|
}
|
2020-08-11 09:03:50 +00:00
|
|
|
}
|
2020-08-11 08:59:36 +00:00
|
|
|
// Body of get object response message.
|
|
|
|
Body body = 1;
|
|
|
|
|
|
|
|
// Carries response meta information. Header data is used only to regulate
|
|
|
|
// message transport and does not affect request execution.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.ResponseMetaHeader meta_header = 2;
|
2020-08-11 08:59:36 +00:00
|
|
|
|
|
|
|
// Carries response verification information. This header is used to
|
2020-10-15 18:28:19 +00:00
|
|
|
// authenticate the nodes of the message route and check the correctness of
|
|
|
|
// transmission.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.ResponseVerificationHeader verify_header = 3;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// PUT object request
|
2020-01-30 11:41:24 +00:00
|
|
|
message PutRequest {
|
2020-10-15 18:28:19 +00:00
|
|
|
// PUT request body
|
2020-08-11 08:59:36 +00:00
|
|
|
message Body {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Newly created object structure parameters. If some optional parameters
|
|
|
|
// are not set, they will be calculated by a peer node.
|
2020-08-11 08:59:36 +00:00
|
|
|
message Init {
|
2020-10-15 18:28:19 +00:00
|
|
|
// ObjectID if available.
|
2020-08-12 21:43:51 +00:00
|
|
|
neo.fs.v2.refs.ObjectID object_id = 1;
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Object signature if available
|
2020-08-23 11:42:01 +00:00
|
|
|
neo.fs.v2.refs.Signature signature = 2;
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Object's Header
|
2020-08-11 10:54:58 +00:00
|
|
|
Header header = 3;
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Number of the object copies to store within the RPC call. By default
|
|
|
|
// object is processed according to the container's placement policy.
|
2020-08-11 10:54:58 +00:00
|
|
|
uint32 copies_number = 4;
|
2020-08-11 08:59:36 +00:00
|
|
|
}
|
2020-10-15 18:28:19 +00:00
|
|
|
// Single message in the request stream.
|
2020-08-11 15:39:34 +00:00
|
|
|
oneof object_part {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Initial part of the object stream
|
2020-08-11 08:59:36 +00:00
|
|
|
Init init = 1;
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Chunked object payload
|
2020-08-11 08:59:36 +00:00
|
|
|
bytes chunk = 2;
|
|
|
|
}
|
2020-08-11 09:03:50 +00:00
|
|
|
}
|
2020-08-11 08:59:36 +00:00
|
|
|
// Body of put object request message.
|
|
|
|
Body body = 1;
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Carries request meta information. Header data is used only to regulate
|
|
|
|
// message transport and does not affect request execution.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.RequestMetaHeader meta_header = 2;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Carries request verification information. This header is used to
|
|
|
|
// authenticate the nodes of the message route and check the correctness of
|
|
|
|
// transmission.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.RequestVerificationHeader verify_header = 3;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// PUT Object response
|
2020-01-30 11:41:24 +00:00
|
|
|
message PutResponse {
|
2020-10-15 18:28:19 +00:00
|
|
|
// PUT Object response body
|
2020-08-11 08:59:36 +00:00
|
|
|
message Body {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Identifier of the saved object
|
2020-08-12 21:43:51 +00:00
|
|
|
neo.fs.v2.refs.ObjectID object_id = 1;
|
2020-08-11 08:59:36 +00:00
|
|
|
}
|
|
|
|
// Body of put object response message.
|
|
|
|
Body body = 1;
|
|
|
|
|
|
|
|
// Carries response meta information. Header data is used only to regulate
|
|
|
|
// message transport and does not affect request execution.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.ResponseMetaHeader meta_header = 2;
|
2020-08-11 08:59:36 +00:00
|
|
|
|
|
|
|
// Carries response verification information. This header is used to
|
2020-10-15 18:28:19 +00:00
|
|
|
// authenticate the nodes of the message route and check the correctness of
|
|
|
|
// transmission.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.ResponseVerificationHeader verify_header = 3;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Object DELETE request
|
2020-01-30 11:41:24 +00:00
|
|
|
message DeleteRequest {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Object DELETE request body
|
2020-08-11 08:59:36 +00:00
|
|
|
message Body {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Address of the object to be deleted
|
2020-08-12 21:43:51 +00:00
|
|
|
neo.fs.v2.refs.Address address = 1;
|
2020-08-18 11:26:53 +00:00
|
|
|
}
|
2020-08-11 08:59:36 +00:00
|
|
|
// Body of delete object request message.
|
|
|
|
Body body = 1;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Carries request meta information. Header data is used only to regulate
|
|
|
|
// message transport and does not affect request execution.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.RequestMetaHeader meta_header = 2;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Carries request verification information. This header is used to
|
|
|
|
// authenticate the nodes of the message route and check the correctness of
|
|
|
|
// transmission.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.RequestVerificationHeader verify_header = 3;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// DeleteResponse body is empty because we cannot guarantee permanent object
|
|
|
|
// removal in distributed system.
|
2020-02-13 14:22:25 +00:00
|
|
|
message DeleteResponse {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Object DELETE Response has an empty body.
|
2020-12-09 08:47:38 +00:00
|
|
|
message Body {
|
|
|
|
// Address of the tombstone created for the deleted object
|
|
|
|
neo.fs.v2.refs.Address tombstone = 1;
|
|
|
|
}
|
2020-08-11 08:59:36 +00:00
|
|
|
|
|
|
|
// Body of delete object response message.
|
|
|
|
Body body = 1;
|
|
|
|
|
|
|
|
// Carries response meta information. Header data is used only to regulate
|
|
|
|
// message transport and does not affect request execution.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.ResponseMetaHeader meta_header = 2;
|
2020-08-11 08:59:36 +00:00
|
|
|
|
|
|
|
// Carries response verification information. This header is used to
|
2020-10-15 18:28:19 +00:00
|
|
|
// authenticate the nodes of the message route and check the correctness of
|
|
|
|
// transmission.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.ResponseVerificationHeader verify_header = 3;
|
2020-02-13 14:22:25 +00:00
|
|
|
}
|
2020-01-30 11:41:24 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Object HEAD request
|
2020-01-30 11:41:24 +00:00
|
|
|
message HeadRequest {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Object HEAD request body
|
2020-08-11 08:59:36 +00:00
|
|
|
message Body {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Address of the object with the requested Header
|
2020-08-12 21:43:51 +00:00
|
|
|
neo.fs.v2.refs.Address address = 1;
|
|
|
|
|
2020-08-11 10:54:58 +00:00
|
|
|
// Return only minimal header subset
|
2020-08-11 08:59:36 +00:00
|
|
|
bool main_only = 2;
|
2020-08-12 21:43:51 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// If `raw` flag is set, request will work only with objects that are
|
|
|
|
// physically stored on the peer node
|
2020-08-11 08:59:36 +00:00
|
|
|
bool raw = 3;
|
|
|
|
}
|
|
|
|
// Body of head object request message.
|
|
|
|
Body body = 1;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Carries request meta information. Header data is used only to regulate
|
|
|
|
// message transport and does not affect request execution.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.RequestMetaHeader meta_header = 2;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Carries request verification information. This header is used to
|
|
|
|
// authenticate the nodes of the message route and check the correctness of
|
|
|
|
// transmission.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.RequestVerificationHeader verify_header = 3;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2022-04-13 06:21:33 +00:00
|
|
|
// Tuple of a full object header and signature of an `ObjectID`. \
|
2020-10-15 18:28:19 +00:00
|
|
|
// Signed `ObjectID` is present to verify full header's authenticity through the
|
|
|
|
// following steps:
|
|
|
|
//
|
2022-04-13 06:21:33 +00:00
|
|
|
// 1. Calculate `SHA-256` of the marshalled `Header` structure
|
|
|
|
// 2. Check if the resulting hash matches `ObjectID`
|
2020-10-15 18:28:19 +00:00
|
|
|
// 3. Check if `ObjectID` signature in `signature` field is correct
|
2020-09-04 08:09:22 +00:00
|
|
|
message HeaderWithSignature {
|
|
|
|
// Full object header
|
2020-10-19 08:27:05 +00:00
|
|
|
Header header = 1 [json_name = "header"];
|
2020-09-04 08:09:22 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Signed `ObjectID` to verify full header's authenticity
|
2020-10-19 08:27:05 +00:00
|
|
|
neo.fs.v2.refs.Signature signature = 2 [json_name = "signature"];
|
2020-09-04 08:09:22 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Object HEAD response
|
2020-01-30 11:41:24 +00:00
|
|
|
message HeadResponse {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Object HEAD response body
|
2020-08-11 08:59:36 +00:00
|
|
|
message Body {
|
2020-12-07 12:02:20 +00:00
|
|
|
// Requested object header, it's part or meta information about split
|
|
|
|
// object.
|
2020-08-11 15:39:34 +00:00
|
|
|
oneof head{
|
2020-10-15 18:28:19 +00:00
|
|
|
// Full object's `Header` with `ObjectID` signature
|
2020-09-04 12:50:18 +00:00
|
|
|
HeaderWithSignature header = 1;
|
2020-08-12 21:43:51 +00:00
|
|
|
|
|
|
|
// Short object header
|
2020-08-11 10:54:58 +00:00
|
|
|
ShortHeader short_header = 2;
|
2020-12-07 12:02:20 +00:00
|
|
|
|
|
|
|
// Meta information of split hierarchy.
|
|
|
|
SplitInfo split_info = 3;
|
2020-08-11 10:54:58 +00:00
|
|
|
}
|
2020-08-11 08:59:36 +00:00
|
|
|
}
|
|
|
|
// Body of head object response message.
|
|
|
|
Body body = 1;
|
|
|
|
|
|
|
|
// Carries response meta information. Header data is used only to regulate
|
|
|
|
// message transport and does not affect request execution.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.ResponseMetaHeader meta_header = 2;
|
2020-08-11 08:59:36 +00:00
|
|
|
|
|
|
|
// Carries response verification information. This header is used to
|
2020-10-15 18:28:19 +00:00
|
|
|
// authenticate the nodes of the message route and check the correctness of
|
|
|
|
// transmission.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.ResponseVerificationHeader verify_header = 3;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Object Search request
|
2020-01-30 11:41:24 +00:00
|
|
|
message SearchRequest {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Object Search request body
|
2020-08-11 08:59:36 +00:00
|
|
|
message Body {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Container identifier were to search
|
2020-08-12 21:43:51 +00:00
|
|
|
neo.fs.v2.refs.ContainerID container_id = 1;
|
|
|
|
|
|
|
|
// Version of the Query Language used
|
|
|
|
uint32 version = 2;
|
2022-04-13 06:21:33 +00:00
|
|
|
// Filter structure checks if the object header field or the attribute content
|
2020-10-21 16:41:24 +00:00
|
|
|
// matches a value.
|
|
|
|
//
|
2022-04-13 06:21:33 +00:00
|
|
|
// If no filters are set, search request will return all objects of the
|
2021-02-20 08:10:36 +00:00
|
|
|
// container, including Regular object, Tombstones and Storage Group
|
|
|
|
// objects. Most human users expect to get only object they can directly
|
2022-04-13 06:21:33 +00:00
|
|
|
// work with. In that case, `$Object:ROOT` filter should be used.
|
2021-02-20 08:10:36 +00:00
|
|
|
//
|
2020-10-23 12:38:31 +00:00
|
|
|
// By default `key` field refers to the corresponding object's `Attribute`.
|
2020-10-21 16:41:24 +00:00
|
|
|
// Some Object's header fields can also be accessed by adding `$Object:`
|
|
|
|
// prefix to the name. Here is the list of fields available via this prefix:
|
|
|
|
//
|
|
|
|
// * $Object:version \
|
|
|
|
// version
|
2020-11-25 10:31:02 +00:00
|
|
|
// * $Object:objectID \
|
2020-11-09 13:56:58 +00:00
|
|
|
// object_id
|
2020-10-21 16:41:24 +00:00
|
|
|
// * $Object:containerID \
|
|
|
|
// container_id
|
|
|
|
// * $Object:ownerID \
|
|
|
|
// owner_id
|
|
|
|
// * $Object:creationEpoch \
|
|
|
|
// creation_epoch
|
|
|
|
// * $Object:payloadLength \
|
|
|
|
// payload_length
|
|
|
|
// * $Object:payloadHash \
|
|
|
|
// payload_hash
|
|
|
|
// * $Object:objectType \
|
|
|
|
// object_type
|
|
|
|
// * $Object:homomorphicHash \
|
|
|
|
// homomorphic_hash
|
2020-10-23 14:50:04 +00:00
|
|
|
// * $Object:split.parent \
|
|
|
|
// object_id of parent
|
2020-11-25 13:36:58 +00:00
|
|
|
// * $Object:split.splitID \
|
2020-12-08 15:08:32 +00:00
|
|
|
// 16 byte UUIDv4 used to identify the split object hierarchy parts
|
2020-10-21 16:41:24 +00:00
|
|
|
//
|
|
|
|
// There are some well-known filter aliases to match objects by certain
|
|
|
|
// properties:
|
|
|
|
//
|
|
|
|
// * $Object:ROOT \
|
2022-04-13 06:21:33 +00:00
|
|
|
// Returns only `REGULAR` type objects that are not split or that are the top
|
2020-11-09 10:03:49 +00:00
|
|
|
// level root objects in a split hierarchy. This includes objects not
|
|
|
|
// present physically, like large objects split into smaller objects
|
2022-04-13 06:21:33 +00:00
|
|
|
// without a separate top-level root object. Objects of other types like
|
2020-11-09 10:03:49 +00:00
|
|
|
// StorageGroups and Tombstones will not be shown. This filter may be
|
|
|
|
// useful for listing objects like `ls` command of some virtual file
|
|
|
|
// system. This filter is activated if the `key` exists, disregarding the
|
|
|
|
// value and matcher type.
|
|
|
|
// * $Object:PHY \
|
|
|
|
// Returns only objects physically stored in the system. This filter is
|
|
|
|
// activated if the `key` exists, disregarding the value and matcher type.
|
2021-02-02 09:03:40 +00:00
|
|
|
//
|
|
|
|
// Note: using filters with a key with prefix `$Object:` and match type
|
|
|
|
// `NOT_PRESENT `is not recommended since this is not a cross-version approach.
|
|
|
|
// Behavior when processing this kind of filters is undefined.
|
2020-08-12 21:43:51 +00:00
|
|
|
message Filter {
|
|
|
|
// Match type to use
|
2021-02-09 22:45:38 +00:00
|
|
|
MatchType match_type = 1 [json_name = "matchType"];
|
2020-08-11 08:59:36 +00:00
|
|
|
|
2020-10-21 16:41:24 +00:00
|
|
|
// Attribute or Header fields to match
|
2021-02-09 22:45:38 +00:00
|
|
|
string key = 2 [json_name = "key"];
|
2020-08-05 18:21:26 +00:00
|
|
|
|
2020-10-21 16:41:24 +00:00
|
|
|
// Value to match
|
2021-02-09 22:45:38 +00:00
|
|
|
string value = 3 [json_name = "value"];
|
2020-08-12 21:43:51 +00:00
|
|
|
}
|
|
|
|
// List of search expressions
|
|
|
|
repeated Filter filters = 3;
|
2020-08-11 09:03:50 +00:00
|
|
|
}
|
2020-08-11 08:59:36 +00:00
|
|
|
// Body of search object request message.
|
|
|
|
Body body = 1;
|
2020-08-05 18:21:26 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Carries request meta information. Header data is used only to regulate
|
|
|
|
// message transport and does not affect request execution.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.RequestMetaHeader meta_header = 2;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Carries request verification information. This header is used to
|
|
|
|
// authenticate the nodes of the message route and check the correctness of
|
|
|
|
// transmission.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.RequestVerificationHeader verify_header = 3;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
|
|
|
|
2020-08-12 21:43:51 +00:00
|
|
|
// Search response
|
2020-01-30 11:41:24 +00:00
|
|
|
message SearchResponse {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Object Search response body
|
2020-08-11 08:59:36 +00:00
|
|
|
message Body {
|
2020-10-15 18:28:19 +00:00
|
|
|
// List of `ObjectID`s that match the search query
|
2020-08-12 21:43:51 +00:00
|
|
|
repeated neo.fs.v2.refs.ObjectID id_list = 1;
|
2020-08-11 08:59:36 +00:00
|
|
|
}
|
|
|
|
// Body of search object response message.
|
|
|
|
Body body = 1;
|
|
|
|
|
|
|
|
// Carries response meta information. Header data is used only to regulate
|
|
|
|
// message transport and does not affect request execution.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.ResponseMetaHeader meta_header = 2;
|
2020-08-11 08:59:36 +00:00
|
|
|
|
|
|
|
// Carries response verification information. This header is used to
|
2020-10-15 18:28:19 +00:00
|
|
|
// authenticate the nodes of the message route and check the correctness of
|
|
|
|
// transmission.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.ResponseVerificationHeader verify_header = 3;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Object payload range.Ranges of zero length SHOULD be considered as invalid.
|
2020-08-04 08:43:34 +00:00
|
|
|
message Range {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Offset of the range from the object payload start
|
2020-08-11 09:03:50 +00:00
|
|
|
uint64 offset = 1;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Length in bytes of the object payload range
|
2020-08-11 09:03:50 +00:00
|
|
|
uint64 length = 2;
|
2020-08-04 08:43:34 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Request part of object's payload
|
2020-01-30 11:41:24 +00:00
|
|
|
message GetRangeRequest {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Byte range of object's payload request body
|
2020-08-11 08:59:36 +00:00
|
|
|
message Body {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Address of the object containing the requested payload range
|
2020-08-12 21:43:51 +00:00
|
|
|
neo.fs.v2.refs.Address address = 1;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Requested payload range
|
2020-08-11 08:59:36 +00:00
|
|
|
Range range = 2;
|
2020-12-07 13:15:01 +00:00
|
|
|
|
|
|
|
// If `raw` flag is set, request will work only with objects that are
|
|
|
|
// physically stored on the peer node.
|
|
|
|
bool raw = 3;
|
2020-08-11 08:59:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Body of get range object request message.
|
|
|
|
Body body = 1;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Carries request meta information. Header data is used only to regulate
|
|
|
|
// message transport and does not affect request execution.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.RequestMetaHeader meta_header = 2;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Carries request verification information. This header is used to
|
|
|
|
// authenticate the nodes of the message route and check the correctness of
|
|
|
|
// transmission.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.RequestVerificationHeader verify_header = 3;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
|
|
|
|
2020-08-12 21:43:51 +00:00
|
|
|
// Get part of object's payload
|
2020-01-30 11:41:24 +00:00
|
|
|
message GetRangeResponse {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Get Range response body uses streams to transfer the response. Because
|
|
|
|
// object payload considered a byte sequence, there is no need to have some
|
|
|
|
// initial preamble message. The requested byte range is sent as a series
|
|
|
|
// chunks.
|
2020-08-11 08:59:36 +00:00
|
|
|
message Body {
|
2020-12-07 12:06:44 +00:00
|
|
|
// Requested object range or meta information about split object.
|
|
|
|
oneof range_part{
|
|
|
|
// Chunked object payload's range.
|
|
|
|
bytes chunk = 1;
|
|
|
|
|
|
|
|
// Meta information of split hierarchy.
|
|
|
|
SplitInfo split_info = 2;
|
|
|
|
}
|
2020-08-11 08:59:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Body of get range object response message.
|
|
|
|
Body body = 1;
|
|
|
|
|
|
|
|
// Carries response meta information. Header data is used only to regulate
|
|
|
|
// message transport and does not affect request execution.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.ResponseMetaHeader meta_header = 2;
|
2020-08-11 08:59:36 +00:00
|
|
|
|
|
|
|
// Carries response verification information. This header is used to
|
2020-10-15 18:28:19 +00:00
|
|
|
// authenticate the nodes of the message route and check the correctness of
|
|
|
|
// transmission.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.ResponseVerificationHeader verify_header = 3;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
|
|
|
|
2020-08-12 21:43:51 +00:00
|
|
|
// Get hash of object's payload part
|
2020-01-30 11:41:24 +00:00
|
|
|
message GetRangeHashRequest {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Get hash of object's payload part request body.
|
2020-08-11 08:59:36 +00:00
|
|
|
message Body {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Address of the object that containing the requested payload range
|
2020-08-12 21:43:51 +00:00
|
|
|
neo.fs.v2.refs.Address address = 1;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// List of object's payload ranges to calculate homomorphic hash
|
2020-08-11 08:59:36 +00:00
|
|
|
repeated Range ranges = 2;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Binary salt to XOR object's payload ranges before hash calculation
|
2020-08-11 08:59:36 +00:00
|
|
|
bytes salt = 3;
|
2020-08-18 15:26:51 +00:00
|
|
|
|
|
|
|
// Checksum algorithm type
|
|
|
|
neo.fs.v2.refs.ChecksumType type = 4;
|
2020-08-11 08:59:36 +00:00
|
|
|
}
|
|
|
|
// Body of get range hash object request message.
|
|
|
|
Body body = 1;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Carries request meta information. Header data is used only to regulate
|
|
|
|
// message transport and does not affect request execution.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.RequestMetaHeader meta_header = 2;
|
2020-08-05 23:45:39 +00:00
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// Carries request verification information. This header is used to
|
|
|
|
// authenticate the nodes of the message route and check the correctness of
|
|
|
|
// transmission.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.RequestVerificationHeader verify_header = 3;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
|
|
|
|
2020-08-12 21:43:51 +00:00
|
|
|
// Get hash of object's payload part
|
2020-01-30 11:41:24 +00:00
|
|
|
message GetRangeHashResponse {
|
2020-10-15 18:28:19 +00:00
|
|
|
// Get hash of object's payload part response body.
|
2020-08-11 08:59:36 +00:00
|
|
|
message Body {
|
2020-08-18 15:26:51 +00:00
|
|
|
// Checksum algorithm type
|
|
|
|
neo.fs.v2.refs.ChecksumType type = 1;
|
|
|
|
|
2020-10-15 18:28:19 +00:00
|
|
|
// List of range hashes in a binary format
|
2020-08-18 15:26:51 +00:00
|
|
|
repeated bytes hash_list = 2;
|
2020-08-11 08:59:36 +00:00
|
|
|
}
|
|
|
|
// Body of get range hash object response message.
|
|
|
|
Body body = 1;
|
|
|
|
|
|
|
|
// Carries response meta information. Header data is used only to regulate
|
|
|
|
// message transport and does not affect request execution.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.ResponseMetaHeader meta_header = 2;
|
2020-08-11 08:59:36 +00:00
|
|
|
|
|
|
|
// Carries response verification information. This header is used to
|
2020-10-15 18:28:19 +00:00
|
|
|
// authenticate the nodes of the message route and check the correctness of
|
|
|
|
// transmission.
|
2020-08-19 14:00:23 +00:00
|
|
|
neo.fs.v2.session.ResponseVerificationHeader verify_header = 3;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|