[TEST] attempt to detect what the hell that crazy bug is coming from
[odoo/odoo.git] / openerp / osv / expression.py
index 5c20d92..5f2c0b9 100644 (file)
 #
 ##############################################################################
 
+""" Domain expression processing
+
+The main duty of this module is to compile a domain expression into a
+SQL query. A lot of things should be documented here, but as a first
+step in the right direction, some tests in test_osv_expression.yml
+might give you some additional information.
+
+For legacy reasons, a domain uses an inconsistent two-levels abstract
+syntax (domains are regular Python data structures). At the first
+level, a domain is an expression made of terms (sometimes called
+leaves) and (domain) operators used in prefix notation. The available
+operators at this level are '!', '&', and '|'. '!' is a unary 'not',
+'&' is a binary 'and', and '|' is a binary 'or'.  For instance, here
+is a possible domain. (<term> stands for an arbitrary term, more on
+this later.)::
+
+    ['&', '!', <term1>, '|', <term2>, <term3>]
+
+It is equivalent to this pseudo code using infix notation::
+
+    (not <term1>) and (<term2> or <term3>)
+
+The second level of syntax deals with the term representation. A term
+is a triple of the form (left, operator, right). That is, a term uses
+an infix notation, and the available operators, and possible left and
+right operands differ with those of the previous level. Here is a
+possible term::
+
+    ('company_id.name', '=', 'OpenERP')
+
+The left and right operand don't have the same possible values. The
+left operand is field name (related to the model for which the domain
+applies).  Actually, the field name can use the dot-notation to
+traverse relationships.  The right operand is a Python value whose
+type should match the used operator and field type. In the above
+example, a string is used because the name field of a company has type
+string, and because we use the '=' operator. When appropriate, a 'in'
+operator can be used, and thus the right operand should be a list.
+
+Note: the non-uniform syntax could have been more uniform, but this
+would hide an important limitation of the domain syntax. Say that the
+term representation was ['=', 'company_id.name', 'OpenERP']. Used in a
+complete domain, this would look like::
+
+    ['!', ['=', 'company_id.name', 'OpenERP']]
+
+and you would be tempted to believe something like this would be
+possible::
+
+    ['!', ['=', 'company_id.name', ['&', ..., ...]]]
+
+That is, a domain could be a valid operand. But this is not the
+case. A domain is really limited to a two-level nature, and can not
+take a recursive form: a domain is not a valid second-level operand.
+
+Unaccent - Accent-insensitive search
+
+OpenERP will use the SQL function 'unaccent' when available for the
+'ilike' and 'not ilike' operators, and enabled in the configuration.
+Normally the 'unaccent' function is obtained from `the PostgreSQL
+'unaccent' contrib module
+<http://developer.postgresql.org/pgdocs/postgres/unaccent.html>`_.
+
+.. todo: The following explanation should be moved in some external
+         installation guide
+
+The steps to install the module might differ on specific PostgreSQL
+versions.  We give here some instruction for PostgreSQL 9.x on a
+Ubuntu system.
+
+Ubuntu doesn't come yet with PostgreSQL 9.x, so an alternative package
+source is used. We use Martin Pitt's PPA available at
+`ppa:pitti/postgresql
+<https://launchpad.net/~pitti/+archive/postgresql>`_.
+
+.. code-block:: sh
+
+    > sudo add-apt-repository ppa:pitti/postgresql
+    > sudo apt-get update
+
+Once the package list is up-to-date, you have to install PostgreSQL
+9.0 and its contrib modules.
+
+.. code-block:: sh
+
+    > sudo apt-get install postgresql-9.0 postgresql-contrib-9.0
+
+When you want to enable unaccent on some database:
+
+.. code-block:: sh
+
+    > psql9 <database> -f /usr/share/postgresql/9.0/contrib/unaccent.sql
+
+Here :program:`psql9` is an alias for the newly installed PostgreSQL
+9.0 tool, together with the correct port if necessary (for instance if
+PostgreSQL 8.4 is running on 5432). (Other aliases can be used for
+createdb and dropdb.)
+
+.. code-block:: sh
+
+    > alias psql9='/usr/lib/postgresql/9.0/bin/psql -p 5433'
+
+You can check unaccent is working:
+
+.. code-block:: sh
+
+    > psql9 <database> -c"select unaccent('hélène')"
+
+Finally, to instruct OpenERP to really use the unaccent function, you have to
+start the server specifying the ``--unaccent`` flag.
+
+"""
+
+import logging
+import traceback
+
 from openerp.tools import flatten, reverse_enumerate
 import fields
+import openerp.modules
+from openerp.osv.orm import MAGIC_COLUMNS
 
 #.apidoc title: Domain Expressions
 
+# Domain operators.
 NOT_OPERATOR = '!'
 OR_OPERATOR = '|'
 AND_OPERATOR = '&'
