-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathicool_exceptions.py
310 lines (239 loc) · 9.97 KB
/
icool_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
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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
def valid_command(command_dict, command, value, namelist):
"""
Checks whether command is valid in the following respects:
(1) It is a valid variable for a namelist;
(2) The type assigned to the variable is the correct type.
"""
try:
if command in command_dict.keys():
dictionary_entry = command_dict[command]
command_type = dictionary_entry['type']
try:
if check_type(command_type, value.__class__.__name__):
return 0
else:
raise IncorrectType('Incorrect type', command_type, value.__class__.__name__)
except IncorrectType as e:
print e
return -1
else:
raise UnknownVariable('Unknown variable', command, namelist)
except UnknownVariable as e:
print e
return -1
def check_namelists(title, cont, bmt, ints, nhs, nsc, nzh, nrh, nem, ncv, sec, name, metadata):
"""
Checks namelists are correct type.
"""
try:
if cont is not None and cont.__class__.__name__ is not 'Cont':
raise NamelistObjectTypeError('Namelist object type error', cont, 'Cont')
if sec is not None and sec.__class__.__name__ is not 'Section':
raise NamelistObjectTypeError('Namelist object type error', sec, 'Section')
except NamelistObjectTypeError as e:
print e
return -1
def check_type(icool_type, provided_type):
"""Checks types comparing ICOOL required types with python types
"""
if icool_type == 'Real':
if provided_type == 'int' or provided_type == 'long' or provided_type == 'float':
return True
else:
return False
if icool_type == 'Integer':
if provided_type == 'int' or provided_type == 'long':
return True
else:
return False
if icool_type == 'Logical':
if provided_type == 'bool':
return True
else:
return False
def check_command_params(cls, input_dict):
pass
def check_model_keyword_args(input_dict, cls):
"""
Checks if ALL keywords for a model are specified. If not, raises InputArgumentsError
If model is not specified, raises ModelNotSpecifiedError.
Initialization of a model (e.g., Accel, SOL, etc. requires all keywords specified)
"""
#models = cls.models
try:
if not check_model_specified(input_dict):
actual_dict = {'Unknown': 0}
raise InputArgumentsError('Model most be specified', input_dict, actual_dict)
model = input_dict['model']
actual_dict = cls.models[str(model)]['parms']
if sorted(input_dict.keys()) != sorted(actual_dict.keys()):
raise InputArgumentsError('Model parameter specification error', input_dict, actual_dict)
except InputArgumentsError as e:
print e
return -1
return 0
def check_keyword_in_model(keyword, cls):
"""
Checks if ALL keywords for a model are specified. If not, raises InputArgumentsError
If model is not specified, raises ModelNotSpecifiedError.
Initialization of a model (e.g., Accel, SOL, etc. requires all keywords specified)
"""
if keyword in cls.get_model_dict(cls.model):
return True
else:
return False
def check_partial_keywords_for_current_model(input_dict, cls):
"""
Checks whether the keywords specified for a current model correspond to that model.
"""
actual_dict = (cls, cls.model)
for key in input_dict:
if not key in cls.actual:
raise InputArgumentsError('Input Arguments Error', input_dict, actual_dict)
return True
def check_partial_keywords_for_new_model(input_dict, cls):
"""
Checks whether the keywords specified for a new model correspond to that model.
"""
model = input_dict['model']
actual_dict = get_model_dict(cls, model)
for key in input_dict:
if not key in cls.actual:
raise InputArgumentsError('Input Arguments Error', input_dict, actual_dict)
return True
def check_model_specified(input_dict):
if 'model' in input_dict.keys():
return True
else:
return False
def get_model_dict(cls, model):
models = cls.models
return models[str(model)][1]
class Error(Exception):
"""Base class for ICOOL input exceptions."""
pass
class InputError(Error):
"""General exception raised for errors in the input.
Attributes:
expr -- input expression in which the error occurred
msg -- explanation of the error
"""
def __init__(self, expr, msg):
self.expr = expr
self.msg = msg
def __str__(self):
string = self.msg + ' ' + self.expr
return repr(string)
class InvalidType(InputError):
"""Exception raised for attempt to assign incorrect type to a variable. Required types for """
"""various variables are indicated in the associated dictionary 'type' field for the """
"""associated namelist."""
def __init__(self, expected_type, actual_type):
InputError.__init__(self, 'Incorrect type.', 'Incorrect type.')
self.expected_type = expected_type
self.actual_type = actual_type
def __str__(self):
msg = "Invalid type. Expected " + self.expected_type + " but instead got " + self.actual_type
return repr(msg)
class UnknownVariable(InputError):
"""Exception raised for unknown variable in a given namelist."""
def __init__(self, variable, namelist):
InputError.__init__(self, 'Unknown variable', 'Unknown variable.')
self.variable = variable
self.namelist = namelist
def __str__(self):
msg = 'Unknown variable: ' + self.variable + ' in namelist: ' + self.namelist
return repr(msg)
class NamelistObjectTypeError(InputError):
"""Exception raised for incorrect type of namelist object.
This error is raised if the type of a namelist assigned to a namelist variable does not match
the expected type.
"""
def __init__(self, expr, namelist, type):
InputError.__init__(self, expr, 'Namelist object type error.')
self.namelist = namelist
self.type = type
def __str__(self):
msg = 'Incorrect Namelist type object. Expected: ' + self.type + ' but received: ' + \
self.namelist.__class__.__name__
return repr(msg)
class IncorrectObjectCommand(InputError):
"""Exception raised for attempt to add incorrect command to an object.
For example, Section, Cell and Background only allow certain commands."""
def __init__(self, expr, object, command):
self.object = object
self.command = command
def __str__(self):
msg = 'Command: ' + self.command + ' is not supported in object: ' + self.object
return repr(msg)
class InputArgumentsError(InputError):
"""Exception raised for unsupported input arguments variable."""
def __init__(self, expr, input_dict, actual_dict):
InputError.__init__(self, expr, 'Input arguments error.')
self.input_dict = input_dict
self.actual_dict = actual_dict
def __str__(self):
received = ""
for key in sorted(self.input_dict.keys()):
received += str(key)
received += ' '
expected = ""
for key in sorted(self.actual_dict.keys()):
expected += str(key)
expected += ' '
msg = 'Input arguments error.\nReceived: \n' + received + '\nExpected: \n' + expected
return msg
class SetAttributeError(InputError):
"""Exception raised for attempt to set improper or private attribute for an object."""
def __init__(self, expr, cls, attribute):
InputError.__init__(self, expr, 'Input arguments error.')
self.cls = cls
self.attribute = attribute
def __str__(self):
msg = 'Illegal attempt to set attribute ' + self.attribute + ' on object ' + str(type(self.cls))
return msg
class InvalidCommandParameters(InputError):
def __init__(self, specified_parameters, allowed_parameters):
self.specified_parameters = specified_parameters
self.allowed_parameters = allowed_parameters
def __str__(self):
specified = ' '.join(self.specified_parameters)
allowed = ' '.join(self.allowed_parameters)
msg = '\nInvalid command parameter(s).\nYou specified: ' + specified + '\nAllowed command parameters are:\n' + allowed
return msg
class InvalidCommandParameter(InputError):
def __init__(self, command_parameter, allowed_parameters):
self.command_parameter = command_parameter
self.allowed_parameters = allowed_parameters
def __str__(self):
msg = '\nInvalid command parameter: ' + str(self.command_parameter) + '\nAllowed command parameters are:\n' + ' '.join(self.allowed_parameters)
return msg
class ModelNotSpecified(InputError):
def __init__(self, models):
self.allowed_models = models
def __str__(self):
msg = '\nModel not specified. ' + '\nAllowed models are:\n' + ' '.join(self.allowed_models)
return msg
class InvalidModel(InputError):
def __init__(self, model, allowed_models):
self.model = model
self.allowed_models = allowed_models
def __str__(self):
msg = '\nInvalid model: ' + str(self.model) + '\nAllowed models are:\n' + ' '.join(self.allowed_models)
return msg
class MissingCommandParameter(InputError):
def __init__(self, command_parameter, allowed_parameters):
self.command_parameter = command_parameter
self.allowed_parameters = allowed_parameters
def __str__(self):
msg = '\nMissing command parameter: ' + str(self.command_parameter)
return msg
class ContainerCommandError(InputError):
def __init__(self, command, allowed_commands):
self.allowed_commands = allowed_commands
self.command = command
def __str__(self):
msg = '\nIllegal container command: ' + str(self.command)
return msg
class FieldError(InputError):
pass