forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
perfschema.go
88 lines (72 loc) · 2.4 KB
/
perfschema.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
// 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 perfschema
import (
"reflect"
"github.com/juju/errors"
"github.com/pingcap/tidb/kv"
"github.com/pingcap/tidb/model"
"github.com/pingcap/tidb/table"
"github.com/pingcap/tidb/terror"
)
var (
errInvalidPerfSchemaTable = terror.ClassPerfSchema.New(codeInvalidPerfSchemaTable, "invalid perfschema table")
errInvalidTimerFlag = terror.ClassPerfSchema.New(codeInvalidTimerFlag, "invalid timer flag")
)
// StatementInstrument defines the methods for statement instrumentation points
type StatementInstrument interface {
RegisterStatement(category, name string, elem interface{})
StartStatement(sql string, connID uint64, callerName EnumCallerName, elem interface{}) *StatementState
EndStatement(state *StatementState)
}
// PerfSchema defines the methods to be invoked by the executor
type PerfSchema interface {
// For statement instrumentation only.
StatementInstrument
// GetDBMeta returns db info for PerformanceSchema.
GetDBMeta() *model.DBInfo
// GetTable returns table instance for name.
GetTable(name string) (table.Table, bool)
}
type perfSchema struct {
store kv.Storage
dbInfo *model.DBInfo
tables map[string]*model.TableInfo
mTables map[string]table.Table // Memory tables for perfSchema
stmtHandles []int64
stmtInfos map[reflect.Type]*statementInfo
}
var (
_ PerfSchema = (*perfSchema)(nil)
// perfschema is disabled by default to avoid performance consuming.
enablePerfSchema = false
)
// EnablePerfSchema enables perfschema.
func EnablePerfSchema() {
enablePerfSchema = true
}
// NewPerfHandle creates a new perfSchema on store.
func NewPerfHandle() (PerfSchema, error) {
schema := &perfSchema{}
err := schema.initialize()
if err != nil {
return nil, errors.Trace(err)
}
schema.registerStatements()
return schema, nil
}
// perfschema error codes.
const (
codeInvalidPerfSchemaTable terror.ErrCode = 1
codeInvalidTimerFlag = 2
)