+DOMAIN_OPERATORS = (NOT_OPERATOR, OR_OPERATOR, AND_OPERATOR)
+
+# List of available term operators. It is also possible to use the '<>'
+# operator, which is strictly the same as '!='; the later should be prefered
+# for consistency. This list doesn't contain '<>' as it is simpified to '!='
+# by the normalize_operator() function (so later part of the code deals with
+# only one representation).
+# An internal (i.e. not available to the user) 'inselect' operator is also
+# used. In this case its right operand has the form (subselect, params).
+TERM_OPERATORS = ('=', '!=', '<=', '<', '>', '>=', '=?', '=like', '=ilike',
+                  'like', 'not like', 'ilike', 'not ilike', 'in', 'not in',
+                  'child_of')
+
+# A subset of the above operators, with a 'negative' semantic. When the
+# expressions 'in NEGATIVE_TERM_OPERATORS' or 'not in NEGATIVE_TERM_OPERATORS' are used in the code
+# below, this doesn't necessarily mean that any of those NEGATIVE_TERM_OPERATORS is
+# legal in the processed term.
+NEGATIVE_TERM_OPERATORS = ('!=', 'not like', 'not ilike', 'not in')
 
 TRUE_LEAF = (1, '=', 1)
 FALSE_LEAF = (0, '=', 1)
@@ -35,6 +172,8 @@ FALSE_LEAF = (0, '=', 1)
 TRUE_DOMAIN = [TRUE_LEAF]
 FALSE_DOMAIN = [FALSE_LEAF]
 
+_logger = logging.getLogger(__name__)
+
 def normalize(domain):
     """Returns a normalized version of ``domain_expr``, where all implicit '&' operators
        have been made explicit. One property of normalized domain expressions is that they
@@ -48,7 +187,7 @@ def normalize(domain):
     op_arity = {NOT_OPERATOR: 1, AND_OPERATOR: 2, OR_OPERATOR: 2}
     for token in domain:
         if expected == 0:                   # more than expected, like in [A, B]
-            result[0:0] = ['&']             # put an extra '&' in front
+            result[0:0] = [AND_OPERATOR]             # put an extra '&' in front
             expected = 1
         result.append(token)
         if isinstance(token, (list, tuple)): # domain term
@@ -60,18 +199,20 @@ def normalize(domain):
 
 def combine(operator, unit, zero, domains):
     """Returns a new domain expression where all domain components from ``domains``
-       have been added together using the binary operator ``operator``.
+       have been added together using the binary operator ``operator``. The given
+       domains must be normalized.
 
        :param unit: the identity element of the domains "set" with regard to the operation
                     performed by ``operator``, i.e the domain component ``i`` which, when
-                    combined with any domain ``x`` via ``operator``, yields ``x``. 
+                    combined with any domain ``x`` via ``operator``, yields ``x``.
                     E.g. [(1,'=',1)] is the typical unit for AND_OPERATOR: adding it
                     to any domain component gives the same domain.
        :param zero: the absorbing element of the domains "set" with regard to the operation
                     performed by ``operator``, i.e the domain component ``z`` which, when
-                    combined with any domain ``x`` via ``operator``, yields ``z``. 
+                    combined with any domain ``x`` via ``operator``, yields ``z``.
                     E.g. [(1,'=',1)] is the typical zero for OR_OPERATOR: as soon as
                     you see it in a domain component the resulting domain is the zero.
