[Zope-CVS] CVS: Products/ZCTextIndex - ParseTree.py:1.4
Tim Peters
tim.one@comcast.net
Fri, 17 May 2002 18:18:38 -0400
Update of /cvs-repository/Products/ZCTextIndex
In directory cvs.zope.org:/tmp/cvs-serv1807
Modified Files:
ParseTree.py
Log Message:
Special-case None search() results in AND, AND NOT, and OR contexts, and
uncomment the test cases that were failing in these contexts.
Read it and weep <wink>: In an AND context, None is treated like the
universal set, which jibes with the convenient fiction that stop words
appear in every doc. However, in AND NOT and OR contexts, None is
treated like the empty set, which doesn't jibe with anything except that
we want
real_word AND NOT stop_word
and
real_word OR stop_word
to act like
real_word
If we treated None as if it were the universal set, these results would
be (respectively) the empty set and the universal set instead.
At a higher level, we *are* consistent with the notion that a query with
a stop word acts the same as if the clause with the stop word weren't
present. That's what really drives this schizophrenic (context-dependent)
treatment of None.
=== Products/ZCTextIndex/ParseTree.py 1.3 => 1.4 ===
for subnode in self.getValue():
if subnode.nodeType() == "NOT":
- Nots.append((subnode.getValue().executeQuery(index), 1))
+ r = subnode.getValue().executeQuery(index)
+ # If None, technically it matches every doc, but we treat
+ # it as if it matched none (we want
+ # real_word AND NOT stop_word
+ # to act like plain real_word).
+ if r is not None:
+ Nots.append((r, 1))
else:
- L.append((subnode.executeQuery(index), 1))
- assert L
+ r = subnode.executeQuery(index)
+ # If None, technically it matches every doc, so needn't be
+ # included.
+ if r is not None:
+ L.append((r, 1))
set = mass_weightedIntersection(L)
if Nots:
notset = mass_weightedUnion(Nots)
@@ -84,8 +93,15 @@
_nodeType = "OR"
def executeQuery(self, index):
- weighted = [(node.executeQuery(index), 1)
- for node in self.getValue()]
+ weighted = []
+ for node in self.getValue():
+ r = node.executeQuery(index)
+ # If None, technically it matches every doc, but we treat
+ # it as if it matched none (we want
+ # real_word OR stop_word
+ # to act like plain real_word).
+ if r is not None:
+ weighted.append((r, 1))
return mass_weightedUnion(weighted)
class AtomNode(ParseTreeNode):