Browse Source

Implements _LeObject.linked_together() and LeType.linked_subordinates() methods

Yann Weber 9 years ago
parent
commit
15b9c27333
2 changed files with 29 additions and 2 deletions
  1. 19
    1
      leobject/leobject.py
  2. 10
    1
      leobject/letype.py

+ 19
- 1
leobject/leobject.py View File

@@ -154,8 +154,26 @@ class _LeObject(object):
154 154
                 raise AttributeError("A rel2type between a %s and a %s doesn't have an attribute %s"%(lesup.__class__.__name__, lesub.__class__.__name__))
155 155
             if not sup._linked_types[lesub.__class__][1].check(rel_attr[attr_name]):
156 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)
157
+        return cls._datasource.add_related(lesup, lesub, **rel_attr)
158
+    
159
+    ## @brief Get related objects
160
+    # @param leo LeType(instance) : LeType child class instance
161
+    # @param letype LeType(class) : the wanted LeType child class (not instance) 
162
+    # @param leo_is_superior bool : if True leo is the superior in the relation
163
+    # @return A dict with LeType child class instance as key and dict {rel_attr_name:rel_attr_value, ...}
164
+    # @throw LeObjectError if the relation is not possible
165
+    @classmethod
166
+    def linked_together(cls, leo, letype, leo_is_superior = True):
167
+        valid_link = letype in leo._linked_types.keys() if leo_is_superior else leo.__class__ in letype._linked_types.keys()
158 168
 
169
+        if not valid_link:
170
+            raise LeObjectError("Relation error : %s have no links with %s"%(
171
+                leo.__class__ if leo_is_superior else letype,
172
+                letype if leo_is_superior else leo.__class__
173
+            ))
174
+
175
+        return cls._datasource.get_related(leo, letype, leo_is_superior)
176
+    
159 177
     ## @brief Prepare a field_list
160 178
     # @param field_list list : List of string representing fields
161 179
     # @param letype LeType : LeType child class

+ 10
- 1
leobject/letype.py View File

@@ -126,8 +126,17 @@ class LeType(object):
126 126
     # @throw LeObjectError if the link is not valid
127 127
     # @throw AttributeError if an non existing relation attribute is given as argument
128 128
     # @throw ValueError if the relation attrivute value check fails
129
+    # @see leobject.lefactory.LeFactory.link_together()
129 130
     def link(self, leo, **rel_attr):
130
-        leobject.lefactory.LeFactory.leobj_from_name('LeObject').link_together(self, leo, **rel_attr)
131
+        return leobject.lefactory.LeFactory.leobj_from_name('LeObject').link_together(self, leo, **rel_attr)
132
+    
133
+    ## @brief Returns linked subordinates in a rel2type given a wanted LeType child class
134
+    # @param letype LeType(class) : The wanted LeType of result
135
+    # @return A dict with LeType child class instance as key and dict {rel_attr_name:rel_attr_value, ...}
136
+    # @throw LeObjectError if the relation is not possible
137
+    # @see leobject.lefactory.LeFactory.linked_together()
138
+    def linked_subordinates(self, letype):
139
+        return leobject.lefactory.LeFactory.leobj_from_name('LeObject').linked_together(self, letype, True)
131 140
 
132 141
     ## @brief Remove a link bewteen this object and another
133 142
     # @param leo LeType : LeType child class instance

Loading…
Cancel
Save