ImageGrid/tags.py
Alex A. Naanou 72e467fae0 split the tests to a seporate module; minor tweeks...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2011-10-04 22:26:46 +04:00

243 lines
5.8 KiB
Python
Executable File

#=======================================================================
__version__ = '''0.0.01'''
__sub_version__ = '''20111004222341'''
__copyright__ = '''(c) Alex A. Naanou 2011'''
#-----------------------------------------------------------------------
import uuid
import pli.objutils as objutils
import pli.pattern.proxy.utils as putils
#-----------------------------------------------------------------------
#------------------------------------------------------AbstractTagSet---
class AbstractTagSet(object):
'''
'''
pass
#---------------------------------------------------------BasicTagSet---
class BasicTagSet(AbstractTagSet):
'''
'''
objutils.createonaccess('_index', dict)
def tag(self, obj, *tags):
'''
'''
index = self._index
for tag in tags:
if tag not in index:
index[tag] = set()
index[tag].add(obj)
return self
def untag(self, obj, *tags):
'''
'''
index = self._index
for tag in tags:
index[tag].remove(obj)
return self
# selectors...
def all(self, *tags):
'''
'''
index = self._index
pool = []
for tag in tags:
pool += [index[tag]]
pool.sort(key=len)
# if we have atleast one empty set then we have an empty
# result...
if len(pool[0]) == 0:
return set()
# initially get the largest pool element...
# NOTE: this is an optimization -- we first intersect the
# largest population with the smallest, giving the rest a
# far smaller population to work with...
res = set(pool.pop(-1))
# now we get the total intersection of elements...
for s in pool:
res.intersection_update(s)
return res
def any(self, *tags):
'''
'''
index = self._index
res = set()
for tag in tags:
res.update(index[tag])
return res
##!!! slow !!!##
def none(self, *tags):
'''
'''
# XXX is this the best way yo do this?
index = self._index
bad = self.any(*tags)
other_tags = set(index.keys()).difference(tags)
return self.any(*other_tags).difference(bad)
#-----------------------------------------TagSetWithReverseIndexMixin---
class TagSetWithReverseIndexMixin(AbstractTagSet):
'''
'''
objutils.createonaccess('_reverse_index', '_build_reverse_index', local_attr_tpl='%s_data')
##!!! slow !!!##
def _build_reverse_index(self):
'''
'''
res = {}
index = self._index
# XXX this is really ugly!!
objects = reduce(set.union, index.values())
for obj in objects:
res[obj] = set(t for t in index if obj in index[t])
return res
def _reset_reverse_index(self):
if hasattr(self, '_reverse_index_data'):
del self._reverse_index_data
self._reverse_index_data
# these need to update the cache (_reverse_index)
def tag(self, obj, *tags):
'''
'''
super(TagSetWithReverseIndexMixin, self).tag(obj, *tags)
# update cache...
if obj not in self._reverse_index:
self._reverse_index[obj] = set()
self._reverse_index[obj].update(tags)
return self
def untag(self, obj, *tags):
'''
'''
super(TagSetWithReverseIndexMixin, self).untag(obj, *tags)
# update cache...
if obj in self._reverse_index:
self._reverse_index[obj].difference_update(tags)
if len(self._reverse_index[obj]) == 0:
del self._reverse_index[obj]
return self
# specific interface...
def tags(self, *objs):
'''
return a list of all the tags that tag the given objects.
if no objects are given return all the tags.
'''
if objs == ():
return set(self._index.keys())
res = set()
rev_index = self._reverse_index
for obj in objs:
res.update(rev_index[obj])
return res
def objects(self):
return self._reverse_index.keys()
#------------------------------------------TagSetWithRelatedTagsMixin---
class TagSetWithRelatedTagsMixin(AbstractTagSet):
'''
NOTE: this requires the .tags(...) method.
'''
##!!! should be two modes: strict (all) and non-strict (any)...
def relatedtags(self, *tags):
'''
'''
return self.tags(*self.all(*tags)).difference(tags)
#--------------------------------------------------------------TagSet---
class TagSet(TagSetWithRelatedTagsMixin, TagSetWithReverseIndexMixin, BasicTagSet):
'''
'''
pass
#-----------------------------------------------------------------------
#-----------------------------------------------TagSetWithObjectIndex---
class TagSetWithObjectIndex(object):
'''
'''
objutils.createonaccess('_index', TagSet)
objutils.createonaccess('_objects', dict)
objutils.createonaccess('_cache', '_build_cache', local_attr_tpl='%s_data')
# internal interface...
def _build_cache(self):
return dict(((b, a) for a, b in self._objects.items()))
def _reset_cache(self):
if hasattr(self, '_cache_data'):
del self._cache_data
self._cache_data
# these need to manupulate the cache...
def tag(self, obj, *tags):
'''
'''
uid = self._cache.get(obj, uuid.uuid1())
self._index.tag(uid, *tags)
if uid not in self._objects:
self._objects[uid] = obj
self._cache[obj] = uid
return self
def untag(self, obj, *tags):
uid = self._cache[obj]
self._index.untag(uid, *tags)
# update cache...
if uid not in self._index.objects():
del self._objects[uid]
return self
def _proxy_op(name):
def _op(self, *tags):
'''
'''
return set(self._objects[uid] for uid in getattr(self._index, name)(*tags))
return _op
all = _proxy_op('all')
any = _proxy_op('any')
none = _proxy_op('none')
del _proxy_op
def tags(self, *objs):
'''
'''
cache = self._cache
return self._index.tags(*(cache[obj] for obj in objs))
def objects(self):
return self._objects.values()
putils.proxymethods((
'relatedtags',
), '_index')
def getuid(self, obj):
'''
'''
return self._cache.get(obj, None)
#-----------------------------------------------------------------------
if __name__ == '__main__':
pass
#=======================================================================
# vim:set ts=4 sw=4 nowrap :