-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathcompiler.py
242 lines (199 loc) · 7.29 KB
/
compiler.py
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
234
235
236
237
238
239
240
241
242
import collections
import hashlib
from pgtrigger import utils
_unset = object()
class UpsertTriggerSql(collections.UserString):
"""SQL for inserting or updating a trigger
This class is intended to be versionable since migrations
reference it. Older migrations need to be able to point
to earlier versions of the installation template used
for triggers.
"""
def get_template(self):
"""
This is v1 of the installation template. Do NOT edit
this template unless you are absolutely sure it is
backwards compatible, otherwise it may affect migrations
that reference it.
If it does need to be changed, we will need to introduce
a version variable to be backwards compatible.
Note: Postgres 14 has CREATE OR REPLACE syntax that
we might consider using. This SQL is executed in
a transaction, so dropping and recreating shouldn't
be a problem.
"""
return """
CREATE OR REPLACE FUNCTION {ignore_func_name}(
trigger_name NAME
)
RETURNS BOOLEAN AS $$
DECLARE
_pgtrigger_ignore TEXT[];
_result BOOLEAN;
BEGIN
BEGIN
SELECT INTO _pgtrigger_ignore
CURRENT_SETTING('pgtrigger.ignore');
EXCEPTION WHEN OTHERS THEN
END;
IF _pgtrigger_ignore IS NOT NULL THEN
SELECT trigger_name = ANY(_pgtrigger_ignore)
INTO _result;
RETURN _result;
ELSE
RETURN FALSE;
END IF;
END;
$$ LANGUAGE plpgsql;
CREATE OR REPLACE FUNCTION {pgid}()
RETURNS TRIGGER AS $$
{declare}
BEGIN
IF ({ignore_func_name}(TG_NAME) IS TRUE) THEN
IF (TG_OP = 'DELETE') THEN
RETURN OLD;
ELSE
RETURN NEW;
END IF;
END IF;
{func}
END;
$$ LANGUAGE plpgsql;
DROP TRIGGER IF EXISTS {pgid} ON {table};
CREATE {constraint} TRIGGER {pgid}
{when} {operation} ON {table}
{timing}
{referencing}
FOR EACH {level} {condition}
EXECUTE PROCEDURE {execute};
COMMENT ON TRIGGER {pgid} ON {table} IS '{hash}';
"""
def get_defaults(self, pgid):
"""
These are the default values for the installation
template. Do NOT edit these default values. Keys
may be added, but existing keys should never be updated,
otherwise existing migrations may no longer be correct.
If it does need to be changed, we will need to introduce
a version variable to be backwards compatible.
"""
return {
"ignore_func_name": '"public"._pgtrigger_should_ignore',
"declare": "",
"constraint": "",
"timing": "",
"referencing": "",
"level": "ROW",
"condition": "",
"execute": f"{pgid}()",
}
def __init__(
self,
*,
ignore_func_name=_unset,
pgid,
declare=_unset,
func,
table,
constraint=_unset,
when,
operation,
timing=_unset,
referencing=_unset,
level=_unset,
condition=_unset,
execute=_unset,
hash=None,
):
"""Initialize the SQL and store it in the `.data` attribute."""
self.kwargs = {
key: str(val)
for key, val in locals().items()
if key not in ("self", "hash") and val is not _unset
}
self.defaults = self.get_defaults(pgid)
sql_args = {**self.defaults, **self.kwargs, **{"table": utils.quote(table)}}
self.hash = (
hash
or hashlib.sha1(
self.get_template().format(**{**sql_args, **{"hash": ""}}).encode()
).hexdigest()
)
self.data = self.get_template().format(**{**sql_args, **{"hash": self.hash}})
self.pgid = pgid
self.table = table
def deconstruct(self):
"""
Serialize the construction of this class so that it can be used in migrations.
"""
kwargs = {
key: val for key, val in self.kwargs.items() if self.defaults.get(key, _unset) != val
}
path = f"{self.__class__.__module__}.{self.__class__.__name__}"
return path, [], {**kwargs, **{"hash": self.hash}}
class _TriggerDdlSql(collections.UserString):
def get_template(self):
raise NotImplementedError
def __init__(self, *, pgid, table):
"""Initialize the SQL and store it in the `.data` attribute."""
sql_args = {**locals(), **{"table": utils.quote(table)}}
self.data = self.get_template().format(**sql_args)
class DropTriggerSql(_TriggerDdlSql):
"""SQL for dropping a trigger
Triggers are dropped in migrations, so any edits to
the drop trigger template should be backwards compatible
or versioned. I.e. older migrations need to always point to
the SQL here
"""
def get_template(self):
return "DROP TRIGGER IF EXISTS {pgid} ON {table};"
class EnableTriggerSql(_TriggerDdlSql):
"""SQL for enabling a trigger
We don't currently perform enabling/disabling in migrations,
so this SQL can be changed without consequences to past
migrations.
"""
def get_template(self):
return "ALTER TABLE {table} ENABLE TRIGGER {pgid};"
class DisableTriggerSql(_TriggerDdlSql):
"""SQL for disabling a trigger
We don't currently perform enabling/disabling in migrations,
so this SQL can be changed without consequences to past
migrations.
"""
def get_template(self):
return "ALTER TABLE {table} DISABLE TRIGGER {pgid};"
class Trigger:
"""
A compiled trigger that's added to internal model state of migrations. It consists
of a name and the trigger SQL for migrations.
"""
def __init__(self, *, name, sql):
self.name = name
self.sql = sql
assert isinstance(sql, UpsertTriggerSql)
def __eq__(self, other):
return (
self.__class__ == other.__class__ and self.name == other.name and self.sql == other.sql
)
@property
def install_sql(self):
return str(self.sql)
@property
def uninstall_sql(self):
return str(DropTriggerSql(pgid=self.sql.pgid, table=self.sql.table))
@property
def enable_sql(self):
return str(EnableTriggerSql(pgid=self.sql.pgid, table=self.sql.table))
@property
def disable_sql(self):
return str(DisableTriggerSql(pgid=self.sql.pgid, table=self.sql.table))
@property
def hash(self):
return self.sql.hash
def deconstruct(self):
"""
Serialize the construction of this class so that it can be used in migrations.
"""
path = f"{self.__class__.__module__}.{self.__class__.__name__}"
return path, [], {"name": self.name, "sql": self.sql}