Browse Source

PEP8/Pylint on lefactory.py

Roland Haroutiounian 9 years ago
parent
commit
a904ac0a09
1 changed files with 38 additions and 37 deletions
  1. 38
    37
      leobject/lefactory.py

+ 38
- 37
leobject/lefactory.py View File

6
 from EditorialModel.model import Model
6
 from EditorialModel.model import Model
7
 from EditorialModel.fieldtypes.generic import GenericFieldType
7
 from EditorialModel.fieldtypes.generic import GenericFieldType
8
 
8
 
9
+
9
 ## @brief This class is designed to generated the leobject API given an EditorialModel.model
10
 ## @brief This class is designed to generated the leobject API given an EditorialModel.model
10
 # @note Contains only static methods
11
 # @note Contains only static methods
11
 #
12
 #
12
 # The name is not good but i've no other ideas for the moment
13
 # The name is not good but i've no other ideas for the moment
13
 class LeFactory(object):
14
 class LeFactory(object):
14
-    
15
+
15
     output_file = 'dyn.py'
16
     output_file = 'dyn.py'
16
     modname = None
17
     modname = None
17
 
18
 
18
-    def __init__(LeFactory):raise NotImplementedError("Not designed (yet?) to be implemented")
19
+    def __init__(self):
20
+        raise NotImplementedError("Not designed (yet?) to be implemented")
19
 
21
 
20
     ## @brief Return a LeObject child class given its name
22
     ## @brief Return a LeObject child class given its name
21
     # @return a python class or False
23
     # @return a python class or False
22
     @staticmethod
24
     @staticmethod
23
     def leobj_from_name(name):
25
     def leobj_from_name(name):
24
         if LeFactory.modname is None:
26
         if LeFactory.modname is None:
25
-            modname = 'leobject.'+LeFactory.output_file.split('.')[1]
27
+            modname = 'leobject.' + LeFactory.output_file.split('.')[1]
26
         else:
28
         else:
27
             modname = LeFactory.modname
29
             modname = LeFactory.modname
28
         mod = importlib.import_module(modname)
30
         mod = importlib.import_module(modname)
31
         except AttributeError:
33
         except AttributeError:
32
             return False
34
             return False
33
         return res
35
         return res
34
-    
36
+
35
     @classmethod
37
     @classmethod
36
     def leobject(cls):
38
     def leobject(cls):
37
         return cls.leobj_from_name('LeObject')
39
         return cls.leobj_from_name('LeObject')
42
     @staticmethod
44
     @staticmethod
43
     def name2classname(name):
45
     def name2classname(name):
44
         if not isinstance(name, str):
46
         if not isinstance(name, str):
45
-            raise AttributeError("Argument name should be a str and not a %s"%type(name))
47
+            raise AttributeError("Argument name should be a str and not a %s" % type(name))
46
         return name.title()
48
         return name.title()
47
 
49
 
48
     ## @brief Return a call to a FieldType constructor given an EmField
50
     ## @brief Return a call to a FieldType constructor given an EmField
49
     # @param emfield EmField : An EmField
51
     # @param emfield EmField : An EmField
50
     # @return a string representing the python code to instanciate a EmFieldType
52
     # @return a string representing the python code to instanciate a EmFieldType
51
     @staticmethod
53
     @staticmethod
52
-    def fieldtype_construct_from_field(emfield):    
53
-        return '%s.EmFieldType(**%s)'%(
54
+    def fieldtype_construct_from_field(emfield):
55
+        return '%s.EmFieldType(**%s)' % (
54
             GenericFieldType.module_name(emfield.fieldtype),
56
             GenericFieldType.module_name(emfield.fieldtype),
55
             repr(emfield._fieldtype_args),
57
             repr(emfield._fieldtype_args),
56
         )
58
         )
74
             cls_fieldgroup[fieldgroup.name] = list()
76
             cls_fieldgroup[fieldgroup.name] = list()
75
             for field in fieldgroup.fields():
77
             for field in fieldgroup.fields():
76
                 cls_fieldgroup[fieldgroup.name].append(field.name)
78
                 cls_fieldgroup[fieldgroup.name].append(field.name)
