author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Mon, 19 Oct 2009 15:16:41 +0200 | |
changeset 3720 | 5376aaadd16b |
parent 3629 | 559cad62c786 |
parent 3689 | deb13e88e037 |
child 3777 | 3ef8cdb5fb1c |
permissions | -rw-r--r-- |
0 | 1 |
"""The `ResultSet` class which is returned as result of a rql query |
2 |
||
3 |
:organization: Logilab |
|
1977
606923dff11b
big bunch of copyright / docstring update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1922
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:
1922
diff
changeset
|
6 |
:license: GNU Lesser General Public License, v2.1 - http://www.gnu.org/licenses |
0 | 7 |
""" |
8 |
__docformat__ = "restructuredtext en" |
|
9 |
||
10 |
from logilab.common.decorators import cached, clear_cache, copy_cache |
|
11 |
||
2792
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
12 |
from rql import nodes, stmts |
0 | 13 |
|
14 |
from cubicweb import NotAnEntity |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
15 |
|
0 | 16 |
|
17 |
class ResultSet(object): |
|
18 |
"""a result set wrap a RQL query result. This object implements a partial |
|
19 |
list protocol to allow direct use as a list of result rows. |
|
20 |
||
21 |
:type rowcount: int |
|
22 |
:ivar rowcount: number of rows in the result |
|
23 |
||
24 |
:type rows: list |
|
25 |
:ivar rows: list of rows of result |
|
26 |
||
27 |
:type description: list |
|
28 |
:ivar description: |
|
29 |
result's description, using the same structure as the result itself |
|
30 |
||
31 |
:type rql: str or unicode |
|
32 |
:ivar rql: the original RQL query string |
|
33 |
""" |
|
34 |
def __init__(self, results, rql, args=None, description=(), cachekey=None, |
|
35 |
rqlst=None): |
|
36 |
self.rows = results |
|
37 |
self.rowcount = results and len(results) or 0 |
|
38 |
# original query and arguments |
|
39 |
self.rql = rql |
|
40 |
self.args = args |
|
41 |
self.cachekey = cachekey |
|
42 |
# entity types for each cell (same shape as rows) |
|
43 |
# maybe discarded if specified when the query has been executed |
|
44 |
self.description = description |
|
45 |
# parsed syntax tree |
|
46 |
if rqlst is not None: |
|
47 |
rqlst.schema = None # reset schema in case of pyro transfert |
|
48 |
self._rqlst = rqlst |
|
49 |
# set to (limit, offset) when a result set is limited using the |
|
50 |
# .limit method |
|
51 |
self.limited = None |
|
52 |
# set by the cursor which returned this resultset |
|
53 |
self.vreg = None |
|
54 |
self.req = None |
|
1381
6042f1b342bb
consider kwargs in possible_actions
sylvain.thenault@logilab.fr
parents:
616
diff
changeset
|
55 |
# actions cache |
6042f1b342bb
consider kwargs in possible_actions
sylvain.thenault@logilab.fr
parents:
616
diff
changeset
|
56 |
self._rsetactions = None |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
57 |
|
0 | 58 |
def __str__(self): |
59 |
if not self.rows: |
|
60 |
return '<empty resultset %s>' % self.rql |
|
61 |
return '<resultset %s (%s rows)>' % (self.rql, len(self.rows)) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
62 |
|
0 | 63 |
def __repr__(self): |
64 |
if not self.rows: |
|
170
455ff18ef28e
use repr (instead of str) to print rql in __repr__ method of a result set
Stephanie Marcu <stephanie.marcu@logilab.fr>
parents:
0
diff
changeset
|
65 |
return '<empty resultset for %r>' % self.rql |
616
545a7e18c47f
don't display too much rset rows
sylvain.thenault@logilab.fr
parents:
572
diff
changeset
|
66 |
rows = self.rows |
545a7e18c47f
don't display too much rset rows
sylvain.thenault@logilab.fr
parents:
572
diff
changeset
|
67 |
if len(rows) > 10: |
545a7e18c47f
don't display too much rset rows
sylvain.thenault@logilab.fr
parents:
572
diff
changeset
|
68 |
rows = rows[:10] + ['...'] |
0 | 69 |
if not self.description: |
616
545a7e18c47f
don't display too much rset rows
sylvain.thenault@logilab.fr
parents:
572
diff
changeset
|
70 |
return '<resultset %r (%s rows): %s>' % (self.rql, len(self.rows), |
545a7e18c47f
don't display too much rset rows
sylvain.thenault@logilab.fr
parents:
572
diff
changeset
|
71 |
'\n'.join(str(r) for r in rows)) |
545a7e18c47f
don't display too much rset rows
sylvain.thenault@logilab.fr
parents:
572
diff
changeset
|
72 |
return '<resultset %r (%s rows): %s>' % (self.rql, len(self.rows), |
545a7e18c47f
don't display too much rset rows
sylvain.thenault@logilab.fr
parents:
572
diff
changeset
|
73 |
'\n'.join('%s (%s)' % (r, d) |
545a7e18c47f
don't display too much rset rows
sylvain.thenault@logilab.fr
parents:
572
diff
changeset
|
74 |
for r, d in zip(rows, self.description))) |
0 | 75 |
|
1381
6042f1b342bb
consider kwargs in possible_actions
sylvain.thenault@logilab.fr
parents:
616
diff
changeset
|
76 |
def possible_actions(self, **kwargs): |
6042f1b342bb
consider kwargs in possible_actions
sylvain.thenault@logilab.fr
parents:
616
diff
changeset
|
77 |
if self._rsetactions is None: |
6042f1b342bb
consider kwargs in possible_actions
sylvain.thenault@logilab.fr
parents:
616
diff
changeset
|
78 |
self._rsetactions = {} |
6042f1b342bb
consider kwargs in possible_actions
sylvain.thenault@logilab.fr
parents:
616
diff
changeset
|
79 |
if kwargs: |
6042f1b342bb
consider kwargs in possible_actions
sylvain.thenault@logilab.fr
parents:
616
diff
changeset
|
80 |
key = tuple(sorted(kwargs.iteritems())) |
6042f1b342bb
consider kwargs in possible_actions
sylvain.thenault@logilab.fr
parents:
616
diff
changeset
|
81 |
else: |
6042f1b342bb
consider kwargs in possible_actions
sylvain.thenault@logilab.fr
parents:
616
diff
changeset
|
82 |
key = None |
6042f1b342bb
consider kwargs in possible_actions
sylvain.thenault@logilab.fr
parents:
616
diff
changeset
|
83 |
try: |
6042f1b342bb
consider kwargs in possible_actions
sylvain.thenault@logilab.fr
parents:
616
diff
changeset
|
84 |
return self._rsetactions[key] |
6042f1b342bb
consider kwargs in possible_actions
sylvain.thenault@logilab.fr
parents:
616
diff
changeset
|
85 |
except KeyError: |
2813
0cf6c8005bf6
R propagate deprecation of CWRegistry.possible_vobjects
Nicolas Chauvat <nicolas.chauvat@logilab.fr>
parents:
2792
diff
changeset
|
86 |
actions = self.vreg['actions'].poss_visible_objects( |
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:
2648
diff
changeset
|
87 |
self.req, rset=self, **kwargs) |
1381
6042f1b342bb
consider kwargs in possible_actions
sylvain.thenault@logilab.fr
parents:
616
diff
changeset
|
88 |
self._rsetactions[key] = actions |
6042f1b342bb
consider kwargs in possible_actions
sylvain.thenault@logilab.fr
parents:
616
diff
changeset
|
89 |
return actions |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
90 |
|
0 | 91 |
def __len__(self): |
92 |
"""returns the result set's size""" |
|
93 |
return self.rowcount |
|
94 |
||
95 |
def __nonzero__(self): |
|
96 |
return self.rowcount |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
97 |
|
0 | 98 |
def __getitem__(self, i): |
99 |
"""returns the ith element of the result set""" |
|
100 |
return self.rows[i] #ResultSetRow(self.rows[i]) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
101 |
|
0 | 102 |
def __getslice__(self, i, j): |
103 |
"""returns slice [i:j] of the result set""" |
|
104 |
return self.rows[i:j] |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
105 |
|
0 | 106 |
def __iter__(self): |
107 |
"""Returns an iterator over rows""" |
|
108 |
return iter(self.rows) |
|
109 |
||
110 |
def __add__(self, rset): |
|
111 |
# XXX buggy implementation (.rql and .args attributes at least much |
|
112 |
# probably differ) |
|
113 |
# at least rql could be fixed now that we have union and sub-queries |
|
114 |
# but I tend to think that since we have that, we should not need this |
|
115 |
# method anymore (syt) |
|
116 |
rset = ResultSet(self.rows+rset.rows, self.rql, self.args, |
|
117 |
self.description +rset.description) |
|
118 |
return self.req.decorate_rset(rset) |
|
119 |
||
3551
5a73db781dac
[rset] new copy() method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3016
diff
changeset
|
120 |
def copy(self): |
5a73db781dac
[rset] new copy() method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3016
diff
changeset
|
121 |
rset = ResultSet(self.rows[:], self.rql, self.args, self.description[:]) |
5a73db781dac
[rset] new copy() method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3016
diff
changeset
|
122 |
return self.req.decorate_rset(rset) |
5a73db781dac
[rset] new copy() method
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3016
diff
changeset
|
123 |
|
0 | 124 |
def _prepare_copy(self, rows, descr): |
125 |
rset = ResultSet(rows, self.rql, self.args, descr) |
|
126 |
return self.req.decorate_rset(rset) |
|
127 |
||
128 |
def transformed_rset(self, transformcb): |
|
129 |
""" the result set according to a given column types |
|
130 |
||
131 |
:type transormcb: callable(row, desc) |
|
132 |
:param transformcb: |
|
133 |
a callable which should take a row and its type description as |
|
134 |
parameters, and return the transformed row and type description. |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
135 |
|
0 | 136 |
|
137 |
:type col: int |
|
138 |
:param col: the column index |
|
139 |
||
140 |
:rtype: `ResultSet` |
|
141 |
""" |
|
142 |
rows, descr = [], [] |
|
143 |
rset = self._prepare_copy(rows, descr) |
|
144 |
for row, desc in zip(self.rows, self.description): |
|
145 |
nrow, ndesc = transformcb(row, desc) |
|
146 |
if ndesc: # transformcb returns None for ndesc to skip that row |
|
147 |
rows.append(nrow) |
|
148 |
descr.append(ndesc) |
|
149 |
rset.rowcount = len(rows) |
|
150 |
return rset |
|
151 |
||
152 |
def filtered_rset(self, filtercb, col=0): |
|
153 |
"""filter the result set according to a given filtercb |
|
154 |
||
155 |
:type filtercb: callable(entity) |
|
156 |
:param filtercb: |
|
157 |
a callable which should take an entity as argument and return |
|
158 |
False if it should be skipped, else True |
|
159 |
||
160 |
:type col: int |
|
161 |
:param col: the column index |
|
162 |
||
163 |
:rtype: `ResultSet` |
|
164 |
""" |
|
165 |
rows, descr = [], [] |
|
166 |
rset = self._prepare_copy(rows, descr) |
|
167 |
for i in xrange(len(self)): |
|
168 |
if not filtercb(self.get_entity(i, col)): |
|
169 |
continue |
|
170 |
rows.append(self.rows[i]) |
|
171 |
descr.append(self.description[i]) |
|
172 |
rset.rowcount = len(rows) |
|
173 |
return rset |
|
174 |
||
175 |
||
176 |
def sorted_rset(self, keyfunc, reverse=False, col=0): |
|
177 |
"""sorts the result set according to a given keyfunc |
|
178 |
||
179 |
:type keyfunc: callable(entity) |
|
180 |
:param keyfunc: |
|
181 |
a callable which should take an entity as argument and return |
|
182 |
the value used to compare and sort |
|
183 |
||
184 |
:type reverse: bool |
|
185 |
:param reverse: if the result should be reversed |
|
186 |
||
187 |
:type col: int |
|
188 |
:param col: the column index. if col = -1, the whole row are used |
|
189 |
||
190 |
:rtype: `ResultSet` |
|
191 |
""" |
|
192 |
rows, descr = [], [] |
|
193 |
rset = self._prepare_copy(rows, descr) |
|
194 |
if col >= 0: |
|
195 |
entities = sorted(enumerate(self.entities(col)), |
|
196 |
key=lambda (i, e): keyfunc(e), reverse=reverse) |
|
197 |
else: |
|
198 |
entities = sorted(enumerate(self), |
|
199 |
key=lambda (i, e): keyfunc(e), reverse=reverse) |
|
1132 | 200 |
for index, _ in entities: |
0 | 201 |
rows.append(self.rows[index]) |
202 |
descr.append(self.description[index]) |
|
203 |
rset.rowcount = len(rows) |
|
204 |
return rset |
|
205 |
||
206 |
def split_rset(self, keyfunc=None, col=0, return_dict=False): |
|
207 |
"""Splits the result set in multiple result set according to a given key |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
208 |
|
0 | 209 |
:type keyfunc: callable(entity or FinalType) |
210 |
:param keyfunc: |
|
211 |
a callable which should take a value of the rset in argument and |
|
212 |
return the value used to group the value. If not define, raw value |
|
213 |
of the specified columns is used. |
|
214 |
||
215 |
:type col: int |
|
216 |
:param col: the column index. if col = -1, the whole row are used |
|
217 |
||
218 |
:type return_dict: Boolean |
|
219 |
:param return_dict: If true, the function return a mapping |
|
220 |
(key -> rset) instead of a list of rset |
|
221 |
||
222 |
:rtype: List of `ResultSet` or mapping of `ResultSet` |
|
223 |
||
224 |
""" |
|
225 |
result = [] |
|
226 |
mapping = {} |
|
227 |
for idx, line in enumerate(self): |
|
228 |
if col >= 0: |
|
229 |
try: |
|
1132 | 230 |
key = self.get_entity(idx, col) |
0 | 231 |
except NotAnEntity: |
232 |
key = line[col] |
|
233 |
else: |
|
234 |
key = line |
|
235 |
if keyfunc is not None: |
|
236 |
key = keyfunc(key) |
|
237 |
||
238 |
if key not in mapping: |
|
239 |
rows, descr = [], [] |
|
240 |
rset = self._prepare_copy(rows, descr) |
|
241 |
mapping[key] = rset |
|
242 |
result.append(rset) |
|
243 |
else: |
|
244 |
rset = mapping[key] |
|
245 |
rset.rows.append(self.rows[idx]) |
|
246 |
rset.description.append(self.description[idx]) |
|
247 |
for rset in result: |
|
248 |
rset.rowcount = len(rset.rows) |
|
249 |
if return_dict: |
|
250 |
return mapping |
|
251 |
else: |
|
252 |
return result |
|
253 |
||
2792
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
254 |
def limited_rql(self): |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
255 |
"""return a printable rql for the result set associated to the object, |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
256 |
with limit/offset correctly set according to maximum page size and |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
257 |
currently displayed page when necessary |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
258 |
""" |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
259 |
# try to get page boundaries from the navigation component |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
260 |
# XXX we should probably not have a ref to this component here (eg in |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
261 |
# cubicweb.common) |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
262 |
nav = self.vreg['components'].select_or_none('navigation', self.req, |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
263 |
rset=self) |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
264 |
if nav: |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
265 |
start, stop = nav.page_boundaries() |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
266 |
rql = self._limit_offset_rql(stop - start, start) |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
267 |
# result set may have be limited manually in which case navigation won't |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
268 |
# apply |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
269 |
elif self.limited: |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
270 |
rql = self._limit_offset_rql(*self.limited) |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
271 |
# navigation component doesn't apply and rset has not been limited, no |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
272 |
# need to limit query |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
273 |
else: |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
274 |
rql = self.printable_rql() |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
275 |
return rql |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
276 |
|
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
277 |
def _limit_offset_rql(self, limit, offset): |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
278 |
rqlst = self.syntax_tree() |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
279 |
if len(rqlst.children) == 1: |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
280 |
select = rqlst.children[0] |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
281 |
olimit, ooffset = select.limit, select.offset |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
282 |
select.limit, select.offset = limit, offset |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
283 |
rql = rqlst.as_string(kwargs=self.args) |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
284 |
# restore original limit/offset |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
285 |
select.limit, select.offset = olimit, ooffset |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
286 |
else: |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
287 |
newselect = stmts.Select() |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
288 |
newselect.limit = limit |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
289 |
newselect.offset = offset |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
290 |
aliases = [nodes.VariableRef(newselect.get_variable(vref.name, i)) |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
291 |
for i, vref in enumerate(rqlst.selection)] |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
292 |
newselect.set_with([nodes.SubQuery(aliases, rqlst)], check=False) |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
293 |
newunion = stmts.Union() |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
294 |
newunion.append(newselect) |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
295 |
rql = rqlst.as_string(kwargs=self.args) |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
296 |
rqlst.parent = None |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
297 |
return rql |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
298 |
|
0 | 299 |
def limit(self, limit, offset=0, inplace=False): |
300 |
"""limit the result set to the given number of rows optionaly starting |
|
301 |
from an index different than 0 |
|
302 |
||
303 |
:type limit: int |
|
304 |
:param limit: the maximum number of results |
|
305 |
||
306 |
:type offset: int |
|
307 |
:param offset: the offset index |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
308 |
|
0 | 309 |
:type inplace: bool |
310 |
:param inplace: |
|
311 |
if true, the result set is modified in place, else a new result set |
|
312 |
is returned and the original is left unmodified |
|
313 |
||
314 |
:rtype: `ResultSet` |
|
315 |
""" |
|
316 |
stop = limit+offset |
|
317 |
rows = self.rows[offset:stop] |
|
318 |
descr = self.description[offset:stop] |
|
319 |
if inplace: |
|
320 |
rset = self |
|
321 |
rset.rows, rset.description = rows, descr |
|
322 |
rset.rowcount = len(rows) |
|
323 |
clear_cache(rset, 'description_struct') |
|
324 |
if offset: |
|
325 |
clear_cache(rset, 'get_entity') |
|
326 |
# we also have to fix/remove from the request entity cache entities |
|
327 |
# which get a wrong rset reference by this limit call |
|
328 |
for entity in self.req.cached_entities(): |
|
3379
9192ba07890d
use .cw_rset instead of rset on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3023
diff
changeset
|
329 |
if entity.cw_rset is self: |
0 | 330 |
if offset <= entity.row < stop: |
331 |
entity.row = entity.row - offset |
|
332 |
else: |
|
333 |
self.req.drop_entity_cache(entity.eid) |
|
334 |
else: |
|
335 |
rset = self._prepare_copy(rows, descr) |
|
336 |
if not offset: |
|
337 |
# can copy built entity caches |
|
338 |
copy_cache(rset, 'get_entity', self) |
|
339 |
rset.limited = (limit, offset) |
|
340 |
return rset |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
341 |
|
0 | 342 |
def printable_rql(self, encoded=False): |
343 |
"""return the result set's origin rql as a string, with arguments |
|
344 |
substitued |
|
345 |
""" |
|
346 |
encoding = self.req.encoding |
|
347 |
rqlstr = self.syntax_tree().as_string(encoding, self.args) |
|
348 |
# sounds like we get encoded or unicode string due to a bug in as_string |
|
349 |
if not encoded: |
|
350 |
if isinstance(rqlstr, unicode): |
|
351 |
return rqlstr |
|
352 |
return unicode(rqlstr, encoding) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
353 |
else: |
0 | 354 |
if isinstance(rqlstr, unicode): |
355 |
return rqlstr.encode(encoding) |
|
356 |
return rqlstr |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
357 |
|
0 | 358 |
# client helper methods ################################################### |
359 |
||
360 |
def entities(self, col=0): |
|
361 |
"""iter on entities with eid in the `col` column of the result set""" |
|
362 |
for i in xrange(len(self)): |
|
363 |
# may have None values in case of outer join (or aggregat on eid |
|
364 |
# hacks) |
|
365 |
if self.rows[i][col] is not None: |
|
366 |
yield self.get_entity(i, col) |
|
367 |
||
2792
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
368 |
def complete_entity(self, row, col=0, skip_bytes=True): |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
369 |
"""short cut to get an completed entity instance for a particular |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
370 |
row (all instance's attributes have been fetched) |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
371 |
""" |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
372 |
entity = self.get_entity(row, col) |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
373 |
entity.complete(skip_bytes=skip_bytes) |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
374 |
return entity |
135580d15d42
rename and move cw.RequestSessionMixIn to cw.req.RequestSessionBase; move some appobjects methods where they actually belong to
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
375 |
|
0 | 376 |
@cached |
377 |
def get_entity(self, row, col=None): |
|
378 |
"""special method for query retreiving a single entity, returns a |
|
379 |
partially initialized Entity instance. |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
380 |
|
0 | 381 |
WARNING: due to the cache wrapping this function, you should NEVER |
382 |
give row as a named parameter (i.e. rset.get_entity(req, 0) |
|
383 |
is OK but rset.get_entity(row=0, req=req) isn't |
|
384 |
||
385 |
:type row,col: int, int |
|
386 |
:param row,col: |
|
387 |
row and col numbers localizing the entity among the result's table |
|
388 |
||
389 |
:return: the partially initialized `Entity` instance |
|
390 |
""" |
|
391 |
if col is None: |
|
392 |
from warnings import warn |
|
3405
9d31c9cb8103
nicer deprecation warnings
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3379
diff
changeset
|
393 |
msg = '[3.2] col parameter will become mandatory in future version' |
0 | 394 |
warn(msg, DeprecationWarning, stacklevel=3) |
395 |
col = 0 |
|
396 |
etype = self.description[row][col] |
|
397 |
try: |
|
398 |
eschema = self.vreg.schema.eschema(etype) |
|
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3625
diff
changeset
|
399 |
if eschema.final: |
0 | 400 |
raise NotAnEntity(etype) |
401 |
except KeyError: |
|
402 |
raise NotAnEntity(etype) |
|
403 |
return self._build_entity(row, col) |
|
404 |
||
2647
b0a2e779845c
enable server side entity caching, 25% speedup on codenaf insertion. ALL CW TESTS OK
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2381
diff
changeset
|
405 |
def _build_entity(self, row, col): |
0 | 406 |
"""internal method to get a single entity, returns a |
407 |
partially initialized Entity instance. |
|
408 |
||
409 |
partially means that only attributes selected in the RQL |
|
410 |
query will be directly assigned to the entity. |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
411 |
|
0 | 412 |
:type row,col: int, int |
413 |
:param row,col: |
|
414 |
row and col numbers localizing the entity among the result's table |
|
415 |
||
416 |
:return: the partially initialized `Entity` instance |
|
417 |
""" |
|
418 |
req = self.req |
|
419 |
if req is None: |
|
420 |
raise AssertionError('dont call get_entity with no req on the result set') |
|
421 |
rowvalues = self.rows[row] |
|
422 |
eid = rowvalues[col] |
|
423 |
assert eid is not None |
|
424 |
# return cached entity if exists. This also avoids potential recursion |
|
425 |
# XXX should we consider updating a cached entity with possible |
|
426 |
# new attributes found in this resultset ? |
|
427 |
try: |
|
2648
4ae7d02ce063
F [rset repo cache] set entity.rset when no set on entities retreived from the cache
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2647
diff
changeset
|
428 |
entity = req.entity_cache(eid) |
0 | 429 |
except KeyError: |
430 |
pass |
|
2832
7fb67c54ffb9
[rset] better explanation, refactor try except
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2813
diff
changeset
|
431 |
else: |
3379
9192ba07890d
use .cw_rset instead of rset on appobject classes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3023
diff
changeset
|
432 |
if entity.cw_rset is None: |
2832
7fb67c54ffb9
[rset] better explanation, refactor try except
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2813
diff
changeset
|
433 |
# entity has no rset set, this means entity has been created by |
7fb67c54ffb9
[rset] better explanation, refactor try except
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2813
diff
changeset
|
434 |
# the querier (req is a repository session) and so jas no rset |
7fb67c54ffb9
[rset] better explanation, refactor try except
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2813
diff
changeset
|
435 |
# info. Add it. |
7fb67c54ffb9
[rset] better explanation, refactor try except
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2813
diff
changeset
|
436 |
entity.cw_rset = self |
7fb67c54ffb9
[rset] better explanation, refactor try except
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2813
diff
changeset
|
437 |
entity.cw_row = row |
7fb67c54ffb9
[rset] better explanation, refactor try except
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2813
diff
changeset
|
438 |
entity.cw_col = col |
7fb67c54ffb9
[rset] better explanation, refactor try except
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2813
diff
changeset
|
439 |
return entity |
0 | 440 |
# build entity instance |
441 |
etype = self.description[row][col] |
|
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:
2648
diff
changeset
|
442 |
entity = self.vreg['etypes'].etype_class(etype)(req, rset=self, |
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:
2648
diff
changeset
|
443 |
row=row, col=col) |
0 | 444 |
entity.set_eid(eid) |
445 |
# cache entity |
|
446 |
req.set_entity_cache(entity) |
|
447 |
eschema = entity.e_schema |
|
448 |
# try to complete the entity if there are some additional columns |
|
449 |
if len(rowvalues) > 1: |
|
450 |
rqlst = self.syntax_tree() |
|
451 |
if rqlst.TYPE == 'select': |
|
452 |
# UNION query, find the subquery from which this entity has been |
|
453 |
# found |
|
3625
f03b55a18c43
fix bug w/ get_entity and subqueries
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3551
diff
changeset
|
454 |
select, col = rqlst.locate_subquery(col, etype, self.args) |
f03b55a18c43
fix bug w/ get_entity and subqueries
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3551
diff
changeset
|
455 |
else: |
f03b55a18c43
fix bug w/ get_entity and subqueries
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3551
diff
changeset
|
456 |
select = rqlst |
0 | 457 |
# take care, due to outer join support, we may find None |
458 |
# values for non final relation |
|
3625
f03b55a18c43
fix bug w/ get_entity and subqueries
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3551
diff
changeset
|
459 |
for i, attr, x in attr_desc_iterator(select, col): |
f03b55a18c43
fix bug w/ get_entity and subqueries
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3551
diff
changeset
|
460 |
outerselidx = rqlst.subquery_selection_index(select, i) |
f03b55a18c43
fix bug w/ get_entity and subqueries
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3551
diff
changeset
|
461 |
if outerselidx is None: |
f03b55a18c43
fix bug w/ get_entity and subqueries
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3551
diff
changeset
|
462 |
continue |
0 | 463 |
if x == 'subject': |
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3625
diff
changeset
|
464 |
rschema = eschema.subjrels[attr] |
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3625
diff
changeset
|
465 |
if rschema.final: |
3625
f03b55a18c43
fix bug w/ get_entity and subqueries
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3551
diff
changeset
|
466 |
entity[attr] = rowvalues[outerselidx] |
0 | 467 |
continue |
468 |
tetype = rschema.objects(etype)[0] |
|
469 |
card = rschema.rproperty(etype, tetype, 'cardinality')[0] |
|
470 |
else: |
|
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3625
diff
changeset
|
471 |
rschema = eschema.objrels[attr] |
0 | 472 |
tetype = rschema.subjects(etype)[0] |
473 |
card = rschema.rproperty(tetype, etype, 'cardinality')[1] |
|
474 |
# only keep value if it can't be multivalued |
|
475 |
if card in '1?': |
|
3625
f03b55a18c43
fix bug w/ get_entity and subqueries
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3551
diff
changeset
|
476 |
if rowvalues[outerselidx] is None: |
0 | 477 |
if x == 'subject': |
478 |
rql = 'Any Y WHERE X %s Y, X eid %s' |
|
479 |
else: |
|
480 |
rql = 'Any Y WHERE Y %s X, X eid %s' |
|
481 |
rrset = ResultSet([], rql % (attr, entity.eid)) |
|
482 |
req.decorate_rset(rrset) |
|
483 |
else: |
|
3625
f03b55a18c43
fix bug w/ get_entity and subqueries
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3551
diff
changeset
|
484 |
rrset = self._build_entity(row, outerselidx).as_rset() |
0 | 485 |
entity.set_related_cache(attr, x, rrset) |
486 |
return entity |
|
487 |
||
488 |
@cached |
|
489 |
def syntax_tree(self): |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
490 |
"""get the syntax tree for the source query. |
0 | 491 |
|
492 |
:rtype: rql.stmts.Statement |
|
493 |
:return: the RQL syntax tree of the originating query |
|
494 |
""" |
|
495 |
if self._rqlst: |
|
496 |
rqlst = self._rqlst.copy() |
|
497 |
# to avoid transport overhead when pyro is used, the schema has been |
|
498 |
# unset from the syntax tree |
|
499 |
rqlst.schema = self.vreg.schema |
|
500 |
self.vreg.rqlhelper.annotate(rqlst) |
|
501 |
else: |
|
502 |
rqlst = self.vreg.parse(self.req, self.rql, self.args) |
|
503 |
return rqlst |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
504 |
|
0 | 505 |
@cached |
506 |
def column_types(self, col): |
|
507 |
"""return the list of different types in the column with the given col |
|
508 |
index default to 0 (ie the first column) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
509 |
|
0 | 510 |
:type col: int |
511 |
:param col: the index of the desired column |
|
512 |
||
513 |
:rtype: list |
|
514 |
:return: the different entities type found in the column |
|
515 |
""" |
|
516 |
return frozenset(struc[-1][col] for struc in self.description_struct()) |
|
517 |
||
518 |
@cached |
|
519 |
def description_struct(self): |
|
520 |
"""return a list describing sequence of results with the same |
|
521 |
description, e.g. : |
|
522 |
[[0, 4, ('Bug',)] |
|
523 |
[[0, 4, ('Bug',), [5, 8, ('Story',)] |
|
524 |
[[0, 3, ('Project', 'Version',)]] |
|
525 |
""" |
|
526 |
result = [] |
|
527 |
last = None |
|
528 |
for i, row in enumerate(self.description): |
|
529 |
if row != last: |
|
530 |
if last is not None: |
|
531 |
result[-1][1] = i - 1 |
|
532 |
result.append( [i, None, row] ) |
|
533 |
last = row |
|
534 |
if last is not None: |
|
535 |
result[-1][1] = i |
|
536 |
return result |
|
537 |
||
538 |
@cached |
|
539 |
def related_entity(self, row, col): |
|
540 |
"""try to get the related entity to extract format information if any""" |
|
541 |
locate_query_col = col |
|
542 |
rqlst = self.syntax_tree() |
|
543 |
etype = self.description[row][col] |
|
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3625
diff
changeset
|
544 |
if self.vreg.schema.eschema(etype).final: |
572
9849fed789c9
test and fix potential error with None optional relation
sylvain.thenault@logilab.fr
parents:
170
diff
changeset
|
545 |
# final type, find a better one to locate the correct subquery |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
546 |
# (ambiguous if possible) |
0 | 547 |
for i in xrange(len(rqlst.children[0].selection)): |
548 |
if i == col: |
|
549 |
continue |
|
550 |
coletype = self.description[row][i] |
|
551 |
if coletype is None: |
|
552 |
continue |
|
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3625
diff
changeset
|
553 |
if not self.vreg.schema.eschema(coletype).final: |
0 | 554 |
etype = coletype |
555 |
locate_query_col = i |
|
556 |
if len(self.column_types(i)) > 1: |
|
557 |
break |
|
572
9849fed789c9
test and fix potential error with None optional relation
sylvain.thenault@logilab.fr
parents:
170
diff
changeset
|
558 |
# UNION query, find the subquery from which this entity has been found |
3016
5787d1cc8106
[rset] fix #231354 w/ rql 0.22.3 api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
559 |
select = rqlst.locate_subquery(locate_query_col, etype, self.args)[0] |
5787d1cc8106
[rset] fix #231354 w/ rql 0.22.3 api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
560 |
col = rqlst.subquery_selection_index(select, col) |
0 | 561 |
try: |
562 |
myvar = select.selection[col].variable |
|
563 |
except AttributeError: |
|
572
9849fed789c9
test and fix potential error with None optional relation
sylvain.thenault@logilab.fr
parents:
170
diff
changeset
|
564 |
# not a variable |
0 | 565 |
return None, None |
566 |
rel = myvar.main_relation() |
|
567 |
if rel is not None: |
|
3016
5787d1cc8106
[rset] fix #231354 w/ rql 0.22.3 api
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
2650
diff
changeset
|
568 |
index = rel.children[0].root_selection_index() |
572
9849fed789c9
test and fix potential error with None optional relation
sylvain.thenault@logilab.fr
parents:
170
diff
changeset
|
569 |
if index is not None and self.rows[row][index]: |
0 | 570 |
return self.get_entity(row, index), rel.r_type |
571 |
return None, None |
|
572 |
||
573 |
@cached |
|
574 |
def searched_text(self): |
|
575 |
"""returns the searched text in case of full-text search |
|
576 |
||
577 |
:return: searched text or `None` if the query is not |
|
578 |
a full-text query |
|
579 |
""" |
|
580 |
rqlst = self.syntax_tree() |
|
581 |
for rel in rqlst.iget_nodes(nodes.Relation): |
|
582 |
if rel.r_type == 'has_text': |
|
583 |
__, rhs = rel.get_variable_parts() |
|
584 |
return rhs.eval(self.args) |
|
585 |
return None |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1477
diff
changeset
|
586 |
|
0 | 587 |
|
588 |
def attr_desc_iterator(rqlst, index=0): |
|
589 |
"""return an iterator on a list of 2-uple (index, attr_relation) |
|
590 |
localizing attribute relations of the main variable in a result's row |
|
591 |
||
592 |
:type rqlst: rql.stmts.Select |
|
593 |
:param rqlst: the RQL syntax tree to describe |
|
594 |
||
595 |
:return: |
|
596 |
a generator on (index, relation, target) describing column being |
|
597 |
attribute of the main variable |
|
598 |
""" |
|
599 |
main = rqlst.selection[index] |
|
600 |
for i, term in enumerate(rqlst.selection): |
|
601 |
if i == index: |
|
602 |
continue |
|
2352
734eb79680e9
handle attribute selection on variable selected using MAX()
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
603 |
# XXX rewritten const |
734eb79680e9
handle attribute selection on variable selected using MAX()
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
604 |
# use iget_nodes for (hack) case where we have things like MAX(V) |
734eb79680e9
handle attribute selection on variable selected using MAX()
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
605 |
for vref in term.iget_nodes(nodes.VariableRef): |
734eb79680e9
handle attribute selection on variable selected using MAX()
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
606 |
var = vref.variable |
734eb79680e9
handle attribute selection on variable selected using MAX()
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
607 |
break |
734eb79680e9
handle attribute selection on variable selected using MAX()
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
608 |
else: |
0 | 609 |
continue |
610 |
for ref in var.references(): |
|
611 |
rel = ref.relation() |
|
612 |
if rel is None or rel.is_types_restriction(): |
|
613 |
continue |
|
614 |
lhs, rhs = rel.get_variable_parts() |
|
615 |
if main.is_equivalent(lhs): |
|
616 |
if rhs.is_equivalent(term): |
|
617 |
yield (i, rel.r_type, 'subject') |
|
618 |
elif main.is_equivalent(rhs): |
|
619 |
if lhs.is_equivalent(term): |
|
620 |
yield (i, rel.r_type, 'object') |