2020-01-30 11:41:24 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
package object;
|
2020-03-31 06:58:22 +00:00
|
|
|
option go_package = "github.com/nspcc-dev/neofs-api-go/object";
|
2020-02-05 12:14:39 +00:00
|
|
|
option csharp_namespace = "NeoFS.API.Object";
|
2020-01-30 11:41:24 +00:00
|
|
|
|
|
|
|
import "refs/types.proto";
|
2020-04-24 16:18:28 +00:00
|
|
|
import "service/verify.proto";
|
2020-01-30 11:41:24 +00:00
|
|
|
import "storagegroup/types.proto";
|
|
|
|
|
2020-08-04 09:53:33 +00:00
|
|
|
// Attribute groups the parameters of the object attributes.
|
|
|
|
message Attribute {
|
|
|
|
// Key carries the string key to the object attribute.
|
|
|
|
string Key = 1;
|
|
|
|
|
|
|
|
// Value carries the string value of the object attribute.
|
2020-01-30 11:41:24 +00:00
|
|
|
string Value = 2;
|
|
|
|
}
|
|
|
|
|
2020-08-04 10:04:45 +00:00
|
|
|
message ExtendedHeader {
|
2020-08-04 15:59:21 +00:00
|
|
|
// Attributes carries list of the object attributes in a string key-value format.
|
|
|
|
repeated Attribute Attributes = 3;
|
2020-08-04 14:08:09 +00:00
|
|
|
// Split carries the position of the object in the split hierarchy.
|
|
|
|
SplitHeader SplitHeader = 4;
|
|
|
|
// Tombstone header that set up in deleted objects
|
|
|
|
Tombstone Tombstone = 5;
|
|
|
|
// Token header contains token of the session within which the object was created
|
|
|
|
service.Token Token = 6;
|
|
|
|
// HomoHash is a homomorphic hash of original object payload
|
|
|
|
bytes HomoHash = 7;
|
|
|
|
// Integrity header with checksum of all above headers in the object
|
|
|
|
IntegrityHeader Integrity = 9;
|
|
|
|
// StorageGroup contains meta information for the data audit
|
|
|
|
storagegroup.StorageGroup StorageGroup = 10;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message Tombstone {}
|
|
|
|
|
|
|
|
message SystemHeader {
|
|
|
|
// PayloadLength is an object payload length
|
2020-08-04 14:14:20 +00:00
|
|
|
uint64 PayloadLength = 1;
|
2020-08-04 12:33:10 +00:00
|
|
|
// Address carries object address in the NeoFS system.
|
|
|
|
// It encapsulates the object and the container identifiers.
|
2020-08-04 14:14:20 +00:00
|
|
|
refs.Address Address = 2;
|
2020-01-30 11:41:24 +00:00
|
|
|
// OwnerID is a wallet address
|
2020-08-04 14:14:20 +00:00
|
|
|
bytes OwnerID = 3;
|
2020-08-04 12:10:44 +00:00
|
|
|
// CreationEpoch carries number of NeoFS epoch on which the object was created.
|
2020-08-04 14:14:20 +00:00
|
|
|
uint64 CreationEpoch = 4;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message IntegrityHeader {
|
2020-08-04 15:48:15 +00:00
|
|
|
// PayloadChecksum carries the checksum of object payload bytes.
|
|
|
|
// Changing any byte of the payload changes the checksum.
|
|
|
|
// It is calculated as a SHA-256 hash over payload bytes.
|
|
|
|
bytes PayloadChecksum = 1;
|
|
|
|
// HeaderChecksum carries checksum of the object header structure.
|
|
|
|
// It covers all object attributes. Changing any field of the object except
|
|
|
|
// CreatorKey and ChecksumSignature changes the checksum.
|
|
|
|
// PayloadChecksum and HeaderChecksum cannot be merged due to the need
|
|
|
|
// to verify the header in the absence of a payload (e.g. in object.Head rpc).
|
|
|
|
// It is calculated as a SHA-256 hash over marshaled object header
|
|
|
|
// with cut CreatorKey and ChecksumSignature.
|
|
|
|
bytes HeaderChecksum = 2;
|
2020-08-04 15:16:53 +00:00
|
|
|
// CreatorKey carries public key of the object creator in a binary format.
|
2020-08-04 15:48:15 +00:00
|
|
|
bytes CreatorKey = 3;
|
2020-01-30 11:41:24 +00:00
|
|
|
// ChecksumSignature is an user's signature of checksum to verify if it is correct
|
2020-08-04 15:48:15 +00:00
|
|
|
bytes ChecksumSignature = 4;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|
|
|
|
|
2020-08-04 13:04:56 +00:00
|
|
|
// SplitHeader groups information about spawning the object through a payload splitting.
|
|
|
|
message SplitHeader {
|
|
|
|
// Parent carries identifier of the origin object.
|
|
|
|
refs.ObjectID Parent = 1;
|
|
|
|
|
|
|
|
// Previous carries identifier of the left split neighbor.
|
|
|
|
refs.ObjectID Previous = 2;
|
|
|
|
|
|
|
|
// Previous carries identifier of the right split neighbor.
|
|
|
|
refs.ObjectID Next = 3;
|
|
|
|
|
|
|
|
// Children carries list of identifiers of the objects generated by splitting the current.
|
|
|
|
repeated refs.ObjectID Children = 4;
|
|
|
|
|
|
|
|
// Origin carries the header of the origin object.
|
|
|
|
Header Origin = 5;
|
|
|
|
}
|
|
|
|
|
2020-08-04 10:18:38 +00:00
|
|
|
// Header groups the information about the NeoFS object.
|
|
|
|
message Header {
|
2020-01-30 11:41:24 +00:00
|
|
|
// SystemHeader describes system header
|
2020-08-04 09:18:35 +00:00
|
|
|
SystemHeader SystemHeader = 1;
|
2020-08-04 10:18:38 +00:00
|
|
|
|
2020-08-04 14:08:09 +00:00
|
|
|
// ExtendedHeader carries the additional part of the header.
|
|
|
|
ExtendedHeader ExtendedHeader = 2;
|
2020-08-04 10:18:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message Object {
|
|
|
|
// Header carries the object header.
|
|
|
|
Header Header = 1;
|
2020-01-30 11:41:24 +00:00
|
|
|
// Payload is an object's payload
|
2020-08-04 10:18:38 +00:00
|
|
|
bytes Payload = 2;
|
2020-01-30 11:41:24 +00:00
|
|
|
}
|