77
-        
79
+
78
         return """
80
         return """
79
 #Initialisation of {name} class attributes
81
 #Initialisation of {name} class attributes
80
 {name}._fieldtypes = {ftypes}
82
 {name}._fieldtypes = {ftypes}
81
 {name}._linked_types = {ltypes}
83
 {name}._linked_types = {ltypes}
82
 {name}._fieldgroups = {fgroups}
84
 {name}._fieldgroups = {fgroups}
83
 """.format(
85
 """.format(
84
-    name = LeFactory.name2classname(emclass.name),
85
-    ftypes = "{"+(','.join([ '\n\t%s:%s'%(repr(f),v) for f,v in cls_fields.items()]))+"\n}",
86
-    ltypes = "{"+(','.join(cls_linked_types))+'}',
87
-    fgroups = repr(cls_fieldgroup)
88
-)
86
+            name=LeFactory.name2classname(emclass.name),
87
+            ftypes="{" + (','.join(['\n\t%s:%s' % (repr(f), v) for f, v in cls_fields.items()])) + "\n}",
88
+            ltypes="{" + (','.join(cls_linked_types)) + '}',
89
+            fgroups=repr(cls_fieldgroup)
90
+        )
89
 
91
 
90
     ## @brief Given a Model and an EmType instances generate python code for corresponding LeType
92
     ## @brief Given a Model and an EmType instances generate python code for corresponding LeType
91
     # @param model Model : A Model instance
93
     # @param model Model : A Model instance
99
             type_fields.append(field.name)
101
             type_fields.append(field.name)
100
 
102
 
101
         for nat, sup_l in emtype.superiors().items():
103
         for nat, sup_l in emtype.superiors().items():
102
-            type_superiors.append('%s:[%s]'%(
104
+            type_superiors.append('%s:[%s]' % (
103
                 repr(nat),
105
                 repr(nat),
104
-                ','.join([ LeFactory.name2classname(sup.name) for sup in sup_l])
106
+                ','.join([LeFactory.name2classname(sup.name) for sup in sup_l])
105
             ))
107
             ))
106
 
108
 
107
         return """
109
         return """
110
 {name}._superiors = {dsups}
112
 {name}._superiors = {dsups}
111
 {name}._leclass = {leclass}
113
 {name}._leclass = {leclass}
112
 """.format(
114
 """.format(
113
-    name = LeFactory.name2classname(emtype.name),
114
-    fields = repr(type_fields),
115
-    dsups = '{'+(','.join(type_superiors))+'}',
116
-    leclass = LeFactory.name2classname(emtype.em_class.name)
117
-)
115
+            name=LeFactory.name2classname(emtype.name),
116
+            fields=repr(type_fields),
117
+            dsups='{' + (','.join(type_superiors)) + '}',
118
+            leclass=LeFactory.name2classname(emtype.em_class.name)
119
+        )
118
 
120
 
119
     ## @brief Generate python code containing the LeObject API
121
     ## @brief Generate python code containing the LeObject API
120
     # @param backend_cls Backend : A model backend class
122
     # @param backend_cls Backend : A model backend class
141
         result += """
143
         result += """
142
 import %s
144
 import %s
143
 import %s
145
 import %s
144
-"""%(backend_cls.__module__, datasource_cls.__module__)
146
+""" % (backend_cls.__module__, datasource_cls.__module__)
145
 
147
 
146
         #Generating the code for LeObject class
148
         #Generating the code for LeObject class
147
-        backend_constructor = '%s.%s(**%s)'%(backend_cls.__module__, backend_cls.__name__, repr(backend_args))
149
+        backend_constructor = '%s.%s(**%s)' % (backend_cls.__module__, backend_cls.__name__, repr(backend_args))
148
         leobj_me_uid = dict()
150
         leobj_me_uid = dict()
149
         for comp in model.components('EmType') + model.components('EmClass'):
151
         for comp in model.components('EmType') + model.components('EmClass'):
150
             leobj_me_uid[comp.uid] = LeFactory.name2classname(comp.name)
152
             leobj_me_uid[comp.uid] = LeFactory.name2classname(comp.name)
