Airat Arifullin
4fe42ac4ad
All checks were successful
DCO action / DCO (pull_request) Successful in 1m0s
Tests and linters / Tests (1.20) (pull_request) Successful in 1m20s
Tests and linters / Tests (1.19) (pull_request) Successful in 1m30s
Tests and linters / Lint (pull_request) Successful in 1m53s
Tests and linters / Tests with -race (pull_request) Successful in 1m49s
* `FilterHeaderECParent` is used by `Object.Search` Signed-off-by: Airat Arifullin <a.arifullin@yadro.com>
58 lines
2.4 KiB
Go
58 lines
2.4 KiB
Go
package object
|
|
|
|
// ReservedFilterPrefix is a prefix of key to object header value or property.
|
|
const ReservedFilterPrefix = "$Object:"
|
|
|
|
const (
|
|
// FilterHeaderVersion is a filter key to "version" field of the object header.
|
|
FilterHeaderVersion = ReservedFilterPrefix + "version"
|
|
|
|
// FilterHeaderObjectID is a filter key to "object_id" field of the object.
|
|
FilterHeaderObjectID = ReservedFilterPrefix + "objectID"
|
|
|
|
// FilterHeaderContainerID is a filter key to "container_id" field of the object header.
|
|
FilterHeaderContainerID = ReservedFilterPrefix + "containerID"
|
|
|
|
// FilterHeaderOwnerID is a filter key to "owner_id" field of the object header.
|
|
FilterHeaderOwnerID = ReservedFilterPrefix + "ownerID"
|
|
|
|
// FilterHeaderCreationEpoch is a filter key to "creation_epoch" field of the object header.
|
|
FilterHeaderCreationEpoch = ReservedFilterPrefix + "creationEpoch"
|
|
|
|
// FilterHeaderPayloadLength is a filter key to "payload_length" field of the object header.
|
|
FilterHeaderPayloadLength = ReservedFilterPrefix + "payloadLength"
|
|
|
|
// FilterHeaderPayloadHash is a filter key to "payload_hash" field of the object header.
|
|
FilterHeaderPayloadHash = ReservedFilterPrefix + "payloadHash"
|
|
|
|
// FilterHeaderObjectType is a filter key to "object_type" field of the object header.
|
|
FilterHeaderObjectType = ReservedFilterPrefix + "objectType"
|
|
|
|
// FilterHeaderHomomorphicHash is a filter key to "homomorphic_hash" field of the object header.
|
|
FilterHeaderHomomorphicHash = ReservedFilterPrefix + "homomorphicHash"
|
|
|
|
// FilterHeaderParent is a filter key to "split.parent" field of the object header.
|
|
FilterHeaderParent = ReservedFilterPrefix + "split.parent"
|
|
|
|
// FilterHeaderSplitID is a filter key to "split.splitID" field of the object header.
|
|
FilterHeaderSplitID = ReservedFilterPrefix + "split.splitID"
|
|
|
|
// FilterHeaderECParent is a filter key to "ec.parent" field of the object header.
|
|
FilterHeaderECParent = ReservedFilterPrefix + "ec.parent"
|
|
)
|
|
|
|
const (
|
|
// FilterPropertyRoot is a filter key to check if regular object is on top of split hierarchy.
|
|
FilterPropertyRoot = ReservedFilterPrefix + "ROOT"
|
|
|
|
// FilterPropertyPhy is a filter key to check if an object physically stored on a node.
|
|
FilterPropertyPhy = ReservedFilterPrefix + "PHY"
|
|
)
|
|
|
|
const (
|
|
// BooleanPropertyValueTrue is a true value for boolean property filters.
|
|
BooleanPropertyValueTrue = "true"
|
|
|
|
// BooleanPropertyValueFalse is a false value for boolean property filters.
|
|
BooleanPropertyValueFalse = ""
|
|
)
|