+       :param domains: a list of normalized domains.
     """
     result = []
     count = 0
@@ -87,43 +228,129 @@ def combine(operator, unit, zero, domains):
     return result
 
 def AND(domains):
-    """ AND([D1,D2,...]) returns a domain representing D1 and D2 and ... """
+    """AND([D1,D2,...]) returns a domain representing D1 and D2 and ... """
     return combine(AND_OPERATOR, TRUE_DOMAIN, FALSE_DOMAIN, domains)
 
 def OR(domains):
-    """ OR([D1,D2,...]) returns a domain representing D1 or D2 or ... """
+    """OR([D1,D2,...]) returns a domain representing D1 or D2 or ... """
     return combine(OR_OPERATOR, FALSE_DOMAIN, TRUE_DOMAIN, domains)
 
 def is_operator(element):
-    return isinstance(element, (str, unicode)) and element in [AND_OPERATOR, OR_OPERATOR, NOT_OPERATOR]
+    """Test whether an object is a valid domain operator. """
+    return isinstance(element, basestring) and element in DOMAIN_OPERATORS
 
 # TODO change the share wizard to use this function.
 def is_leaf(element, internal=False):
-    OPS = ('=', '!=', '<>', '<=', '<', '>', '>=', '=?', '=like', '=ilike', 'like', 'not like', 'ilike', 'not ilike', 'in', 'not in', 'child_of')
-    INTERNAL_OPS = OPS + ('inselect',)
+    """ Test whether an object is a valid domain term.
+
+    :param internal: allow or not the 'inselect' internal operator in the term.
+                     This normally should be always left to False.
+    """
+    INTERNAL_OPS = TERM_OPERATORS + ('inselect',)
     return (isinstance(element, tuple) or isinstance(element, list)) \
        and len(element) == 3 \
-       and (((not internal) and element[1] in OPS) \
-            or (internal and element[1] in INTERNAL_OPS))
+       and (((not internal) and element[1] in TERM_OPERATORS + ('<>',)) \
+            or (internal and element[1] in INTERNAL_OPS + ('<>',)))
 
-def select_from_where(cr, s, f, w, ids, op):
+def normalize_leaf(left, operator, right):
+    """ Change a term's operator to some canonical form, simplifying later
+    processing.
+    """
+    original = operator
+    operator = operator.lower()
+    if operator == '<>':
+        operator = '!='
+    if isinstance(right, bool) and operator in ('in', 'not in'):
+        _logger.warning("The domain term '%s' should use the '=' or '!=' operator." % ((left, original, right),))
+        operator = '=' if operator == 'in' else '!='
+    if isinstance(right, (list, tuple)) and operator in ('=', '!='):
+        _logger.warning("The domain term '%s' should use the 'in' or 'not in' operator." % ((left, original, right),))
+        operator = 'in' if operator == '=' else 'not in'
+    return left, operator, right
+
+def distribute_not(domain):
+    """ Distribute any '!' domain operators found inside a normalized domain.
+
+    Because we don't use SQL semantic for processing a 'left not in right'
+    query (i.e. our 'not in' is not simply translated to a SQL 'not in'),
+    it means that a '! left in right' can not be simply processed
+    by __leaf_to_sql by first emitting code for 'left in right' then wrapping
+    the result with 'not (...)', as it would result in a 'not in' at the SQL
+    level.
+
+    This function is thus responsible for pushing any '!' domain operators
+    inside the terms themselves. For example::
+
+         ['!','&',('user_id','=',4),('partner_id','in',[1,2])]
+            will be turned into:
+         ['|',('user_id','!=',4),('partner_id','not in',[1,2])]
+
+    """
+    def negate(leaf):
+        """Negates and returns a single domain leaf term,
+        using the opposite operator if possible"""
+        left, operator, right = leaf
+        mapping = {
+            '<': '>=',
+            '>': '<=',
+            '<=': '>',
+            '>=': '<',
+            '=': '!=',
+            '!=': '=',
+        }
+        if operator in ('in', 'like', 'ilike'):
+            operator = 'not ' + operator
+            return [(left, operator, right)]
+        if operator in ('not in', 'not like', 'not ilike'):
+            operator = operator[4:]
+            return [(left, operator, right)]
+        if operator in mapping:
+            operator = mapping[operator]
+            return [(left, operator, right)]
+        return [NOT_OPERATOR, (left, operator, right)]
+    def distribute_negate(domain):
+        """Negate the domain ``subtree`` rooted at domain[0],
+        leaving the rest of the domain intact, and return
+        (negated_subtree, untouched_domain_rest)
+        """
+        if is_leaf(domain[0]):
+            return negate(domain[0]), domain[1:]
+        if domain[0] == AND_OPERATOR:
+            done1, todo1 = distribute_negate(domain[1:])
+            done2, todo2 = distribute_negate(todo1)
+            return [OR_OPERATOR] + done1 + done2, todo2
+        if domain[0] == OR_OPERATOR:
+            done1, todo1 = distribute_negate(domain[1:])
+            done2, todo2 = distribute_negate(todo1)
+            return [AND_OPERATOR] + done1 + done2, todo2
+    if not domain:
+        return []
+    if domain[0] != NOT_OPERATOR:
+        return [domain[0]] + distribute_not(domain[1:])
+    if domain[0] == NOT_OPERATOR:
+        done, todo = distribute_negate(domain[1:])
+        return done + distribute_not(todo)
+
+def select_from_where(cr, select_field, from_table, where_field, where_ids, where_operator):
     # todo: merge into parent query as sub-query
     res = []
-    if ids:
-        if op in ['<','>','>=','<=']:
+    if where_ids:
+        if where_operator in ['<','>','>=','<=']:
             cr.execute('SELECT "%s" FROM "%s" WHERE "%s" %s %%s' % \
-                (s, f, w, op), (ids[0],)) # TODO shouldn't this be min/max(ids) ?
+                (select_field, from_table, where_field, where_operator),
+                (where_ids[0],)) # TODO shouldn't this be min/max(where_ids) ?
             res = [r[0] for r in cr.fetchall()]
-        else: # TODO op is supposed to be 'in'? It is called with child_of...
-            for i in range(0, len(ids), cr.IN_MAX):
-                subids = ids[i:i+cr.IN_MAX]
+        else: # TODO where_operator is supposed to be 'in'? It is called with child_of...
+            for i in range(0, len(where_ids), cr.IN_MAX):
+                subids = where_ids[i:i+cr.IN_MAX]
                 cr.execute('SELECT "%s" FROM "%s" WHERE "%s" IN %%s' % \
-                    (s, f, w), (tuple(subids),))
+                    (select_field, from_table, where_field), (tuple(subids),))
                 res.extend([r[0] for r in cr.fetchall()])
     return res
 
-def select_distinct_from_where_not_null(cr, s, f):
-    cr.execute('SELECT distinct("%s") FROM "%s" where "%s" is not null' % (s, f, s))
+def select_distinct_from_where_not_null(cr, select_field, from_table):
+    cr.execute('SELECT distinct("%s") FROM "%s" where "%s" is not null' % \
+               (select_field, from_table, select_field))
     return [r[0] for r in cr.fetchall()]
 
 class expression(object):
@@ -135,16 +362,13 @@ class expression(object):
     """
 
     def __init__(self, cr, uid, exp, table, context):
-        # check if the expression is valid
-        for x in exp:
-            if not (is_operator(x) or is_leaf(x)):
-                raise ValueError('Bad domain expression: %r, %r is not a valid operator or a valid term.' % (exp, x))
+        self.has_unaccent = openerp.modules.registry.RegistryManager.get(cr.dbname).has_unaccent
         self.__field_tables = {}  # used to store the table to use for the sql generation. key = index of the leaf
         self.__all_tables = set()
         self.__joins = []
         self.__main_table = None # 'root' table. set by parse()
         # assign self.__exp with the normalized, parsed domain.
