author | Julien Cristau <julien.cristau@logilab.fr> |
Thu, 12 Nov 2015 10:53:50 +0100 | |
changeset 10841 | 84a0505cb70b |
parent 10840 | 5669e136860b |
child 10846 | d186820c5f7a |
permissions | -rw-r--r-- |
9350
480600497e2d
cwetype is a *class* property, rename its argument accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8930
diff
changeset
|
1 |
# copyright 2003-2013 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
2 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
3 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
4 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
5 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
6 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
7 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
8 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
9 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
10 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
11 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
13 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
14 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
15 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
16 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4252
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
5556
9ab2b4c74baf
[entity] introduce a new 'adapters' registry
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5424
diff
changeset
|
18 |
"""base application's entities class implementation: `AnyEntity`""" |
0 | 19 |
|
20 |
__docformat__ = "restructuredtext en" |
|
21 |
||
10675
e0db937f5add
[py3k] unicode → six.text_type
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10612
diff
changeset
|
22 |
from six import text_type, string_types |
10841
84a0505cb70b
[entities] import range from six.moves
Julien Cristau <julien.cristau@logilab.fr>
parents:
10840
diff
changeset
|
23 |
from six.moves import range |
0 | 24 |
|
8930
6a02be304486
remove unused import
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8899
diff
changeset
|
25 |
from logilab.common.decorators import classproperty |
0 | 26 |
|
8748
f5027f8d2478
drop typed_eid() in favour of int() (closes #2742462)
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
8450
diff
changeset
|
27 |
from cubicweb import Unauthorized |
713
5adb6d8e5fa7
update imports of "cubicweb.common.entity" and use the new module path "cubicweb.entity"
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
479
diff
changeset
|
28 |
from cubicweb.entity import Entity |
0 | 29 |
|
30 |
||
10839
166c6f7b1be4
[fti] Improve big table reindexation
Christophe de Vienne <christophe@unlish.com>
parents:
10411
diff
changeset
|
31 |
def chunks(seq, step): |
166c6f7b1be4
[fti] Improve big table reindexation
Christophe de Vienne <christophe@unlish.com>
parents:
10411
diff
changeset
|
32 |
"""See http://stackoverflow.com/questions/312443/how-do-you-split-a-list-into-evenly-sized-chunks-in-python)""" |
166c6f7b1be4
[fti] Improve big table reindexation
Christophe de Vienne <christophe@unlish.com>
parents:
10411
diff
changeset
|
33 |
return (seq[i:i+step] |
10841
84a0505cb70b
[entities] import range from six.moves
Julien Cristau <julien.cristau@logilab.fr>
parents:
10840
diff
changeset
|
34 |
for i in range(0, len(seq), step)) |
10839
166c6f7b1be4
[fti] Improve big table reindexation
Christophe de Vienne <christophe@unlish.com>
parents:
10411
diff
changeset
|
35 |
|
166c6f7b1be4
[fti] Improve big table reindexation
Christophe de Vienne <christophe@unlish.com>
parents:
10411
diff
changeset
|
36 |
|
0 | 37 |
class AnyEntity(Entity): |
38 |
"""an entity instance has e_schema automagically set on the class and |
|
39 |
instances have access to their issuing cursor |
|
40 |
""" |
|
3377
dd9d292b6a6d
use __regid__ instead of id on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3369
diff
changeset
|
41 |
__regid__ = 'Any' |
0 | 42 |
|
9350
480600497e2d
cwetype is a *class* property, rename its argument accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8930
diff
changeset
|
43 |
@classproperty |
480600497e2d
cwetype is a *class* property, rename its argument accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8930
diff
changeset
|
44 |
def cw_etype(cls): |
10095
200bd6a601dc
[warnings] put an end to warnings in the sqlite driver over `str` being sent instead of unicode strings
Aurelien Campeas <aurelien.campeas@logilab.fr>
parents:
10019
diff
changeset
|
45 |
"""entity type as a unicode string""" |
10675
e0db937f5add
[py3k] unicode → six.text_type
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10612
diff
changeset
|
46 |
return text_type(cls.__regid__) |
9350
480600497e2d
cwetype is a *class* property, rename its argument accordingly
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
8930
diff
changeset
|
47 |
|
6039
6e84db1b3e44
[view] deprecate create_url in favor of a cw_create_url class method on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5557
diff
changeset
|
48 |
@classmethod |
6e84db1b3e44
[view] deprecate create_url in favor of a cw_create_url class method on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5557
diff
changeset
|
49 |
def cw_create_url(cls, req, **kwargs): |
6e84db1b3e44
[view] deprecate create_url in favor of a cw_create_url class method on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5557
diff
changeset
|
50 |
""" return the url of the entity creation form for this entity type""" |
6e84db1b3e44
[view] deprecate create_url in favor of a cw_create_url class method on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5557
diff
changeset
|
51 |
return req.build_url('add/%s' % cls.__regid__, **kwargs) |
6e84db1b3e44
[view] deprecate create_url in favor of a cw_create_url class method on entity classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5557
diff
changeset
|
52 |
|
8450
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
53 |
@classmethod |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
54 |
def cw_fti_index_rql_queries(cls, req): |
10839
166c6f7b1be4
[fti] Improve big table reindexation
Christophe de Vienne <christophe@unlish.com>
parents:
10411
diff
changeset
|
55 |
"""return an iterator on rql queries to fetch entities to FT-index |
8450
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
56 |
|
10839
166c6f7b1be4
[fti] Improve big table reindexation
Christophe de Vienne <christophe@unlish.com>
parents:
10411
diff
changeset
|
57 |
The default is to fetch entities 1000 per 1000 and to prefetch |
166c6f7b1be4
[fti] Improve big table reindexation
Christophe de Vienne <christophe@unlish.com>
parents:
10411
diff
changeset
|
58 |
indexable attributes, but one could imagine iterating over |
8450
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
59 |
"smaller" resultsets if the table is very big or returning |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
60 |
a subset of entities that match some business-logic condition. |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
61 |
""" |
10839
166c6f7b1be4
[fti] Improve big table reindexation
Christophe de Vienne <christophe@unlish.com>
parents:
10411
diff
changeset
|
62 |
restrictions = [] |
8450
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
63 |
selected = ['X'] |
10251
2daa5c6dea4d
[entities] make cw_fti_index_rql_queries predictable
Julien Cristau <julien.cristau@logilab.fr>
parents:
10095
diff
changeset
|
64 |
for attrschema in sorted(cls.e_schema.indexable_attributes()): |
8450
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
65 |
varname = attrschema.type.upper() |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
66 |
restrictions.append('X %s %s' % (attrschema, varname)) |
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
67 |
selected.append(varname) |
10839
166c6f7b1be4
[fti] Improve big table reindexation
Christophe de Vienne <christophe@unlish.com>
parents:
10411
diff
changeset
|
68 |
rset = req.execute('Any EID WHERE X eid EID, X is %s' % cls.__regid__) |
166c6f7b1be4
[fti] Improve big table reindexation
Christophe de Vienne <christophe@unlish.com>
parents:
10411
diff
changeset
|
69 |
for rows in chunks(rset.rows, 1000): |
166c6f7b1be4
[fti] Improve big table reindexation
Christophe de Vienne <christophe@unlish.com>
parents:
10411
diff
changeset
|
70 |
q_restrictions = restrictions + [ |
166c6f7b1be4
[fti] Improve big table reindexation
Christophe de Vienne <christophe@unlish.com>
parents:
10411
diff
changeset
|
71 |
'X eid IN (%s)' % ', '.join(str(r[0]) for r in rows)] |
166c6f7b1be4
[fti] Improve big table reindexation
Christophe de Vienne <christophe@unlish.com>
parents:
10411
diff
changeset
|
72 |
yield 'Any %s WHERE %s' % (', '.join(selected), |
166c6f7b1be4
[fti] Improve big table reindexation
Christophe de Vienne <christophe@unlish.com>
parents:
10411
diff
changeset
|
73 |
', '.join(q_restrictions)) |
8450
11063635c4e4
[fti] allow usage of custom RQL to fetch entities to index (closes #2410509)
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
7875
diff
changeset
|
74 |
|
0 | 75 |
# meta data api ########################################################### |
76 |
||
77 |
def dc_title(self): |
|
78 |
"""return a suitable *unicode* title for this entity""" |
|
79 |
for rschema, attrschema in self.e_schema.attribute_definitions(): |
|
80 |
if rschema.meta: |
|
81 |
continue |
|
5557
1a534c596bff
[entity] continue cleanup of Entity/AnyEntity namespace
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
82 |
value = self.cw_attr_value(rschema.type) |
10396
33e44293b0eb
[entities] fix dc_title output for bool(value) == False
Aurelien Campeas <aurelien.campeas@pythonian.fr>
parents:
10095
diff
changeset
|
83 |
if value is not None: |
0 | 84 |
# make the value printable (dates, floats, bytes, etc.) |
85 |
return self.printable_value(rschema.type, value, attrschema.type, |
|
86 |
format='text/plain') |
|
87 |
return u'%s #%s' % (self.dc_type(), self.eid) |
|
88 |
||
89 |
def dc_long_title(self): |
|
90 |
"""return a more detailled title for this entity""" |
|
91 |
return self.dc_title() |
|
1493 | 92 |
|
0 | 93 |
def dc_description(self, format='text/plain'): |
94 |
"""return a suitable description for this entity""" |
|
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3578
diff
changeset
|
95 |
if 'description' in self.e_schema.subjrels: |
0 | 96 |
return self.printable_value('description', format=format) |
97 |
return u'' |
|
98 |
||
99 |
def dc_authors(self): |
|
100 |
"""return a suitable description for the author(s) of the entity""" |
|
101 |
try: |
|
102 |
return ', '.join(u.name() for u in self.owned_by) |
|
103 |
except Unauthorized: |
|
104 |
return u'' |
|
105 |
||
106 |
def dc_creator(self): |
|
107 |
"""return a suitable description for the creator of the entity""" |
|
108 |
if self.creator: |
|
109 |
return self.creator.name() |
|
110 |
return u'' |
|
111 |
||
112 |
def dc_date(self, date_format=None):# XXX default to ISO 8601 ? |
|
113 |
"""return latest modification date of this entity""" |
|
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3418
diff
changeset
|
114 |
return self._cw.format_date(self.modification_date, date_format=date_format) |
0 | 115 |
|
116 |
def dc_type(self, form=''): |
|
117 |
"""return the display name for the type of this entity (translated)""" |
|
3418
7b49fa7e942d
[api] use _cw, cw_row, cw_col, cw_rset etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
118 |
return self.e_schema.display_name(self._cw, form) |
0 | 119 |
|
120 |
def dc_language(self): |
|
121 |
"""return language used by this entity (translated)""" |
|
122 |
# check if entities has internationalizable attributes |
|
123 |
# XXX one is enough or check if all String attributes are internationalizable? |
|
124 |
for rschema, attrschema in self.e_schema.attribute_definitions(): |
|
4147
52fe79a98b21
3.6 remove deprecation warning
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
3720
diff
changeset
|
125 |
if rschema.rdef(self.e_schema, attrschema).internationalizable: |
3451
6b46d73823f5
[api] work in progress, use __regid__, cw_*, etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3418
diff
changeset
|
126 |
return self._cw._(self._cw.user.property_value('ui.language')) |
3418
7b49fa7e942d
[api] use _cw, cw_row, cw_col, cw_rset etc.
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
3377
diff
changeset
|
127 |
return self._cw._(self._cw.vreg.property_value('ui.language')) |
1493 | 128 |
|
0 | 129 |
@property |
130 |
def creator(self): |
|
1398
5fe84a5f7035
rename internal entity types to have CW prefix instead of E
sylvain.thenault@logilab.fr
parents:
1360
diff
changeset
|
131 |
"""return the CWUser entity which has created this entity, or None if |
0 | 132 |
unknown or if the curent user doesn't has access to this euser |
133 |
""" |
|
134 |
try: |
|
135 |
return self.created_by[0] |
|
136 |
except (Unauthorized, IndexError): |
|
137 |
return None |
|
138 |
||
139 |
# abstractions making the whole things (well, some at least) working ###### |
|
1493 | 140 |
|
0 | 141 |
def sortvalue(self, rtype=None): |
142 |
"""return a value which can be used to sort this entity or given |
|
143 |
entity's attribute |
|
144 |
""" |
|
145 |
if rtype is None: |
|
146 |
return self.dc_title().lower() |
|
5557
1a534c596bff
[entity] continue cleanup of Entity/AnyEntity namespace
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5556
diff
changeset
|
147 |
value = self.cw_attr_value(rtype) |
0 | 148 |
# do not restrict to `unicode` because Bytes will return a `str` value |
10612
84468b90e9c1
[py3k] basestring → six.string_types
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10411
diff
changeset
|
149 |
if isinstance(value, string_types): |
0 | 150 |
return self.printable_value(rtype, format='text/plain').lower() |
151 |
return value |
|
152 |
||
1493 | 153 |
|
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
154 |
def fetch_config(fetchattrs, mainattr=None, pclass=AnyEntity, order='ASC'): |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
155 |
"""function to ease basic configuration of an entity class ORM. Basic usage |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
156 |
is: |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
157 |
|
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
158 |
.. sourcecode:: python |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
159 |
|
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
160 |
class MyEntity(AnyEntity): |
0 | 161 |
|
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
162 |
fetch_attrs, cw_fetch_order = fetch_config(['attr1', 'attr2']) |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
163 |
# uncomment line below if you want the same sorting for 'unrelated' entities |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
164 |
# cw_fetch_unrelated_order = cw_fetch_order |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
165 |
|
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
166 |
Using this, when using ORM methods retrieving this type of entity, 'attr1' |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
167 |
and 'attr2' will be automatically prefetched and results will be sorted on |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
168 |
'attr1' ascending (ie the first attribute in the list). |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
169 |
|
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
170 |
This function will automatically add to fetched attributes those defined in |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
171 |
parent class given using the `pclass` argument. |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
172 |
|
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
173 |
Also, You can use `mainattr` and `order` argument to have a different |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
174 |
sorting. |
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
175 |
""" |
0 | 176 |
if pclass is not None: |
177 |
fetchattrs += pclass.fetch_attrs |
|
178 |
if mainattr is None: |
|
179 |
mainattr = fetchattrs[0] |
|
180 |
@classmethod |
|
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
181 |
def fetch_order(cls, select, attr, var): |
0 | 182 |
if attr == mainattr: |
7827
9bbf83f68bcc
[entity] upgrade fetch_[unrelated_]order to benefit from changes introduced in 3.14 (closes #1942758)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
7143
diff
changeset
|
183 |
select.add_sort_var(var, order=='ASC') |
0 | 184 |
return fetchattrs, fetch_order |