forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
context.go
233 lines (201 loc) · 6.09 KB
/
context.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
// Copyright 2015 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 mock is just for test only.
package mock
import (
"fmt"
"sync"
"time"
"github.com/juju/errors"
"github.com/pingcap/tidb/kv"
"github.com/pingcap/tidb/owner"
"github.com/pingcap/tidb/sessionctx"
"github.com/pingcap/tidb/sessionctx/variable"
"github.com/pingcap/tidb/types"
"github.com/pingcap/tidb/util"
"github.com/pingcap/tidb/util/kvcache"
binlog "github.com/pingcap/tipb/go-binlog"
"golang.org/x/net/context"
)
var _ sessionctx.Context = (*Context)(nil)
// Context represents mocked sessionctx.Context.
type Context struct {
values map[fmt.Stringer]interface{}
txn kv.Transaction // mock global variable
Store kv.Storage // mock global variable
sessionVars *variable.SessionVars
mux sync.Mutex // fix data race in ddl test.
ctx context.Context
cancel context.CancelFunc
sm util.SessionManager
pcache *kvcache.SimpleLRUCache
}
// DDLOwnerChecker returns owner.DDLOwnerChecker.
func (c *Context) DDLOwnerChecker() owner.DDLOwnerChecker {
return nil
}
// SetValue implements sessionctx.Context SetValue interface.
func (c *Context) SetValue(key fmt.Stringer, value interface{}) {
c.values[key] = value
}
// Value implements sessionctx.Context Value interface.
func (c *Context) Value(key fmt.Stringer) interface{} {
value := c.values[key]
return value
}
// ClearValue implements sessionctx.Context ClearValue interface.
func (c *Context) ClearValue(key fmt.Stringer) {
delete(c.values, key)
}
// GetSessionVars implements the sessionctx.Context GetSessionVars interface.
func (c *Context) GetSessionVars() *variable.SessionVars {
return c.sessionVars
}
// Txn implements sessionctx.Context Txn interface.
func (c *Context) Txn() kv.Transaction {
return c.txn
}
// GetClient implements sessionctx.Context GetClient interface.
func (c *Context) GetClient() kv.Client {
if c.Store == nil {
return nil
}
return c.Store.GetClient()
}
// GetGlobalSysVar implements GlobalVarAccessor GetGlobalSysVar interface.
func (c *Context) GetGlobalSysVar(ctx sessionctx.Context, name string) (string, error) {
v := variable.GetSysVar(name)
if v == nil {
return "", variable.UnknownSystemVar.GenByArgs(name)
}
return v.Value, nil
}
// SetGlobalSysVar implements GlobalVarAccessor SetGlobalSysVar interface.
func (c *Context) SetGlobalSysVar(ctx sessionctx.Context, name string, value string) error {
v := variable.GetSysVar(name)
if v == nil {
return variable.UnknownSystemVar.GenByArgs(name)
}
v.Value = value
return nil
}
// PreparedPlanCache implements the sessionctx.Context interface.
func (c *Context) PreparedPlanCache() *kvcache.SimpleLRUCache {
return c.pcache
}
// NewTxn implements the sessionctx.Context interface.
func (c *Context) NewTxn() error {
if c.Store == nil {
return errors.New("store is not set")
}
if c.txn != nil && c.txn.Valid() {
err := c.txn.Commit(c.ctx)
if err != nil {
return errors.Trace(err)
}
}
txn, err := c.Store.Begin()
if err != nil {
return errors.Trace(err)
}
c.txn = txn
return nil
}
// RefreshTxnCtx implements the sessionctx.Context interface.
func (c *Context) RefreshTxnCtx(ctx context.Context) error {
return errors.Trace(c.NewTxn())
}
// ActivePendingTxn implements the sessionctx.Context interface.
func (c *Context) ActivePendingTxn() error {
if c.txn != nil {
return nil
}
if c.Store != nil {
txn, err := c.Store.Begin()
if err != nil {
return errors.Trace(err)
}
c.txn = txn
}
return nil
}
// InitTxnWithStartTS implements the sessionctx.Context interface with startTS.
func (c *Context) InitTxnWithStartTS(startTS uint64) error {
if c.txn != nil {
return nil
}
if c.Store != nil {
membufCap := kv.DefaultTxnMembufCap
if c.sessionVars.ImportingData {
membufCap = kv.ImportingTxnMembufCap
}
txn, err := c.Store.BeginWithStartTS(startTS)
if err != nil {
return errors.Trace(err)
}
txn.SetCap(membufCap)
c.txn = txn
}
return nil
}
// GetStore gets the store of session.
func (c *Context) GetStore() kv.Storage {
return c.Store
}
// GetSessionManager implements the sessionctx.Context interface.
func (c *Context) GetSessionManager() util.SessionManager {
return c.sm
}
// SetSessionManager set the session manager.
func (c *Context) SetSessionManager(sm util.SessionManager) {
c.sm = sm
}
// Cancel implements the Session interface.
func (c *Context) Cancel() {
c.cancel()
}
// GoCtx returns standard sessionctx.Context that bind with current transaction.
func (c *Context) GoCtx() context.Context {
return c.ctx
}
// StoreQueryFeedback stores the query feedback.
func (c *Context) StoreQueryFeedback(_ interface{}) {}
// StmtCommit implements the sessionctx.Context interface.
func (c *Context) StmtCommit() {
}
// StmtRollback implements the sessionctx.Context interface.
func (c *Context) StmtRollback() {
}
// StmtGetMutation implements the sessionctx.Context interface.
func (c *Context) StmtGetMutation(tableID int64) *binlog.TableMutation {
return nil
}
// StmtAddDirtyTableOP implements the sessionctx.Context interface.
func (c *Context) StmtAddDirtyTableOP(op int, tid int64, handle int64, row []types.Datum) {
}
// NewContext creates a new mocked sessionctx.Context.
func NewContext() *Context {
ctx, cancel := context.WithCancel(context.Background())
sctx := &Context{
values: make(map[fmt.Stringer]interface{}),
sessionVars: variable.NewSessionVars(),
ctx: ctx,
cancel: cancel,
}
sctx.sessionVars.MaxChunkSize = 2
sctx.sessionVars.StmtCtx.TimeZone = time.UTC
return sctx
}
// HookKeyForTest is as alias, used by context.WithValue.
// golint forbits using string type as key in context.WithValue.
type HookKeyForTest string