mirror of https://github.com/dtm-labs/dtm.git
csharpjavadistributed-transactionsdtmgogolangmicroservicenodejsphpdatabasesagaseatatcctransactiontransactionsxapythondistributed
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.8 KiB
48 lines
1.8 KiB
/*
|
|
* Copyright (c) 2021 yedf. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style
|
|
* license that can be found in the LICENSE file.
|
|
*/
|
|
|
|
package storage
|
|
|
|
import (
|
|
"errors"
|
|
"time"
|
|
)
|
|
|
|
// ErrNotFound defines the query item is not found in storage implement.
|
|
var ErrNotFound = errors.New("storage: NotFound")
|
|
|
|
// ErrUniqueConflict defines the item is conflict with unique key in storage implement.
|
|
var ErrUniqueConflict = errors.New("storage: UniqueKeyConflict")
|
|
|
|
// Store defines storage relevant interface
|
|
type Store interface {
|
|
Ping() error
|
|
PopulateData(skipDrop bool)
|
|
FindTransGlobalStore(gid string) *TransGlobalStore
|
|
ScanTransGlobalStores(position *string, limit int64, condition TransGlobalScanCondition) []TransGlobalStore
|
|
FindBranches(gid string) []TransBranchStore
|
|
UpdateBranches(branches []TransBranchStore, updates []string) (int, error)
|
|
LockGlobalSaveBranches(gid string, status string, branches []TransBranchStore, branchStart int)
|
|
MaySaveNewTrans(global *TransGlobalStore, branches []TransBranchStore) error
|
|
ChangeGlobalStatus(global *TransGlobalStore, newStatus string, updates []string, finished bool)
|
|
TouchCronTime(global *TransGlobalStore, nextCronInterval int64, nextCronTime *time.Time)
|
|
LockOneGlobalTrans(expireIn time.Duration) *TransGlobalStore
|
|
ResetCronTime(after time.Duration, limit int64) (succeedCount int64, hasRemaining bool, err error)
|
|
ResetTransGlobalCronTime(global *TransGlobalStore) error
|
|
ScanKV(cat string, position *string, limit int64) []KVStore
|
|
FindKV(cat, key string) []KVStore
|
|
UpdateKV(kv *KVStore) error
|
|
DeleteKV(cat, key string) error
|
|
CreateKV(cat, key, value string) error
|
|
}
|
|
|
|
// TransGlobalScanCondition contains filter options to scan global trans.
|
|
type TransGlobalScanCondition struct {
|
|
Status string
|
|
TransType string
|
|
CreateTimeStart time.Time
|
|
CreateTimeEnd time.Time
|
|
}
|
|
|