157
     _datasource = %s(**%s)
159
     _datasource = %s(**%s)
158
     _me_uid = %s
160
     _me_uid = %s
159
 
161
 
160
-"""%(backend_constructor, datasource_cls.__module__+'.'+datasource_cls.__name__, repr(datasource_args), repr(leobj_me_uid))
161
-        
162
+""" % (backend_constructor, datasource_cls.__module__ + '.' + datasource_cls.__name__, repr(datasource_args), repr(leobj_me_uid))
163
+
162
         emclass_l = model.components(EditorialModel.classes.EmClass)
164
         emclass_l = model.components(EditorialModel.classes.EmClass)
163
         emtype_l = model.components(EditorialModel.types.EmType)
165
         emtype_l = model.components(EditorialModel.types.EmType)
164
 
166
 
165
         #LeClass child classes definition
167
         #LeClass child classes definition
166
         for emclass in emclass_l:
168
         for emclass in emclass_l:
167
-           result += """
169
+            result += """
168
 ## @brief EmClass {name} LeClass child class
170
 ## @brief EmClass {name} LeClass child class
169
 # @see leobject::leclass::LeClass
171
 # @see leobject::leclass::LeClass
170
 class {name}(LeObject,LeClass):
172
 class {name}(LeObject,LeClass):
171
     _class_id = {uid}
173
     _class_id = {uid}
172
 """.format(
174
 """.format(
173
-    name = LeFactory.name2classname(emclass.name),
174
-    uid = emclass.uid
175
-)
175
+                name=LeFactory.name2classname(emclass.name),
176
+                uid=emclass.uid
177
+            )
176
         #LeType child classes definition
178
         #LeType child classes definition
177
         for emtype in emtype_l:
179
         for emtype in emtype_l:
178
-           result += """
180
+            result += """
179
 ## @brief EmType {name} LeType child class
181
 ## @brief EmType {name} LeType child class
180
 # @see leobject::letype::LeType
182
 # @see leobject::letype::LeType
181
 class {name}(LeType, {leclass}):
183
 class {name}(LeType, {leclass}):
182
     _type_id = {uid}
184
     _type_id = {uid}
183
 """.format(
185
 """.format(
184
-    name = LeFactory.name2classname(emtype.name),
185
-    leclass = LeFactory.name2classname(emtype.em_class.name),
186
-    uid = emtype.uid
187
-)
188
-            
186
+                name=LeFactory.name2classname(emtype.name),
187
+                leclass=LeFactory.name2classname(emtype.em_class.name),
188
+                uid=emtype.uid
189
+            )
190
+
189
         #Set attributes of created LeClass and LeType child classes
191
         #Set attributes of created LeClass and LeType child classes
190
         for emclass in emclass_l:
192
         for emclass in emclass_l:
191
             result += LeFactory.emclass_pycode(model, emclass)
193
             result += LeFactory.emclass_pycode(model, emclass)
193
             result += LeFactory.emtype_pycode(model, emtype)
195
             result += LeFactory.emtype_pycode(model, emtype)
194
 
196
 
195
         #Populating LeObject._me_uid dict for a rapid fetch of LeType and LeClass given an EM uid
197
         #Populating LeObject._me_uid dict for a rapid fetch of LeType and LeClass given an EM uid
196
-        me_uid = { comp.uid:LeFactory.name2classname(comp.name) for comp in emclass_l + emtype_l }
198
+        me_uid = {comp.uid: LeFactory.name2classname(comp.name) for comp in emclass_l + emtype_l}
197
         result += """
199
         result += """
198
 ## @brief Dict for getting LeClass and LeType child classes given an EM uid
200
 ## @brief Dict for getting LeClass and LeType child classes given an EM uid
199
 LeObject._me_uid = %s
201
 LeObject._me_uid = %s
200
-"""%"{"+(','.join([ '%s:%s'%(k,v) for k,v in me_uid.items()]))+"}"       
202
+""" % "{" + (','.join(['%s:%s' % (k, v) for k, v in me_uid.items()])) + "}"
201
         return result
203
         return result
202
-

Loading…
Cancel
Save