# HG changeset patch # User Nicolas Chauvat # Date 1307433811 -7200 # Node ID 395c966a1cb3b68723a89a674c5be89f887e96bc # Parent 9f116f9b3be8a95e5f1bfd28803901493a5503bb [parsers] remove build_search_rql() that duplicates find_entities() diff -r 9f116f9b3be8 -r 395c966a1cb3 sobjects/parsers.py --- a/sobjects/parsers.py Mon Jun 06 19:54:37 2011 +0200 +++ b/sobjects/parsers.py Tue Jun 07 10:03:31 2011 +0200 @@ -102,10 +102,6 @@ item[child.tag] = unicode(child.text) yield item, rels -def build_search_rql(etype, attrs): - restrictions = ['X %(attr)s %%(%(attr)s)s'%{'attr': attr} for attr in attrs] - return 'Any X WHERE X is %s, %s' % (etype, ', '.join(restrictions)) - def rtype_role_rql(rtype, role): if role == 'object': return 'Y %s X WHERE X eid %%(x)s' % rtype @@ -287,13 +283,12 @@ % item, searchattrs) continue kwargs = dict((attr, item[attr]) for attr in searchattrs) - rql = build_search_rql(item['cwtype'], kwargs) - rset = self._cw.execute(rql, kwargs) - if len(rset) > 1: + targets = tuple(self._cw.find_entities(item['cwtype'], **kwargs)) + if len(targets) > 1: self.source.error('ambiguous link: found %s entity %s with attributes %s', - len(rset), item['cwtype'], kwargs) - elif len(rset) == 1: - eids.append(rset[0][0]) + len(targets), item['cwtype'], kwargs) + elif len(targets) == 1: + eids.append(targets[0].eid) elif create_when_not_found: ensure_str_keys(kwargs) # XXX necessary with python < 2.6 eids.append(self._cw.create_entity(item['cwtype'], **kwargs).eid)