-        self.parse(cr, uid, normalize(exp), table, context)
+        self.parse(cr, uid, distribute_not(normalize(exp)), table, context)
 
     # TODO used only for osv_memory
     @property
@@ -152,43 +376,47 @@ class expression(object):
         return self.__exp[:]
 
     def parse(self, cr, uid, exp, table, context):
-        """ transform the leafs of the expression """
+        """ transform the leaves of the expression """
         self.__exp = exp
+        self.__main_table = table
+        self.__all_tables.add(table)
 
-        def child_of_domain(left, right, table, parent=None, prefix=''):
-            ids = right
-            if table._parent_store and (not table.pool._init):
-# TODO: Improve where joins are implemented for many with '.', replace by:
-# doms += ['&',(prefix+'.parent_left','<',o.parent_right),(prefix+'.parent_left','>=',o.parent_left)]
+        def child_of_domain(left, ids, left_model, parent=None, prefix=''):
+            """Returns a domain implementing the child_of operator for [(left,child_of,ids)],
+            either as a range using the parent_left/right tree lookup fields (when available),
+            or as an expanded [(left,in,child_ids)]"""
+            if left_model._parent_store and (not left_model.pool._init):
+                # TODO: Improve where joins are implemented for many with '.', replace by:
+                # doms += ['&',(prefix+'.parent_left','<',o.parent_right),(prefix+'.parent_left','>=',o.parent_left)]
                 doms = []
-                for o in table.browse(cr, uid, ids, context=context):
+                for o in left_model.browse(cr, uid, ids, context=context):
                     if doms:
                         doms.insert(0, OR_OPERATOR)
                     doms += [AND_OPERATOR, ('parent_left', '<', o.parent_right), ('parent_left', '>=', o.parent_left)]
                 if prefix:
-                    return [(left, 'in', table.search(cr, uid, doms, context=context))]
+                    return [(left, 'in', left_model.search(cr, uid, doms, context=context))]
                 return doms
             else:
-                def rg(ids, table, parent):
+                def recursive_children(ids, model, parent_field):
                     if not ids:
                         return []
-                    ids2 = table.search(cr, uid, [(parent, 'in', ids)], context=context)
-                    return ids + rg(ids2, table, parent)
-                return [(left, 'in', rg(ids, table, parent or table._parent_name))]
-
-        # TODO rename this function as it is not strictly for 'child_of', but also for 'in'...
-        def child_of_right_to_ids(value, operator, field_obj):
-            """ Normalize a single id, or a string, or a list of ids to a list of ids.
-            """
+                    ids2 = model.search(cr, uid, [(parent_field, 'in', ids)], context=context)
+                    return ids + recursive_children(ids2, model, parent_field)
+                return [(left, 'in', recursive_children(ids, left_model, parent or left_model._parent_name))]
+
+        def to_ids(value, field_obj):
+            """Normalize a single id or name, or a list of those, into a list of ids"""
+            names = []
             if isinstance(value, basestring):
-                return [x[0] for x in field_obj.name_search(cr, uid, value, [], operator, context=context, limit=None)]
+                names = [value]
+            if value and isinstance(value, (tuple, list)) and isinstance(value[0], basestring):
+                names = value
+            if names:
+                return flatten([[x[0] for x in field_obj.name_search(cr, uid, n, [], 'ilike', context=context, limit=None)] \
+                                    for n in names])
             elif isinstance(value, (int, long)):
                 return [value]
-            else:
-                return list(value)
-
-        self.__main_table = table
-        self.__all_tables.add(table)
+            return list(value)
 
         i = -1
         while i + 1<len(self.__exp):
@@ -196,51 +424,60 @@ class expression(object):
             e = self.__exp[i]
             if is_operator(e) or e == TRUE_LEAF or e == FALSE_LEAF:
                 continue
+
+            # check if the expression is valid
+            if not is_leaf(e):
+                raise ValueError("Invalid term %r in domain expression %r" % (e, exp))
+
+            # normalize the leaf's operator
+            e = normalize_leaf(*e)
+            self.__exp[i] = e
             left, operator, right = e
-            operator = operator.lower()
+
             working_table = table # The table containing the field (the name provided in the left operand)
-            fargs = left.split('.', 1)
+            field_path = left.split('.', 1)
 
             # If the field is _inherits'd, search for the working_table,
             # and extract the field.
-            if fargs[0] in table._inherit_fields:
+            field = None
+            if field_path[0] in table._inherit_fields:
                 while True:
-                    field = working_table._columns.get(fargs[0])
+                    field = working_table._columns.get(field_path[0])
                     if field:
                         self.__field_tables[i] = working_table
                         break
-                    next_table = working_table.pool.get(working_table._inherit_fields[fargs[0]][0])
+                    next_table = working_table.pool.get(working_table._inherit_fields[field_path[0]][0])
                     if next_table not in self.__all_tables:
-                        self.__joins.append('%s.%s=%s.%s' % (next_table._table, 'id', working_table._table, working_table._inherits[next_table._name]))
+                        self.__joins.append('%s."%s"=%s."%s"' % (next_table._table, 'id', working_table._table, working_table._inherits[next_table._name]))
                         self.__all_tables.add(next_table)
                     working_table = next_table
             # Or (try to) directly extract the field.
             else:
-                field = working_table._columns.get(fargs[0])
+                field = working_table._columns.get(field_path[0])
 
             if not field:
                 if left == 'id' and operator == 'child_of':
