author | Aurelien Campeas |
Fri, 11 Sep 2009 18:24:47 +0200 | |
branch | 3.5 |
changeset 3192 | 93c8fdcd943e |
parent 3184 | 613064b49331 |
child 3185 | bd0126d17e83 |
child 3212 | 07d11bacfefe |
permissions | -rw-r--r-- |
0 | 1 |
"""Base class for entity objects manipulated in clients |
2 |
||
3 |
:organization: Logilab |
|
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1904
diff
changeset
|
4 |
:copyright: 2001-2009 LOGILAB S.A. (Paris, FRANCE), license is LGPL v2. |
0 | 5 |
: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:
1904
diff
changeset
|
6 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 7 |
""" |
8 |
__docformat__ = "restructuredtext en" |
|
9 |
||
1154 | 10 |
from warnings import warn |
11 |
||
0 | 12 |
from logilab.common import interface |
13 |
from logilab.common.compat import all |
|
14 |
from logilab.common.decorators import cached |
|
2613
5e19c2bb370e
R [all] logilab.common 0.44 provides only deprecated
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2421
diff
changeset
|
15 |
from logilab.common.deprecation import deprecated |
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2125
diff
changeset
|
16 |
from logilab.mtconverter import TransformData, TransformError, xml_escape |
631
99f5852f8604
major selector refactoring (mostly to avoid looking for select parameters on the target class), start accept / interface unification)
sylvain.thenault@logilab.fr
parents:
479
diff
changeset
|
17 |
|
0 | 18 |
from rql.utils import rqlvar_maker |
19 |
||
20 |
from cubicweb import Unauthorized |
|
21 |
from cubicweb.rset import ResultSet |
|
692
800592b8d39b
replace deprecated cubicweb.common.selectors by its new module path (cubicweb.selectors)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
631
diff
changeset
|
22 |
from cubicweb.selectors import yes |
2656
a93ae0f6c0ad
R [base classes] only AppObject remaning, no more AppRsetObject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
23 |
from cubicweb.appobject import AppObject |
709 | 24 |
from cubicweb.schema import RQLVocabularyConstraint, RQLConstraint, bw_normalize_etype |
25 |
||
2421
08d42928fe36
does not make sense any more
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2381
diff
changeset
|
26 |
from cubicweb.common.uilib import printable_value, soup2xhtml |
08d42928fe36
does not make sense any more
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2381
diff
changeset
|
27 |
from cubicweb.common.mixins import MI_REL_TRIGGERS |
08d42928fe36
does not make sense any more
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
2381
diff
changeset
|
28 |
from cubicweb.common.mttransforms import ENGINE |
0 | 29 |
|
30 |
_marker = object() |
|
31 |
||
32 |
def greater_card(rschema, subjtypes, objtypes, index): |
|
33 |
for subjtype in subjtypes: |
|
34 |
for objtype in objtypes: |
|
35 |
card = rschema.rproperty(subjtype, objtype, 'cardinality')[index] |
|
36 |
if card in '+*': |
|
37 |
return card |
|
38 |
return '1' |
|
39 |
||
40 |
||
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
41 |
_MODE_TAGS = set(('link', 'create')) |
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
42 |
_CATEGORY_TAGS = set(('primary', 'secondary', 'generic', 'generated')) # , 'metadata')) |
0 | 43 |
|
1154 | 44 |
try: |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
45 |
from cubicweb.web import formwidgets, uicfg |
0 | 46 |
|
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
47 |
def _dispatch_rtags(tags, rtype, role, stype, otype): |
1154 | 48 |
for tag in tags: |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
49 |
if tag in _MODE_TAGS: |
1739 | 50 |
uicfg.actionbox_appearsin_addmenu.tag_relation( |
51 |
(stype, rtype, otype, role), tag == 'create') |
|
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
52 |
elif tag in _CATEGORY_TAGS: |
1739 | 53 |
uicfg.autoform_section.tag_relation((stype, rtype, otype, role), |
54 |
tag) |
|
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
55 |
elif tag == 'inlineview': |
1739 | 56 |
uicfg.autoform_is_inlined.tag_relation((stype, rtype, otype, role), True) |
1154 | 57 |
else: |
58 |
raise ValueError(tag) |
|
1471
c889c3bcf5ec
new parent_classes method (cached)
sylvain.thenault@logilab.fr
parents:
1435
diff
changeset
|
59 |
|
1154 | 60 |
except ImportError: |
1734
e8673144bc74
access to rwidgets through uicfg, removing buggy import breaking bw compat on the way
sylvain.thenault@logilab.fr
parents:
1721
diff
changeset
|
61 |
|
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
62 |
_dispatch_rtags = None |
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
63 |
|
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
64 |
def _get_etype(bases, classdict): |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
65 |
try: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
66 |
return classdict['id'] |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
67 |
except KeyError: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
68 |
for base in bases: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
69 |
etype = getattr(base, 'id', None) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
70 |
if etype and etype != 'Any': |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
71 |
return etype |
1474 | 72 |
|
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
73 |
def _get_defs(attr, name, bases, classdict): |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
74 |
try: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
75 |
yield name, classdict.pop(attr) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
76 |
except KeyError: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
77 |
for base in bases: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
78 |
try: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
79 |
value = getattr(base, attr) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
80 |
delattr(base, attr) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
81 |
yield base.__name__, value |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
82 |
except AttributeError: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
83 |
continue |
1474 | 84 |
|
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
85 |
class _metaentity(type): |
0 | 86 |
"""this metaclass sets the relation tags on the entity class |
87 |
and deals with the `widgets` attribute |
|
88 |
""" |
|
89 |
def __new__(mcs, name, bases, classdict): |
|
90 |
# collect baseclass' rtags |
|
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
91 |
etype = _get_etype(bases, classdict) |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
92 |
if etype and _dispatch_rtags is not None: |
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
93 |
for name, rtags in _get_defs('__rtags__', name, bases, classdict): |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
94 |
warn('%s: __rtags__ is deprecated' % name, DeprecationWarning) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
95 |
for relation, tags in rtags.iteritems(): |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
96 |
# tags must become an iterable |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
97 |
if isinstance(tags, basestring): |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
98 |
tags = (tags,) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
99 |
# relation must become a 3-uple (rtype, targettype, role) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
100 |
if isinstance(relation, basestring): |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
101 |
_dispatch_rtags(tags, relation, 'subject', etype, '*') |
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
102 |
_dispatch_rtags(tags, relation, 'object', '*', etype) |
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
103 |
elif len(relation) == 1: # useful ? |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
104 |
_dispatch_rtags(tags, relation[0], 'subject', etype, '*') |
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
105 |
_dispatch_rtags(tags, relation[0], 'object', '*', etype) |
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
106 |
elif len(relation) == 2: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
107 |
rtype, ttype = relation |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
108 |
ttype = bw_normalize_etype(ttype) # XXX bw compat |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
109 |
_dispatch_rtags(tags, rtype, 'subject', etype, ttype) |
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
110 |
_dispatch_rtags(tags, rtype, 'object', ttype, etype) |
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
111 |
elif len(relation) == 3: |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
112 |
rtype, ttype, role = relation |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
113 |
ttype = bw_normalize_etype(ttype) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
114 |
if role == 'subject': |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
115 |
_dispatch_rtags(tags, rtype, 'subject', etype, ttype) |
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
116 |
else: |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
117 |
_dispatch_rtags(tags, rtype, 'object', ttype, etype) |
1154 | 118 |
else: |
1177
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
119 |
raise ValueError('bad rtag definition (%r)' % (relation,)) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
120 |
for name, widgets in _get_defs('widgets', name, bases, classdict): |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
121 |
warn('%s: widgets is deprecated' % name, DeprecationWarning) |
7074698c6522
fix support for old __rtags__ and widgets
sylvain.thenault@logilab.fr
parents:
1154
diff
changeset
|
122 |
for rtype, wdgname in widgets.iteritems(): |
1804 | 123 |
if wdgname in ('URLWidget', 'EmbededURLWidget', 'RawDynamicComboBoxWidget'): |
1269 | 124 |
warn('%s widget is deprecated' % wdgname, DeprecationWarning) |
125 |
continue |
|
1313
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1269
diff
changeset
|
126 |
if wdgname == 'StringWidget': |
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1269
diff
changeset
|
127 |
wdgname = 'TextInput' |
9cff1eee0208
put class, not class name into rwidgets. New rfields rtags to specify a field for a relation
sylvain.thenault@logilab.fr
parents:
1269
diff
changeset
|
128 |
widget = getattr(formwidgets, wdgname) |
1582 | 129 |
assert hasattr(widget, 'render') |
1754
c9c7618a90de
autoform_widget superseeded by autoform_field_kwargs (api change addiction :-/)
sylvain.thenault@logilab.fr
parents:
1739
diff
changeset
|
130 |
uicfg.autoform_field_kwargs.tag_subject_of( |
c9c7618a90de
autoform_widget superseeded by autoform_field_kwargs (api change addiction :-/)
sylvain.thenault@logilab.fr
parents:
1739
diff
changeset
|
131 |
(etype, rtype, '*'), {'widget': widget}) |
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
132 |
return super(_metaentity, mcs).__new__(mcs, name, bases, classdict) |
0 | 133 |
|
134 |
||
2656
a93ae0f6c0ad
R [base classes] only AppObject remaning, no more AppRsetObject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
135 |
class Entity(AppObject, dict): |
0 | 136 |
"""an entity instance has e_schema automagically set on |
137 |
the class and instances has access to their issuing cursor. |
|
1474 | 138 |
|
0 | 139 |
A property is set for each attribute and relation on each entity's type |
140 |
class. Becare that among attributes, 'eid' is *NEITHER* stored in the |
|
141 |
dict containment (which acts as a cache for other attributes dynamically |
|
142 |
fetched) |
|
143 |
||
144 |
:type e_schema: `cubicweb.schema.EntitySchema` |
|
145 |
:ivar e_schema: the entity's schema |
|
146 |
||
147 |
:type rest_var: str |
|
148 |
:cvar rest_var: indicates which attribute should be used to build REST urls |
|
149 |
If None is specified, the first non-meta attribute will |
|
150 |
be used |
|
1474 | 151 |
|
0 | 152 |
:type skip_copy_for: list |
153 |
:cvar skip_copy_for: a list of relations that should be skipped when copying |
|
154 |
this kind of entity. Note that some relations such |
|
155 |
as composite relations or relations that have '?1' as object |
|
156 |
cardinality |
|
157 |
""" |
|
1498
2c6eec0b46b9
fix imports, cleanup, repair some ajax calls
sylvain.thenault@logilab.fr
parents:
1474
diff
changeset
|
158 |
__metaclass__ = _metaentity |
0 | 159 |
__registry__ = 'etypes' |
717 | 160 |
__select__ = yes() |
1264
fe2934a7df7f
cleanup, avoid spurious warning
sylvain.thenault@logilab.fr
parents:
1177
diff
changeset
|
161 |
|
1474 | 162 |
# class attributes that must be set in class definition |
0 | 163 |
id = None |
164 |
rest_attr = None |
|
1138
22f634977c95
make pylint happy, fix some bugs on the way
sylvain.thenault@logilab.fr
parents:
1132
diff
changeset
|
165 |
fetch_attrs = None |
2920
64322aa83a1d
start a new workflow engine
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2877
diff
changeset
|
166 |
skip_copy_for = ('in_state',) |
1264
fe2934a7df7f
cleanup, avoid spurious warning
sylvain.thenault@logilab.fr
parents:
1177
diff
changeset
|
167 |
# class attributes set automatically at registration time |
fe2934a7df7f
cleanup, avoid spurious warning
sylvain.thenault@logilab.fr
parents:
1177
diff
changeset
|
168 |
e_schema = None |
1474 | 169 |
|
0 | 170 |
MODE_TAGS = set(('link', 'create')) |
171 |
CATEGORY_TAGS = set(('primary', 'secondary', 'generic', 'generated')) # , 'metadata')) |
|
172 |
@classmethod |
|
173 |
def __initialize__(cls): |
|
174 |
"""initialize a specific entity class by adding descriptors to access |
|
175 |
entity type's attributes and relations |
|
176 |
""" |
|
177 |
etype = cls.id |
|
178 |
assert etype != 'Any', etype |
|
179 |
cls.e_schema = eschema = cls.schema.eschema(etype) |
|
180 |
for rschema, _ in eschema.attribute_definitions(): |
|
181 |
if rschema.type == 'eid': |
|
182 |
continue |
|
183 |
setattr(cls, rschema.type, Attribute(rschema.type)) |
|
184 |
mixins = [] |
|
2941
196493bd099c
[entity] use role instead of x
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2931
diff
changeset
|
185 |
for rschema, _, role in eschema.relation_definitions(): |
196493bd099c
[entity] use role instead of x
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2931
diff
changeset
|
186 |
if (rschema, role) in MI_REL_TRIGGERS: |
196493bd099c
[entity] use role instead of x
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2931
diff
changeset
|
187 |
mixin = MI_REL_TRIGGERS[(rschema, role)] |
0 | 188 |
if not (issubclass(cls, mixin) or mixin in mixins): # already mixed ? |
189 |
mixins.append(mixin) |
|
190 |
for iface in getattr(mixin, '__implements__', ()): |
|
191 |
if not interface.implements(cls, iface): |
|
192 |
interface.extend(cls, iface) |
|
2941
196493bd099c
[entity] use role instead of x
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2931
diff
changeset
|
193 |
if role == 'subject': |
0 | 194 |
setattr(cls, rschema.type, SubjectRelation(rschema)) |
195 |
else: |
|
196 |
attr = 'reverse_%s' % rschema.type |
|
197 |
setattr(cls, attr, ObjectRelation(rschema)) |
|
198 |
if mixins: |
|
199 |
cls.__bases__ = tuple(mixins + [p for p in cls.__bases__ if not p is object]) |
|
200 |
cls.debug('plugged %s mixins on %s', mixins, etype) |
|
1474 | 201 |
|
0 | 202 |
@classmethod |
203 |
def fetch_rql(cls, user, restriction=None, fetchattrs=None, mainvar='X', |
|
204 |
settype=True, ordermethod='fetch_order'): |
|
205 |
"""return a rql to fetch all entities of the class type""" |
|
206 |
restrictions = restriction or [] |
|
207 |
if settype: |
|
208 |
restrictions.append('%s is %s' % (mainvar, cls.id)) |
|
209 |
if fetchattrs is None: |
|
210 |
fetchattrs = cls.fetch_attrs |
|
211 |
selection = [mainvar] |
|
212 |
orderby = [] |
|
213 |
# start from 26 to avoid possible conflicts with X |
|
214 |
varmaker = rqlvar_maker(index=26) |
|
215 |
cls._fetch_restrictions(mainvar, varmaker, fetchattrs, selection, |
|
216 |
orderby, restrictions, user, ordermethod) |
|
217 |
rql = 'Any %s' % ','.join(selection) |
|
218 |
if orderby: |
|
219 |
rql += ' ORDERBY %s' % ','.join(orderby) |
|
220 |
rql += ' WHERE %s' % ', '.join(restrictions) |
|
221 |
return rql |
|
1474 | 222 |
|
0 | 223 |
@classmethod |
224 |
def _fetch_restrictions(cls, mainvar, varmaker, fetchattrs, |
|
225 |
selection, orderby, restrictions, user, |
|
226 |
ordermethod='fetch_order', visited=None): |
|
227 |
eschema = cls.e_schema |
|
228 |
if visited is None: |
|
229 |
visited = set((eschema.type,)) |
|
230 |
elif eschema.type in visited: |
|
231 |
# avoid infinite recursion |
|
232 |
return |
|
233 |
else: |
|
234 |
visited.add(eschema.type) |
|
235 |
_fetchattrs = [] |
|
236 |
for attr in fetchattrs: |
|
237 |
try: |
|
238 |
rschema = eschema.subject_relation(attr) |
|
239 |
except KeyError: |
|
240 |
cls.warning('skipping fetch_attr %s defined in %s (not found in schema)', |
|
241 |
attr, cls.id) |
|
242 |
continue |
|
243 |
if not user.matching_groups(rschema.get_groups('read')): |
|
244 |
continue |
|
245 |
var = varmaker.next() |
|
246 |
selection.append(var) |
|
247 |
restriction = '%s %s %s' % (mainvar, attr, var) |
|
248 |
restrictions.append(restriction) |
|
249 |
if not rschema.is_final(): |
|
250 |
# XXX this does not handle several destination types |
|
251 |
desttype = rschema.objects(eschema.type)[0] |
|
252 |
card = rschema.rproperty(eschema, desttype, 'cardinality')[0] |
|
253 |
if card not in '?1': |
|
2928
edfdb69df6e8
oops, not self but cls here
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2877
diff
changeset
|
254 |
cls.warning('bad relation %s specified in fetch attrs for %s', |
edfdb69df6e8
oops, not self but cls here
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2877
diff
changeset
|
255 |
attr, cls) |
0 | 256 |
selection.pop() |
257 |
restrictions.pop() |
|
258 |
continue |
|
2871
83c5499e1436
[entity] fix fetch_rql w/ case where it's called while entity is not 'complete' (eg time where it's being added but have not yet all mandatory relations set)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2658
diff
changeset
|
259 |
# XXX we need outer join in case the relation is not mandatory |
83c5499e1436
[entity] fix fetch_rql w/ case where it's called while entity is not 'complete' (eg time where it's being added but have not yet all mandatory relations set)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2658
diff
changeset
|
260 |
# (card == '?') *or if the entity is being added*, since in |
83c5499e1436
[entity] fix fetch_rql w/ case where it's called while entity is not 'complete' (eg time where it's being added but have not yet all mandatory relations set)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2658
diff
changeset
|
261 |
# that case the relation may still be missing. As we miss this |
83c5499e1436
[entity] fix fetch_rql w/ case where it's called while entity is not 'complete' (eg time where it's being added but have not yet all mandatory relations set)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2658
diff
changeset
|
262 |
# later information here, systematically add it. |
83c5499e1436
[entity] fix fetch_rql w/ case where it's called while entity is not 'complete' (eg time where it's being added but have not yet all mandatory relations set)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2658
diff
changeset
|
263 |
restrictions[-1] += '?' |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2647
diff
changeset
|
264 |
destcls = cls.vreg['etypes'].etype_class(desttype) |
0 | 265 |
destcls._fetch_restrictions(var, varmaker, destcls.fetch_attrs, |
266 |
selection, orderby, restrictions, |
|
267 |
user, ordermethod, visited=visited) |
|
268 |
orderterm = getattr(cls, ordermethod)(attr, var) |
|
269 |
if orderterm: |
|
270 |
orderby.append(orderterm) |
|
271 |
return selection, orderby, restrictions |
|
272 |
||
1471
c889c3bcf5ec
new parent_classes method (cached)
sylvain.thenault@logilab.fr
parents:
1435
diff
changeset
|
273 |
@classmethod |
c889c3bcf5ec
new parent_classes method (cached)
sylvain.thenault@logilab.fr
parents:
1435
diff
changeset
|
274 |
@cached |
c889c3bcf5ec
new parent_classes method (cached)
sylvain.thenault@logilab.fr
parents:
1435
diff
changeset
|
275 |
def parent_classes(cls): |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2647
diff
changeset
|
276 |
parents = [cls.vreg['etypes'].etype_class(e.type) |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2647
diff
changeset
|
277 |
for e in cls.e_schema.ancestors()] |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2647
diff
changeset
|
278 |
parents.append(cls.vreg['etypes'].etype_class('Any')) |
1471
c889c3bcf5ec
new parent_classes method (cached)
sylvain.thenault@logilab.fr
parents:
1435
diff
changeset
|
279 |
return parents |
c889c3bcf5ec
new parent_classes method (cached)
sylvain.thenault@logilab.fr
parents:
1435
diff
changeset
|
280 |
|
1840
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
281 |
@classmethod |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
282 |
@cached |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
283 |
def _rest_attr_info(cls): |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
284 |
mainattr, needcheck = 'eid', True |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
285 |
if cls.rest_attr: |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
286 |
mainattr = cls.rest_attr |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
287 |
needcheck = not cls.e_schema.has_unique_values(mainattr) |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
288 |
else: |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
289 |
for rschema in cls.e_schema.subject_relations(): |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
290 |
if rschema.is_final() and rschema != 'eid' and cls.e_schema.has_unique_values(rschema): |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
291 |
mainattr = str(rschema) |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
292 |
needcheck = False |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
293 |
break |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
294 |
if mainattr == 'eid': |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
295 |
needcheck = False |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
296 |
return mainattr, needcheck |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
297 |
|
1435
6cd6172718bb
allow to instantiate an entity without rset
sylvain.thenault@logilab.fr
parents:
1363
diff
changeset
|
298 |
def __init__(self, req, rset=None, row=None, col=0): |
2656
a93ae0f6c0ad
R [base classes] only AppObject remaning, no more AppRsetObject
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
299 |
AppObject.__init__(self, req, rset, row, col) |
0 | 300 |
dict.__init__(self) |
301 |
self._related_cache = {} |
|
302 |
if rset is not None: |
|
303 |
self.eid = rset[row][col] |
|
304 |
else: |
|
305 |
self.eid = None |
|
306 |
self._is_saved = True |
|
1474 | 307 |
|
0 | 308 |
def __repr__(self): |
309 |
return '<Entity %s %s %s at %s>' % ( |
|
310 |
self.e_schema, self.eid, self.keys(), id(self)) |
|
311 |
||
312 |
def __nonzero__(self): |
|
313 |
return True |
|
314 |
||
315 |
def __hash__(self): |
|
316 |
return id(self) |
|
317 |
||
3047
ba86b1bdbcab
fix __cmp__ arguments
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3000
diff
changeset
|
318 |
def __cmp__(self, other): |
3000
4e76477949d5
B [entities] #343385 comparing entities should raise NotImplementedError
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2928
diff
changeset
|
319 |
raise NotImplementedError('comparison not implemented for %s' % self.__class__) |
4e76477949d5
B [entities] #343385 comparing entities should raise NotImplementedError
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2928
diff
changeset
|
320 |
|
0 | 321 |
def pre_add_hook(self): |
322 |
"""hook called by the repository before doing anything to add the entity |
|
323 |
(before_add entity hooks have not been called yet). This give the |
|
324 |
occasion to do weird stuff such as autocast (File -> Image for instance). |
|
1474 | 325 |
|
0 | 326 |
This method must return the actual entity to be added. |
327 |
""" |
|
328 |
return self |
|
1474 | 329 |
|
0 | 330 |
def set_eid(self, eid): |
331 |
self.eid = self['eid'] = eid |
|
332 |
||
333 |
def has_eid(self): |
|
334 |
"""return True if the entity has an attributed eid (False |
|
335 |
meaning that the entity has to be created |
|
336 |
""" |
|
337 |
try: |
|
338 |
int(self.eid) |
|
339 |
return True |
|
340 |
except (ValueError, TypeError): |
|
341 |
return False |
|
342 |
||
343 |
def is_saved(self): |
|
344 |
"""during entity creation, there is some time during which the entity |
|
345 |
has an eid attributed though it's not saved (eg during before_add_entity |
|
346 |
hooks). You can use this method to ensure the entity has an eid *and* is |
|
347 |
saved in its source. |
|
348 |
""" |
|
349 |
return self.has_eid() and self._is_saved |
|
1474 | 350 |
|
0 | 351 |
@cached |
352 |
def metainformation(self): |
|
353 |
res = dict(zip(('type', 'source', 'extid'), self.req.describe(self.eid))) |
|
354 |
res['source'] = self.req.source_defs()[res['source']] |
|
355 |
return res |
|
356 |
||
475
b32a5772ff06
should clear local perm cache if first attempt failed
sylvain.thenault@logilab.fr
parents:
413
diff
changeset
|
357 |
def clear_local_perm_cache(self, action): |
b32a5772ff06
should clear local perm cache if first attempt failed
sylvain.thenault@logilab.fr
parents:
413
diff
changeset
|
358 |
for rqlexpr in self.e_schema.get_rqlexprs(action): |
b32a5772ff06
should clear local perm cache if first attempt failed
sylvain.thenault@logilab.fr
parents:
413
diff
changeset
|
359 |
self.req.local_perm_cache.pop((rqlexpr.eid, (('x', self.eid),)), None) |
b32a5772ff06
should clear local perm cache if first attempt failed
sylvain.thenault@logilab.fr
parents:
413
diff
changeset
|
360 |
|
0 | 361 |
def check_perm(self, action): |
362 |
self.e_schema.check_perm(self.req, action, self.eid) |
|
363 |
||
364 |
def has_perm(self, action): |
|
365 |
return self.e_schema.has_perm(self.req, action, self.eid) |
|
1474 | 366 |
|
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2647
diff
changeset
|
367 |
def view(self, vid, __registry='views', **kwargs): |
0 | 368 |
"""shortcut to apply a view on this entity""" |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2647
diff
changeset
|
369 |
return self.vreg[__registry].render(vid, self.req, rset=self.rset, |
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2647
diff
changeset
|
370 |
row=self.row, col=self.col, **kwargs) |
0 | 371 |
|
2059
af33833d7571
absolute_url / build_url refactoring to avoid potential name clash
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
372 |
def absolute_url(self, *args, **kwargs): |
0 | 373 |
"""return an absolute url to view this entity""" |
2059
af33833d7571
absolute_url / build_url refactoring to avoid potential name clash
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
374 |
# use *args since we don't want first argument to be "anonymous" to |
af33833d7571
absolute_url / build_url refactoring to avoid potential name clash
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
375 |
# avoid potential clash with kwargs |
af33833d7571
absolute_url / build_url refactoring to avoid potential name clash
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
376 |
if args: |
af33833d7571
absolute_url / build_url refactoring to avoid potential name clash
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
377 |
assert len(args) == 1, 'only 0 or 1 non-named-argument expected' |
af33833d7571
absolute_url / build_url refactoring to avoid potential name clash
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
378 |
method = args[0] |
af33833d7571
absolute_url / build_url refactoring to avoid potential name clash
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
379 |
else: |
af33833d7571
absolute_url / build_url refactoring to avoid potential name clash
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2058
diff
changeset
|
380 |
method = None |
0 | 381 |
# in linksearch mode, we don't want external urls else selecting |
382 |
# the object for use in the relation is tricky |
|
383 |
# XXX search_state is web specific |
|
384 |
if getattr(self.req, 'search_state', ('normal',))[0] == 'normal': |
|
385 |
kwargs['base_url'] = self.metainformation()['source'].get('base-url') |
|
1904
e23536d29231
minor refactoring of absolute_url()
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1842
diff
changeset
|
386 |
if method in (None, 'view'): |
1842
c7a22540d6f7
add some bw compat code for old rest_path prototype
sylvain.thenault@logilab.fr
parents:
1840
diff
changeset
|
387 |
try: |
c7a22540d6f7
add some bw compat code for old rest_path prototype
sylvain.thenault@logilab.fr
parents:
1840
diff
changeset
|
388 |
kwargs['_restpath'] = self.rest_path(kwargs.get('base_url')) |
c7a22540d6f7
add some bw compat code for old rest_path prototype
sylvain.thenault@logilab.fr
parents:
1840
diff
changeset
|
389 |
except TypeError: |
c7a22540d6f7
add some bw compat code for old rest_path prototype
sylvain.thenault@logilab.fr
parents:
1840
diff
changeset
|
390 |
warn('%s: rest_path() now take use_ext_eid argument, ' |
c7a22540d6f7
add some bw compat code for old rest_path prototype
sylvain.thenault@logilab.fr
parents:
1840
diff
changeset
|
391 |
'please update' % self.id, DeprecationWarning) |
c7a22540d6f7
add some bw compat code for old rest_path prototype
sylvain.thenault@logilab.fr
parents:
1840
diff
changeset
|
392 |
kwargs['_restpath'] = self.rest_path() |
0 | 393 |
else: |
394 |
kwargs['rql'] = 'Any X WHERE X eid %s' % self.eid |
|
395 |
return self.build_url(method, **kwargs) |
|
396 |
||
1840
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
397 |
def rest_path(self, use_ext_eid=False): |
0 | 398 |
"""returns a REST-like (relative) path for this entity""" |
399 |
mainattr, needcheck = self._rest_attr_info() |
|
400 |
etype = str(self.e_schema) |
|
1840
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
401 |
path = etype.lower() |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
402 |
if mainattr != 'eid': |
0 | 403 |
value = getattr(self, mainattr) |
2125
19861294506f
https://www.logilab.net/cwo/ticket/343724
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2005
diff
changeset
|
404 |
if value is None or unicode(value) == u'': |
1840
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
405 |
mainattr = 'eid' |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
406 |
path += '/eid' |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
407 |
elif needcheck: |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
408 |
# make sure url is not ambiguous |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
409 |
rql = 'Any COUNT(X) WHERE X is %s, X %s %%(value)s' % ( |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
410 |
etype, mainattr) |
1904
e23536d29231
minor refactoring of absolute_url()
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1842
diff
changeset
|
411 |
nbresults = self.req.execute(rql, {'value' : value})[0][0] |
e23536d29231
minor refactoring of absolute_url()
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1842
diff
changeset
|
412 |
if nbresults != 1: # ambiguity? |
e23536d29231
minor refactoring of absolute_url()
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1842
diff
changeset
|
413 |
mainattr = 'eid' |
e23536d29231
minor refactoring of absolute_url()
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
1842
diff
changeset
|
414 |
path += '/eid' |
0 | 415 |
if mainattr == 'eid': |
1840
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
416 |
if use_ext_eid: |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
417 |
value = self.metainformation()['extid'] |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
418 |
else: |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
419 |
value = self.eid |
f4b5c15d1147
test and fix #342997: local eid used for absolute_url of external entities
sylvain.thenault@logilab.fr
parents:
1804
diff
changeset
|
420 |
return '%s/%s' % (path, self.req.url_quote(value)) |
0 | 421 |
|
1360
13ae1121835e
rename attribute_metadata method to attr_metadata to save a few chars
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
422 |
def attr_metadata(self, attr, metadata): |
1101
0c067de38e46
unification of meta-attributes handling:
sylvain.thenault@logilab.fr
parents:
1098
diff
changeset
|
423 |
"""return a metadata for an attribute (None if unspecified)""" |
0c067de38e46
unification of meta-attributes handling:
sylvain.thenault@logilab.fr
parents:
1098
diff
changeset
|
424 |
value = getattr(self, '%s_%s' % (attr, metadata), None) |
0c067de38e46
unification of meta-attributes handling:
sylvain.thenault@logilab.fr
parents:
1098
diff
changeset
|
425 |
if value is None and metadata == 'encoding': |
0c067de38e46
unification of meta-attributes handling:
sylvain.thenault@logilab.fr
parents:
1098
diff
changeset
|
426 |
value = self.vreg.property_value('ui.encoding') |
0c067de38e46
unification of meta-attributes handling:
sylvain.thenault@logilab.fr
parents:
1098
diff
changeset
|
427 |
return value |
0 | 428 |
|
429 |
def printable_value(self, attr, value=_marker, attrtype=None, |
|
3165
0a50ebe53db7
[views] remove parameter displaytime from final view
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
3050
diff
changeset
|
430 |
format='text/html'): |
0 | 431 |
"""return a displayable value (i.e. unicode string) which may contains |
432 |
html tags |
|
433 |
""" |
|
434 |
attr = str(attr) |
|
435 |
if value is _marker: |
|
436 |
value = getattr(self, attr) |
|
437 |
if isinstance(value, basestring): |
|
438 |
value = value.strip() |
|
439 |
if value is None or value == '': # don't use "not", 0 is an acceptable value |
|
440 |
return u'' |
|
441 |
if attrtype is None: |
|
442 |
attrtype = self.e_schema.destination(attr) |
|
443 |
props = self.e_schema.rproperties(attr) |
|
444 |
if attrtype == 'String': |
|
445 |
# internalinalized *and* formatted string such as schema |
|
446 |
# description... |
|
447 |
if props.get('internationalizable'): |
|
448 |
value = self.req._(value) |
|
1360
13ae1121835e
rename attribute_metadata method to attr_metadata to save a few chars
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
449 |
attrformat = self.attr_metadata(attr, 'format') |
0 | 450 |
if attrformat: |
451 |
return self.mtc_transform(value, attrformat, format, |
|
452 |
self.req.encoding) |
|
453 |
elif attrtype == 'Bytes': |
|
1360
13ae1121835e
rename attribute_metadata method to attr_metadata to save a few chars
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
454 |
attrformat = self.attr_metadata(attr, 'format') |
0 | 455 |
if attrformat: |
1360
13ae1121835e
rename attribute_metadata method to attr_metadata to save a few chars
sylvain.thenault@logilab.fr
parents:
1313
diff
changeset
|
456 |
encoding = self.attr_metadata(attr, 'encoding') |
0 | 457 |
return self.mtc_transform(value.getvalue(), attrformat, format, |
458 |
encoding) |
|
459 |
return u'' |
|
3165
0a50ebe53db7
[views] remove parameter displaytime from final view
Sandrine Ribeau <sandrine.ribeau@logilab.fr>
parents:
3050
diff
changeset
|
460 |
value = printable_value(self.req, attrtype, value, props) |
0 | 461 |
if format == 'text/html': |
2312
af4d8f75c5db
use xml_escape
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2125
diff
changeset
|
462 |
value = xml_escape(value) |
0 | 463 |
return value |
464 |
||
465 |
def mtc_transform(self, data, format, target_format, encoding, |
|
466 |
_engine=ENGINE): |
|
467 |
trdata = TransformData(data, format, encoding, appobject=self) |
|
468 |
data = _engine.convert(trdata, target_format).decode() |
|
469 |
if format == 'text/html': |
|
1474 | 470 |
data = soup2xhtml(data, self.req.encoding) |
0 | 471 |
return data |
1474 | 472 |
|
0 | 473 |
# entity cloning ########################################################## |
474 |
||
475 |
def copy_relations(self, ceid): |
|
476 |
"""copy relations of the object with the given eid on this object |
|
477 |
||
478 |
By default meta and composite relations are skipped. |
|
479 |
Overrides this if you want another behaviour |
|
480 |
""" |
|
481 |
assert self.has_eid() |
|
482 |
execute = self.req.execute |
|
483 |
for rschema in self.e_schema.subject_relations(): |
|
2126
a25859917ccc
stop using meta attribute from yams schema. Use instead sets defining meta relations and another defining schema types. Refactor various schema view based on this
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2059
diff
changeset
|
484 |
if rschema.is_final() or rschema.meta: |
0 | 485 |
continue |
486 |
# skip already defined relations |
|
487 |
if getattr(self, rschema.type): |
|
488 |
continue |
|
489 |
if rschema.type in self.skip_copy_for: |
|
490 |
continue |
|
491 |
# skip composite relation |
|
492 |
if self.e_schema.subjrproperty(rschema, 'composite'): |
|
493 |
continue |
|
494 |
# skip relation with card in ?1 else we either change the copied |
|
495 |
# object (inlined relation) or inserting some inconsistency |
|
496 |
if self.e_schema.subjrproperty(rschema, 'cardinality')[1] in '?1': |
|
497 |
continue |
|
498 |
rql = 'SET X %s V WHERE X eid %%(x)s, Y eid %%(y)s, Y %s V' % ( |
|
499 |
rschema.type, rschema.type) |
|
500 |
execute(rql, {'x': self.eid, 'y': ceid}, ('x', 'y')) |
|
501 |
self.clear_related_cache(rschema.type, 'subject') |
|
502 |
for rschema in self.e_schema.object_relations(): |
|
503 |
if rschema.meta: |
|
504 |
continue |
|
505 |
# skip already defined relations |
|
506 |
if getattr(self, 'reverse_%s' % rschema.type): |
|
507 |
continue |
|
508 |
# skip composite relation |
|
509 |
if self.e_schema.objrproperty(rschema, 'composite'): |
|
510 |
continue |
|
511 |
# skip relation with card in ?1 else we either change the copied |
|
512 |
# object (inlined relation) or inserting some inconsistency |
|
513 |
if self.e_schema.objrproperty(rschema, 'cardinality')[0] in '?1': |
|
514 |
continue |
|
515 |
rql = 'SET V %s X WHERE X eid %%(x)s, Y eid %%(y)s, V %s Y' % ( |
|
516 |
rschema.type, rschema.type) |
|
517 |
execute(rql, {'x': self.eid, 'y': ceid}, ('x', 'y')) |
|
518 |
self.clear_related_cache(rschema.type, 'object') |
|
519 |
||
520 |
# data fetching methods ################################################### |
|
521 |
||
522 |
@cached |
|
523 |
def as_rset(self): |
|
524 |
"""returns a resultset containing `self` information""" |
|
525 |
rset = ResultSet([(self.eid,)], 'Any X WHERE X eid %(x)s', |
|
526 |
{'x': self.eid}, [(self.id,)]) |
|
527 |
return self.req.decorate_rset(rset) |
|
1474 | 528 |
|
0 | 529 |
def to_complete_relations(self): |
530 |
"""by default complete final relations to when calling .complete()""" |
|
531 |
for rschema in self.e_schema.subject_relations(): |
|
532 |
if rschema.is_final(): |
|
533 |
continue |
|
534 |
if len(rschema.objects(self.e_schema)) > 1: |
|
535 |
# ambigous relations, the querier doesn't handle |
|
536 |
# outer join correctly in this case |
|
537 |
continue |
|
538 |
if rschema.inlined: |
|
539 |
matching_groups = self.req.user.matching_groups |
|
540 |
if matching_groups(rschema.get_groups('read')) and \ |
|
541 |
all(matching_groups(es.get_groups('read')) |
|
542 |
for es in rschema.objects(self.e_schema)): |
|
543 |
yield rschema, 'subject' |
|
1474 | 544 |
|
0 | 545 |
def to_complete_attributes(self, skip_bytes=True): |
546 |
for rschema, attrschema in self.e_schema.attribute_definitions(): |
|
547 |
# skip binary data by default |
|
548 |
if skip_bytes and attrschema.type == 'Bytes': |
|
549 |
continue |
|
550 |
attr = rschema.type |
|
551 |
if attr == 'eid': |
|
552 |
continue |
|
553 |
# password retreival is blocked at the repository server level |
|
554 |
if not self.req.user.matching_groups(rschema.get_groups('read')) \ |
|
555 |
or attrschema.type == 'Password': |
|
556 |
self[attr] = None |
|
557 |
continue |
|
558 |
yield attr |
|
1474 | 559 |
|
0 | 560 |
def complete(self, attributes=None, skip_bytes=True): |
561 |
"""complete this entity by adding missing attributes (i.e. query the |
|
562 |
repository to fill the entity) |
|
563 |
||
564 |
:type skip_bytes: bool |
|
565 |
:param skip_bytes: |
|
566 |
if true, attribute of type Bytes won't be considered |
|
567 |
""" |
|
568 |
assert self.has_eid() |
|
569 |
varmaker = rqlvar_maker() |
|
570 |
V = varmaker.next() |
|
571 |
rql = ['WHERE %s eid %%(x)s' % V] |
|
572 |
selected = [] |
|
573 |
for attr in (attributes or self.to_complete_attributes(skip_bytes)): |
|
574 |
# if attribute already in entity, nothing to do |
|
575 |
if self.has_key(attr): |
|
576 |
continue |
|
577 |
# case where attribute must be completed, but is not yet in entity |
|
578 |
var = varmaker.next() |
|
579 |
rql.append('%s %s %s' % (V, attr, var)) |
|
580 |
selected.append((attr, var)) |
|
581 |
# +1 since this doen't include the main variable |
|
582 |
lastattr = len(selected) + 1 |
|
583 |
if attributes is None: |
|
584 |
# fetch additional relations (restricted to 0..1 relations) |
|
585 |
for rschema, role in self.to_complete_relations(): |
|
586 |
rtype = rschema.type |
|
587 |
if self.relation_cached(rtype, role): |
|
588 |
continue |
|
589 |
var = varmaker.next() |
|
590 |
if role == 'subject': |
|
591 |
targettype = rschema.objects(self.e_schema)[0] |
|
592 |
card = rschema.rproperty(self.e_schema, targettype, |
|
593 |
'cardinality')[0] |
|
594 |
if card == '1': |
|
595 |
rql.append('%s %s %s' % (V, rtype, var)) |
|
596 |
else: # '?" |
|
597 |
rql.append('%s %s %s?' % (V, rtype, var)) |
|
598 |
else: |
|
599 |
targettype = rschema.subjects(self.e_schema)[1] |
|
600 |
card = rschema.rproperty(self.e_schema, targettype, |
|
601 |
'cardinality')[1] |
|
602 |
if card == '1': |
|
603 |
rql.append('%s %s %s' % (var, rtype, V)) |
|
604 |
else: # '?" |
|
605 |
rql.append('%s? %s %s' % (var, rtype, V)) |
|
606 |
assert card in '1?', '%s %s %s %s' % (self.e_schema, rtype, |
|
607 |
role, card) |
|
608 |
selected.append(((rtype, role), var)) |
|
609 |
if selected: |
|
610 |
# select V, we need it as the left most selected variable |
|
611 |
# if some outer join are included to fetch inlined relations |
|
612 |
rql = 'Any %s,%s %s' % (V, ','.join(var for attr, var in selected), |
|
613 |
','.join(rql)) |
|
614 |
execute = getattr(self.req, 'unsafe_execute', self.req.execute) |
|
615 |
rset = execute(rql, {'x': self.eid}, 'x', build_descr=False)[0] |
|
616 |
# handle attributes |
|
617 |
for i in xrange(1, lastattr): |
|
618 |
self[str(selected[i-1][0])] = rset[i] |
|
619 |
# handle relations |
|
620 |
for i in xrange(lastattr, len(rset)): |
|
2941
196493bd099c
[entity] use role instead of x
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2931
diff
changeset
|
621 |
rtype, role = selected[i-1][0] |
0 | 622 |
value = rset[i] |
623 |
if value is None: |
|
624 |
rrset = ResultSet([], rql, {'x': self.eid}) |
|
625 |
self.req.decorate_rset(rrset) |
|
626 |
else: |
|
627 |
rrset = self.req.eid_rset(value) |
|
2941
196493bd099c
[entity] use role instead of x
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2931
diff
changeset
|
628 |
self.set_related_cache(rtype, role, rrset) |
1474 | 629 |
|
0 | 630 |
def get_value(self, name): |
631 |
"""get value for the attribute relation <name>, query the repository |
|
632 |
to get the value if necessary. |
|
633 |
||
634 |
:type name: str |
|
635 |
:param name: name of the attribute to get |
|
636 |
""" |
|
637 |
try: |
|
638 |
value = self[name] |
|
639 |
except KeyError: |
|
640 |
if not self.is_saved(): |
|
641 |
return None |
|
642 |
rql = "Any A WHERE X eid %%(x)s, X %s A" % name |
|
2647
b0a2e779845c
enable server side entity caching, 25% speedup on codenaf insertion. ALL CW TESTS OK
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2613
diff
changeset
|
643 |
# XXX should we really use unsafe_execute here? I think so (syt), |
b0a2e779845c
enable server side entity caching, 25% speedup on codenaf insertion. ALL CW TESTS OK
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2613
diff
changeset
|
644 |
# see #344874 |
0 | 645 |
execute = getattr(self.req, 'unsafe_execute', self.req.execute) |
646 |
try: |
|
647 |
rset = execute(rql, {'x': self.eid}, 'x') |
|
648 |
except Unauthorized: |
|
649 |
self[name] = value = None |
|
650 |
else: |
|
651 |
assert rset.rowcount <= 1, (self, rql, rset.rowcount) |
|
652 |
try: |
|
653 |
self[name] = value = rset.rows[0][0] |
|
654 |
except IndexError: |
|
655 |
# probably a multisource error |
|
656 |
self.critical("can't get value for attribute %s of entity with eid %s", |
|
657 |
name, self.eid) |
|
658 |
if self.e_schema.destination(name) == 'String': |
|
2320 | 659 |
# XXX (syt) imo emtpy string is better |
0 | 660 |
self[name] = value = self.req._('unaccessible') |
661 |
else: |
|
662 |
self[name] = value = None |
|
663 |
return value |
|
664 |
||
665 |
def related(self, rtype, role='subject', limit=None, entities=False): |
|
666 |
"""returns a resultset of related entities |
|
1474 | 667 |
|
0 | 668 |
:param role: is the role played by 'self' in the relation ('subject' or 'object') |
669 |
:param limit: resultset's maximum size |
|
670 |
:param entities: if True, the entites are returned; if False, a result set is returned |
|
671 |
""" |
|
672 |
try: |
|
673 |
return self.related_cache(rtype, role, entities, limit) |
|
674 |
except KeyError: |
|
675 |
pass |
|
676 |
assert self.has_eid() |
|
677 |
rql = self.related_rql(rtype, role) |
|
2647
b0a2e779845c
enable server side entity caching, 25% speedup on codenaf insertion. ALL CW TESTS OK
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2613
diff
changeset
|
678 |
# XXX should we really use unsafe_execute here? I think so (syt), |
b0a2e779845c
enable server side entity caching, 25% speedup on codenaf insertion. ALL CW TESTS OK
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2613
diff
changeset
|
679 |
# see #344874 |
b0a2e779845c
enable server side entity caching, 25% speedup on codenaf insertion. ALL CW TESTS OK
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2613
diff
changeset
|
680 |
execute = getattr(self.req, 'unsafe_execute', self.req.execute) |
b0a2e779845c
enable server side entity caching, 25% speedup on codenaf insertion. ALL CW TESTS OK
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2613
diff
changeset
|
681 |
rset = execute(rql, {'x': self.eid}, 'x') |
0 | 682 |
self.set_related_cache(rtype, role, rset) |
683 |
return self.related(rtype, role, limit, entities) |
|
684 |
||
3130
2486163c4630
allow to specify targettypes in related_rql
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3047
diff
changeset
|
685 |
def related_rql(self, rtype, role='subject', targettypes=None): |
0 | 686 |
rschema = self.schema[rtype] |
687 |
if role == 'subject': |
|
3130
2486163c4630
allow to specify targettypes in related_rql
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3047
diff
changeset
|
688 |
if targettypes is None: |
2486163c4630
allow to specify targettypes in related_rql
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3047
diff
changeset
|
689 |
targettypes = rschema.objects(self.e_schema) |
0 | 690 |
restriction = 'E eid %%(x)s, E %s X' % rtype |
691 |
card = greater_card(rschema, (self.e_schema,), targettypes, 0) |
|
692 |
else: |
|
3130
2486163c4630
allow to specify targettypes in related_rql
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3047
diff
changeset
|
693 |
if targettypes is None: |
2486163c4630
allow to specify targettypes in related_rql
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3047
diff
changeset
|
694 |
targettypes = rschema.subjects(self.e_schema) |
0 | 695 |
restriction = 'E eid %%(x)s, X %s E' % rtype |
696 |
card = greater_card(rschema, targettypes, (self.e_schema,), 1) |
|
697 |
if len(targettypes) > 1: |
|
413
a7366dd3c33c
fix bug in entity.related_rql(): fetch_attr list / fetchorder weren't computed correctly
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
397
diff
changeset
|
698 |
fetchattrs_list = [] |
0 | 699 |
for ttype in targettypes: |
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2647
diff
changeset
|
700 |
etypecls = self.vreg['etypes'].etype_class(ttype) |
413
a7366dd3c33c
fix bug in entity.related_rql(): fetch_attr list / fetchorder weren't computed correctly
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
397
diff
changeset
|
701 |
fetchattrs_list.append(set(etypecls.fetch_attrs)) |
a7366dd3c33c
fix bug in entity.related_rql(): fetch_attr list / fetchorder weren't computed correctly
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
397
diff
changeset
|
702 |
fetchattrs = reduce(set.intersection, fetchattrs_list) |
0 | 703 |
rql = etypecls.fetch_rql(self.req.user, [restriction], fetchattrs, |
704 |
settype=False) |
|
705 |
else: |
|
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2647
diff
changeset
|
706 |
etypecls = self.vreg['etypes'].etype_class(targettypes[0]) |
0 | 707 |
rql = etypecls.fetch_rql(self.req.user, [restriction], settype=False) |
708 |
# optimisation: remove ORDERBY if cardinality is 1 or ? (though |
|
709 |
# greater_card return 1 for those both cases) |
|
710 |
if card == '1': |
|
711 |
if ' ORDERBY ' in rql: |
|
712 |
rql = '%s WHERE %s' % (rql.split(' ORDERBY ', 1)[0], |
|
713 |
rql.split(' WHERE ', 1)[1]) |
|
714 |
elif not ' ORDERBY ' in rql: |
|
715 |
args = tuple(rql.split(' WHERE ', 1)) |
|
716 |
rql = '%s ORDERBY Z DESC WHERE X modification_date Z, %s' % args |
|
717 |
return rql |
|
1474 | 718 |
|
0 | 719 |
# generic vocabulary methods ############################################## |
720 |
||
2613
5e19c2bb370e
R [all] logilab.common 0.44 provides only deprecated
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2421
diff
changeset
|
721 |
@deprecated('see new form api') |
0 | 722 |
def vocabulary(self, rtype, role='subject', limit=None): |
723 |
"""vocabulary functions must return a list of couples |
|
724 |
(label, eid) that will typically be used to fill the |
|
725 |
edition view's combobox. |
|
1474 | 726 |
|
0 | 727 |
If `eid` is None in one of these couples, it should be |
728 |
interpreted as a separator in case vocabulary results are grouped |
|
729 |
""" |
|
1008
f54b4309a3f5
bw compat for vocabulary using new form
sylvain.thenault@logilab.fr
parents:
985
diff
changeset
|
730 |
from logilab.common.testlib import mock_object |
2058
7ef12c03447c
nicer vreg api, try to make rset an optional named argument in select and derivated (including selectors)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2005
diff
changeset
|
731 |
form = self.vreg.select('forms', 'edition', self.req, entity=self) |
1008
f54b4309a3f5
bw compat for vocabulary using new form
sylvain.thenault@logilab.fr
parents:
985
diff
changeset
|
732 |
field = mock_object(name=rtype, role=role) |
1031
1a89683cb687
restore limit on form_field_vocabulary, actually used
sylvain.thenault@logilab.fr
parents:
1008
diff
changeset
|
733 |
return form.form_field_vocabulary(field, limit) |
1474 | 734 |
|
0 | 735 |
def unrelated_rql(self, rtype, targettype, role, ordermethod=None, |
736 |
vocabconstraints=True): |
|
737 |
"""build a rql to fetch `targettype` entities unrelated to this entity |
|
738 |
using (rtype, role) relation |
|
739 |
""" |
|
740 |
ordermethod = ordermethod or 'fetch_unrelated_order' |
|
741 |
if isinstance(rtype, basestring): |
|
742 |
rtype = self.schema.rschema(rtype) |
|
743 |
if role == 'subject': |
|
744 |
evar, searchedvar = 'S', 'O' |
|
745 |
subjtype, objtype = self.e_schema, targettype |
|
746 |
else: |
|
747 |
searchedvar, evar = 'S', 'O' |
|
748 |
objtype, subjtype = self.e_schema, targettype |
|
749 |
if self.has_eid(): |
|
750 |
restriction = ['NOT S %s O' % rtype, '%s eid %%(x)s' % evar] |
|
751 |
else: |
|
752 |
restriction = [] |
|
753 |
constraints = rtype.rproperty(subjtype, objtype, 'constraints') |
|
754 |
if vocabconstraints: |
|
755 |
# RQLConstraint is a subclass for RQLVocabularyConstraint, so they |
|
756 |
# will be included as well |
|
757 |
restriction += [cstr.restriction for cstr in constraints |
|
758 |
if isinstance(cstr, RQLVocabularyConstraint)] |
|
759 |
else: |
|
760 |
restriction += [cstr.restriction for cstr in constraints |
|
761 |
if isinstance(cstr, RQLConstraint)] |
|
2650
18aec79ec3a3
R [vreg] important refactoring of the vregistry, moving behaviour to end dictionnary (and so leaving room for more flexibility ; keep bw compat ; update api usage in cw
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2647
diff
changeset
|
762 |
etypecls = self.vreg['etypes'].etype_class(targettype) |
0 | 763 |
rql = etypecls.fetch_rql(self.req.user, restriction, |
764 |
mainvar=searchedvar, ordermethod=ordermethod) |
|
765 |
# ensure we have an order defined |
|
766 |
if not ' ORDERBY ' in rql: |
|
767 |
before, after = rql.split(' WHERE ', 1) |
|
768 |
rql = '%s ORDERBY %s WHERE %s' % (before, searchedvar, after) |
|
769 |
return rql |
|
1474 | 770 |
|
0 | 771 |
def unrelated(self, rtype, targettype, role='subject', limit=None, |
772 |
ordermethod=None): |
|
773 |
"""return a result set of target type objects that may be related |
|
774 |
by a given relation, with self as subject or object |
|
775 |
""" |
|
776 |
rql = self.unrelated_rql(rtype, targettype, role, ordermethod) |
|
777 |
if limit is not None: |
|
778 |
before, after = rql.split(' WHERE ', 1) |
|
779 |
rql = '%s LIMIT %s WHERE %s' % (before, limit, after) |
|
780 |
if self.has_eid(): |
|
781 |
return self.req.execute(rql, {'x': self.eid}) |
|
782 |
return self.req.execute(rql) |
|
1474 | 783 |
|
0 | 784 |
# relations cache handling ################################################ |
1474 | 785 |
|
0 | 786 |
def relation_cached(self, rtype, role): |
787 |
"""return true if the given relation is already cached on the instance |
|
788 |
""" |
|
2647
b0a2e779845c
enable server side entity caching, 25% speedup on codenaf insertion. ALL CW TESTS OK
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2613
diff
changeset
|
789 |
return self._related_cache.get('%s_%s' % (rtype, role)) |
1474 | 790 |
|
0 | 791 |
def related_cache(self, rtype, role, entities=True, limit=None): |
792 |
"""return values for the given relation if it's cached on the instance, |
|
793 |
else raise `KeyError` |
|
794 |
""" |
|
795 |
res = self._related_cache['%s_%s' % (rtype, role)][entities] |
|
796 |
if limit: |
|
797 |
if entities: |
|
798 |
res = res[:limit] |
|
799 |
else: |
|
800 |
res = res.limit(limit) |
|
801 |
return res |
|
1474 | 802 |
|
0 | 803 |
def set_related_cache(self, rtype, role, rset, col=0): |
804 |
"""set cached values for the given relation""" |
|
805 |
if rset: |
|
806 |
related = list(rset.entities(col)) |
|
807 |
rschema = self.schema.rschema(rtype) |
|
808 |
if role == 'subject': |
|
809 |
rcard = rschema.rproperty(self.e_schema, related[0].e_schema, |
|
810 |
'cardinality')[1] |
|
811 |
target = 'object' |
|
812 |
else: |
|
813 |
rcard = rschema.rproperty(related[0].e_schema, self.e_schema, |
|
814 |
'cardinality')[0] |
|
815 |
target = 'subject' |
|
816 |
if rcard in '?1': |
|
817 |
for rentity in related: |
|
818 |
rentity._related_cache['%s_%s' % (rtype, target)] = (self.as_rset(), [self]) |
|
819 |
else: |
|
820 |
related = [] |
|
821 |
self._related_cache['%s_%s' % (rtype, role)] = (rset, related) |
|
1474 | 822 |
|
0 | 823 |
def clear_related_cache(self, rtype=None, role=None): |
824 |
"""clear cached values for the given relation or the entire cache if |
|
825 |
no relation is given |
|
826 |
""" |
|
827 |
if rtype is None: |
|
828 |
self._related_cache = {} |
|
829 |
else: |
|
830 |
assert role |
|
831 |
self._related_cache.pop('%s_%s' % (rtype, role), None) |
|
1474 | 832 |
|
2942
77ebdbe93cf8
[entity] generic clear_all_caches methods, to use in test
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2941
diff
changeset
|
833 |
def clear_all_caches(self): |
77ebdbe93cf8
[entity] generic clear_all_caches methods, to use in test
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2941
diff
changeset
|
834 |
self.clear() |
77ebdbe93cf8
[entity] generic clear_all_caches methods, to use in test
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2941
diff
changeset
|
835 |
for rschema, _, role in self.e_schema.relation_definitions(): |
77ebdbe93cf8
[entity] generic clear_all_caches methods, to use in test
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2941
diff
changeset
|
836 |
self.clear_related_cache(rschema.type, role) |
77ebdbe93cf8
[entity] generic clear_all_caches methods, to use in test
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2941
diff
changeset
|
837 |
|
0 | 838 |
# raw edition utilities ################################################### |
1474 | 839 |
|
2877
e469f3602858
new _cw_unsafe argument to Entity.set_attributes until something nicer is done (eg #344874)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2875
diff
changeset
|
840 |
def set_attributes(self, _cw_unsafe=False, **kwargs): |
0 | 841 |
assert kwargs |
842 |
relations = [] |
|
843 |
for key in kwargs: |
|
844 |
relations.append('X %s %%(%s)s' % (key, key)) |
|
397
cf577e26f924
don't introduce a spurious 'x' key in the entity-as dict
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
237
diff
changeset
|
845 |
# update current local object |
cf577e26f924
don't introduce a spurious 'x' key in the entity-as dict
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
237
diff
changeset
|
846 |
self.update(kwargs) |
cf577e26f924
don't introduce a spurious 'x' key in the entity-as dict
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
237
diff
changeset
|
847 |
# and now update the database |
0 | 848 |
kwargs['x'] = self.eid |
2877
e469f3602858
new _cw_unsafe argument to Entity.set_attributes until something nicer is done (eg #344874)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2875
diff
changeset
|
849 |
if _cw_unsafe: |
e469f3602858
new _cw_unsafe argument to Entity.set_attributes until something nicer is done (eg #344874)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2875
diff
changeset
|
850 |
self.req.unsafe_execute( |
e469f3602858
new _cw_unsafe argument to Entity.set_attributes until something nicer is done (eg #344874)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2875
diff
changeset
|
851 |
'SET %s WHERE X eid %%(x)s' % ','.join(relations), kwargs, 'x') |
e469f3602858
new _cw_unsafe argument to Entity.set_attributes until something nicer is done (eg #344874)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2875
diff
changeset
|
852 |
else: |
e469f3602858
new _cw_unsafe argument to Entity.set_attributes until something nicer is done (eg #344874)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2875
diff
changeset
|
853 |
self.req.execute('SET %s WHERE X eid %%(x)s' % ','.join(relations), |
e469f3602858
new _cw_unsafe argument to Entity.set_attributes until something nicer is done (eg #344874)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2875
diff
changeset
|
854 |
kwargs, 'x') |
1474 | 855 |
|
0 | 856 |
def delete(self): |
857 |
assert self.has_eid(), self.eid |
|
858 |
self.req.execute('DELETE %s X WHERE X eid %%(x)s' % self.e_schema, |
|
859 |
{'x': self.eid}) |
|
1474 | 860 |
|
0 | 861 |
# server side utilities ################################################### |
1474 | 862 |
|
0 | 863 |
def set_defaults(self): |
864 |
"""set default values according to the schema""" |
|
865 |
self._default_set = set() |
|
866 |
for attr, value in self.e_schema.defaults(): |
|
867 |
if not self.has_key(attr): |
|
868 |
self[str(attr)] = value |
|
869 |
self._default_set.add(attr) |
|
870 |
||
871 |
def check(self, creation=False): |
|
872 |
"""check this entity against its schema. Only final relation |
|
873 |
are checked here, constraint on actual relations are checked in hooks |
|
874 |
""" |
|
875 |
# necessary since eid is handled specifically and yams require it to be |
|
876 |
# in the dictionary |
|
877 |
if self.req is None: |
|
878 |
_ = unicode |
|
879 |
else: |
|
880 |
_ = self.req._ |
|
881 |
self.e_schema.check(self, creation=creation, _=_) |
|
882 |
||
883 |
def fti_containers(self, _done=None): |
|
884 |
if _done is None: |
|
885 |
_done = set() |
|
886 |
_done.add(self.eid) |
|
887 |
containers = tuple(self.e_schema.fulltext_containers()) |
|
888 |
if containers: |
|
476
62968fa8845c
yield self if no ft container found
sylvain.thenault@logilab.fr
parents:
475
diff
changeset
|
889 |
yielded = False |
0 | 890 |
for rschema, target in containers: |
891 |
if target == 'object': |
|
892 |
targets = getattr(self, rschema.type) |
|
893 |
else: |
|
894 |
targets = getattr(self, 'reverse_%s' % rschema) |
|
895 |
for entity in targets: |
|
896 |
if entity.eid in _done: |
|
897 |
continue |
|
898 |
for container in entity.fti_containers(_done): |
|
899 |
yield container |
|
476
62968fa8845c
yield self if no ft container found
sylvain.thenault@logilab.fr
parents:
475
diff
changeset
|
900 |
yielded = True |
62968fa8845c
yield self if no ft container found
sylvain.thenault@logilab.fr
parents:
475
diff
changeset
|
901 |
if not yielded: |
62968fa8845c
yield self if no ft container found
sylvain.thenault@logilab.fr
parents:
475
diff
changeset
|
902 |
yield self |
0 | 903 |
else: |
904 |
yield self |
|
1474 | 905 |
|
0 | 906 |
def get_words(self): |
907 |
"""used by the full text indexer to get words to index |
|
908 |
||
909 |
this method should only be used on the repository side since it depends |
|
910 |
on the indexer package |
|
1474 | 911 |
|
0 | 912 |
:rtype: list |
913 |
:return: the list of indexable word of this entity |
|
914 |
""" |
|
915 |
from indexer.query_objects import tokenize |
|
916 |
words = [] |
|
917 |
for rschema in self.e_schema.indexable_attributes(): |
|
918 |
try: |
|
919 |
value = self.printable_value(rschema, format='text/plain') |
|
1132 | 920 |
except TransformError: |
0 | 921 |
continue |
922 |
except: |
|
923 |
self.exception("can't add value of %s to text index for entity %s", |
|
924 |
rschema, self.eid) |
|
925 |
continue |
|
926 |
if value: |
|
927 |
words += tokenize(value) |
|
1474 | 928 |
|
0 | 929 |
for rschema, role in self.e_schema.fulltext_relations(): |
930 |
if role == 'subject': |
|
931 |
for entity in getattr(self, rschema.type): |
|
932 |
words += entity.get_words() |
|
933 |
else: # if role == 'object': |
|
934 |
for entity in getattr(self, 'reverse_%s' % rschema.type): |
|
935 |
words += entity.get_words() |
|
936 |
return words |
|
937 |
||
938 |
||
939 |
# attribute and relation descriptors ########################################## |
|
940 |
||
941 |
class Attribute(object): |
|
942 |
"""descriptor that controls schema attribute access""" |
|
943 |
||
944 |
def __init__(self, attrname): |
|
945 |
assert attrname != 'eid' |
|
946 |
self._attrname = attrname |
|
947 |
||
948 |
def __get__(self, eobj, eclass): |
|
949 |
if eobj is None: |
|
950 |
return self |
|
951 |
return eobj.get_value(self._attrname) |
|
952 |
||
953 |
def __set__(self, eobj, value): |
|
954 |
eobj[self._attrname] = value |
|
2875
b7399ef8b3e0
towards better edited attributes handling
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2872
diff
changeset
|
955 |
if hasattr(eobj, 'edited_attributes'): |
b7399ef8b3e0
towards better edited attributes handling
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2872
diff
changeset
|
956 |
eobj.edited_attributes.add(self._attrname) |
0 | 957 |
|
958 |
class Relation(object): |
|
959 |
"""descriptor that controls schema relation access""" |
|
960 |
_role = None # for pylint |
|
961 |
||
962 |
def __init__(self, rschema): |
|
963 |
self._rschema = rschema |
|
964 |
self._rtype = rschema.type |
|
965 |
||
966 |
def __get__(self, eobj, eclass): |
|
967 |
if eobj is None: |
|
968 |
raise AttributeError('%s cannot be only be accessed from instances' |
|
969 |
% self._rtype) |
|
970 |
return eobj.related(self._rtype, self._role, entities=True) |
|
1474 | 971 |
|
0 | 972 |
def __set__(self, eobj, value): |
973 |
raise NotImplementedError |
|
974 |
||
975 |
||
976 |
class SubjectRelation(Relation): |
|
977 |
"""descriptor that controls schema relation access""" |
|
978 |
_role = 'subject' |
|
1474 | 979 |
|
0 | 980 |
class ObjectRelation(Relation): |
981 |
"""descriptor that controls schema relation access""" |
|
982 |
_role = 'object' |
|
983 |
||
984 |
from logging import getLogger |
|
985 |
from cubicweb import set_log_methods |
|
986 |
set_log_methods(Entity, getLogger('cubicweb.entity')) |