-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathxact_handling.c
214 lines (173 loc) · 3.99 KB
/
xact_handling.c
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
/* ------------------------------------------------------------------------
*
* xact_handling.c
* Transaction-specific locks and other functions
*
* Copyright (c) 2016, Postgres Professional
*
* ------------------------------------------------------------------------
*/
#include "xact_handling.h"
#include "utils.h"
#include "postgres.h"
#include "access/transam.h"
#include "access/xact.h"
#include "catalog/catalog.h"
#include "miscadmin.h"
#include "storage/lmgr.h"
#include "utils/inval.h"
static inline void SetLocktagRelationOid(LOCKTAG *tag, Oid relid);
static inline bool do_we_hold_the_lock(Oid relid, LOCKMODE lockmode);
static LockAcquireResult
LockAcquireOid(Oid relid, LOCKMODE lockmode, bool sessionLock, bool dontWait)
{
LOCKTAG tag;
LockAcquireResult res;
/* Create a tag for lock */
SetLocktagRelationOid(&tag, relid);
res = LockAcquire(&tag, lockmode, sessionLock, dontWait);
/*
* Now that we have the lock, check for invalidation messages;
* see notes in LockRelationOid.
*/
if (res != LOCKACQUIRE_ALREADY_HELD)
AcceptInvalidationMessages();
return res;
}
/*
* Acquire lock and return LockAcquireResult.
*/
LockAcquireResult
xact_lock_rel(Oid relid, LOCKMODE lockmode, bool nowait)
{
return LockAcquireOid(relid, lockmode, false, nowait);
}
/*
* Check whether we already hold a lock that
* might conflict with partition spawning BGW.
*/
bool
xact_bgw_conflicting_lock_exists(Oid relid)
{
#if PG_VERSION_NUM >= 90600
/* We use locking groups for 9.6+ */
return false;
#else
LOCKMODE lockmode;
/* Try each lock >= ShareUpdateExclusiveLock */
for (lockmode = ShareUpdateExclusiveLock;
lockmode <= AccessExclusiveLock;
lockmode++)
{
if (do_we_hold_the_lock(relid, lockmode))
return true;
}
return false;
#endif
}
/*
* Check if current transaction's level is READ COMMITTED.
*/
bool
xact_is_level_read_committed(void)
{
if (XactIsoLevel <= XACT_READ_COMMITTED)
return true;
return false;
}
/*
* Check if 'stmt' is BEGIN/ROLLBACK/etc [TRANSACTION] statement.
*/
bool
xact_is_transaction_stmt(Node *stmt)
{
if (!stmt)
return false;
if (IsA(stmt, TransactionStmt))
return true;
return false;
}
/*
* Check if 'stmt' is SET ('name' | [TRANSACTION]) statement.
*/
bool
xact_is_set_stmt(Node *stmt, const char *name)
{
/* Check that SET TRANSACTION is implemented via VariableSetStmt */
Assert(VAR_SET_MULTI > 0);
if (!stmt)
return false;
if (!IsA(stmt, VariableSetStmt))
return false;
if (!name)
return true;
else
{
char *set_name = ((VariableSetStmt *) stmt)->name;
if (set_name && pg_strcasecmp(name, set_name) == 0)
return true;
}
return false;
}
/*
* Check if 'stmt' is ALTER EXTENSION pg_pathman.
*/
bool
xact_is_alter_pathman_stmt(Node *stmt)
{
if (!stmt)
return false;
if (!IsA(stmt, AlterExtensionStmt))
return false;
if (pg_strcasecmp(((AlterExtensionStmt *) stmt)->extname, "pg_pathman") == 0)
return true;
return false;
}
/*
* Check if object is visible to newer transactions.
*/
bool
xact_object_is_visible(TransactionId obj_xmin)
{
return TransactionIdEquals(obj_xmin, FrozenTransactionId) ||
TransactionIdPrecedes(obj_xmin, GetCurrentTransactionId());
}
/*
* Do we hold the specified lock?
*/
#ifdef __GNUC__
__attribute__((unused))
#endif
static inline bool
do_we_hold_the_lock(Oid relid, LOCKMODE lockmode)
{
LOCKTAG tag;
/* Create a tag for lock */
SetLocktagRelationOid(&tag, relid);
/* If lock is alredy held, release it one time (decrement) */
switch (LockAcquire(&tag, lockmode, false, true))
{
case LOCKACQUIRE_ALREADY_HELD:
LockRelease(&tag, lockmode, false);
return true;
case LOCKACQUIRE_OK:
LockRelease(&tag, lockmode, false);
return false;
default:
return false;
}
}
/*
* SetLocktagRelationOid
* Set up a locktag for a relation, given only relation OID
*/
static inline void
SetLocktagRelationOid(LOCKTAG *tag, Oid relid)
{
Oid dbid;
if (IsSharedRelation(relid))
dbid = InvalidOid;
else
dbid = MyDatabaseId;
SET_LOCKTAG_RELATION(*tag, dbid, relid);
}