TopicIndex.py :  » Web-Frameworks » Zope » Zope-2.6.0 » lib » python » Products » PluginIndexes » TopicIndex » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » Web Frameworks » Zope 
Zope » Zope 2.6.0 » lib » python » Products » PluginIndexes » TopicIndex » TopicIndex.py
##############################################################################
#
# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE
#
##############################################################################

__version__ = '$Id: TopicIndex.py,v 1.9 2002/08/14 22:19:34 mj Exp $'

from Products.PluginIndexes import PluggableIndex
from Products.PluginIndexes.common.util import parseIndexRequest

from Globals import Persistent,DTMLFile
from OFS.SimpleItem import SimpleItem
from Acquisition import Implicit
from BTrees.OOBTree import OOBTree
from BTrees.IIBTree import IISet,intersection,union
import FilteredSet

_marker = []

class TopicIndex(Persistent, Implicit, SimpleItem):

    """ A TopicIndex maintains a set of FilteredSet objects.
    Every FilteredSet object consists of an expression and
    and IISet with all Ids of indexed objects that eval with
    this expression to 1.
    """

    __implements__ = (PluggableIndex.PluggableIndexInterface,)

    meta_type="TopicIndex"

    manage_options= (
        {'label': 'FilteredSets',
         'action': 'manage_workspace',
         'help': ('TopicIndex','TopicIndex_searchResults.stx')},
    )

    manage_workspace = DTMLFile('dtml/manageTopicIndex',globals())

    query_options = ('query','operator')

    def __init__(self,id,caller=None):
        self.id             = id
        self.filteredSets   = OOBTree()
        # experimental code for specifing the operator
        self.operators       = ('or','and')
        self.defaultOperator = 'or'


    def getId(self): return self.id

    def clear(self):
        """ clear everything """
        self.filteredSets = OOBTree()


    def index_object(self, documentId, obj ,threshold=100):
        """ hook for (Z)Catalog """

        for fid, filteredSet in self.filteredSets.items():
            filteredSet.index_object(documentId,obj)

        return 1


    def unindex_object(self,documentId):
        """ hook for (Z)Catalog """

        for fs in self.filteredSets.values():
            fs.unindex_object(documentId)

        return 1


    def __len__(self):
        """ len """
        n=0
        for fs in self.filteredSets.values():
            n = n + len(fs.getIds())
        return n


    numObjects = "does not apply"


    def keys(self):   pass
    def values(self): pass
    def items(self):  pass


    def search(self,filterId):

        if self.filteredSets.has_key(filterId):
            return self.filteredSets[filterId].getIds()


    def _apply_index(self, request, cid=''):
        """ hook for (Z)Catalog
        request   mapping type (usually {"topic": "..." }
        cid      ???
        """

        record = parseIndexRequest(request,self.id,self.query_options)
        if record.keys==None: return None

        # experimental code for specifing the operator
        operator = record.get('operator',self.defaultOperator).lower()

        # depending on the operator we use intersection of union
        if operator=="or":  set_func = union
        else:               set_func = intersection

        res = None

        for filterId in record.keys:
            rows = self.search(filterId)
            res = set_func(res,rows)

        if res:
            return res, (self.id,)
        else:
            return IISet(), (self.id,)


    def uniqueValues(self,name=None,withLength=0):
        """ needed to be consistent with the interface """

        return self.filteredSets.keys()


    def getEntryForObject(self,documentId,default=_marker):
        """ Takes a document ID and returns all the information we have
        on that specific object. """

        return self.filteredSets.keys()


    def addFilteredSet(self, filterId, typeFilteredSet, expr):

        if self.filteredSets.has_key(filterId):
            raise KeyError,\
                'A FilteredSet with this name already exists: %s' % filterId

        self.filteredSets[filterId] = \
            FilteredSet.factory(filterId, typeFilteredSet, expr)


    def delFilteredSet(self,filterId):

        if not self.filteredSets.has_key(filterId):
            raise KeyError,\
                'no such FilteredSet:  %s' % filterId

        del self.filteredSets[filterId]


    def clearFilteredSet(self,filterId):

        if not self.filteredSets.has_key(filterId):
            raise KeyError,\
                'no such FilteredSet:  %s' % filterId

        self.filteredSets[filterId].clear()


    def manage_addFilteredSet(self, filterId, typeFilteredSet, expr, URL1, \
            REQUEST=None,RESPONSE=None):
        """ add a new filtered set """

        if len(filterId)==0: raise RuntimeError,'Length of ID too short'
        if len(expr)==0: raise RuntimeError,'Length of expression too short'

        self.addFilteredSet(filterId, typeFilteredSet, expr)

        if RESPONSE:
            RESPONSE.redirect(URL1+'/manage_workspace?'
            'manage_tabs_message=FilteredSet%20added')


    def manage_delFilteredSet(self, filterIds=[], URL1=None, \
            REQUEST=None,RESPONSE=None):
        """ delete a list of FilteredSets"""

        for filterId in filterIds:
            self.delFilteredSet(filterId)

        if RESPONSE:
            RESPONSE.redirect(URL1+'/manage_workspace?'
            'manage_tabs_message=FilteredSet(s)%20deleted')


    def manage_saveFilteredSet(self,filterId, expr, URL1=None,\
            REQUEST=None,RESPONSE=None):
        """ save expression for a FilteredSet """

        self.filteredSets[filterId].setExpression(expr)

        if RESPONSE:
            RESPONSE.redirect(URL1+'/manage_workspace?'
            'manage_tabs_message=FilteredSet(s)%20updated')


    def manage_clearFilteredSet(self, filterIds=[], URL1=None, \
            REQUEST=None,RESPONSE=None):
        """  clear a list of FilteredSets"""

        for filterId in filterIds:
            self.clearFilteredSet(filterId)

        if RESPONSE:
            RESPONSE.redirect(URL1+'/manage_workspace?'
             'manage_tabs_message=FilteredSet(s)%20cleared')


    editFilteredSet = DTMLFile('dtml/editFilteredSet',globals())
    index_html      = DTMLFile('dtml/index', globals())


manage_addTopicIndexForm = DTMLFile('dtml/addTopicIndex', globals())

def manage_addTopicIndex(self, id, REQUEST=None, RESPONSE=None, URL3=None):
    """Add a TopicIndex"""
    return self.manage_addIndex(id, 'TopicIndex', extra=None, \
                REQUEST=REQUEST, RESPONSE=RESPONSE, URL1=URL3)
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.