[RECOMMIT] Recommitting the patch for multilevel _inherits search support
[odoo/odoo.git] / bin / osv / expression.py
1 #!/usr/bin/env python
2 # -*- encoding: utf-8 -*-
3 ##############################################################################
4 #
5 #    OpenERP, Open Source Management Solution   
6 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
7 #    $Id$
8 #
9 #    This program is free software: you can redistribute it and/or modify
10 #    it under the terms of the GNU General Public License as published by
11 #    the Free Software Foundation, either version 3 of the License, or
12 #    (at your option) any later version.
13 #
14 #    This program is distributed in the hope that it will be useful,
15 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
16 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 #    GNU General Public License for more details.
18 #
19 #    You should have received a copy of the GNU General Public License
20 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 #
22 ##############################################################################
23
24 from tools import flatten, reverse_enumerate
25 import fields
26
27
28 class expression(object):
29     """
30     parse a domain expression
31     use a real polish notation
32     leafs are still in a ('foo', '=', 'bar') format
33     For more info: http://christophe-simonis-at-tiny.blogspot.com/2008/08/new-new-domain-notation.html 
34     """
35
36     def _is_operator(self, element):
37         return isinstance(element, (str, unicode)) and element in ['&', '|', '!']
38
39     def _is_leaf(self, element, internal=False):
40         OPS = ('=', '!=', '<>', '<=', '<', '>', '>=', '=like', 'like', 'not like', 'ilike', 'not ilike', 'in', 'not in', 'child_of')
41         INTERNAL_OPS = OPS + ('inselect',)
42         return (isinstance(element, tuple) or isinstance(element, list)) \
43            and len(element) == 3 \
44            and (((not internal) and element[1] in OPS) \
45                 or (internal and element[1] in INTERNAL_OPS))
46
47     def __execute_recursive_in(self, cr, s, f, w, ids):
48         res = []
49         for i in range(0, len(ids), cr.IN_MAX):
50             subids = ids[i:i+cr.IN_MAX]
51             cr.execute('SELECT "%s"'    \
52                        '  FROM "%s"'    \
53                        ' WHERE "%s" in (%s)' % (s, f, w, ','.join(['%s']*len(subids))),
54                        subids)
55             res.extend([r[0] for r in cr.fetchall()])
56         return res
57
58
59     def __init__(self, exp):
60         # check if the expression is valid
61         if not reduce(lambda acc, val: acc and (self._is_operator(val) or self._is_leaf(val)), exp, True):
62             raise ValueError('Bad domain expression: %r' % (exp,))
63         self.__exp = exp
64         self.__tables = {}  # used to store the table to use for the sql generation. key = index of the leaf
65         self.__joins = []
66         self.__main_table = None # 'root' table. set by parse()
67         self.__DUMMY_LEAF = (1, '=', 1) # a dummy leaf that must not be parsed or sql generated
68
69
70     def parse(self, cr, uid, table, context):
71         """ transform the leafs of the expression """
72         if not self.__exp:
73             return self
74
75         def _rec_get(ids, table, parent=None, left='id', prefix=''):
76             if table._parent_store and (not table.pool._init):
77 # TODO: Improve where joins are implemented for many with '.', replace by:
78 # doms += ['&',(prefix+'.parent_left','<',o.parent_right),(prefix+'.parent_left','>=',o.parent_left)]
79                 doms = []
80                 for o in table.browse(cr, uid, ids, context=context):
81                     if doms:
82                         doms.insert(0, '|')
83                     doms += ['&', ('parent_left', '<', o.parent_right), ('parent_left', '>=', o.parent_left)]
84                 if prefix:
85                     return [(left, 'in', table.search(cr, uid, doms, context=context))]
86                 return doms
87             else:
88                 def rg(ids, table, parent):
89                     if not ids:
90                         return []
91                     ids2 = table.search(cr, uid, [(parent, 'in', ids)], context=context)
92                     return ids + rg(ids2, table, parent)
93                 return [(left, 'in', rg(ids, table, parent or table._parent_name))]
94
95         self.__main_table = table
96
97         i = -1
98         while i + 1<len(self.__exp):
99             i += 1
100             e = self.__exp[i]
101             if self._is_operator(e) or e == self.__DUMMY_LEAF:
102                 continue
103             left, operator, right = e
104
105             working_table = table
106             main_table = table
107             fargs = left.split('.', 1)
108             index = i
109             if left in table._inherit_fields:
110                 while True:
111                     field = main_table._columns.get(fargs[0], False)
112                     if field:
113                         working_table = main_table
114                         self.__tables[i] = working_table
115                         break
116                     working_table = main_table.pool.get(main_table._inherit_fields[left][0])
117                     if working_table not in self.__tables.values():
118                         self.__joins.append(('%s.%s=%s.%s' % (working_table._table, 'id', main_table._table, main_table._inherits[working_table._name]), working_table._table))
119                         self.__tables[index] = working_table
120                         index += 1
121                     main_table = working_table
122             
123             field = working_table._columns.get(fargs[0], False)
124             if not field:
125                 if left == 'id' and operator == 'child_of':
126                     dom = _rec_get(right, working_table)
127                     self.__exp = self.__exp[:i] + dom + self.__exp[i+1:]
128                 continue
129
130             field_obj = table.pool.get(field._obj)
131             if len(fargs) > 1:
132                 if field._type == 'many2one':
133                     right = field_obj.search(cr, uid, [(fargs[1], operator, right)], context=context)
134                     self.__exp[i] = (fargs[0], 'in', right)
135                 continue
136
137             if field._properties:
138                 # this is a function field
139                 if not field.store:
140                     if not field._fnct_search:
141                         # the function field doesn't provide a search function and doesn't store
142                         # values in the database, so we must ignore it : we generate a dummy leaf
143                         self.__exp[i] = self.__DUMMY_LEAF
144                     else:
145                         subexp = field.search(cr, uid, table, left, [self.__exp[i]])
146                         # we assume that the expression is valid
147                         # we create a dummy leaf for forcing the parsing of the resulting expression
148                         self.__exp[i] = '&'
149                         self.__exp.insert(i + 1, self.__DUMMY_LEAF)
150                         for j, se in enumerate(subexp):
151                             self.__exp.insert(i + 2 + j, se)
152
153                 # else, the value of the field is store in the database, so we search on it
154
155
156             elif field._type == 'one2many':
157                 if isinstance(right, basestring):
158                     ids2 = [x[0] for x in field_obj.name_search(cr, uid, right, [], operator, limit=None)]
159                 else:
160                     ids2 = list(right)
161                 if not ids2:
162                     self.__exp[i] = ('id', '=', '0')
163                 else:
164                     self.__exp[i] = ('id', 'in', self.__execute_recursive_in(cr, field._fields_id, field_obj._table, 'id', ids2))
165
166             elif field._type == 'many2many':
167                 #FIXME
168                 if operator == 'child_of':
169                     if isinstance(right, basestring):
170                         ids2 = [x[0] for x in field_obj.name_search(cr, uid, right, [], 'like', limit=None)]
171                     else:
172                         ids2 = list(right)
173
174                     def _rec_convert(ids):
175                         if field_obj == table:
176                             return ids
177                         return self.__execute_recursive_in(cr, field._id1, field._rel, field._id2, ids)
178
179                     dom = _rec_get(ids2, field_obj)
180                     ids2 = field_obj.search(cr, uid, dom, context=context)
181                     self.__exp[i] = ('id', 'in', _rec_convert(ids2))
182                 else:
183                     if isinstance(right, basestring):
184                         res_ids = [x[0] for x in field_obj.name_search(cr, uid, right, [], operator)]
185                     else:
186                         res_ids = list(right)
187                     self.__exp[i] = ('id', 'in', self.__execute_recursive_in(cr, field._id1, field._rel, field._id2, res_ids) or [0])
188             elif field._type == 'many2one':
189                 if operator == 'child_of':
190                     if isinstance(right, basestring):
191                         ids2 = [x[0] for x in field_obj.name_search(cr, uid, right, [], 'like', limit=None)]
192                     else:
193                         ids2 = list(right)
194
195                     self.__operator = 'in'
196                     if field._obj != working_table._name:
197                         dom = _rec_get(ids2, field_obj, left=left, prefix=field._obj)
198                     else:
199                         dom = _rec_get(ids2, working_table, parent=left)
200                     self.__exp = self.__exp[:i] + dom + self.__exp[i+1:]
201                 else:
202                     if isinstance(right, basestring): # and not isinstance(field, fields.related):
203                         c = context.copy()
204                         c['active_test'] = False
205                         res_ids = field_obj.name_search(cr, uid, right, [], operator, limit=None, context=c)
206                         right = map(lambda x: x[0], res_ids)
207                         self.__exp[i] = (left, 'in', right)
208             else:
209                 # other field type
210                 # add the time part to datetime field when it's not there:
211                 if field._type == 'datetime' and self.__exp[i][2] and len(self.__exp[i][2]) == 10:
212                     
213                     self.__exp[i] = list(self.__exp[i])
214                     
215                     if operator in ('>', '>='):
216                         self.__exp[i][2] += ' 00:00:00'
217                     elif operator in ('<', '<='):
218                         self.__exp[i][2] += ' 23:59:59'
219                     
220                     self.__exp[i] = tuple(self.__exp[i])
221                         
222                 if field.translate:
223                     if operator in ('like', 'ilike', 'not like', 'not ilike'):
224                         right = '%%%s%%' % right
225
226                     operator = operator == '=like' and 'like' or operator
227
228                     query1 = '( SELECT res_id'          \
229                              '    FROM ir_translation'  \
230                              '   WHERE name = %s'       \
231                              '     AND lang = %s'       \
232                              '     AND type = %s'
233                     instr = ' %s'
234                     #Covering in,not in operators with operands (%s,%s) ,etc.
235                     if operator in ['in','not in']:
236                         instr = ','.join(['%s'] * len(right))
237                         query1 += '     AND value ' + operator +  ' ' +" (" + instr + ")"   \
238                              ') UNION ('                \
239                              '  SELECT id'              \
240                              '    FROM "' + working_table._table + '"'       \
241                              '   WHERE "' + left + '" ' + operator + ' ' +" (" + instr + "))"
242                     else:
243                         query1 += '     AND value ' + operator + instr +   \
244                              ') UNION ('                \
245                              '  SELECT id'              \
246                              '    FROM "' + working_table._table + '"'       \
247                              '   WHERE "' + left + '" ' + operator + instr + ")"
248
249                     query2 = [working_table._name + ',' + left,
250                               context.get('lang', False) or 'en_US',
251                               'model',
252                               right,
253                               right,
254                              ]
255
256                     self.__exp[i] = ('id', 'inselect', (query1, query2))
257
258         return self
259
260     def __leaf_to_sql(self, leaf, table):
261         if leaf == self.__DUMMY_LEAF:
262             return ('(1=1)', [])
263         left, operator, right = leaf
264
265         if operator == 'inselect':
266             query = '(%s.%s in (%s))' % (table._table, left, right[0])
267             params = right[1]
268         elif operator in ['in', 'not in']:
269             params = right[:]
270             len_before = len(params)
271             for i in range(len_before)[::-1]:
272                 if params[i] == False:
273                     del params[i]
274
275             len_after = len(params)
276             check_nulls = len_after != len_before
277             query = '(1=0)'
278
279             if len_after:
280                 if left == 'id':
281                     instr = ','.join(['%s'] * len_after)
282                 else:
283                     instr = ','.join([table._columns[left]._symbol_set[0]] * len_after)
284                 query = '(%s.%s %s (%s))' % (table._table, left, operator, instr)
285
286             if check_nulls:
287                 query = '(%s OR %s.%s IS NULL)' % (query, table._table, left)
288         else:
289             params = []
290             
291             if right == False and (leaf[0] in table._columns)  and table._columns[leaf[0]]._type=="boolean"  and (operator == '='):
292                 query = '(%s.%s IS NULL or %s.%s = false )' % (table._table, left,table._table, left)
293             elif (((right == False) and (type(right)==bool)) or (right is None)) and (operator == '='):
294                 query = '%s.%s IS NULL ' % (table._table, left)
295             elif right == False and (leaf[0] in table._columns)  and table._columns[leaf[0]]._type=="boolean"  and (operator in ['<>', '!=']):
296                 query = '(%s.%s IS NOT NULL and %s.%s != false)' % (table._table, left,table._table, left)
297             elif (((right == False) and (type(right)==bool)) or right is None) and (operator in ['<>', '!=']):
298                 query = '%s.%s IS NOT NULL' % (table._table, left)
299             else:
300                 if left == 'id':
301                     query = '%s.id %s %%s' % (table._table, operator)
302                     params = right
303                 else:
304                     like = operator in ('like', 'ilike', 'not like', 'not ilike')
305
306                     op = operator == '=like' and 'like' or operator
307                     if left in table._columns:
308                         format = like and '%s' or table._columns[left]._symbol_set[0]
309                         query = '(%s.%s %s %s)' % (table._table, left, op, format)
310                     else:
311                         query = "(%s.%s %s '%s')" % (table._table, left, op, right)
312
313                     add_null = False
314                     if like:
315                         if isinstance(right, str):
316                             str_utf8 = right
317                         elif isinstance(right, unicode):
318                             str_utf8 = right.encode('utf-8')
319                         else:
320                             str_utf8 = str(right)
321                         params = '%%%s%%' % str_utf8
322                         add_null = not str_utf8
323                     elif left in table._columns:
324                         params = table._columns[left]._symbol_set[1](right)
325
326                     if add_null:
327                         query = '(%s OR %s IS NULL)' % (query, left)
328
329         if isinstance(params, basestring):
330             params = [params]
331         return (query, params)
332
333
334     def to_sql(self):
335         stack = []
336         params = []
337         for i, e in reverse_enumerate(self.__exp):
338             if self._is_leaf(e, internal=True):
339                 table = self.__tables.get(i, self.__main_table)
340                 q, p = self.__leaf_to_sql(e, table)
341                 params.insert(0, p)
342                 stack.append(q)
343             else:
344                 if e == '!':
345                     stack.append('(NOT (%s))' % (stack.pop(),))
346                 else:
347                     ops = {'&': ' AND ', '|': ' OR '}
348                     q1 = stack.pop()
349                     q2 = stack.pop()
350                     stack.append('(%s %s %s)' % (q1, ops[e], q2,))
351
352         query = ' AND '.join(reversed(stack))
353         joins = ' AND '.join(map(lambda j: j[0], self.__joins))
354         if joins:
355             query = '(%s) AND (%s)' % (joins, query)
356         return (query, flatten(params))
357
358     def get_tables(self):
359         return ['"%s"' % t._table for t in set(self.__tables.values()+[self.__main_table])]
360
361 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
362