Browse Source

Implements _LeObject.link_together() and LeType.link_subordinate() methods

Yann Weber 9 years ago
parent
commit
1a54863f5b
3 changed files with 67 additions and 28 deletions
  1. 1
    1
      leobject/datasources/dummy.py
  2. 25
    0
      leobject/leobject.py
  3. 41
    27
      leobject/letype.py

+ 1
- 1
leobject/datasources/dummy.py View File

@@ -95,7 +95,7 @@ class DummyDatasource(object):
95 95
     # @param leo LeType : The from LeType child class instance
96 96
     # @param letype LeType : The wanted LeType child class (not instance !)
97 97
     # @param get_sub bool : If True, leo will be the superior and we wants all subordinates of Type letype, else its the oposite, leo is the subordinates and we want superiors with Type letype
98
-    # @return A dict with LeType instance as key and list of relation attributes as value
98
+    # @return A dict with LeType instance as key and dict(attr_name:attr_val, ...) as value
99 99
     def get_related(self, leo, letype, get_sub=True):
100 100
         pass
101 101
 

+ 25
- 0
leobject/leobject.py View File

@@ -136,6 +136,31 @@ class _LeObject(object):
136 136
 
137 137
         return result
138 138
 
139
+    ## @brief Link two leobject together using a rel2type field
140
+    # @param lesup LeType : LeType child class instance linked as superior
141
+    # @param lesub LeType : LeType child class instance linked as subordinate
142
+    # @param **rel_attr : Relation attributes
143
+    # @return True if linked without problems
144
+    # @throw LeObjectError if the link is not valid
145
+    # @throw AttributeError if an non existing relation attribute is given as argument
146
+    # @throw ValueError if the relation attrivute value check fails
147
+    @classmethod
148
+    def link_together(cls, lesup, lesub, **rel_attr):
149
+        if lesub.__class__ not in lesup._linked_types.keys():
150
+            raise LeObjectError("Relation error : %s cannot be linked with %s"%(lesup.__class__.__name__, lesub.__class__.__name__))
151
+
152
+        for attr_name in rel_attr.keys():
153
+            if attr_name not in [ f for f,g in lesup._linked_types[lesub.__class__] ]:
154
+                raise AttributeError("A rel2type between a %s and a %s doesn't have an attribute %s"%(lesup.__class__.__name__, lesub.__class__.__name__))
155
+            if not sup._linked_types[lesub.__class__][1].check(rel_attr[attr_name]):
156
+                raise ValueError("Wrong value '%s' for attribute %s"%(rel_attr[attr_name], attr_name))
157
+        return self._datasource.add_related(lesup, lesub, **rel_attr)
158
+
159
+    ## @brief Prepare a field_list
160
+    # @param field_list list : List of string representing fields
161
+    # @param letype LeType : LeType child class
162
+    # @param leclass LeClass : LeClass child class
163
+    # @return A well formated field list
139 164
     @classmethod
140 165
     def _prepare_field_list(cls, field_list, letype, leclass):
141 166
         cls._check_fields(letype, leclass, [f for f in field_list if not cls._field_is_relational(f)])

+ 41
- 27
leobject/letype.py View File

@@ -102,40 +102,54 @@ class LeType(object):
102 102
         return self._datasource(leo, self, nature)
103 103
 
104 104
     ## @brief Get the linked objects lodel_id
105
-    # @param rel2type_name str : the name of the relation
106
-    # @return an array of lodel_id linked with this object
105
+    # @param letype LeType : Filter the result with LeType child class (not instance) 
106
+    # @return a dict with LeType instance as key and dict{attr_name:attr_val...} as value
107 107
     # @todo unit tests
