Files
entropy/spritz/src/filters.py
T
(no author) c3f247374d fix Spritz localization domain
git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@1329 cd1c1023-2f26-0410-ae45-c471fc1f0318
2008-02-28 14:26:41 +00:00

106 lines
3.0 KiB
Python
Executable File

#!/usr/bin/python -tt
# -*- coding: iso-8859-1 -*-
# Yum Exteder (yumex) - A GUI for yum
# Copyright (C) 2005 Tim Lauridsen < tla<AT>rasmil<DOT>DK >
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
# Filtering action class
import re
class SpritzFiltering:
def __init__(self):
self.filters = []
def registerFilter(self,klass):
if not klass in self.filters:
self.filters.append(klass)
def processFilters(self,po):
for flt in self.filters:
if flt.process(po):
continue
else:
return False
return True
def listFilters(self):
for flt in self.filters:
print "%s : %s " % (flt.getName(),flt._state)
def get(self,name):
for flt in self.filters:
if flt.getName() == name:
return flt
return None
# Abstact Filter Classes
class SpritzFilter:
def __init__(self):
self.name = self.getName()
self._state = False
def getName(self):
return "SpritzFilter"
def process(self,po):
raise NotImplementedError()
def activate(self,state=True):
self._state = state
# Filters
class KeywordFilter(SpritzFilter):
def __init__(self):
SpritzFilter.__init__(self)
self.reList = []
self.fields = ['name', 'description']
def setKeys(self,criteria):
self.reList = []
for string in criteria:
try:
crit_re = re.compile(string, flags=re.I)
self.reList.append(crit_re)
except:
pass
def getName(self):
return "KeywordFilter"
def process(self,pkg):
if self._state: # is filter enabled ?
for crit_re in self.reList:
found = False
for field in self.fields:
value = pkg.getAttr( field )
if value and crit_re.search(value):
found = True
if found: # This search criteria was found
continue # Check the next one
else:
return False # This criteria was not found, bail out
return True # All search criterias was found
else:
return True
spritzFilter = SpritzFiltering()
spritzFilter.registerFilter(KeywordFilter())