forked from postgrespro/testgres.pg_conf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbugcheck_error.py
More file actions
243 lines (192 loc) · 8.01 KB
/
bugcheck_error.py
File metadata and controls
243 lines (192 loc) · 8.01 KB
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
243
# //////////////////////////////////////////////////////////////////////////////
# Postgres Pro. PostgreSQL Configuration Python Library.
import typing
# //////////////////////////////////////////////////////////////////////////////
# BugCheckError
class BugCheckError:
@staticmethod
def UnkObjectDataType(objectType: type):
assert objectType is not None
assert type(objectType) is type
errMsg = "[BUG CHECK] Unknown object data type [{0}].".format(objectType)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def MultipleDefOfOptionIsFound(optName: str, count: int):
assert type(optName) is str
assert type(count) is int
errMsg = (
"[BUG CHECK] Multiple definitition of option [{0}] is found - {1}.".format(
optName, count
)
)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def UnkOptObjectDataType(optName: str, optDataType: type):
assert type(optName) is str
assert type(optDataType) is type
errMsg = (
"[BUG CHECK] Unknown type of the option object data [{0}] - {1}.".format(
optName, optDataType.__name__
)
)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def MultipleDefOfFileIsFound(fileName: str, count: int):
assert type(fileName) is str
assert type(count) is int
errMsg = (
"[BUG CHECK] Multiple definitition of file [{0}] is found - {1}.".format(
fileName, count
)
)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def UnkFileObjectDataType(fileName: str, fileDataType: type):
assert type(fileName) is str
assert type(fileDataType) is type
errMsg = "[BUG CHECK] Unknown type of the file object data [{0}] - {1}.".format(
fileName, fileDataType.__name__
)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def UnkFileDataStatus(filePath: str, fileStatus: typing.Any):
assert type(filePath) is str
assert fileStatus is not None
errMsg = "[BUG CHECK] Unknown file data status [{0}] - {1}.".format(
filePath, fileStatus
)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def FileIsNotFoundInIndex(fileKey: str, filePath: str):
assert type(fileKey) is str
assert type(filePath) is str
errMsg = "[BUG CHECK] File [{0}][{1}] is not found in index.".format(
fileKey, filePath
)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def OptionIsNotFoundInIndex(optName: str):
assert type(optName) is str
errMsg = "[BUG CHECK] Option [{0}] is not found in index.".format(optName)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def OptionIsNotFoundInFileLine(optName: str):
assert type(optName) is str
errMsg = "[BUG CHECK] Option [{0}] is not found in file line.".format(optName)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def CommentIsNotFoundInFileLine():
errMsg = "[BUG CHECK] Comment is not found in file line."
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def IncludeIsNotFoundInFileLine():
errMsg = "[BUG CHECK] Include is not found in file line."
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def FileLineIsNotFoundInFile():
errMsg = "[BUG CHECK] FileLine is not found in file."
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def OptionHandlerToPrepareSetValueIsNotDefined(name: str):
assert type(name) is str
errMsg = "[BUG CHECK] OptionHandlerToPrepareSetValue for [{0}] is not defined.".format(
name
)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def OptionHandlerToPrepareGetValueIsNotDefined(name: str):
assert type(name) is str
errMsg = "[BUG CHECK] OptionHandlerToPrepareGetValue for [{0}] is not defined.".format(
name
)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def OptionHandlerToPrepareSetValueItemIsNotDefined(name: str):
assert type(name) is str
errMsg = "[BUG CHECK] OptionHandlerToPrepareSetValueItem for [{0}] is not defined.".format(
name
)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def OptionHandlerToSetValueIsNotDefined(name: str):
assert type(name) is str
errMsg = "[BUG CHECK] OptionHandlerToSetValue for [{0}] is not defined.".format(
name
)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def OptionHandlerToGetValueIsNotDefined(name: str):
assert type(name) is str
errMsg = "[BUG CHECK] OptionHandlerToGetValue for [{0}] is not defined.".format(
name
)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def OptionHandlerToAddOptionIsNotDefined(name: str):
assert type(name) is str
errMsg = (
"[BUG CHECK] OptionHandlerToAddOption for [{0}] is not defined.".format(
name
)
)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def OptionHandlerToSetValueItemIsNotDefined(name: str):
assert type(name) is str
errMsg = (
"[BUG CHECK] OptionHandlerToSetValueItem for [{0}] is not defined.".format(
name
)
)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def OptionHandlerToWriteIsNotDefined(name: str):
assert type(name) is str
errMsg = "[BUG CHECK] OptionHandlerToWrite for [{0}] is not defined.".format(
name
)
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def UnexpectedSituation(bugcheckSrc: str, bugcheckPoint: str, explain: str):
assert type(bugcheckSrc) is str
assert type(bugcheckPoint) is str
assert explain is None or type(explain) is str
errMsg = "[BUG CHECK] Unexpected situation in [{0}][{1}].".format(
bugcheckSrc, bugcheckPoint
)
if explain is not None and explain != "":
errMsg += " "
errMsg += explain
assert errMsg[-1] == "."
raise Exception(errMsg)
# --------------------------------------------------------------------
@staticmethod
def UnknownOptionValueType(optionName: str, typeOfOptionValue: type):
assert type(optionName) is str
assert optionName != ""
assert type(typeOfOptionValue) is type
errMsg = "[BUG CHECK] Unknown value type [{1}] of option [{0}].".format(
optionName, typeOfOptionValue.__name__
)
raise Exception(errMsg)
# //////////////////////////////////////////////////////////////////////////////