-                    ids2 = child_of_right_to_ids(right, 'ilike', table)
+                    ids2 = to_ids(right, table)
                     dom = child_of_domain(left, ids2, working_table)
                     self.__exp = self.__exp[:i] + dom + self.__exp[i+1:]
+                else:
+                    # field could not be found in model columns, it's probably invalid, unless
+                    # it's one of the _log_access special fields
+                    # TODO: make these fields explicitly available in self.columns instead!
+                    if field_path[0] not in MAGIC_COLUMNS:
+                        raise ValueError("Invalid field %r in domain expression %r" % (left, exp))
                 continue
 
             field_obj = table.pool.get(field._obj)
-            if len(fargs) > 1:
+            if len(field_path) > 1:
                 if field._type == 'many2one':
-                    right = field_obj.search(cr, uid, [(fargs[1], operator, right)], context=context)
-                    if right == []:
-                        self.__exp[i] = FALSE_LEAF
-                    else:
-                        self.__exp[i] = (fargs[0], 'in', right)
+                    right = field_obj.search(cr, uid, [(field_path[1], operator, right)], context=context)
+                    self.__exp[i] = (field_path[0], 'in', right)
                 # Making search easier when there is a left operand as field.o2m or field.m2m
                 if field._type in ['many2many', 'one2many']:
-                    right = field_obj.search(cr, uid, [(fargs[1], operator, right)], context=context)
-                    right1 = table.search(cr, uid, [(fargs[0], 'in', right)], context=context)
-                    if right1 == []:
-                        self.__exp[i] = FALSE_LEAF
-                    else:
-                        self.__exp[i] = ('id', 'in', right1)
+                    right = field_obj.search(cr, uid, [(field_path[1], operator, right)], context=context)
+                    right1 = table.search(cr, uid, [(field_path[0],'in', right)], context=dict(context, active_test=False))
+                    self.__exp[i] = ('id', 'in', right1)
 
                 if not isinstance(field, fields.property):
                     continue
@@ -251,6 +488,13 @@ class expression(object):
                     # the function field doesn't provide a search function and doesn't store
                     # values in the database, so we must ignore it : we generate a dummy leaf
                     self.__exp[i] = TRUE_LEAF
+                    _logger.error(
+                        "The field '%s' (%s) can not be searched: non-stored "
+                        "function field without fnct_search",
+                        field.string, left)
+                    # avoid compiling stack trace if not needed
+                    if _logger.isEnabledFor(logging.DEBUG):
+                        _logger.debug(''.join(traceback.format_stack()))
                 else:
                     subexp = field.search(cr, uid, table, left, [self.__exp[i]], context=context)
                     if not subexp:
@@ -267,11 +511,10 @@ class expression(object):
             elif field._type == 'one2many':
                 # Applying recursivity on field(one2many)
                 if operator == 'child_of':
+                    ids2 = to_ids(right, field_obj)
                     if field._obj != working_table._name:
-                        ids2 = child_of_right_to_ids(right, 'ilike', field_obj)
                         dom = child_of_domain(left, ids2, field_obj, prefix=field._obj)
                     else:
-                        ids2 = child_of_right_to_ids(right, 'ilike', field_obj)
                         dom = child_of_domain('id', ids2, working_table, parent=left)
                     self.__exp = self.__exp[:i] + dom + self.__exp[i+1:]
 
@@ -294,27 +537,25 @@ class expression(object):
                                 call_null = False
                                 self.__exp[i] = FALSE_LEAF
                         else:
-                            call_null = False
-                            o2m_op = 'in'
-                            if operator in  ['not like','not ilike','not in','<>','!=']:
-                                o2m_op = 'not in'
-                            self.__exp[i] = ('id', o2m_op, select_from_where(cr, field._fields_id, field_obj._table, 'id', ids2, operator))
+                            ids2 = select_from_where(cr, field._fields_id, field_obj._table, 'id', ids2, operator)
+                            if ids2:
+                                call_null = False
+                                self.__exp[i] = ('id', 'in', ids2)
 
                     if call_null:
-                        o2m_op = 'not in'
-                        if operator in  ['not like','not ilike','not in','<>','!=']:
-                            o2m_op = 'in'
-                        self.__exp[i] = ('id', o2m_op, select_distinct_from_where_not_null(cr, field._fields_id, field_obj._table) or [0])
+                        o2m_op = 'in' if operator in NEGATIVE_TERM_OPERATORS else 'not in'
+                        self.__exp[i] = ('id', o2m_op, select_distinct_from_where_not_null(cr, field._fields_id, field_obj._table))
 
             elif field._type == 'many2many':
+                rel_table, rel_id1, rel_id2 = field._sql_names(working_table)
                 #FIXME
                 if operator == 'child_of':
                     def _rec_convert(ids):
                         if field_obj == table:
                             return ids
-                        return select_from_where(cr, field._id1, field._rel, field._id2, ids, operator)
+                        return select_from_where(cr, rel_id1, rel_table, rel_id2, ids, operator)
 
-                    ids2 = child_of_right_to_ids(right, 'ilike', field_obj)
+                    ids2 = to_ids(right, field_obj)
                     dom = child_of_domain('id', ids2, field_obj)
                     ids2 = field_obj.search(cr, uid, dom, context=context)
                     self.__exp[i] = ('id', 'in', _rec_convert(ids2))
@@ -339,24 +580,19 @@ class expression(object):
                                 operator = 'in' # operator changed because ids are directly related to main object
                         else:
                             call_null_m2m = False
