Browse Source

Moved new class exceptions in exceptions.py

m.orban 8 years ago
parent
commit
67bd4087a9

+ 12
- 0
lodel/exceptions.py View File

30
 #@note Designed to be raised in dramatic case
30
 #@note Designed to be raised in dramatic case
31
 class LodelFatalError(Exception):
31
 class LodelFatalError(Exception):
32
     pass
32
     pass
33
+
34
+##@brief Designed to be a catched exception.
35
+#
36
+#@note Designed to be raised in DataHandler
37
+class DataNoneValid(Exception):
38
+    pass
39
+    
40
+##@brief Designed to be a catched exception.
41
+#
42
+#@note Designed to be raised in DataHandler
43
+class FieldValidationError(Exception):
44
+    pass

+ 1
- 6
lodel/leapi/datahandlers/base_classes.py View File

11
 from lodel.exceptions import *
11
 from lodel.exceptions import *
12
 from lodel import logger
12
 from lodel import logger
13
 
13
 
14
-class DataNoneValid(Exception):
15
-    pass
16
-
17
-class FieldValidationError(Exception):
18
-    pass
19
 
14
 
20
 ##@brief Base class for all data handlers
15
 ##@brief Base class for all data handlers
21
 #@ingroup lodel2_datahandlers
16
 #@ingroup lodel2_datahandlers
378
     #@param value *
373
     #@param value *
379
     #@throw FieldValidationError if value is unappropriate or can not be cast 
374
     #@throw FieldValidationError if value is unappropriate or can not be cast 
380
     #@return value
375
     #@return value
381
-    #@TODO  checkig one by one and put error in a list
376
+    #@TODO  Writing test error for errors when stored multiple references in one field
382
     def _check_data_value(self, value):
377
     def _check_data_value(self, value):
383
         value = super()._check_data_value(value)
378
         value = super()._check_data_value(value)
384
         if not hasattr(value, '__iter__'):
379
         if not hasattr(value, '__iter__'):

+ 1
- 1
lodel/leapi/datahandlers/datas.py View File

2
 import warnings
2
 import warnings
3
 import inspect
3
 import inspect
4
 from lodel.leapi.datahandlers.datas_base import *
4
 from lodel.leapi.datahandlers.datas_base import *
5
-from lodel.leapi.datahandlers.base_classes import FieldValidationError
5
+from lodel.exceptions import *
6
 import re
6
 import re
7
 
7
 
8
 ##@brief Data field designed to handle formated strings
8
 ##@brief Data field designed to handle formated strings

+ 24
- 1
lodel/leapi/datahandlers/datas_base.py View File

4
 import time
4
 import time
5
 import os
5
 import os
6
 
6
 
7
-from lodel.leapi.datahandlers.base_classes import DataField, FieldValidationError
7
+from lodel.leapi.datahandlers.base_classes import DataField
8
+from lodel.exceptions import *
9
+
8
 
10
 
9
 ##@brief Data field designed to handle boolean values
11
 ##@brief Data field designed to handle boolean values
10
 class Boolean(DataField):
12
 class Boolean(DataField):
18
         #    kwargs['check_data_value'] = self._check_data_value
20
         #    kwargs['check_data_value'] = self._check_data_value
19
         super().__init__(ftype='bool', **kwargs)
21
         super().__init__(ftype='bool', **kwargs)
20
 
22
 
23
+    ##@brief Check and cast value in appropriate type
24
+    #@param value *
25
+    #@throw FieldValidationError if value is unappropriate or can not be cast 
26
+    #@return value
21
     def _check_data_value(self, value):
27
     def _check_data_value(self, value):
22
         value = super()._check_data_value(value)   
28
         value = super()._check_data_value(value)   
23
         if not isinstance(value, bool):
29
         if not isinstance(value, bool):
34
     def __init__(self, **kwargs):
40
     def __init__(self, **kwargs):
35
         super().__init__( **kwargs)
41
         super().__init__( **kwargs)
36
 
42
 
43
+    ##@brief Check and cast value in appropriate type
44
+    #@param value *
45
+    #@throw FieldValidationError if value is unappropriate or can not be cast 
46
+    #@return value
37
     def _check_data_value(self, value, strict = False):
47
     def _check_data_value(self, value, strict = False):
38
         value = super()._check_data_value(value)
48
         value = super()._check_data_value(value)
39
         if (strict and isinstance(value, int)):
49
         if (strict and isinstance(value, int)):
68
             return False
78
             return False
69
         return True
79
         return True
70
     
80
     
81
+    ##@brief Check and cast value in appropriate type
82
+    #@param value *
83
+    #@throw FieldValidationError if value is unappropriate or can not be cast 
84
+    #@return value
71
     def _check_data_value(self, value):
85
     def _check_data_value(self, value):
72
         value = super()._check_data_value(value)   
86
         value = super()._check_data_value(value)   
73
         if not isinstance(value, str):
87
         if not isinstance(value, str):
75
         if len(value) > self.max_length:
89
         if len(value) > self.max_length:
76
              raise FieldValidationError("The value '%s' is longer than the maximum length of this field (%s)" % (value, self.max_length))
90
              raise FieldValidationError("The value '%s' is longer than the maximum length of this field (%s)" % (value, self.max_length))
77
         return value
91
         return value
92
+
78
 ##@brief Data field designed to handle date & time 
93
 ##@brief Data field designed to handle date & time 
79
 class DateTime(DataField):
94
 class DateTime(DataField):
80
 
95
 
91
         self.datetime_format = '%Y-%m-%d' if 'format' not in kwargs else kwargs['format']
106
         self.datetime_format = '%Y-%m-%d' if 'format' not in kwargs else kwargs['format']
92
         super().__init__(**kwargs)
107
         super().__init__(**kwargs)
93
 
108
 
109
+    ##@brief Check and cast value in appropriate type
110
+    #@param value *
111
+    #@throw FieldValidationError if value is unappropriate or can not be cast 
112
+    #@return value
94
     def _check_data_value(self, value):
113
     def _check_data_value(self, value):
95
         value = super()._check_data_value(value)
114
         value = super()._check_data_value(value)
96
         if isinstance(value,str):
115
         if isinstance(value,str):
116
     def __init__(self, **kwargs):
135
     def __init__(self, **kwargs):
117
         super(self.__class__, self).__init__(ftype='text', **kwargs)
136
         super(self.__class__, self).__init__(ftype='text', **kwargs)
118
     
137
     
138
+    ##@brief Check and cast value in appropriate type
139
+    #@param value *
140
+    #@throw FieldValidationError if value is unappropriate or can not be cast 
141
+    #@return value
119
     def _check_data_value(self, value):
142
     def _check_data_value(self, value):
120
         value = super()._check_data_value(value)   
143
         value = super()._check_data_value(value)   
121
         if not isinstance(value, str):
144
         if not isinstance(value, str):

+ 2
- 2
lodel/leapi/datahandlers/references.py View File

1
 # -*- coding: utf-8 -*-
1
 # -*- coding: utf-8 -*-
2
-from lodel.leapi.datahandlers.base_classes import Reference, MultipleRef, SingleRef, FieldValidationError, DataNoneValid
3
-
2
+from lodel.leapi.datahandlers.base_classes import Reference, MultipleRef, SingleRef
3
+from lodel.exceptions import *
4
 from lodel import logger
4
 from lodel import logger
5
 
5
 
6
 class Link(SingleRef):
6
 class Link(SingleRef):

Loading…
Cancel
Save