author | Sylvain Thénault <sylvain.thenault@logilab.fr> |
Mon, 17 Jan 2011 12:41:40 +0100 | |
branch | stable |
changeset 6832 | f392e4fb36ec |
parent 6297 | 23c1e50ff97b |
child 6940 | 1172c25655b7 |
permissions | -rw-r--r-- |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
1 |
# copyright 2003-2010 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
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:
4721
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
0 | 18 |
"""Functions to add additional annotations on a rql syntax tree to ease later |
19 |
code generation. |
|
6297
23c1e50ff97b
[rql] fix bug with query like 'Any 1 WHERE NOT X in_group G': tables should be kept in EXISTS() even when there are no restriction
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5582
diff
changeset
|
20 |
""" |
0 | 21 |
|
22 |
__docformat__ = "restructuredtext en" |
|
23 |
||
24 |
from logilab.common.compat import any |
|
25 |
||
3815
50b87f759b5d
test and fix http://www.logilab.org/ticket/499838
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3694
diff
changeset
|
26 |
from rql import BadRQLQuery |
5582
3e133b29a1a4
[rql2sql] follow rql 0.26.1 changes: NOT nodes normalization, allowing simplification of sql generation, and fix #XXX
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5426
diff
changeset
|
27 |
from rql.nodes import Relation, VariableRef, Constant, Variable, Or, Exists |
0 | 28 |
from rql.utils import common_parent |
29 |
||
30 |
def _annotate_select(annotator, rqlst): |
|
31 |
for subquery in rqlst.with_: |
|
32 |
annotator._annotate_union(subquery.query) |
|
33 |
#if server.DEBUG: |
|
34 |
# print '-------- sql annotate', repr(rqlst) |
|
35 |
getrschema = annotator.schema.rschema |
|
438 | 36 |
has_text_query = False |
0 | 37 |
need_distinct = rqlst.distinct |
38 |
for rel in rqlst.iget_nodes(Relation): |
|
5582
3e133b29a1a4
[rql2sql] follow rql 0.26.1 changes: NOT nodes normalization, allowing simplification of sql generation, and fix #XXX
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5426
diff
changeset
|
39 |
if getrschema(rel.r_type).symmetric and not isinstance(rel.parent, Exists): |
0 | 40 |
for vref in rel.iget_nodes(VariableRef): |
41 |
stinfo = vref.variable.stinfo |
|
42 |
if not stinfo['constnode'] and stinfo['selected']: |
|
43 |
need_distinct = True |
|
44 |
# XXX could mark as not invariant |
|
45 |
break |
|
4719
aaed3f813ef8
kill dead/useless code as suggested by pylint
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4467
diff
changeset
|
46 |
for var in rqlst.defined_vars.itervalues(): |
0 | 47 |
stinfo = var.stinfo |
48 |
if stinfo.get('ftirels'): |
|
49 |
has_text_query = True |
|
50 |
if stinfo['attrvar']: |
|
51 |
stinfo['invariant'] = False |
|
52 |
stinfo['principal'] = _select_main_var(stinfo['rhsrelations']) |
|
53 |
continue |
|
5004
4cc020ee70e2
le patch rql26 a été importé
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
54 |
if not stinfo['relations'] and stinfo['typerel'] is None: |
0 | 55 |
# Any X, Any MAX(X)... |
56 |
# those particular queries should be executed using the system |
|
57 |
# entities table unless there is some type restriction |
|
58 |
stinfo['invariant'] = True |
|
59 |
stinfo['principal'] = None |
|
60 |
continue |
|
61 |
if any(rel for rel in stinfo['relations'] if rel.r_type == 'eid' and rel.operator() != '=') and \ |
|
62 |
not any(r for r in var.stinfo['relations'] - var.stinfo['rhsrelations'] |
|
63 |
if r.r_type != 'eid' and (getrschema(r.r_type).inlined or getrschema(r.r_type).final)): |
|
64 |
# Any X WHERE X eid > 2 |
|
65 |
# those particular queries should be executed using the system entities table |
|
66 |
stinfo['invariant'] = True |
|
67 |
stinfo['principal'] = None |
|
68 |
continue |
|
69 |
if stinfo['selected'] and var.valuable_references() == 1+bool(stinfo['constnode']): |
|
70 |
# "Any X", "Any X, Y WHERE X attr Y" |
|
71 |
stinfo['invariant'] = False |
|
72 |
continue |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1132
diff
changeset
|
73 |
joins = set() |
0 | 74 |
invariant = False |
75 |
for ref in var.references(): |
|
76 |
rel = ref.relation() |
|
77 |
if rel is None or rel.is_types_restriction(): |
|
78 |
continue |
|
79 |
lhs, rhs = rel.get_parts() |
|
80 |
onlhs = ref is lhs |
|
81 |
if rel.r_type == 'eid': |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1132
diff
changeset
|
82 |
if not (onlhs and len(stinfo['relations']) > 1): |
0 | 83 |
break |
84 |
if not stinfo['constnode']: |
|
85 |
joins.add(rel) |
|
86 |
continue |
|
87 |
elif rel.r_type == 'identity': |
|
88 |
# identity can't be used as principal, so check other relation are used |
|
89 |
# XXX explain rhs.operator == '=' |
|
90 |
if rhs.operator != '=' or len(stinfo['relations']) <= 1: #(stinfo['constnode'] and rhs.operator == '='): |
|
91 |
break |
|
92 |
joins.add(rel) |
|
93 |
continue |
|
94 |
rschema = getrschema(rel.r_type) |
|
95 |
if rel.optional: |
|
5004
4cc020ee70e2
le patch rql26 a été importé
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
96 |
if rel in stinfo.get('optrelations', ()): |
0 | 97 |
# optional variable can't be invariant if this is the lhs |
98 |
# variable of an inlined relation |
|
99 |
if not rel in stinfo['rhsrelations'] and rschema.inlined: |
|
100 |
break |
|
101 |
else: |
|
102 |
# variable used as main variable of an optional relation |
|
103 |
# can't be invariant |
|
104 |
break |
|
105 |
if rschema.final or (onlhs and rschema.inlined): |
|
106 |
if rschema.type != 'has_text': |
|
107 |
# need join anyway if the variable appears in a final or |
|
108 |
# inlined relation |
|
109 |
break |
|
110 |
joins.add(rel) |
|
111 |
continue |
|
112 |
if not stinfo['constnode']: |
|
113 |
if rschema.inlined and rel.neged(strict=True): |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1132
diff
changeset
|
114 |
# if relation is inlined, can't be invariant if that |
0 | 115 |
# variable is used anywhere else. |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1132
diff
changeset
|
116 |
# see 'Any P WHERE NOT N ecrit_par P, N eid 512': |
0 | 117 |
# sql for 'NOT N ecrit_par P' is 'N.ecrit_par is NULL' so P |
118 |
# can use N.ecrit_par as principal |
|
119 |
if (stinfo['selected'] or len(stinfo['relations']) > 1): |
|
120 |
break |
|
4467
0e73d299730a
fix long-waiting symetric typo: should be spelled symmetric. Add auto database migration on schema deserialization
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4287
diff
changeset
|
121 |
elif rschema.symmetric and stinfo['selected']: |
0 | 122 |
break |
123 |
joins.add(rel) |
|
124 |
else: |
|
125 |
# if there is at least one ambigous relation and no other to |
|
126 |
# restrict types, can't be invariant since we need to filter out |
|
127 |
# other types |
|
128 |
if not annotator.is_ambiguous(var): |
|
129 |
invariant = True |
|
130 |
stinfo['invariant'] = invariant |
|
131 |
if invariant and joins: |
|
132 |
# remember rqlst/solutions analyze information |
|
133 |
# we have to select a kindof "main" relation which will "extrajoins" |
|
134 |
# the other |
|
135 |
# priority should be given to relation which are not in inner queries |
|
136 |
# (eg exists) |
|
137 |
try: |
|
5582
3e133b29a1a4
[rql2sql] follow rql 0.26.1 changes: NOT nodes normalization, allowing simplification of sql generation, and fix #XXX
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5426
diff
changeset
|
138 |
stinfo['principal'] = _select_principal(var.scope, joins) |
0 | 139 |
except CantSelectPrincipal: |
140 |
stinfo['invariant'] = False |
|
141 |
rqlst.need_distinct = need_distinct |
|
142 |
return has_text_query |
|
143 |
||
144 |
||
145 |
||
4721
8f63691ccb7f
pylint style fixes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
146 |
class CantSelectPrincipal(Exception): |
8f63691ccb7f
pylint style fixes
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4719
diff
changeset
|
147 |
"""raised when no 'principal' variable can be found""" |
0 | 148 |
|
5582
3e133b29a1a4
[rql2sql] follow rql 0.26.1 changes: NOT nodes normalization, allowing simplification of sql generation, and fix #XXX
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5426
diff
changeset
|
149 |
def _select_principal(scope, relations, _sort=lambda x:x): |
0 | 150 |
"""given a list of rqlst relations, select one which will be used to |
151 |
represent an invariant variable (e.g. using on extremity of the relation |
|
152 |
instead of the variable's type table |
|
153 |
""" |
|
599
9ef680acd92a
fix select principal so results are predictable during tests
Sylvain <syt@logilab.fr>
parents:
438
diff
changeset
|
154 |
# _sort argument is there for test |
0 | 155 |
diffscope_rels = {} |
156 |
ored_rels = set() |
|
157 |
diffscope_rels = set() |
|
599
9ef680acd92a
fix select principal so results are predictable during tests
Sylvain <syt@logilab.fr>
parents:
438
diff
changeset
|
158 |
for rel in _sort(relations): |
0 | 159 |
# note: only eid and has_text among all final relations may be there |
160 |
if rel.r_type in ('eid', 'identity'): |
|
161 |
continue |
|
162 |
if rel.ored(traverse_scope=True): |
|
163 |
ored_rels.add(rel) |
|
5582
3e133b29a1a4
[rql2sql] follow rql 0.26.1 changes: NOT nodes normalization, allowing simplification of sql generation, and fix #XXX
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5426
diff
changeset
|
164 |
elif rel.scope is scope: |
0 | 165 |
return rel |
166 |
elif not rel.neged(traverse_scope=True): |
|
167 |
diffscope_rels.add(rel) |
|
168 |
if len(ored_rels) > 1: |
|
169 |
ored_rels_copy = tuple(ored_rels) |
|
170 |
for rel1 in ored_rels_copy: |
|
171 |
for rel2 in ored_rels_copy: |
|
172 |
if rel1 is rel2: |
|
173 |
continue |
|
174 |
if isinstance(common_parent(rel1, rel2), Or): |
|
175 |
ored_rels.discard(rel1) |
|
176 |
ored_rels.discard(rel2) |
|
599
9ef680acd92a
fix select principal so results are predictable during tests
Sylvain <syt@logilab.fr>
parents:
438
diff
changeset
|
177 |
for rel in _sort(ored_rels): |
5582
3e133b29a1a4
[rql2sql] follow rql 0.26.1 changes: NOT nodes normalization, allowing simplification of sql generation, and fix #XXX
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5426
diff
changeset
|
178 |
if rel.scope is scope: |
0 | 179 |
return rel |
180 |
diffscope_rels.add(rel) |
|
181 |
# if DISTINCT query, can use variable from a different scope as principal |
|
182 |
# since introduced duplicates will be removed |
|
5582
3e133b29a1a4
[rql2sql] follow rql 0.26.1 changes: NOT nodes normalization, allowing simplification of sql generation, and fix #XXX
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5426
diff
changeset
|
183 |
if scope.stmt.distinct and diffscope_rels: |
599
9ef680acd92a
fix select principal so results are predictable during tests
Sylvain <syt@logilab.fr>
parents:
438
diff
changeset
|
184 |
return iter(_sort(diffscope_rels)).next() |
0 | 185 |
# XXX could use a relation for a different scope if it can't generate |
186 |
# duplicates, so we would have to check cardinality |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1132
diff
changeset
|
187 |
raise CantSelectPrincipal() |
0 | 188 |
|
189 |
def _select_main_var(relations): |
|
190 |
"""given a list of rqlst relations, select one which will be used as main |
|
191 |
relation for the rhs variable |
|
192 |
""" |
|
3815
50b87f759b5d
test and fix http://www.logilab.org/ticket/499838
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3694
diff
changeset
|
193 |
principal = None |
50b87f759b5d
test and fix http://www.logilab.org/ticket/499838
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3694
diff
changeset
|
194 |
# sort for test predictability |
50b87f759b5d
test and fix http://www.logilab.org/ticket/499838
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3694
diff
changeset
|
195 |
for rel in sorted(relations, key=lambda x: (x.children[0].name, x.r_type)): |
50b87f759b5d
test and fix http://www.logilab.org/ticket/499838
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3694
diff
changeset
|
196 |
# only equality relation with a variable as rhs may be principal |
50b87f759b5d
test and fix http://www.logilab.org/ticket/499838
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3694
diff
changeset
|
197 |
if rel.operator() not in ('=', 'IS') \ |
50b87f759b5d
test and fix http://www.logilab.org/ticket/499838
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3694
diff
changeset
|
198 |
or not isinstance(rel.children[1].children[0], VariableRef): |
50b87f759b5d
test and fix http://www.logilab.org/ticket/499838
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3694
diff
changeset
|
199 |
continue |
5582
3e133b29a1a4
[rql2sql] follow rql 0.26.1 changes: NOT nodes normalization, allowing simplification of sql generation, and fix #XXX
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5426
diff
changeset
|
200 |
if rel.scope is rel.stmt: |
0 | 201 |
return rel |
202 |
principal = rel |
|
3815
50b87f759b5d
test and fix http://www.logilab.org/ticket/499838
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3694
diff
changeset
|
203 |
if principal is None: |
50b87f759b5d
test and fix http://www.logilab.org/ticket/499838
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3694
diff
changeset
|
204 |
raise BadRQLQuery('unable to find principal in %s' % ', '.join( |
50b87f759b5d
test and fix http://www.logilab.org/ticket/499838
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3694
diff
changeset
|
205 |
r.as_string() for r in relations)) |
0 | 206 |
return principal |
207 |
||
208 |
||
438 | 209 |
def set_qdata(getrschema, union, noinvariant): |
0 | 210 |
"""recursive function to set querier data on variables in the syntax tree |
211 |
""" |
|
212 |
for select in union.children: |
|
213 |
for subquery in select.with_: |
|
438 | 214 |
set_qdata(getrschema, subquery.query, noinvariant) |
0 | 215 |
for var in select.defined_vars.itervalues(): |
216 |
if var.stinfo['invariant']: |
|
217 |
if var in noinvariant and not var.stinfo['principal'].r_type == 'has_text': |
|
218 |
var._q_invariant = False |
|
219 |
else: |
|
220 |
var._q_invariant = True |
|
221 |
else: |
|
222 |
var._q_invariant = False |
|
223 |
||
224 |
||
225 |
class SQLGenAnnotator(object): |
|
226 |
def __init__(self, schema): |
|
227 |
self.schema = schema |
|
228 |
self.nfdomain = frozenset(eschema.type for eschema in schema.entities() |
|
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3249
diff
changeset
|
229 |
if not eschema.final) |
0 | 230 |
|
231 |
def annotate(self, rqlst): |
|
232 |
"""add information to the rql syntax tree to help sources to do their |
|
233 |
job (read sql generation) |
|
234 |
||
235 |
a variable is tagged as invariant if: |
|
236 |
* it's a non final variable |
|
237 |
* it's not used as lhs in any final or inlined relation |
|
238 |
* there is no type restriction on this variable (either explicit in the |
|
239 |
syntax tree or because a solution for this variable has been removed |
|
240 |
due to security filtering) |
|
241 |
""" |
|
3694 | 242 |
#assert rqlst.TYPE == 'select', rqlst |
0 | 243 |
rqlst.has_text_query = self._annotate_union(rqlst) |
244 |
||
245 |
def _annotate_union(self, union): |
|
246 |
has_text_query = False |
|
247 |
for select in union.children: |
|
248 |
htq = _annotate_select(self, select) |
|
249 |
if htq: |
|
250 |
has_text_query = True |
|
251 |
return has_text_query |
|
252 |
||
253 |
def is_ambiguous(self, var): |
|
254 |
# ignore has_text relation |
|
255 |
if len([rel for rel in var.stinfo['relations'] |
|
5582
3e133b29a1a4
[rql2sql] follow rql 0.26.1 changes: NOT nodes normalization, allowing simplification of sql generation, and fix #XXX
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5426
diff
changeset
|
256 |
if rel.scope is var.scope and rel.r_type == 'has_text']) == 1: |
0 | 257 |
return False |
258 |
try: |
|
259 |
data = var.stmt._deamb_data |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1132
diff
changeset
|
260 |
except AttributeError: |
0 | 261 |
data = var.stmt._deamb_data = IsAmbData(self.schema, self.nfdomain) |
262 |
data.compute(var.stmt) |
|
263 |
return data.is_ambiguous(var) |
|
264 |
||
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1132
diff
changeset
|
265 |
|
0 | 266 |
class IsAmbData(object): |
267 |
def __init__(self, schema, nfdomain): |
|
268 |
self.schema = schema |
|
269 |
# shortcuts |
|
270 |
self.rschema = schema.rschema |
|
271 |
self.eschema = schema.eschema |
|
272 |
# domain for non final variables |
|
273 |
self.nfdomain = nfdomain |
|
274 |
# {var: possible solutions set} |
|
275 |
self.varsols = {} |
|
276 |
# set of ambiguous variables |
|
277 |
self.ambiguousvars = set() |
|
278 |
# remember if a variable has been deambiguified by another to avoid |
|
279 |
# doing the opposite |
|
280 |
self.deambification_map = {} |
|
281 |
# not invariant variables (access to final.inlined relation) |
|
282 |
self.not_invariants = set() |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1132
diff
changeset
|
283 |
|
0 | 284 |
def is_ambiguous(self, var): |
285 |
return var in self.ambiguousvars |
|
286 |
||
287 |
def restrict(self, var, restricted_domain): |
|
288 |
self.varsols[var] &= restricted_domain |
|
289 |
if var in self.ambiguousvars and self.varsols[var] == var.stinfo['possibletypes']: |
|
290 |
self.ambiguousvars.remove(var) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1132
diff
changeset
|
291 |
|
0 | 292 |
def compute(self, rqlst): |
293 |
# set domains for each variable |
|
294 |
for varname, var in rqlst.defined_vars.iteritems(): |
|
5004
4cc020ee70e2
le patch rql26 a été importé
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
295 |
if var.stinfo['uidrel'] is not None or \ |
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3249
diff
changeset
|
296 |
self.eschema(rqlst.solutions[0][varname]).final: |
0 | 297 |
ptypes = var.stinfo['possibletypes'] |
298 |
else: |
|
299 |
ptypes = set(self.nfdomain) |
|
300 |
self.ambiguousvars.add(var) |
|
301 |
self.varsols[var] = ptypes |
|
302 |
if not self.ambiguousvars: |
|
303 |
return |
|
304 |
# apply relation restriction |
|
305 |
self.maydeambrels = maydeambrels = {} |
|
306 |
for rel in rqlst.iget_nodes(Relation): |
|
4287 | 307 |
if rel.r_type == 'eid' or rel.is_types_restriction(): |
0 | 308 |
continue |
309 |
lhs, rhs = rel.get_variable_parts() |
|
310 |
if isinstance(lhs, VariableRef) or isinstance(rhs, VariableRef): |
|
311 |
rschema = self.rschema(rel.r_type) |
|
3689
deb13e88e037
follow yams 0.25 api changes to improve performance
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
3249
diff
changeset
|
312 |
if rschema.inlined or rschema.final: |
0 | 313 |
self.not_invariants.add(lhs.variable) |
314 |
self.set_rel_constraint(lhs, rel, rschema.subjects) |
|
315 |
self.set_rel_constraint(rhs, rel, rschema.objects) |
|
316 |
# try to deambiguify more variables by considering other variables'type |
|
317 |
modified = True |
|
318 |
while modified and self.ambiguousvars: |
|
319 |
modified = False |
|
320 |
for var in self.ambiguousvars.copy(): |
|
321 |
try: |
|
322 |
for rel in (var.stinfo['relations'] & maydeambrels[var]): |
|
323 |
if self.deambiguifying_relation(var, rel): |
|
324 |
modified = True |
|
325 |
break |
|
326 |
except KeyError: |
|
327 |
# no relation to deambiguify |
|
328 |
continue |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1132
diff
changeset
|
329 |
|
0 | 330 |
def _debug_print(self): |
331 |
print 'varsols', dict((x, sorted(str(v) for v in values)) |
|
332 |
for x, values in self.varsols.iteritems()) |
|
333 |
print 'ambiguous vars', sorted(self.ambiguousvars) |
|
334 |
||
335 |
def set_rel_constraint(self, term, rel, etypes_func): |
|
336 |
if isinstance(term, VariableRef) and self.is_ambiguous(term.variable): |
|
337 |
var = term.variable |
|
5173
73760bbb66bd
[rql annotation] add test and fix for bug introduced by 5004:4cc020ee70e2. While it sounded good, it wasn't because stinfo['relations'] didn't include anymore stinfo['typerels']
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5004
diff
changeset
|
338 |
if len(var.stinfo['relations']) == 1 \ |
5582
3e133b29a1a4
[rql2sql] follow rql 0.26.1 changes: NOT nodes normalization, allowing simplification of sql generation, and fix #XXX
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5426
diff
changeset
|
339 |
or rel.scope is var.scope or rel.r_type == 'identity': |
0 | 340 |
self.restrict(var, frozenset(etypes_func())) |
341 |
try: |
|
342 |
self.maydeambrels[var].add(rel) |
|
343 |
except KeyError: |
|
344 |
self.maydeambrels[var] = set((rel,)) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
1132
diff
changeset
|
345 |
|
0 | 346 |
def deambiguifying_relation(self, var, rel): |
347 |
lhs, rhs = rel.get_variable_parts() |
|
348 |
onlhs = var is getattr(lhs, 'variable', None) |
|
349 |
other = onlhs and rhs or lhs |
|
350 |
otheretypes = None |
|
351 |
# XXX isinstance(other.variable, Variable) to skip column alias |
|
352 |
if isinstance(other, VariableRef) and isinstance(other.variable, Variable): |
|
353 |
deambiguifier = other.variable |
|
354 |
if not var is self.deambification_map.get(deambiguifier): |
|
5004
4cc020ee70e2
le patch rql26 a été importé
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
355 |
if var.stinfo['typerel'] is None: |
0 | 356 |
otheretypes = deambiguifier.stinfo['possibletypes'] |
357 |
elif not self.is_ambiguous(deambiguifier): |
|
358 |
otheretypes = self.varsols[deambiguifier] |
|
359 |
elif deambiguifier in self.not_invariants: |
|
360 |
# we know variable won't be invariant, try to use |
|
361 |
# it to deambguify the current variable |
|
362 |
otheretypes = self.varsols[deambiguifier] |
|
5004
4cc020ee70e2
le patch rql26 a été importé
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4721
diff
changeset
|
363 |
if deambiguifier.stinfo['typerel'] is None: |
4285
ea590101691c
don't record deambiguifier when it has no type restriction using 'is', so we don't miss later some available constraints
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
364 |
# if deambiguifier has no type restriction using 'is', |
ea590101691c
don't record deambiguifier when it has no type restriction using 'is', so we don't miss later some available constraints
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
365 |
# don't record it |
ea590101691c
don't record deambiguifier when it has no type restriction using 'is', so we don't miss later some available constraints
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
366 |
deambiguifier = None |
0 | 367 |
elif isinstance(other, Constant) and other.uidtype: |
368 |
otheretypes = (other.uidtype,) |
|
369 |
deambiguifier = None |
|
370 |
if otheretypes is not None: |
|
967 | 371 |
# to restrict, we must check that for all type in othertypes, |
372 |
# possible types on the other end of the relation are matching |
|
373 |
# variable's possible types |
|
0 | 374 |
rschema = self.rschema(rel.r_type) |
375 |
if onlhs: |
|
376 |
rtypefunc = rschema.subjects |
|
377 |
else: |
|
378 |
rtypefunc = rschema.objects |
|
379 |
for otheretype in otheretypes: |
|
380 |
reltypes = frozenset(rtypefunc(otheretype)) |
|
381 |
if var.stinfo['possibletypes'] != reltypes: |
|
4287 | 382 |
return False |
383 |
self.restrict(var, var.stinfo['possibletypes']) |
|
384 |
self.deambification_map[var] = deambiguifier |
|
385 |
return True |
|
0 | 386 |
return False |