-                            m2m_op = 'in'
-                            if operator in  ['not like','not ilike','not in','<>','!=']:
-                                m2m_op = 'not in'
-                            self.__exp[i] = ('id', m2m_op, select_from_where(cr, field._id1, field._rel, field._id2, res_ids, operator) or [0])
+                            m2m_op = 'not in' if operator in NEGATIVE_TERM_OPERATORS else 'in'
+                            self.__exp[i] = ('id', m2m_op, select_from_where(cr, rel_id1, rel_table, rel_id2, res_ids, operator) or [0])
 
                     if call_null_m2m:
-                        m2m_op = 'not in'
-                        if operator in  ['not like','not ilike','not in','<>','!=']:
-                            m2m_op = 'in'
-                        self.__exp[i] = ('id', m2m_op, select_distinct_from_where_not_null(cr, field._id1, field._rel) or [0])
+                        m2m_op = 'in' if operator in NEGATIVE_TERM_OPERATORS else 'not in'
+                        self.__exp[i] = ('id', m2m_op, select_distinct_from_where_not_null(cr, rel_id1, rel_table))
 
             elif field._type == 'many2one':
                 if operator == 'child_of':
+                    ids2 = to_ids(right, field_obj)
                     if field._obj != working_table._name:
-                        ids2 = child_of_right_to_ids(right, 'ilike', field_obj)
                         dom = child_of_domain(left, ids2, field_obj, prefix=field._obj)
                     else:
-                        ids2 = child_of_right_to_ids(right, 'ilike', field_obj)
                         dom = child_of_domain('id', ids2, working_table, parent=left)
                     self.__exp = self.__exp[:i] + dom + self.__exp[i+1:]
                 else:
@@ -368,45 +604,25 @@ class expression(object):
                         #Special treatment to ill-formed domains
                         operator = ( operator in ['<','>','<=','>='] ) and 'in' or operator
 
-                        dict_op = {'not in':'!=','in':'=','=':'in','!=':'not in','<>':'not in'}
+                        dict_op = {'not in':'!=','in':'=','=':'in','!=':'not in'}
                         if isinstance(right, tuple):
                             right = list(right)
                         if (not isinstance(right, list)) and operator in ['not in','in']:
                             operator = dict_op[operator]
-                        elif isinstance(right, list) and operator in ['<>','!=','=']: #for domain (FIELD,'=',['value1','value2'])
+                        elif isinstance(right, list) and operator in ['!=','=']: #for domain (FIELD,'=',['value1','value2'])
                             operator = dict_op[operator]
                         res_ids = [x[0] for x in field_obj.name_search(cr, uid, right, [], operator, limit=None, context=c)]
-                        if not res_ids:
-                           return FALSE_LEAF
-                        else:
-                            return (left, 'in', res_ids)
-
-                    m2o_str = False
-                    if right:
-                        if isinstance(right, basestring): # and not isinstance(field, fields.related):
-                            m2o_str = True
-                        elif isinstance(right, (list, tuple)):
-                            m2o_str = True
-                            for ele in right:
-                                if not isinstance(ele, basestring):
-                                    m2o_str = False
-                                    break
-                    elif right == []:
-                        m2o_str = False
-                        if operator in ('not in', '!=', '<>'):
-                            # (many2one not in []) should return all records
-                            self.__exp[i] = TRUE_LEAF
-                        else:
-                            self.__exp[i] = FALSE_LEAF
-                    else:
-                        new_op = '='
-                        if operator in  ['not like','not ilike','not in','<>','!=']:
-                            new_op = '!='
-                        #Is it ok to put 'left' and not 'id' ?
-                        self.__exp[i] = (left, new_op, False)
-
-                    if m2o_str:
+                        if operator in NEGATIVE_TERM_OPERATORS:
+                            res_ids.append(False) # TODO this should not be appended if False was in 'right'
+                        return (left, 'in', res_ids)
+                    # resolve string-based m2o criterion into IDs
+                    if isinstance(right, basestring) or \
+                            right and isinstance(right, (tuple,list)) and all(isinstance(item, basestring) for item in right):
                         self.__exp[i] = _get_expression(field_obj, cr, uid, left, right, operator, context=context)
+                    else: 
+                        # right == [] or right == False and all other cases are handled by __leaf_to_sql()
+                        pass
+
             else:
                 # other field type
                 # add the time part to datetime field when it's not there:
@@ -422,44 +638,50 @@ class expression(object):
                     self.__exp[i] = tuple(self.__exp[i])
 
                 if field.translate:
-                    if operator in ('like', 'ilike', 'not like', 'not ilike'):
+                    need_wildcard = operator in ('like', 'ilike', 'not like', 'not ilike')
+                    sql_operator = {'=like':'like','=ilike':'ilike'}.get(operator,operator)
+                    if need_wildcard:
                         right = '%%%s%%' % right
 
-                    operator = operator == '=like' and 'like' or operator
-
-                    query1 = '( SELECT res_id'          \
+                    subselect = '( SELECT res_id'          \
                              '    FROM ir_translation'  \
                              '   WHERE name = %s'       \
                              '     AND lang = %s'       \
                              '     AND type = %s'
                     instr = ' %s'
                     #Covering in,not in operators with operands (%s,%s) ,etc.
-                    if operator in ['in','not in']:
+                    if sql_operator in ['in','not in']:
                         instr = ','.join(['%s'] * len(right))
