-
Notifications
You must be signed in to change notification settings - Fork 0
/
txn.go
215 lines (183 loc) · 5.96 KB
/
txn.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
// Copyright 2015 The Cockroach Authors.
//
// 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,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
// implied. See the License for the specific language governing
// permissions and limitations under the License.
package parser
import (
"bytes"
"errors"
"fmt"
"strings"
"github.com/cockroachdb/cockroach/pkg/sql/pgwire/pgerror"
)
// IsolationLevel holds the isolation level for a transaction.
type IsolationLevel int
// IsolationLevel values
const (
UnspecifiedIsolation IsolationLevel = iota
SnapshotIsolation
SerializableIsolation
)
var isolationLevelNames = [...]string{
UnspecifiedIsolation: "UNSPECIFIED",
SnapshotIsolation: "SNAPSHOT",
SerializableIsolation: "SERIALIZABLE",
}
func (i IsolationLevel) String() string {
if i < 0 || i > IsolationLevel(len(isolationLevelNames)-1) {
return fmt.Sprintf("IsolationLevel(%d)", i)
}
return isolationLevelNames[i]
}
// UserPriority holds the user priority for a transaction.
type UserPriority int
// UserPriority values
const (
UnspecifiedUserPriority UserPriority = iota
Low
Normal
High
)
var userPriorityNames = [...]string{
UnspecifiedUserPriority: "UNSPECIFIED",
Low: "LOW",
Normal: "NORMAL",
High: "HIGH",
}
func (up UserPriority) String() string {
if up < 0 || up > UserPriority(len(userPriorityNames)-1) {
return fmt.Sprintf("UserPriority(%d)", up)
}
return userPriorityNames[up]
}
// ReadWriteMode holds the read write mode for a transaction.
type ReadWriteMode int
// ReadWriteMode values
const (
UnspecifiedReadWriteMode ReadWriteMode = iota
ReadOnly
ReadWrite
)
var readWriteModeNames = [...]string{
UnspecifiedReadWriteMode: "UNSPECIFIED",
ReadOnly: "ONLY",
ReadWrite: "WRITE",
}
func (ro ReadWriteMode) String() string {
if ro < 0 || ro > ReadWriteMode(len(readWriteModeNames)-1) {
return fmt.Sprintf("ReadWriteMode(%d)", ro)
}
return readWriteModeNames[ro]
}
// TransactionModes holds the transaction modes for a transaction.
type TransactionModes struct {
Isolation IsolationLevel
UserPriority UserPriority
ReadWriteMode ReadWriteMode
}
// Format implements the NodeFormatter interface.
func (node *TransactionModes) Format(buf *bytes.Buffer, f FmtFlags) {
var sep string
if node.Isolation != UnspecifiedIsolation {
fmt.Fprintf(buf, " ISOLATION LEVEL %s", node.Isolation)
sep = ","
}
if node.UserPriority != UnspecifiedUserPriority {
fmt.Fprintf(buf, "%s PRIORITY %s", sep, node.UserPriority)
sep = ","
}
if node.ReadWriteMode != UnspecifiedReadWriteMode {
fmt.Fprintf(buf, "%s READ %s", sep, node.ReadWriteMode)
}
}
func (node *TransactionModes) merge(other TransactionModes) error {
if other.Isolation != UnspecifiedIsolation {
if node.Isolation != UnspecifiedIsolation {
return errors.New("isolation level specified multiple times")
}
node.Isolation = other.Isolation
}
if other.UserPriority != UnspecifiedUserPriority {
if node.UserPriority != UnspecifiedUserPriority {
return errors.New("user priority specified multiple times")
}
node.UserPriority = other.UserPriority
}
if other.ReadWriteMode != UnspecifiedReadWriteMode {
if node.ReadWriteMode != UnspecifiedReadWriteMode {
return errors.New("read mode specified multiple times")
}
node.ReadWriteMode = other.ReadWriteMode
}
return nil
}
// BeginTransaction represents a BEGIN statement
type BeginTransaction struct {
Modes TransactionModes
}
// Format implements the NodeFormatter interface.
func (node *BeginTransaction) Format(buf *bytes.Buffer, f FmtFlags) {
buf.WriteString("BEGIN TRANSACTION")
node.Modes.Format(buf, f)
}
// CommitTransaction represents a COMMIT statement.
type CommitTransaction struct{}
// Format implements the NodeFormatter interface.
func (node *CommitTransaction) Format(buf *bytes.Buffer, f FmtFlags) {
buf.WriteString("COMMIT TRANSACTION")
}
// RollbackTransaction represents a ROLLBACK statement.
type RollbackTransaction struct{}
// Format implements the NodeFormatter interface.
func (node *RollbackTransaction) Format(buf *bytes.Buffer, f FmtFlags) {
buf.WriteString("ROLLBACK TRANSACTION")
}
// RestartSavepointName is the only savepoint name that we accept, modulo
// capitalization.
const RestartSavepointName string = "COCKROACH_RESTART"
// ValidateRestartCheckpoint checks that a checkpoint name is our magic restart
// value.
// We accept everything with the desired prefix because at least the C++ libpqxx
// appends sequence numbers to the savepoint name specified by the user.
func ValidateRestartCheckpoint(savepoint string) error {
if !strings.HasPrefix(strings.ToUpper(savepoint), RestartSavepointName) {
return pgerror.NewErrorf(pgerror.CodeFeatureNotSupportedError, "SAVEPOINT not supported except for %s", RestartSavepointName)
}
return nil
}
// Savepoint represents a SAVEPOINT <name> statement.
type Savepoint struct {
Name string
}
// Format implements the NodeFormatter interface.
func (node *Savepoint) Format(buf *bytes.Buffer, f FmtFlags) {
buf.WriteString("SAVEPOINT ")
buf.WriteString(node.Name)
}
// ReleaseSavepoint represents a RELEASE SAVEPOINT <name> statement.
type ReleaseSavepoint struct {
Savepoint string
}
// Format implements the NodeFormatter interface.
func (node *ReleaseSavepoint) Format(buf *bytes.Buffer, f FmtFlags) {
buf.WriteString("RELEASE SAVEPOINT ")
buf.WriteString(node.Savepoint)
}
// RollbackToSavepoint represents a ROLLBACK TO SAVEPOINT <name> statement.
type RollbackToSavepoint struct {
Savepoint string
}
// Format implements the NodeFormatter interface.
func (node *RollbackToSavepoint) Format(buf *bytes.Buffer, f FmtFlags) {
buf.WriteString("ROLLBACK TRANSACTION TO SAVEPOINT ")
buf.WriteString(node.Savepoint)
}