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.
75 lines
2.0 KiB
75 lines
2.0 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 dtmsvr
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/yedf/dtm/common"
|
|
"github.com/yedf/dtm/dtmcli"
|
|
"github.com/yedf/dtm/dtmcli/dtmimp"
|
|
)
|
|
|
|
// Process process global transaction once
|
|
func (t *TransGlobal) Process() map[string]interface{} {
|
|
r := t.process()
|
|
transactionMetrics(t, r["dtm_result"] == dtmcli.ResultSuccess)
|
|
return r
|
|
}
|
|
|
|
func (t *TransGlobal) process() map[string]interface{} {
|
|
if t.Options != "" {
|
|
dtmimp.MustUnmarshalString(t.Options, &t.TransOptions)
|
|
}
|
|
|
|
if !t.WaitResult {
|
|
go t.processInner()
|
|
return dtmcli.MapSuccess
|
|
}
|
|
submitting := t.Status == dtmcli.StatusSubmitted
|
|
err := t.processInner()
|
|
if err != nil {
|
|
return map[string]interface{}{"dtm_result": dtmcli.ResultFailure, "message": err.Error()}
|
|
}
|
|
if submitting && t.Status != dtmcli.StatusSucceed {
|
|
return map[string]interface{}{"dtm_result": dtmcli.ResultFailure, "message": "trans failed by user"}
|
|
}
|
|
return dtmcli.MapSuccess
|
|
}
|
|
|
|
func (t *TransGlobal) processInner() (rerr error) {
|
|
defer handlePanic(&rerr)
|
|
defer func() {
|
|
if rerr != nil {
|
|
dtmimp.LogRedf("processInner got error: %s", rerr.Error())
|
|
}
|
|
if TransProcessedTestChan != nil {
|
|
dtmimp.Logf("processed: %s", t.Gid)
|
|
TransProcessedTestChan <- t.Gid
|
|
dtmimp.Logf("notified: %s", t.Gid)
|
|
}
|
|
}()
|
|
dtmimp.Logf("processing: %s status: %s", t.Gid, t.Status)
|
|
branches := GetStore().FindBranches(t.Gid)
|
|
t.lastTouched = time.Now()
|
|
rerr = t.getProcessor().ProcessOnce(branches)
|
|
return
|
|
}
|
|
|
|
func (t *TransGlobal) saveNew() error {
|
|
branches := t.getProcessor().GenBranches()
|
|
t.NextCronInterval = t.getNextCronInterval(cronReset)
|
|
t.NextCronTime = common.GetNextTime(t.NextCronInterval)
|
|
t.Options = dtmimp.MustMarshalString(t.TransOptions)
|
|
if t.Options == "{}" {
|
|
t.Options = ""
|
|
}
|
|
now := time.Now()
|
|
t.CreateTime = &now
|
|
t.UpdateTime = &now
|
|
return GetStore().MaySaveNewTrans(&t.TransGlobalStore, branches)
|
|
}
|
|
|