-
Notifications
You must be signed in to change notification settings - Fork 415
/
Copy pathgenerate_exceptions.py
executable file
·188 lines (138 loc) · 5.13 KB
/
generate_exceptions.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
#!/usr/bin/env python3
#
# Copyright (C) 2016-present the asyncpg authors and contributors
# <see AUTHORS file>
#
# This module is part of asyncpg and is released under
# the Apache 2.0 License: http://www.apache.org/licenses/LICENSE-2.0
import argparse
import builtins
import re
import string
import textwrap
from asyncpg.exceptions import _base as apg_exc
_namemap = {
'08001': 'ClientCannotConnectError',
'08004': 'ConnectionRejectionError',
'08006': 'ConnectionFailureError',
'38002': 'ModifyingExternalRoutineSQLDataNotPermittedError',
'38003': 'ProhibitedExternalRoutineSQLStatementAttemptedError',
'38004': 'ReadingExternalRoutineSQLDataNotPermittedError',
'39004': 'NullValueInExternalRoutineNotAllowedError',
'42000': 'SyntaxOrAccessError',
'XX000': 'InternalServerError',
}
_subclassmap = {
# Special subclass of FeatureNotSupportedError
# raised by Postgres in RevalidateCachedQuery.
'0A000': ['InvalidCachedStatementError']
}
def _get_error_name(sqlstatename, msgtype, sqlstate):
if sqlstate in _namemap:
return _namemap[sqlstate]
parts = string.capwords(sqlstatename.replace('_', ' ')).split(' ')
if parts[-1] in {'Exception', 'Failure'}:
parts[-1] = 'Error'
if parts[-1] != 'Error' and msgtype != 'W':
parts.append('Error')
for i, part in enumerate(parts):
if part == 'Fdw':
parts[i] = 'FDW'
elif part == 'Io':
parts[i] = 'IO'
elif part == 'Plpgsql':
parts[i] = 'PLPGSQL'
elif part == 'Sql':
parts[i] = 'SQL'
errname = ''.join(parts)
if hasattr(builtins, errname):
errname = 'Postgres' + errname
return errname
def main():
parser = argparse.ArgumentParser(
description='generate _exceptions.py from postgres/errcodes.txt')
parser.add_argument('errcodesfile', type=str,
help='path to errcodes.txt in PostgreSQL source')
args = parser.parse_args()
with open(args.errcodesfile, 'r') as errcodes_f:
errcodes = errcodes_f.read()
section_re = re.compile(r'^Section: .*')
tpl = """\
class {clsname}({base}):
{docstring}{sqlstate}"""
new_section = True
section_class = None
buf = '# GENERATED FROM postgresql/src/backend/utils/errcodes.txt\n' + \
'# DO NOT MODIFY, use tools/generate_exceptions.py to update\n\n' + \
'from ._base import * # NOQA\nfrom . import _base\n\n\n'
classes = []
clsnames = set()
def _add_class(clsname, base, sqlstate, docstring):
if sqlstate:
sqlstate = "sqlstate = '{}'".format(sqlstate)
else:
sqlstate = ''
txt = tpl.format(clsname=clsname, base=base, sqlstate=sqlstate,
docstring=docstring)
if not sqlstate and not docstring:
txt += 'pass'
if len(txt.splitlines()[0]) > 79:
txt = txt.replace('(', '(\n ', 1)
classes.append(txt)
clsnames.add(clsname)
for line in errcodes.splitlines():
if not line.strip() or line.startswith('#'):
continue
if section_re.match(line):
new_section = True
continue
parts = re.split(r'\s+', line)
if len(parts) < 4:
continue
sqlstate = parts[0]
msgtype = parts[1]
name = parts[3]
clsname = _get_error_name(name, msgtype, sqlstate)
if clsname in {'SuccessfulCompletionError'}:
continue
if clsname in clsnames:
raise ValueError(
'duplicate exception class name: {}'.format(clsname))
if new_section:
section_class = clsname
if clsname == 'PostgresWarning':
base = '_base.PostgresLogMessage, Warning'
else:
if msgtype == 'W':
base = 'PostgresWarning'
else:
base = '_base.PostgresError'
new_section = False
else:
base = section_class
existing = apg_exc.PostgresMessageMeta.get_message_class_for_sqlstate(
sqlstate)
if (existing and existing is not apg_exc.UnknownPostgresError and
existing.__doc__):
docstring = '"""{}"""\n\n '.format(existing.__doc__)
else:
docstring = ''
_add_class(clsname=clsname, base=base, sqlstate=sqlstate,
docstring=docstring)
subclasses = _subclassmap.get(sqlstate, [])
for subclass in subclasses:
existing = getattr(apg_exc, subclass, None)
if existing and existing.__doc__:
docstring = '"""{}"""\n\n '.format(existing.__doc__)
else:
docstring = ''
_add_class(clsname=subclass, base=clsname, sqlstate=None,
docstring=docstring)
buf += '\n\n\n'.join(classes)
_all = textwrap.wrap(', '.join('{!r}'.format(c) for c in sorted(clsnames)))
buf += '\n\n\n__all__ = (\n {}\n)'.format(
'\n '.join(_all))
buf += '\n\n__all__ += _base.__all__'
print(buf)
if __name__ == '__main__':
main()