90 Star 495 Fork 152

平凯星辰(北京)科技有限公司/tidb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
.github
LICENSES
ast
cmd
config
ddl
distsql
docs
domain
executor
expression
hack
hooks
infoschema
kv
meta
metrics
model
mysql
owner
parser
perfschema
plan
privilege
server
session
sessionctx
statistics
store
mockoracle
mockstore
tikv
gcworker
latch
oracle
oracles
local.go
local_test.go
metrics.go
pd.go
oracle.go
tikvrpc
2pc.go
2pc_fail_test.go
2pc_slow_test.go
2pc_test.go
backoff.go
client.go
client_test.go
coprocessor.go
coprocessor_test.go
error.go
interface.go
isolation_test.go
kv.go
lock_resolver.go
lock_test.go
pd_codec.go
rawkv.go
rawkv_test.go
region_cache.go
region_cache_test.go
region_request.go
region_request_test.go
safepoint.go
safepoint_test.go
scan.go
scan_mock_test.go
scan_test.go
snapshot.go
snapshot_test.go
split_region.go
split_test.go
sql_fail_test.go
store_fail_test.go
store_test.go
test_util.go
ticlient_test.go
tikv_test.go
txn.go
store_test.go
structure
table
tablecodec
terror
tidb-server
types
util
vendor
x-server
.dockerignore
.editorconfig
.gitignore
.travis.yml
CHANGELOG.md
CONTRIBUTING.md
CONTRIBUTORS
Dockerfile
Gopkg.lock
Gopkg.toml
Jenkinsfile
LICENSE
Makefile
README.md
checklist.md
checkout-pr-branch.sh
circle.yml
code_review_guide.md
errcheck_excludes.txt
gitcookie.sh
克隆/下载
local.go 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
// Copyright 2016 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package oracles
import (
"sync"
"time"
"github.com/pingcap/tidb/store/tikv/oracle"
"golang.org/x/net/context"
)
var _ oracle.Oracle = &localOracle{}
type localOracle struct {
sync.Mutex
lastTimeStampTS uint64
n uint64
}
// NewLocalOracle creates an Oracle that uses local time as data source.
func NewLocalOracle() oracle.Oracle {
return &localOracle{}
}
func (l *localOracle) IsExpired(lockTS uint64, TTL uint64) bool {
return oracle.GetPhysical(time.Now()) >= oracle.ExtractPhysical(lockTS)+int64(TTL)
}
func (l *localOracle) GetTimestamp(context.Context) (uint64, error) {
l.Lock()
defer l.Unlock()
physical := oracle.GetPhysical(time.Now())
ts := oracle.ComposeTS(physical, 0)
if l.lastTimeStampTS == ts {
l.n++
return ts + l.n, nil
}
l.lastTimeStampTS = ts
l.n = 0
return ts, nil
}
func (l *localOracle) GetTimestampAsync(ctx context.Context) oracle.Future {
return &future{
ctx: ctx,
l: l,
}
}
type future struct {
ctx context.Context
l *localOracle
}
func (f *future) Wait() (uint64, error) {
return f.l.GetTimestamp(f.ctx)
}
func (l *localOracle) Close() {
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/pingcap/tidb.git
git@gitee.com:pingcap/tidb.git
pingcap
tidb
tidb
v2.0.10-binlog

搜索帮助