-
Notifications
You must be signed in to change notification settings - Fork 0
/
txn.go
155 lines (131 loc) · 4.31 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
// 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.
//
// Author: Vivek Menezes (vivek@cockroachlabs.com)
// Author: Andrei Matei (andreimatei1@gmail.com)
package parser
import (
"bytes"
"fmt"
"strings"
)
// 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]
}
// BeginTransaction represents a BEGIN statement
type BeginTransaction struct {
Isolation IsolationLevel
UserPriority UserPriority
}
// Format implements the NodeFormatter interface.
func (node *BeginTransaction) Format(buf *bytes.Buffer, f FmtFlags) {
var sep string
buf.WriteString("BEGIN TRANSACTION")
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)
}
}
// 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 fmt.Errorf("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)
}