108
-    def linked(self, rel2type_name):
109
-        return [ rel['id_sub'] for rel in self._datasource.get_relations(self.lodel_id) ]
110
-
111
-    ## @brief Link this object with a LeObject
112
-    # @note rel2type
113
-    # @param leo LeObject : The object to be linked with
114
-    # @param rel2type_name : The name of the rel2type field (the name of the relation)
108
+    def linked(self, letype):
109
+        if leobject.letype.LeType not in letype.__bases__:
110
+            raise ValueError("letype has to be a child class of LeType (not an instance) but %s found"%type(letype))
111
+        
112
+        if letype in self._linked_types.keys():
113
+            get_sub = True
114
+        elif self.__class__ in letype._linked_types.keys():
115
+            get_sub = False
116
+        else:
117
+            raise ValueError("The two LeType classes %s and %s are not linked with a rel2type field"%(self.__class__.__name__, letype.__name__))
118
+
119
+        return self._datasource.get_related(self, letype, get_sub)
120
+
121
+    ## @brief Link this object with a LeObject as subordinate
122
+    # @note shortcut for @ref leobject.leobject._LeObject.link_together()
123
+    # @param lesub LeObject : The object to be linked with as subordinate
115 124
     # @param **rel_attr : keywords arguments for relations attributes
116 125
     # @return True if success False allready done
117
-    # @throw A Leo exception if the link is not allowed
118
-    # @todo unit tests
119
-    # @todo find a value for depth and rank....
120
-    def link_to(self, leo, rel2type_name, **rel_attr):
121
-        if leo.__class__ not in self._linked_types.keys():
122
-            raise leobject.leobject.LeObjectError("Constraint error : %s cannot be linked with %s"%(self.__class__.__name__, leo.__class__.__name__))
123
-
124
-        for attr_name in rel_attr.keys():
125
-            if attr_name not in [ f for f,g in self._linked_types[leo.__class__] ]:
126
-                raise AttributeError("A rel2type between a %s and a %s doesn't have an attribute %s"%(self.__class__.__name__, leo.__class__.__name__, attr_name))
127
-            if not self._linked_types[leo.__class__][1].check(rel_attr[attr_name]):
128
-                raise ValueError("Wrong value '%s' for attribute %s"%(rel_attr[attr_name], attr_name))
129
-
130
-        return self._datasource.add_relation(self, leo, nature=None, depth=None, rank=None, **rel_attr)#Broken ! need to give the rel2type_name
126
+    # @throw LeObjectError if the link is not valid
127
+    # @throw AttributeError if an non existing relation attribute is given as argument
128
+    # @throw ValueError if the relation attrivute value check fails
129
+    def link(self, leo, **rel_attr):
130
+        leobject.lefactory.LeFactory.leobj_from_name('LeObject').link_together(self, leo, **rel_attr)
131 131
 
132 132
     ## @brief Remove a link bewteen this object and another
133
-    # @param leo LeObject : A LeObject instance linked with self
134
-    # @param rel2type_name : the name of the relation
133
+    # @param leo LeType : LeType child class instance
135 134
     # @todo unit tests
136
-    def unlink(self, leo, rel2type_name):
137
-        return self._datasource.del_relation(self, leo) #Broken ! need to give the rel2type_name
135
+    def unlink(self, leo):
136
+        if leo.__class__ in self._linked_types.keys():
137
+            sup = self
138
+            sub = leo
139
+        elif self.__class__ in leo._linked_types.keys():
140
+            sup = leo
141
+            sub = self
142
+        
143
+        return self._datasource.del_related(sup, sub)
144
+    
145
+    ## @brief Add a superior
146
+    # @param lesup LeType : LeType child class instance that will be the superior
147
+    # @param nature str : @ref EditorialModel.classtypes
148
+    # @return True if add with no problems
149
+    def add_superior(self, lesup, nature):
150
+        self._datasource.add_superior(lesub, self)
138 151
         
152
+    
139 153
     ## @brief Delete a LeType from the datasource
140 154
     # @param filters list : list of filters (see @ref leobject_filters)
141 155
     # @param cls

Loading…
Cancel
Save