author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Wed, 09 Dec 2009 19:27:12 +0100 | |
changeset 4099 | 59ff385f7348 |
parent 4023 | eae23c40627a |
child 4252 | 6c4f109c2b03 |
permissions | -rw-r--r-- |
2997 | 1 |
"""mixins of entity/views organized somewhat in a graph or tree structure |
0 | 2 |
|
3 |
||
4 |
:organization: Logilab |
|
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1451
diff
changeset
|
5 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
0 | 6 |
:contact: http://www.logilab.fr/ -- mailto:contact@logilab.fr |
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1451
diff
changeset
|
7 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 8 |
""" |
9 |
__docformat__ = "restructuredtext en" |
|
10 |
||
2613
5e19c2bb370e
R [all] logilab.common 0.44 provides only deprecated
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2144
diff
changeset
|
11 |
from logilab.common.deprecation import deprecated |
0 | 12 |
from logilab.common.decorators import cached |
13 |
||
1266 | 14 |
from cubicweb import typed_eid |
692
800592b8d39b
replace deprecated cubicweb.common.selectors by its new module path (cubicweb.selectors)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
471
diff
changeset
|
15 |
from cubicweb.selectors import implements |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2748
diff
changeset
|
16 |
from cubicweb.interfaces import IEmailable, ITree |
0 | 17 |
|
18 |
||
19 |
class TreeMixIn(object): |
|
20 |
"""base tree-mixin providing the tree interface |
|
21 |
||
22 |
This mixin has to be inherited explicitly and configured using the |
|
23 |
tree_attribute, parent_target and children_target class attribute to |
|
24 |
benefit from this default implementation |
|
25 |
""" |
|
26 |
tree_attribute = None |
|
27 |
# XXX misnamed |
|
28 |
parent_target = 'subject' |
|
29 |
children_target = 'object' |
|
1451 | 30 |
|
0 | 31 |
def different_type_children(self, entities=True): |
32 |
"""return children entities of different type as this entity. |
|
1451 | 33 |
|
0 | 34 |
according to the `entities` parameter, return entity objects or the |
35 |
equivalent result set |
|
36 |
""" |
|
37 |
res = self.related(self.tree_attribute, self.children_target, |
|
38 |
entities=entities) |
|
39 |
if entities: |
|
40 |
return [e for e in res if e.e_schema != self.e_schema] |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3426
diff
changeset
|
41 |
return res.filtered_rset(lambda x: x.e_schema != self.e_schema, self.cw_col) |
0 | 42 |
|
43 |
def same_type_children(self, entities=True): |
|
44 |
"""return children entities of the same type as this entity. |
|
1451 | 45 |
|
0 | 46 |
according to the `entities` parameter, return entity objects or the |
47 |
equivalent result set |
|
48 |
""" |
|
49 |
res = self.related(self.tree_attribute, self.children_target, |
|
50 |
entities=entities) |
|
51 |
if entities: |
|
52 |
return [e for e in res if e.e_schema == self.e_schema] |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3426
diff
changeset
|
53 |
return res.filtered_rset(lambda x: x.e_schema == self.e_schema, self.cw_col) |
1451 | 54 |
|
0 | 55 |
def iterchildren(self, _done=None): |
56 |
if _done is None: |
|
57 |
_done = set() |
|
58 |
for child in self.children(): |
|
59 |
if child.eid in _done: |
|
3457
0924d0d08d60
[api] __regid__, cw_* and friends
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3451
diff
changeset
|
60 |
self.error('loop in %s tree', self.__regid__.lower()) |
0 | 61 |
continue |
62 |
yield child |
|
63 |
_done.add(child.eid) |
|
64 |
||
65 |
def prefixiter(self, _done=None): |
|
66 |
if _done is None: |
|
67 |
_done = set() |
|
68 |
if self.eid in _done: |
|
69 |
return |
|
70 |
yield self |
|
71 |
_done.add(self.eid) |
|
72 |
for child in self.iterchildren(_done): |
|
73 |
try: |
|
74 |
for entity in child.prefixiter(_done): |
|
75 |
yield entity |
|
76 |
except AttributeError: |
|
77 |
pass |
|
1451 | 78 |
|
0 | 79 |
@cached |
80 |
def path(self): |
|
81 |
"""returns the list of eids from the root object to this object""" |
|
82 |
path = [] |
|
83 |
parent = self |
|
84 |
while parent: |
|
85 |
if parent.eid in path: |
|
3457
0924d0d08d60
[api] __regid__, cw_* and friends
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3451
diff
changeset
|
86 |
self.error('loop in %s tree', self.__regid__.lower()) |
0 | 87 |
break |
88 |
path.append(parent.eid) |
|
89 |
try: |
|
90 |
# check we are not leaving the tree |
|
91 |
if (parent.tree_attribute != self.tree_attribute or |
|
92 |
parent.parent_target != self.parent_target): |
|
93 |
break |
|
94 |
parent = parent.parent() |
|
95 |
except AttributeError: |
|
96 |
break |
|
97 |
||
98 |
path.reverse() |
|
99 |
return path |
|
1451 | 100 |
|
173
a4a9e1a7e40f
TreeMixin : provide an iterator on the parents
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
62
diff
changeset
|
101 |
def iterparents(self): |
a4a9e1a7e40f
TreeMixin : provide an iterator on the parents
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
62
diff
changeset
|
102 |
def _uptoroot(self): |
a4a9e1a7e40f
TreeMixin : provide an iterator on the parents
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
62
diff
changeset
|
103 |
curr = self |
a4a9e1a7e40f
TreeMixin : provide an iterator on the parents
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
62
diff
changeset
|
104 |
while True: |
a4a9e1a7e40f
TreeMixin : provide an iterator on the parents
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
62
diff
changeset
|
105 |
curr = curr.parent() |
a4a9e1a7e40f
TreeMixin : provide an iterator on the parents
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
62
diff
changeset
|
106 |
if curr is None: |
a4a9e1a7e40f
TreeMixin : provide an iterator on the parents
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
62
diff
changeset
|
107 |
break |
a4a9e1a7e40f
TreeMixin : provide an iterator on the parents
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
62
diff
changeset
|
108 |
yield curr |
a4a9e1a7e40f
TreeMixin : provide an iterator on the parents
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
62
diff
changeset
|
109 |
return _uptoroot(self) |
a4a9e1a7e40f
TreeMixin : provide an iterator on the parents
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
62
diff
changeset
|
110 |
|
0 | 111 |
def notification_references(self, view): |
112 |
"""used to control References field of email send on notification |
|
113 |
for this entity. `view` is the notification view. |
|
1451 | 114 |
|
0 | 115 |
Should return a list of eids which can be used to generate message ids |
116 |
of previously sent email |
|
117 |
""" |
|
118 |
return self.path()[:-1] |
|
119 |
||
120 |
||
121 |
## ITree interface ######################################################## |
|
122 |
def parent(self): |
|
123 |
"""return the parent entity if any, else None (e.g. if we are on the |
|
124 |
root |
|
125 |
""" |
|
126 |
try: |
|
127 |
return self.related(self.tree_attribute, self.parent_target, |
|
128 |
entities=True)[0] |
|
129 |
except (KeyError, IndexError): |
|
130 |
return None |
|
131 |
||
132 |
def children(self, entities=True, sametype=False): |
|
133 |
"""return children entities |
|
134 |
||
135 |
according to the `entities` parameter, return entity objects or the |
|
136 |
equivalent result set |
|
137 |
""" |
|
138 |
if sametype: |
|
139 |
return self.same_type_children(entities) |
|
140 |
else: |
|
141 |
return self.related(self.tree_attribute, self.children_target, |
|
142 |
entities=entities) |
|
143 |
||
144 |
def children_rql(self): |
|
145 |
return self.related_rql(self.tree_attribute, self.children_target) |
|
1451 | 146 |
|
0 | 147 |
def is_leaf(self): |
148 |
return len(self.children()) == 0 |
|
149 |
||
150 |
def is_root(self): |
|
151 |
return self.parent() is None |
|
152 |
||
153 |
def root(self): |
|
154 |
"""return the root object""" |
|
3426
6ea4a2ff01c9
[api] use cw_*
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3023
diff
changeset
|
155 |
return self._cw.entity_from_eid(self.path()[0]) |
0 | 156 |
|
157 |
||
158 |
class EmailableMixIn(object): |
|
159 |
"""base mixin providing the default get_email() method used by |
|
160 |
the massmailing view |
|
161 |
||
162 |
NOTE: The default implementation is based on the |
|
163 |
primary_email / use_email scheme |
|
164 |
""" |
|
165 |
__implements__ = (IEmailable,) |
|
1451 | 166 |
|
0 | 167 |
def get_email(self): |
168 |
if getattr(self, 'primary_email', None): |
|
169 |
return self.primary_email[0].address |
|
170 |
if getattr(self, 'use_email', None): |
|
171 |
return self.use_email[0].address |
|
172 |
return None |
|
173 |
||
174 |
@classmethod |
|
175 |
def allowed_massmail_keys(cls): |
|
176 |
"""returns a set of allowed email substitution keys |
|
177 |
||
178 |
The default is to return the entity's attribute list but an |
|
179 |
entity class might override this method to allow extra keys. |
|
180 |
For instance, the Person class might want to return a `companyname` |
|
181 |
key. |
|
182 |
""" |
|
3830
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3583
diff
changeset
|
183 |
return set(rschema.type |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3583
diff
changeset
|
184 |
for rschema, attrtype in cls.e_schema.attribute_definitions() |
3b6bbb3a3c3e
close #472361: omit password and bytes attributes in allowed mass-mailing keys
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3583
diff
changeset
|
185 |
if attrtype.type not in ('Password', 'Bytes')) |
0 | 186 |
|
187 |
def as_email_context(self): |
|
188 |
"""returns the dictionary as used by the sendmail controller to |
|
189 |
build email bodies. |
|
1451 | 190 |
|
0 | 191 |
NOTE: the dictionary keys should match the list returned by the |
192 |
`allowed_massmail_keys` method. |
|
193 |
""" |
|
194 |
return dict( (attr, getattr(self, attr)) for attr in self.allowed_massmail_keys() ) |
|
195 |
||
196 |
||
3926 | 197 |
"""pluggable mixins system: plug classes registered in MI_REL_TRIGGERS on entity |
198 |
classes which have the relation described by the dict's key. |
|
1451 | 199 |
|
3926 | 200 |
NOTE: pluggable mixins can't override any method of the 'explicit' user classes tree |
201 |
(eg without plugged classes). This includes bases Entity and AnyEntity classes. |
|
202 |
""" |
|
0 | 203 |
MI_REL_TRIGGERS = { |
204 |
('primary_email', 'subject'): EmailableMixIn, |
|
205 |
('use_email', 'subject'): EmailableMixIn, |
|
206 |
} |
|
207 |
||
208 |
||
209 |
||
210 |
def _done_init(done, view, row, col): |
|
211 |
"""handle an infinite recursion safety belt""" |
|
212 |
if done is None: |
|
213 |
done = set() |
|
3460
e4843535db25
[api] some more _cw / __regid__, automatic tests now pass again
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3457
diff
changeset
|
214 |
entity = view.cw_rset.get_entity(row, col) |
0 | 215 |
if entity.eid in done: |
3426
6ea4a2ff01c9
[api] use cw_*
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3023
diff
changeset
|
216 |
msg = entity._cw._('loop in %(rel)s relation (%(eid)s)') % { |
62
ef06f71533d9
use named substitutions in i18n strings
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
217 |
'rel': entity.tree_attribute, |
ef06f71533d9
use named substitutions in i18n strings
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
218 |
'eid': entity.eid |
ef06f71533d9
use named substitutions in i18n strings
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
219 |
} |
0 | 220 |
return None, msg |
221 |
done.add(entity.eid) |
|
222 |
return done, entity |
|
223 |
||
224 |
||
225 |
class TreeViewMixIn(object): |
|
226 |
"""a recursive tree view""" |
|
3457
0924d0d08d60
[api] __regid__, cw_* and friends
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3451
diff
changeset
|
227 |
__regid__ = 'tree' |
0 | 228 |
item_vid = 'treeitem' |
728
a95b284150d1
first pass to use __select__ instead of __selectors__
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
692
diff
changeset
|
229 |
__select__ = implements(ITree) |
0 | 230 |
|
231 |
def call(self, done=None, **kwargs): |
|
232 |
if done is None: |
|
233 |
done = set() |
|
234 |
super(TreeViewMixIn, self).call(done=done, **kwargs) |
|
1451 | 235 |
|
0 | 236 |
def cell_call(self, row, col=0, vid=None, done=None, **kwargs): |
237 |
done, entity = _done_init(done, self, row, col) |
|
238 |
if done is None: |
|
239 |
# entity is actually an error message |
|
240 |
self.w(u'<li class="badcontent">%s</li>' % entity) |
|
241 |
return |
|
242 |
self.open_item(entity) |
|
243 |
entity.view(vid or self.item_vid, w=self.w, **kwargs) |
|
244 |
relatedrset = entity.children(entities=False) |
|
3457
0924d0d08d60
[api] __regid__, cw_* and friends
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3451
diff
changeset
|
245 |
self.wview(self.__regid__, relatedrset, 'null', done=done, **kwargs) |
0 | 246 |
self.close_item(entity) |
247 |
||
248 |
def open_item(self, entity): |
|
3457
0924d0d08d60
[api] __regid__, cw_* and friends
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3451
diff
changeset
|
249 |
self.w(u'<li class="%s">\n' % entity.__regid__.lower()) |
0 | 250 |
def close_item(self, entity): |
251 |
self.w(u'</li>\n') |
|
252 |
||
253 |
||
254 |
class TreePathMixIn(object): |
|
255 |
"""a recursive path view""" |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3426
diff
changeset
|
256 |
__regid__ = 'path' |
0 | 257 |
item_vid = 'oneline' |
2996
866a2c135c33
B #345282 xhtml requires to use   instead of
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2748
diff
changeset
|
258 |
separator = u' > ' |
0 | 259 |
|
260 |
def call(self, **kwargs): |
|
261 |
self.w(u'<div class="pathbar">') |
|
262 |
super(TreePathMixIn, self).call(**kwargs) |
|
263 |
self.w(u'</div>') |
|
1451 | 264 |
|
0 | 265 |
def cell_call(self, row, col=0, vid=None, done=None, **kwargs): |
266 |
done, entity = _done_init(done, self, row, col) |
|
267 |
if done is None: |
|
268 |
# entity is actually an error message |
|
269 |
self.w(u'<span class="badcontent">%s</span>' % entity) |
|
270 |
return |
|
271 |
parent = entity.parent() |
|
272 |
if parent: |
|
3457
0924d0d08d60
[api] __regid__, cw_* and friends
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3451
diff
changeset
|
273 |
parent.view(self.__regid__, w=self.w, done=done) |
0 | 274 |
self.w(self.separator) |
275 |
entity.view(vid or self.item_vid, w=self.w) |
|
276 |
||
277 |
||
278 |
class ProgressMixIn(object): |
|
279 |
"""provide default implementations for IProgress interface methods""" |
|
2748
d2fcf19bfb34
F [registry views] add _registry startup view
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2728
diff
changeset
|
280 |
# This is an adapter isn't it ? |
0 | 281 |
|
282 |
@property |
|
283 |
def cost(self): |
|
284 |
return self.progress_info()['estimated'] |
|
285 |
||
286 |
@property |
|
287 |
def revised_cost(self): |
|
288 |
return self.progress_info().get('estimatedcorrected', self.cost) |
|
289 |
||
290 |
@property |
|
291 |
def done(self): |
|
292 |
return self.progress_info()['done'] |
|
293 |
||
294 |
@property |
|
295 |
def todo(self): |
|
296 |
return self.progress_info()['todo'] |
|
297 |
||
298 |
@cached |
|
299 |
def progress_info(self): |
|
300 |
raise NotImplementedError() |
|
301 |
||
302 |
def finished(self): |
|
303 |
return not self.in_progress() |
|
304 |
||
305 |
def in_progress(self): |
|
306 |
raise NotImplementedError() |
|
1451 | 307 |
|
0 | 308 |
def progress(self): |
309 |
try: |
|
310 |
return 100. * self.done / self.revised_cost |
|
311 |
except ZeroDivisionError: |
|
312 |
# total cost is 0 : if everything was estimated, task is completed |
|
961 | 313 |
if self.progress_info().get('notestimated'): |
0 | 314 |
return 0. |
315 |
return 100 |