Documentation ¶
Index ¶
- Variables
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- func RegisterCrossApps(keeper Keeper)
- type BucketApp
- func (app *BucketApp) ExecuteAckPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
- func (app *BucketApp) ExecuteFailAckPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
- func (app *BucketApp) ExecuteSynPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
- type CancelCreateObjectOptions
- type CopyObjectOptions
- type CreateBucketOptions
- type CreateGroupOptions
- type CreateObjectOptions
- type DeleteBucketOptions
- type DeleteGroupOptions
- type DeleteObjectOptions
- type GroupApp
- func (app *GroupApp) ExecuteAckPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
- func (app *GroupApp) ExecuteFailAckPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
- func (app *GroupApp) ExecuteSynPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
- type Keeper
- func (k Keeper) AppendDiscontinueObjectIds(ctx sdk.Context, timestamp int64, objectIds []types.Uint)
- func (k Keeper) ApplyBillChanges(ctx sdk.Context, prevFlows, currentFlows types.UserFlows) error
- func (k Keeper) CancelBucketMigration(ctx sdk.Context, operator sdk.AccAddress, bucketName string) error
- func (k Keeper) CancelCreateObject(ctx sdk.Context, operator sdk.AccAddress, bucketName, objectName string, ...) error
- func (k Keeper) ChargeBucketReadFee(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, ...) error
- func (k Keeper) ChargeBucketReadStoreFee(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, ...) error
- func (k Keeper) ChargeObjectStoreFee(ctx sdk.Context, primarySpId uint32, bucketInfo *storagetypes.BucketInfo, ...) error
- func (k Keeper) ChargeObjectStoreFeeForEarlyDeletion(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, ...) error
- func (k Keeper) ChargeViaBucketChange(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, ...) error
- func (k Keeper) ChargeViaObjectChange(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, ...) error
- func (k Keeper) ClearDiscontinueBucketCount(ctx sdk.Context)
- func (k Keeper) ClearDiscontinueObjectCount(ctx sdk.Context)
- func (k Keeper) CompleteMigrateBucket(ctx sdk.Context, operator sdk.AccAddress, bucketName string, ...) error
- func (k Keeper) CopyObject(ctx sdk.Context, operator sdk.AccAddress, ...) (sdkmath.Uint, error)
- func (k Keeper) CreateBucket(ctx sdk.Context, ownerAcc sdk.AccAddress, bucketName string, ...) (sdkmath.Uint, error)
- func (k Keeper) CreateGroup(ctx sdk.Context, owner sdk.AccAddress, groupName string, ...) (sdkmath.Uint, error)
- func (k Keeper) CreateObject(ctx sdk.Context, operator sdk.AccAddress, bucketName, objectName string, ...) (sdkmath.Uint, error)
- func (k Keeper) DeleteBucket(ctx sdk.Context, operator sdk.AccAddress, bucketName string, ...) error
- func (k Keeper) DeleteDiscontinueBucketsUntil(ctx sdk.Context, timestamp int64, maxToDelete uint64) (uint64, error)
- func (k Keeper) DeleteDiscontinueObjectsUntil(ctx sdk.Context, timestamp int64, maxObjectsToDelete uint64) (deleted uint64, err error)
- func (k Keeper) DeleteGroup(ctx sdk.Context, operator sdk.AccAddress, groupName string, ...) error
- func (k Keeper) DeleteMigrationBucketInfo(ctx sdk.Context, bucketID sdkmath.Uint)
- func (k Keeper) DeleteObject(ctx sdk.Context, operator sdk.AccAddress, bucketName, objectName string, ...) error
- func (k Keeper) DeleteObjectFromVirtualGroup(ctx sdk.Context, bucketInfo *types.BucketInfo, objectInfo *types.ObjectInfo) error
- func (k Keeper) DeletePolicy(ctx sdk.Context, operator sdk.AccAddress, principal *permtypes.Principal, ...) (math.Uint, error)
- func (k Keeper) DiscontinueBucket(ctx sdk.Context, operator sdk.AccAddress, bucketName, reason string) error
- func (k Keeper) DiscontinueBucketMax(ctx sdk.Context) (res uint64)
- func (k Keeper) DiscontinueConfirmPeriod(ctx sdk.Context) (res int64)
- func (k Keeper) DiscontinueCountingWindow(ctx sdk.Context) (res uint64)
- func (k Keeper) DiscontinueDeletionMax(ctx sdk.Context) (res uint64)
- func (k Keeper) DiscontinueObject(ctx sdk.Context, operator sdk.AccAddress, bucketName string, ...) error
- func (k Keeper) DiscontinueObjectMax(ctx sdk.Context) (res uint64)
- func (k Keeper) ForceDeleteBucket(ctx sdk.Context, bucketId sdkmath.Uint, cap uint64) (bool, uint64, error)
- func (k Keeper) ForceDeleteObject(ctx sdk.Context, objectId sdkmath.Uint) error
- func (k Keeper) GarbageCollectResourcesStalePolicy(ctx sdk.Context)
- func (k Keeper) GenNextBucketId(ctx sdk.Context) sdkmath.Uint
- func (k Keeper) GenNextGroupId(ctx sdk.Context) sdkmath.Uint
- func (k Keeper) GenNextObjectID(ctx sdk.Context) sdkmath.Uint
- func (k Keeper) GetAuthority() string
- func (k Keeper) GetBucketInfo(ctx sdk.Context, bucketName string) (*types.BucketInfo, bool)
- func (k Keeper) GetBucketInfoById(ctx sdk.Context, bucketId sdkmath.Uint) (*types.BucketInfo, bool)
- func (k Keeper) GetBucketReadBill(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, ...) (userFlows types.UserFlows, err error)
- func (k Keeper) GetBucketReadStoreBill(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, ...) (userFlows types.UserFlows, err error)
- func (k Keeper) GetExpectSecondarySPNumForECObject(ctx sdk.Context, createTime int64) (res uint32)
- func (k Keeper) GetGroupInfo(ctx sdk.Context, ownerAddr sdk.AccAddress, groupName string) (*types.GroupInfo, bool)
- func (k Keeper) GetGroupInfoById(ctx sdk.Context, groupId sdkmath.Uint) (*types.GroupInfo, bool)
- func (k Keeper) GetInternalBucketInfo(ctx sdk.Context, bucketID sdkmath.Uint) (*types.InternalBucketInfo, bool)
- func (k Keeper) GetMigrationBucketInfo(ctx sdk.Context, bucketID sdkmath.Uint) (*types.MigrationBucketInfo, bool)
- func (k Keeper) GetObjectChargeSize(ctx sdk.Context, payloadSize uint64, ts int64) (size uint64, err error)
- func (k Keeper) GetObjectGVG(ctx sdk.Context, bucketID math.Uint, lvgID uint32) (*vgtypes.GlobalVirtualGroup, bool)
- func (k Keeper) GetObjectInfo(ctx sdk.Context, bucketName string, objectName string) (*types.ObjectInfo, bool)
- func (k Keeper) GetObjectInfoById(ctx sdk.Context, objectId sdkmath.Uint) (*types.ObjectInfo, bool)
- func (k Keeper) GetObjectInfoCount(ctx sdk.Context) sdkmath.Uint
- func (k Keeper) GetObjectLockFee(ctx sdk.Context, primarySpId uint32, priceTime int64, payloadSize uint64) (amount sdkmath.Int, err error)
- func (k Keeper) GetParams(ctx sdk.Context) (p types.Params)
- func (k Keeper) GetPolicy(ctx sdk.Context, grn *types2.GRN, principal *permtypes.Principal) (*permtypes.Policy, error)
- func (k Keeper) GetPrimarySPForBucket(ctx sdk.Context, bucketInfo *types.BucketInfo) (*sptypes.StorageProvider, error)
- func (k Keeper) GetVersionedParamsWithTs(ctx sdk.Context, ts int64) (verParams types.VersionedParams, err error)
- func (k Keeper) HeadBucket(goCtx context.Context, req *types.QueryHeadBucketRequest) (*types.QueryHeadBucketResponse, error)
- func (k Keeper) HeadBucketById(goCtx context.Context, req *types.QueryHeadBucketByIdRequest) (*types.QueryHeadBucketResponse, error)
- func (k Keeper) HeadBucketExtra(c context.Context, req *types.QueryHeadBucketExtraRequest) (*types.QueryHeadBucketExtraResponse, error)
- func (k Keeper) HeadBucketNFT(goCtx context.Context, req *types.QueryNFTRequest) (*types.QueryBucketNFTResponse, error)
- func (k Keeper) HeadGroup(goCtx context.Context, req *types.QueryHeadGroupRequest) (*types.QueryHeadGroupResponse, error)
- func (k Keeper) HeadGroupMember(goCtx context.Context, req *types.QueryHeadGroupMemberRequest) (*types.QueryHeadGroupMemberResponse, error)
- func (k Keeper) HeadGroupNFT(goCtx context.Context, req *types.QueryNFTRequest) (*types.QueryGroupNFTResponse, error)
- func (k Keeper) HeadObject(goCtx context.Context, req *types.QueryHeadObjectRequest) (*types.QueryHeadObjectResponse, error)
- func (k Keeper) HeadObjectById(goCtx context.Context, req *types.QueryHeadObjectByIdRequest) (*types.QueryHeadObjectResponse, error)
- func (k Keeper) HeadObjectNFT(goCtx context.Context, req *types.QueryNFTRequest) (*types.QueryObjectNFTResponse, error)
- func (k Keeper) IsPriceChanged(ctx sdk.Context, primarySpId uint32, priceTime int64) (bool, *types.StoragePrice, sdk.Dec, *types.StoragePrice, sdk.Dec, error)
- func (k Keeper) LeaveGroup(ctx sdk.Context, member sdk.AccAddress, owner sdk.AccAddress, groupName string, ...) error
- func (k Keeper) ListBuckets(goCtx context.Context, req *types.QueryListBucketsRequest) (*types.QueryListBucketsResponse, error)
- func (k Keeper) ListGroup(goCtx context.Context, req *types.QueryListGroupRequest) (*types.QueryListGroupResponse, error)
- func (k Keeper) ListObjects(goCtx context.Context, req *types.QueryListObjectsRequest) (*types.QueryListObjectsResponse, error)
- func (k Keeper) ListObjectsByBucketId(goCtx context.Context, req *types.QueryListObjectsByBucketIdRequest) (*types.QueryListObjectsResponse, error)
- func (k Keeper) LockObjectStoreFee(ctx sdk.Context, primarySpId uint32, bucketInfo *storagetypes.BucketInfo, ...) error
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) MaxBucketsPerAccount(ctx sdk.Context) (res uint32)
- func (k Keeper) MaxLocalVirtualGroupNumPerBucket(ctx sdk.Context) (res uint32)
- func (k Keeper) MaxPayloadSize(ctx sdk.Context) (res uint64)
- func (k Keeper) MaxSegmentSize(ctx sdk.Context) (res uint64)
- func (k Keeper) MigrateBucket(ctx sdk.Context, operator sdk.AccAddress, bucketName string, ...) error
- func (k Keeper) MinChargeSize(ctx sdk.Context) (res uint64)
- func (k Keeper) MirrorBucketAckRelayerFee(ctx sdk.Context) *big.Int
- func (k Keeper) MirrorBucketRelayerFee(ctx sdk.Context) *big.Int
- func (k Keeper) MirrorGroupAckRelayerFee(ctx sdk.Context) *big.Int
- func (k Keeper) MirrorGroupRelayerFee(ctx sdk.Context) *big.Int
- func (k Keeper) MirrorObjectAckRelayerFee(ctx sdk.Context) *big.Int
- func (k Keeper) MirrorObjectRelayerFee(ctx sdk.Context) *big.Int
- func (k Keeper) MustGetInternalBucketInfo(ctx sdk.Context, bucketID sdkmath.Uint) *types.InternalBucketInfo
- func (k Keeper) MustGetPrimarySPForBucket(ctx sdk.Context, bucketInfo *types.BucketInfo) *sptypes.StorageProvider
- func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- func (k Keeper) PersistDeleteInfo(ctx sdk.Context)
- func (k Keeper) PutPolicy(ctx sdk.Context, operator sdk.AccAddress, grn types2.GRN, ...) (math.Uint, error)
- func (k Keeper) QueryIsPriceChanged(c context.Context, req *types.QueryIsPriceChangedRequest) (*types.QueryIsPriceChangedResponse, error)
- func (k Keeper) QueryLockFee(c context.Context, req *types.QueryLockFeeRequest) (*types.QueryLockFeeResponse, error)
- func (k Keeper) QueryParamsByTimestamp(c context.Context, req *types.QueryParamsByTimestampRequest) (*types.QueryParamsByTimestampResponse, error)
- func (k Keeper) QueryPolicyById(goCtx context.Context, req *types.QueryPolicyByIdRequest) (..., error)
- func (k Keeper) QueryPolicyForAccount(goCtx context.Context, req *types.QueryPolicyForAccountRequest) (..., error)
- func (k Keeper) QueryPolicyForGroup(goCtx context.Context, req *types.QueryPolicyForGroupRequest) (..., error)
- func (k Keeper) RebindingVirtualGroup(ctx sdk.Context, bucketInfo *types.BucketInfo, ...) error
- func (k Keeper) RedundantDataChunkNum(ctx sdk.Context) (res uint32)
- func (k Keeper) RedundantParityChunkNum(ctx sdk.Context) (res uint32)
- func (k Keeper) RejectSealObject(ctx sdk.Context, operator sdk.AccAddress, bucketName, objectName string) error
- func (k Keeper) SealEmptyObjectOnVirtualGroup(ctx sdk.Context, bucketInfo *types.BucketInfo, objectInfo *types.ObjectInfo) (*types.LocalVirtualGroup, error)
- func (k Keeper) SealObject(ctx sdk.Context, spSealAcc sdk.AccAddress, bucketName, objectName string, ...) error
- func (k Keeper) SealObjectOnVirtualGroup(ctx sdk.Context, bucketInfo *types.BucketInfo, gvgID uint32, ...) (*types.LocalVirtualGroup, error)
- func (k Keeper) SetBucketInfo(ctx sdk.Context, bucketInfo *types.BucketInfo)
- func (k Keeper) SetGroupInfo(ctx sdk.Context, groupInfo *types.GroupInfo)
- func (k Keeper) SetInternalBucketInfo(ctx sdk.Context, bucketID sdkmath.Uint, ...)
- func (k Keeper) SetObjectInfo(ctx sdk.Context, objectInfo *types.ObjectInfo)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params) error
- func (k Keeper) SetVersionedParamsWithTs(ctx sdk.Context, verParams types.VersionedParams) error
- func (k Keeper) StalePolicyCleanupMax(ctx sdk.Context) (res uint64)
- func (k Keeper) UnChargeBucketReadFee(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, ...) error
- func (k Keeper) UnChargeBucketReadStoreFee(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, ...) error
- func (k Keeper) UnChargeObjectStoreFee(ctx sdk.Context, primarySpId uint32, bucketInfo *storagetypes.BucketInfo, ...) error
- func (k Keeper) UnlockAndChargeObjectStoreFee(ctx sdk.Context, primarySpId uint32, bucketInfo *storagetypes.BucketInfo, ...) error
- func (k Keeper) UnlockObjectStoreFee(ctx sdk.Context, primarySpId uint32, bucketInfo *storagetypes.BucketInfo, ...) error
- func (k Keeper) UpdateBucketInfo(ctx sdk.Context, operator sdk.AccAddress, bucketName string, ...) error
- func (k Keeper) UpdateBucketInfoAndCharge(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, ...) error
- func (k Keeper) UpdateGroupExtra(ctx sdk.Context, operator sdk.AccAddress, groupInfo *types.GroupInfo, ...) error
- func (k Keeper) UpdateGroupMember(ctx sdk.Context, operator sdk.AccAddress, groupInfo *types.GroupInfo, ...) error
- func (k Keeper) UpdateObjectInfo(ctx sdk.Context, operator sdk.AccAddress, bucketName, objectName string, ...) error
- func (k Keeper) VerifyBucketPermission(ctx sdk.Context, bucketInfo *types.BucketInfo, operator sdk.AccAddress, ...) permtypes.Effect
- func (k Keeper) VerifyGVGSecondarySPsBlsSignature(ctx sdk.Context, gvg *vgtypes.GlobalVirtualGroup, signHash [32]byte, ...) error
- func (k Keeper) VerifyGroupPermission(ctx sdk.Context, groupInfo *types.GroupInfo, operator sdk.AccAddress, ...) permtypes.Effect
- func (k Keeper) VerifyObjectPermission(ctx sdk.Context, bucketInfo *types.BucketInfo, objectInfo *types.ObjectInfo, ...) permtypes.Effect
- func (k Keeper) VerifyPaymentAccount(ctx sdk.Context, paymentAddress string, ownerAcc sdk.AccAddress) (sdk.AccAddress, error)
- func (k Keeper) VerifyPermission(goCtx context.Context, req *types.QueryVerifyPermissionRequest) (*types.QueryVerifyPermissionResponse, error)
- func (k Keeper) VerifySPAndSignature(ctx sdk.Context, sp *sptypes.StorageProvider, sigData []byte, signature []byte) error
- type LeaveGroupOptions
- type ObjectApp
- func (app *ObjectApp) ExecuteAckPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
- func (app *ObjectApp) ExecuteFailAckPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
- func (app *ObjectApp) ExecuteSynPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
- type SealObjectOptions
- type UpdateBucketOptions
- type UpdateGroupMemberOptions
Constants ¶
This section is empty.
Variables ¶
var ( PublicReadBucketAllowedActions = map[permtypes.ActionType]bool{ permtypes.ACTION_GET_OBJECT: true, permtypes.ACTION_COPY_OBJECT: true, permtypes.ACTION_EXECUTE_OBJECT: true, permtypes.ACTION_LIST_OBJECT: true, } PublicReadObjectAllowedActions = map[permtypes.ActionType]bool{ permtypes.ACTION_GET_OBJECT: true, permtypes.ACTION_COPY_OBJECT: true, permtypes.ACTION_EXECUTE_OBJECT: true, } )
Functions ¶
func NewMsgServerImpl ¶
NewMsgServerImpl returns an implementation of the MsgServer interface for the provided Keeper.
func RegisterCrossApps ¶ added in v0.0.9
func RegisterCrossApps(keeper Keeper)
Types ¶
type BucketApp ¶ added in v0.0.9
type BucketApp struct {
// contains filtered or unexported fields
}
func NewBucketApp ¶ added in v0.0.9
func (*BucketApp) ExecuteAckPackage ¶ added in v0.0.9
func (app *BucketApp) ExecuteAckPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
func (*BucketApp) ExecuteFailAckPackage ¶ added in v0.0.9
func (app *BucketApp) ExecuteFailAckPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
func (*BucketApp) ExecuteSynPackage ¶ added in v0.0.9
func (app *BucketApp) ExecuteSynPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
type CancelCreateObjectOptions ¶ added in v0.0.7
type CancelCreateObjectOptions struct {
SourceType types.SourceType
}
type CopyObjectOptions ¶ added in v0.0.7
type CopyObjectOptions struct { SourceType types.SourceType Visibility types.VisibilityType PrimarySpApproval *common.Approval ApprovalMsgBytes []byte }
type CreateBucketOptions ¶ added in v0.0.7
type CreateBucketOptions struct { Visibility types.VisibilityType SourceType types.SourceType ChargedReadQuota uint64 PaymentAddress string PrimarySpApproval *common.Approval ApprovalMsgBytes []byte }
type CreateGroupOptions ¶ added in v0.0.7
type CreateGroupOptions struct { Members []string SourceType types.SourceType Extra string }
type CreateObjectOptions ¶ added in v0.0.7
type CreateObjectOptions struct { Visibility types.VisibilityType ContentType string SourceType types.SourceType RedundancyType types.RedundancyType Checksums [][]byte PrimarySpApproval *common.Approval ApprovalMsgBytes []byte }
type DeleteBucketOptions ¶ added in v0.0.7
type DeleteBucketOptions struct {
SourceType types.SourceType
}
type DeleteGroupOptions ¶ added in v0.0.7
type DeleteGroupOptions struct {
SourceType types.SourceType
}
type DeleteObjectOptions ¶ added in v0.0.7
type DeleteObjectOptions struct {
SourceType types.SourceType
}
type GroupApp ¶ added in v0.0.9
type GroupApp struct {
// contains filtered or unexported fields
}
func NewGroupApp ¶ added in v0.0.9
func (*GroupApp) ExecuteAckPackage ¶ added in v0.0.9
func (app *GroupApp) ExecuteAckPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
func (*GroupApp) ExecuteFailAckPackage ¶ added in v0.0.9
func (app *GroupApp) ExecuteFailAckPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
func (*GroupApp) ExecuteSynPackage ¶ added in v0.0.9
func (app *GroupApp) ExecuteSynPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
type Keeper ¶
type Keeper struct {
// contains filtered or unexported fields
}
func NewKeeper ¶
func NewKeeper( cdc codec.BinaryCodec, storeKey storetypes.StoreKey, tStoreKey storetypes.StoreKey, accountKeeper types.AccountKeeper, spKeeper types.SpKeeper, paymentKeeper types.PaymentKeeper, permKeeper types.PermissionKeeper, crossChainKeeper types.CrossChainKeeper, virtualGroupKeeper types.VirtualGroupKeeper, authority string, ) *Keeper
func (Keeper) AppendDiscontinueObjectIds ¶ added in v0.1.2
func (Keeper) ApplyBillChanges ¶ added in v0.2.3
func (Keeper) CancelBucketMigration ¶ added in v0.2.3
func (Keeper) CancelCreateObject ¶ added in v0.0.7
func (k Keeper) CancelCreateObject( ctx sdk.Context, operator sdk.AccAddress, bucketName, objectName string, opts CancelCreateObjectOptions) error
func (Keeper) ChargeBucketReadFee ¶ added in v0.2.3
func (k Keeper) ChargeBucketReadFee(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, internalBucketInfo *storagetypes.InternalBucketInfo) error
func (Keeper) ChargeBucketReadStoreFee ¶ added in v0.2.3
func (k Keeper) ChargeBucketReadStoreFee(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, internalBucketInfo *storagetypes.InternalBucketInfo) error
func (Keeper) ChargeObjectStoreFee ¶ added in v0.2.3
func (k Keeper) ChargeObjectStoreFee(ctx sdk.Context, primarySpId uint32, bucketInfo *storagetypes.BucketInfo, internalBucketInfo *storagetypes.InternalBucketInfo, objectInfo *storagetypes.ObjectInfo) error
func (Keeper) ChargeObjectStoreFeeForEarlyDeletion ¶ added in v0.2.3
func (k Keeper) ChargeObjectStoreFeeForEarlyDeletion(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, internalBucketInfo *storagetypes.InternalBucketInfo, objectInfo *storagetypes.ObjectInfo, chargeSize uint64, timeToPay int64) error
func (Keeper) ChargeViaBucketChange ¶ added in v0.0.7
func (k Keeper) ChargeViaBucketChange(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, internalBucketInfo *storagetypes.InternalBucketInfo, changeFunc func(bi *storagetypes.BucketInfo, ibi *storagetypes.InternalBucketInfo) error) error
func (Keeper) ChargeViaObjectChange ¶ added in v0.2.3
func (k Keeper) ChargeViaObjectChange(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, internalBucketInfo *storagetypes.InternalBucketInfo, objectInfo *storagetypes.ObjectInfo, chargeSize uint64, delete bool) error
func (Keeper) ClearDiscontinueBucketCount ¶ added in v0.1.2
func (Keeper) ClearDiscontinueObjectCount ¶ added in v0.1.2
func (Keeper) CompleteMigrateBucket ¶ added in v0.2.3
func (k Keeper) CompleteMigrateBucket(ctx sdk.Context, operator sdk.AccAddress, bucketName string, gvgFamilyID uint32, gvgMappings []*types.GVGMapping) error
func (Keeper) CopyObject ¶ added in v0.0.7
func (k Keeper) CopyObject( ctx sdk.Context, operator sdk.AccAddress, srcBucketName, srcObjectName, dstBucketName, dstObjectName string, opts CopyObjectOptions) (sdkmath.Uint, error)
func (Keeper) CreateBucket ¶
func (k Keeper) CreateBucket( ctx sdk.Context, ownerAcc sdk.AccAddress, bucketName string, primarySpAcc sdk.AccAddress, opts *CreateBucketOptions) (sdkmath.Uint, error)
func (Keeper) CreateGroup ¶
func (k Keeper) CreateGroup( ctx sdk.Context, owner sdk.AccAddress, groupName string, opts CreateGroupOptions) (sdkmath.Uint, error)
func (Keeper) CreateObject ¶
func (Keeper) DeleteBucket ¶
func (k Keeper) DeleteBucket(ctx sdk.Context, operator sdk.AccAddress, bucketName string, opts DeleteBucketOptions) error
func (Keeper) DeleteDiscontinueBucketsUntil ¶ added in v0.1.2
func (Keeper) DeleteDiscontinueObjectsUntil ¶ added in v0.1.2
func (Keeper) DeleteGroup ¶
func (k Keeper) DeleteGroup(ctx sdk.Context, operator sdk.AccAddress, groupName string, opts DeleteGroupOptions) error
func (Keeper) DeleteMigrationBucketInfo ¶ added in v0.2.3
func (Keeper) DeleteObject ¶
func (k Keeper) DeleteObject( ctx sdk.Context, operator sdk.AccAddress, bucketName, objectName string, opts DeleteObjectOptions) error
func (Keeper) DeleteObjectFromVirtualGroup ¶ added in v0.2.3
func (k Keeper) DeleteObjectFromVirtualGroup(ctx sdk.Context, bucketInfo *types.BucketInfo, objectInfo *types.ObjectInfo) error
func (Keeper) DeletePolicy ¶ added in v0.0.7
func (Keeper) DiscontinueBucket ¶ added in v0.1.2
func (Keeper) DiscontinueBucketMax ¶ added in v0.1.2
func (Keeper) DiscontinueConfirmPeriod ¶ added in v0.1.2
func (Keeper) DiscontinueCountingWindow ¶ added in v0.1.2
func (Keeper) DiscontinueDeletionMax ¶ added in v0.1.2
func (Keeper) DiscontinueObject ¶ added in v0.1.2
func (Keeper) DiscontinueObjectMax ¶ added in v0.1.2
func (Keeper) ForceDeleteBucket ¶ added in v0.1.2
func (k Keeper) ForceDeleteBucket(ctx sdk.Context, bucketId sdkmath.Uint, cap uint64) (bool, uint64, error)
ForceDeleteBucket will delete bucket without permission check, it is used for discontinue request from sps. The cap parameter will limit the max objects can be deleted in the call. It will also return 1) whether the bucket is deleted, 2) the objects deleted, and 3) error if there is
func (Keeper) ForceDeleteObject ¶ added in v0.1.2
ForceDeleteObject will delete object without permission check, it is used for discontinue request from sps.
func (Keeper) GarbageCollectResourcesStalePolicy ¶ added in v0.2.0
func (Keeper) GenNextBucketId ¶ added in v0.0.7
func (Keeper) GenNextGroupId ¶ added in v0.0.7
func (Keeper) GenNextObjectID ¶ added in v0.0.7
func (Keeper) GetAuthority ¶ added in v0.2.0
func (Keeper) GetBucketInfo ¶ added in v0.0.7
func (Keeper) GetBucketInfoById ¶ added in v0.0.7
func (Keeper) GetBucketReadBill ¶ added in v0.2.3
func (k Keeper) GetBucketReadBill(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, internalBucketInfo *storagetypes.InternalBucketInfo) (userFlows types.UserFlows, err error)
func (Keeper) GetBucketReadStoreBill ¶ added in v0.2.3
func (k Keeper) GetBucketReadStoreBill(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, internalBucketInfo *storagetypes.InternalBucketInfo) (userFlows types.UserFlows, err error)
func (Keeper) GetExpectSecondarySPNumForECObject ¶ added in v0.0.9
func (Keeper) GetGroupInfo ¶ added in v0.0.7
func (Keeper) GetGroupInfoById ¶ added in v0.0.7
func (Keeper) GetInternalBucketInfo ¶ added in v0.2.3
func (Keeper) GetMigrationBucketInfo ¶ added in v0.2.3
func (Keeper) GetObjectChargeSize ¶ added in v0.2.3
func (Keeper) GetObjectGVG ¶ added in v0.2.3
func (Keeper) GetObjectInfo ¶ added in v0.0.7
func (Keeper) GetObjectInfoById ¶ added in v0.0.7
func (Keeper) GetObjectInfoCount ¶ added in v0.0.7
func (Keeper) GetObjectLockFee ¶ added in v0.0.7
func (Keeper) GetPrimarySPForBucket ¶ added in v0.2.3
func (k Keeper) GetPrimarySPForBucket(ctx sdk.Context, bucketInfo *types.BucketInfo) (*sptypes.StorageProvider, error)
func (Keeper) GetVersionedParamsWithTs ¶ added in v0.2.0
func (k Keeper) GetVersionedParamsWithTs(ctx sdk.Context, ts int64) (verParams types.VersionedParams, err error)
GetVersionedParamsWithTs find the latest params before and equal than the specific timestamp
func (Keeper) HeadBucket ¶ added in v0.0.6
func (k Keeper) HeadBucket(goCtx context.Context, req *types.QueryHeadBucketRequest) (*types.QueryHeadBucketResponse, error)
func (Keeper) HeadBucketById ¶ added in v0.0.7
func (k Keeper) HeadBucketById(goCtx context.Context, req *types.QueryHeadBucketByIdRequest) (*types.QueryHeadBucketResponse, error)
func (Keeper) HeadBucketExtra ¶ added in v0.2.3
func (k Keeper) HeadBucketExtra(c context.Context, req *types.QueryHeadBucketExtraRequest) (*types.QueryHeadBucketExtraResponse, error)
func (Keeper) HeadBucketNFT ¶ added in v0.0.7
func (k Keeper) HeadBucketNFT(goCtx context.Context, req *types.QueryNFTRequest) (*types.QueryBucketNFTResponse, error)
func (Keeper) HeadGroup ¶ added in v0.0.8
func (k Keeper) HeadGroup(goCtx context.Context, req *types.QueryHeadGroupRequest) (*types.QueryHeadGroupResponse, error)
func (Keeper) HeadGroupMember ¶ added in v0.0.8
func (k Keeper) HeadGroupMember(goCtx context.Context, req *types.QueryHeadGroupMemberRequest) (*types.QueryHeadGroupMemberResponse, error)
func (Keeper) HeadGroupNFT ¶ added in v0.0.7
func (k Keeper) HeadGroupNFT(goCtx context.Context, req *types.QueryNFTRequest) (*types.QueryGroupNFTResponse, error)
func (Keeper) HeadObject ¶ added in v0.0.6
func (k Keeper) HeadObject(goCtx context.Context, req *types.QueryHeadObjectRequest) (*types.QueryHeadObjectResponse, error)
func (Keeper) HeadObjectById ¶ added in v0.0.7
func (k Keeper) HeadObjectById(goCtx context.Context, req *types.QueryHeadObjectByIdRequest) (*types.QueryHeadObjectResponse, error)
func (Keeper) HeadObjectNFT ¶ added in v0.0.7
func (k Keeper) HeadObjectNFT(goCtx context.Context, req *types.QueryNFTRequest) (*types.QueryObjectNFTResponse, error)
func (Keeper) IsPriceChanged ¶ added in v0.2.3
func (Keeper) LeaveGroup ¶ added in v0.0.7
func (k Keeper) LeaveGroup( ctx sdk.Context, member sdk.AccAddress, owner sdk.AccAddress, groupName string, opts LeaveGroupOptions) error
func (Keeper) ListBuckets ¶ added in v0.0.6
func (k Keeper) ListBuckets(goCtx context.Context, req *types.QueryListBucketsRequest) (*types.QueryListBucketsResponse, error)
func (Keeper) ListGroup ¶ added in v0.0.8
func (k Keeper) ListGroup(goCtx context.Context, req *types.QueryListGroupRequest) (*types.QueryListGroupResponse, error)
func (Keeper) ListObjects ¶ added in v0.0.6
func (k Keeper) ListObjects(goCtx context.Context, req *types.QueryListObjectsRequest) (*types.QueryListObjectsResponse, error)
func (Keeper) ListObjectsByBucketId ¶ added in v0.0.7
func (k Keeper) ListObjectsByBucketId(goCtx context.Context, req *types.QueryListObjectsByBucketIdRequest) (*types.QueryListObjectsResponse, error)
func (Keeper) LockObjectStoreFee ¶ added in v0.2.3
func (k Keeper) LockObjectStoreFee(ctx sdk.Context, primarySpId uint32, bucketInfo *storagetypes.BucketInfo, objectInfo *storagetypes.ObjectInfo) error
func (Keeper) MaxBucketsPerAccount ¶ added in v0.0.10
func (Keeper) MaxLocalVirtualGroupNumPerBucket ¶ added in v0.2.3
func (Keeper) MigrateBucket ¶ added in v0.2.3
func (Keeper) MinChargeSize ¶ added in v0.0.7
func (Keeper) MirrorBucketAckRelayerFee ¶ added in v0.0.9
func (Keeper) MirrorBucketRelayerFee ¶ added in v0.0.9
func (Keeper) MirrorGroupAckRelayerFee ¶ added in v0.0.9
func (Keeper) MirrorGroupRelayerFee ¶ added in v0.0.9
func (Keeper) MirrorObjectAckRelayerFee ¶ added in v0.0.9
func (Keeper) MirrorObjectRelayerFee ¶ added in v0.0.9
func (Keeper) MustGetInternalBucketInfo ¶ added in v0.2.3
func (Keeper) MustGetPrimarySPForBucket ¶ added in v0.2.3
func (k Keeper) MustGetPrimarySPForBucket(ctx sdk.Context, bucketInfo *types.BucketInfo) *sptypes.StorageProvider
func (Keeper) Params ¶
func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (Keeper) PersistDeleteInfo ¶ added in v0.2.0
func (Keeper) QueryIsPriceChanged ¶ added in v0.2.3
func (k Keeper) QueryIsPriceChanged(c context.Context, req *types.QueryIsPriceChangedRequest) (*types.QueryIsPriceChangedResponse, error)
func (Keeper) QueryLockFee ¶ added in v0.2.3
func (k Keeper) QueryLockFee(c context.Context, req *types.QueryLockFeeRequest) (*types.QueryLockFeeResponse, error)
func (Keeper) QueryParamsByTimestamp ¶ added in v0.2.2
func (k Keeper) QueryParamsByTimestamp(c context.Context, req *types.QueryParamsByTimestampRequest) (*types.QueryParamsByTimestampResponse, error)
func (Keeper) QueryPolicyById ¶ added in v0.2.0
func (k Keeper) QueryPolicyById(goCtx context.Context, req *types.QueryPolicyByIdRequest) (*types. QueryPolicyByIdResponse, error)
func (Keeper) QueryPolicyForAccount ¶ added in v0.0.8
func (k Keeper) QueryPolicyForAccount(goCtx context.Context, req *types.QueryPolicyForAccountRequest) (*types. QueryPolicyForAccountResponse, error)
func (Keeper) QueryPolicyForGroup ¶ added in v0.0.8
func (k Keeper) QueryPolicyForGroup(goCtx context.Context, req *types.QueryPolicyForGroupRequest) (*types. QueryPolicyForGroupResponse, error)
func (Keeper) RebindingVirtualGroup ¶ added in v0.2.3
func (k Keeper) RebindingVirtualGroup(ctx sdk.Context, bucketInfo *types.BucketInfo, internalBucketInfo *types.InternalBucketInfo, gvgMappings []*types.GVGMapping) error
func (Keeper) RedundantDataChunkNum ¶
func (Keeper) RedundantParityChunkNum ¶
func (Keeper) RejectSealObject ¶ added in v0.0.7
func (Keeper) SealEmptyObjectOnVirtualGroup ¶ added in v0.2.3
func (k Keeper) SealEmptyObjectOnVirtualGroup(ctx sdk.Context, bucketInfo *types.BucketInfo, objectInfo *types.ObjectInfo) (*types.LocalVirtualGroup, error)
func (Keeper) SealObject ¶ added in v0.0.7
func (k Keeper) SealObject( ctx sdk.Context, spSealAcc sdk.AccAddress, bucketName, objectName string, opts SealObjectOptions) error
func (Keeper) SealObjectOnVirtualGroup ¶ added in v0.2.3
func (k Keeper) SealObjectOnVirtualGroup(ctx sdk.Context, bucketInfo *types.BucketInfo, gvgID uint32, objectInfo *types.ObjectInfo) (*types.LocalVirtualGroup, error)
func (Keeper) SetBucketInfo ¶ added in v0.0.9
func (k Keeper) SetBucketInfo(ctx sdk.Context, bucketInfo *types.BucketInfo)
func (Keeper) SetGroupInfo ¶ added in v0.0.9
func (Keeper) SetInternalBucketInfo ¶ added in v0.2.3
func (Keeper) SetObjectInfo ¶ added in v0.0.9
func (k Keeper) SetObjectInfo(ctx sdk.Context, objectInfo *types.ObjectInfo)
func (Keeper) SetVersionedParamsWithTs ¶ added in v0.2.0
SetVersionedParamsWithTs set a specific params in the store from its index
func (Keeper) StalePolicyCleanupMax ¶ added in v0.2.0
func (Keeper) UnChargeBucketReadFee ¶ added in v0.2.3
func (k Keeper) UnChargeBucketReadFee(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, internalBucketInfo *storagetypes.InternalBucketInfo) error
func (Keeper) UnChargeBucketReadStoreFee ¶ added in v0.2.3
func (k Keeper) UnChargeBucketReadStoreFee(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, internalBucketInfo *storagetypes.InternalBucketInfo) error
func (Keeper) UnChargeObjectStoreFee ¶ added in v0.2.3
func (k Keeper) UnChargeObjectStoreFee(ctx sdk.Context, primarySpId uint32, bucketInfo *storagetypes.BucketInfo, internalBucketInfo *storagetypes.InternalBucketInfo, objectInfo *storagetypes.ObjectInfo) error
func (Keeper) UnlockAndChargeObjectStoreFee ¶ added in v0.2.3
func (k Keeper) UnlockAndChargeObjectStoreFee(ctx sdk.Context, primarySpId uint32, bucketInfo *storagetypes.BucketInfo, internalBucketInfo *storagetypes.InternalBucketInfo, objectInfo *storagetypes.ObjectInfo) error
func (Keeper) UnlockObjectStoreFee ¶ added in v0.2.3
func (k Keeper) UnlockObjectStoreFee(ctx sdk.Context, primarySpId uint32, bucketInfo *storagetypes.BucketInfo, objectInfo *storagetypes.ObjectInfo) error
UnlockObjectStoreFee unlock store fee if the object is deleted in INIT state
func (Keeper) UpdateBucketInfo ¶ added in v0.0.7
func (k Keeper) UpdateBucketInfo(ctx sdk.Context, operator sdk.AccAddress, bucketName string, opts UpdateBucketOptions) error
func (Keeper) UpdateBucketInfoAndCharge ¶ added in v0.0.7
func (k Keeper) UpdateBucketInfoAndCharge(ctx sdk.Context, bucketInfo *storagetypes.BucketInfo, internalBucketInfo *storagetypes.InternalBucketInfo, newPaymentAddr string, newReadQuota uint64) error
func (Keeper) UpdateGroupExtra ¶ added in v0.2.2
func (Keeper) UpdateGroupMember ¶ added in v0.0.7
func (k Keeper) UpdateGroupMember(ctx sdk.Context, operator sdk.AccAddress, groupInfo *types.GroupInfo, opts UpdateGroupMemberOptions) error
func (Keeper) UpdateObjectInfo ¶ added in v0.1.2
func (k Keeper) UpdateObjectInfo(ctx sdk.Context, operator sdk.AccAddress, bucketName, objectName string, visibility types.VisibilityType) error
func (Keeper) VerifyBucketPermission ¶ added in v0.0.7
func (k Keeper) VerifyBucketPermission(ctx sdk.Context, bucketInfo *types.BucketInfo, operator sdk.AccAddress, action permtypes.ActionType, options *permtypes.VerifyOptions) permtypes.Effect
VerifyBucketPermission Bucket permissions checks are divided into three steps: First, if the bucket is a public bucket and the action is a read-only action, it returns "allow". Second, if the operator is the owner of the bucket, it returns "allow", as the owner has the highest permission. Third, verify the policy corresponding to the bucket and the operator.
- If the policy is evaluated as "allow", return "allow" to the user.
- If it is evaluated as "deny" or "unspecified", return "deny".
func (Keeper) VerifyGVGSecondarySPsBlsSignature ¶ added in v0.2.3
func (Keeper) VerifyGroupPermission ¶ added in v0.0.7
func (Keeper) VerifyObjectPermission ¶ added in v0.0.7
func (k Keeper) VerifyObjectPermission(ctx sdk.Context, bucketInfo *types.BucketInfo, objectInfo *types.ObjectInfo, operator sdk.AccAddress, action permtypes.ActionType) permtypes.Effect
VerifyObjectPermission Object permission checks are divided into four steps: First, if the object is a public object and the action is a read-only action, it returns "allow". Second, if the operator is the owner of the bucket, it returns "allow" Third, verify the policy corresponding to the bucket and the operator
- If it is evaluated as "deny", return "deny"
- If it is evaluated as "allow" or "unspecified", go ahead (Noted as EffectBucket)
Four, verify the policy corresponding to the object and the operator
- If it is evaluated as "deny", return "deny".
- If it is evaluated as "allow", return "allow".
- If it is evaluated as "unspecified", then if the EffectBucket is "allow", return allow
- If it is evaluated as "unspecified", then if the EffectBucket is "unspecified", return deny
func (Keeper) VerifyPaymentAccount ¶ added in v0.0.7
func (k Keeper) VerifyPaymentAccount(ctx sdk.Context, paymentAddress string, ownerAcc sdk.AccAddress) (sdk.AccAddress, error)
func (Keeper) VerifyPermission ¶ added in v0.0.7
func (k Keeper) VerifyPermission(goCtx context.Context, req *types.QueryVerifyPermissionRequest) (*types.QueryVerifyPermissionResponse, error)
func (Keeper) VerifySPAndSignature ¶ added in v0.0.6
type LeaveGroupOptions ¶ added in v0.0.7
type LeaveGroupOptions struct {
SourceType types.SourceType
}
type ObjectApp ¶ added in v0.0.9
type ObjectApp struct {
// contains filtered or unexported fields
}
func NewObjectApp ¶ added in v0.0.9
func (*ObjectApp) ExecuteAckPackage ¶ added in v0.0.9
func (app *ObjectApp) ExecuteAckPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
func (*ObjectApp) ExecuteFailAckPackage ¶ added in v0.0.9
func (app *ObjectApp) ExecuteFailAckPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
func (*ObjectApp) ExecuteSynPackage ¶ added in v0.0.9
func (app *ObjectApp) ExecuteSynPackage(ctx sdk.Context, appCtx *sdk.CrossChainAppContext, payload []byte) sdk.ExecuteResult
type SealObjectOptions ¶ added in v0.0.7
type UpdateBucketOptions ¶ added in v0.0.7
type UpdateBucketOptions struct { Visibility types.VisibilityType SourceType types.SourceType PaymentAddress string ChargedReadQuota *uint64 }
type UpdateGroupMemberOptions ¶ added in v0.0.7
type UpdateGroupMemberOptions struct { SourceType types.SourceType MembersToAdd []string MembersToDelete []string }