-                        query1 += '     AND value ' + operator +  ' ' +" (" + instr + ")"   \
+                        subselect += '     AND value ' + sql_operator +  ' ' +" (" + instr + ")"   \
                              ') UNION ('                \
                              '  SELECT id'              \
                              '    FROM "' + working_table._table + '"'       \
-                             '   WHERE "' + left + '" ' + operator + ' ' +" (" + instr + "))"
+                             '   WHERE "' + left + '" ' + sql_operator + ' ' +" (" + instr + "))"
                     else:
-                        query1 += '     AND value ' + operator + instr +   \
+                        subselect += '     AND value ' + sql_operator + instr +   \
                              ') UNION ('                \
                              '  SELECT id'              \
                              '    FROM "' + working_table._table + '"'       \
-                             '   WHERE "' + left + '" ' + operator + instr + ")"
+                             '   WHERE "' + left + '" ' + sql_operator + instr + ")"
 
-                    query2 = [working_table._name + ',' + left,
+                    params = [working_table._name + ',' + left,
                               context.get('lang', False) or 'en_US',
                               'model',
                               right,
                               right,
                              ]
 
-                    self.__exp[i] = ('id', 'inselect', (query1, query2))
+                    self.__exp[i] = ('id', 'inselect', (subselect, params))
 
     def __leaf_to_sql(self, leaf, table):
         left, operator, right = leaf
 
+        # final sanity checks - should never fail
+        assert operator in (TERM_OPERATORS + ('inselect',)), \
+            "Invalid operator %r in domain term %r" % (operator, leaf)
+        assert leaf in (TRUE_LEAF, FALSE_LEAF) or left in table._all_columns \
+            or left in MAGIC_COLUMNS, "Invalid field %r in domain term %r" % (left, leaf)
+
         if leaf == TRUE_LEAF:
             query = 'TRUE'
             params = []
@@ -469,89 +691,107 @@ class expression(object):
             params = []
 
         elif operator == 'inselect':
-            query = '(%s.%s in (%s))' % (table._table, left, right[0])
+            query = '(%s."%s" in (%s))' % (table._table, left, right[0])
             params = right[1]
 
         elif operator in ['in', 'not in']:
-            params = right and right[:] or []
-            len_before = len(params)
-            for i in range(len_before)[::-1]:
-                if params[i] == False:
-                    del params[i]
-
-            len_after = len(params)
-            check_nulls = len_after != len_before
-            query = 'FALSE'
-
-            # TODO this code seems broken: 'not in [False]' will become 'true',
-            # i.e. 'not null or null', while I expect it to be 'not null'.
-            if len_after:
-                if left == 'id':
-                    instr = ','.join(['%s'] * len_after)
-                else:
-                    instr = ','.join([table._columns[left]._symbol_set[0]] * len_after)
-                query = '(%s.%s %s (%s))' % (table._table, left, operator, instr)
-            else:
-                # the case for [field, 'in', []] or [left, 'not in', []]
+            # Two cases: right is a boolean or a list. The boolean case is an
+            # abuse and handled for backward compatibility.
+            if isinstance(right, bool):
+                _logger.warning("The domain term '%s' should use the '=' or '!=' operator." % (leaf,))
                 if operator == 'in':
-                    query = '(%s.%s IS NULL)' % (table._table, left)
+                    r = 'NOT NULL' if right else 'NULL'
                 else:
-                    query = '(%s.%s IS NOT NULL)' % (table._table, left)
-            if check_nulls:
-                query = '(%s OR %s.%s IS NULL)' % (query, table._table, left)
+                    r = 'NULL' if right else 'NOT NULL'
+                query = '(%s."%s" IS %s)' % (table._table, left, r)
+                params = []
+            elif isinstance(right, (list, tuple)):
+                params = right[:]
+                check_nulls = False
+                for i in range(len(params))[::-1]:
+                    if params[i] == False:
+                        check_nulls = True
+                        del params[i]
+
+                if params:
+                    if left == 'id':
+                        instr = ','.join(['%s'] * len(params))
+                    else:
+                        instr = ','.join([table._columns[left]._symbol_set[0]] * len(params))
+                    query = '(%s."%s" %s (%s))' % (table._table, left, operator, instr)
+                else:
+                    # The case for (left, 'in', []) or (left, 'not in', []).
+                    query = 'FALSE' if operator == 'in' else 'TRUE'
+
+                if check_nulls and operator == 'in':
+                    query = '(%s OR %s."%s" IS NULL)' % (query, table._table, left)
+                elif not check_nulls and operator == 'not in':
+                    query = '(%s OR %s."%s" IS NULL)' % (query, table._table, left)
+                elif check_nulls and operator == 'not in':
+                    query = '(%s AND %s."%s" IS NOT NULL)' % (query, table._table, left) # needed only for TRUE.
+            else: # Must not happen
+                raise ValueError("Invalid domain term %r" % (leaf,))
+
+        elif right == False and (left in table._columns) and table._columns[left]._type=="boolean" and (operator == '='):
+            query = '(%s."%s" IS NULL or %s."%s" = false )' % (table._table, left, table._table, left)
+            params = []
 
-        else:
+        elif (right is False or right is None) and (operator == '='):
+            query = '%s."%s" IS NULL ' % (table._table, left)
             params = []
 
-            if right == False and (left in table._columns)  and table._columns[left]._type=="boolean"  and (operator == '='):
-                query = '(%s.%s IS NULL or %s.%s = false )' % (table._table, left, table._table, left)
-            elif (((right == False) and (type(right)==bool)) or (right is None)) and (operator == '='):
-                query = '%s.%s IS NULL ' % (table._table, left)
-            elif right == False and (left in table._columns)  and table._columns[left]._type=="boolean"  and (operator in ['<>', '!=']):
-                query = '(%s.%s IS NOT NULL and %s.%s != false)' % (table._table, left, table._table, left)
-            elif (((right == False) and (type(right)==bool)) or right is None) and (operator in ['<>', '!=']):
-                query = '%s.%s IS NOT NULL' % (table._table, left)
-            elif (operator == '=?'):
-                op = '='
-                if (right is False or right is None):
-                    return ('TRUE', [])
-                if left in table._columns:
-                        format = table._columns[left]._symbol_set[0]
-                        query = '(%s.%s %s %s)' % (table._table, left, op, format)
-                        params = table._columns[left]._symbol_set[1](right)
-                else:
-                        query = "(%s.%s %s '%%s')" % (table._table, left, op)
-                        params = right
+        elif right == False and (left in table._columns) and table._columns[left]._type=="boolean" and (operator == '!='):
+            query = '(%s."%s" IS NOT NULL and %s."%s" != false)' % (table._table, left, table._table, left)
+            params = []
 
+        elif (right is False or right is None) and (operator == '!='):
+            query = '%s."%s" IS NOT NULL' % (table._table, left)
+            params = []
+
+        elif (operator == '=?'):
+            if (right is False or right is None):
+                # '=?' is a short-circuit that makes the term TRUE if right is None or False
+                query = 'TRUE'
+                params = []
             else:
-                if left == 'id':
-                    query = '%s.id %s %%s' % (table._table, operator)
+                # '=?' behaves like '=' in other cases
+                query, params = self.__leaf_to_sql((left, '=', right), table)
+
+        elif left == 'id':
+            query = '%s.id %s %%s' % (table._table, operator)
+            params = right
+
+        else:
+            need_wildcard = operator in ('like', 'ilike', 'not like', 'not ilike')
+            sql_operator = {'=like':'like','=ilike':'ilike'}.get(operator,operator)
+
+            if left in table._columns:
+                format = need_wildcard and '%s' or table._columns[left]._symbol_set[0]
+                if self.has_unaccent and sql_operator in ('ilike', 'not ilike'):
+                    query = '(unaccent(%s."%s") %s unaccent(%s))' % (table._table, left, sql_operator, format)
+                else:
+                    query = '(%s."%s" %s %s)' % (table._table, left, sql_operator, format)
+            elif left in MAGIC_COLUMNS:
+                    query = "(%s.\"%s\" %s %%s)" % (table._table, left, sql_operator)
                     params = right
+            else: # Must not happen
+                raise ValueError("Invalid field %r in domain term %r" % (left, leaf))
+
+            add_null = False
+            if need_wildcard:
+                if isinstance(right, str):
+                    str_utf8 = right
+                elif isinstance(right, unicode):
+                    str_utf8 = right.encode('utf-8')
                 else:
-                    like = operator in ('like', 'ilike', 'not like', 'not ilike')
+                    str_utf8 = str(right)
+                params = '%%%s%%' % str_utf8
+                add_null = not str_utf8
+            elif left in table._columns:
+                params = table._columns[left]._symbol_set[1](right)
 
-                    op = {'=like':'like','=ilike':'ilike'}.get(operator, operator)
-                    if left in table._columns:
-                        format = like and '%s' or table._columns[left]._symbol_set[0]
-                        query = '(%s.%s %s %s)' % (table._table, left, op, format)
-                    else:
-                        query = "(%s.%s %s '%s')" % (table._table, left, op, right)
-
-                    add_null = False
-                    if like:
-                        if isinstance(right, str):
-                            str_utf8 = right
-                        elif isinstance(right, unicode):
-                            str_utf8 = right.encode('utf-8')
-                        else:
-                            str_utf8 = str(right)
-                        params = '%%%s%%' % str_utf8
-                        add_null = not str_utf8
-                    elif left in table._columns:
-                        params = table._columns[left]._symbol_set[1](right)
-
-                    if add_null:
-                        query = '(%s OR %s.%s IS NULL)' % (query, table._table, left)
+            if add_null:
+                query = '(%s OR %s."%s" IS NULL)' % (query, table._table, left)
 
         if isinstance(params, basestring):
             params = [params]
@@ -568,14 +808,13 @@ class expression(object):
                 q, p = self.__leaf_to_sql(e, table)
                 params.insert(0, p)
                 stack.append(q)
+            elif e == NOT_OPERATOR:
+                stack.append('(NOT (%s))' % (stack.pop(),))
             else:
-                if e == NOT_OPERATOR:
-                    stack.append('(NOT (%s))' % (stack.pop(),))
-                else:
-                    ops = {AND_OPERATOR: ' AND ', OR_OPERATOR: ' OR '}
-                    q1 = stack.pop()
-                    q2 = stack.pop()
-                    stack.append('(%s %s %s)' % (q1, ops[e], q2,))
+                ops = {AND_OPERATOR: ' AND ', OR_OPERATOR: ' OR '}
+                q1 = stack.pop()
+                q2 = stack.pop()
+                stack.append('(%s %s %s)' % (q1, ops[e], q2,))
 
         assert len(stack) == 1
         query = stack[0]