Files
entropy/client/cacheTools.py
T
(no author) 8f9fcc1f9d - rewritten cacheTools in a OO way
- some bug fixes
- spritz repositories sync implemented


git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@968 cd1c1023-2f26-0410-ae45-c471fc1f0318
2007-12-30 19:32:24 +00:00

196 lines
7.3 KiB
Python

#!/usr/bin/python
'''
# DESCRIPTION:
# Equo on-disk caching tools
Copyright (C) 2007 Fabio Erculiani
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
'''
from entropyConstants import *
from clientConstants import *
import exceptionTools
def cache(options):
rc = 0
if len(options) < 1:
return -10
if options[0] == "clean":
rc = cleanCache()
elif options[0] == "generate":
rc = generateCache()
else:
rc = -10
return rc
'''
@description: scan etpCache and remove all the on disk caching files
@output: status code
'''
def cleanCache():
cacheConn = cacheHelper()
cacheConn.purge()
del cacheConn
return 0
'''
@description: cache entropy data and scan packages to collect info and fill caches
@output: status code
'''
def generateCache(depcache = True, configcache = True):
cacheConn = cacheHelper()
cacheConn.generate(depcache = depcache, configcache = configcache)
del cacheConn
return 0
'''
Entropy cache interface:
- handles on-disk cache status
- handles dictionary cache status
'''
class cacheHelper:
def __init__(self):
import confTools
self.confTools = confTools
import equoTools
self.equoTools = equoTools
import entropyTools
self.entropyTools = entropyTools
from databaseTools import openRepositoryDatabase
self.openRepositoryDatabase = openRepositoryDatabase
def purge(self):
dumpdir = etpConst['dumpstoragedir']
if not dumpdir.endswith("/"): dumpdir = dumpdir+"/"
for key in etpCache:
cachefile = dumpdir+etpCache[key]+"*.dmp"
self.updateProgress("Cleaning %s..." % (cachefile,), importance = 1, type = "warning", back = True)
try:
os.system("rm -f "+cachefile)
except:
pass
# reset dict cache
self.updateProgress("Cache is now empty.", importance = 2, type = "info")
const_resetCache()
def generate(self, depcache = True, configcache = True):
# clean first of all
self.purge()
if depcache:
self.do_depcache()
if configcache:
self.do_configcache()
def do_configcache(self):
self.updateProgress("Configuration files", importance = 2, type = "warning")
self.updateProgress("Scanning hard disk", importance = 1, type = "warning")
self.confTools.scanfs(dcache = False)
self.updateProgress("Cache generation complete.", importance = 2, type = "info")
def do_depcache(self):
self.updateProgress("Dependencies", importance = 2, type = "warning")
self.updateProgress("Scanning repositories", importance = 2, type = "warning")
names = set()
keys = set()
depends = set()
atoms = set()
for reponame in etpRepositories:
self.updateProgress("Scanning %s" % (etpRepositories[reponame]['description'],) , importance = 1, type = "info", back = True)
# get all packages keys
try:
dbconn = self.openRepositoryDatabase(reponame)
except exceptionTools.RepositoryError:
self.updateProgress("Cannot download/access: %s" % (etpRepositories[reponame]['description'],) , importance = 2, type = "error")
continue
pkgdata = dbconn.listAllPackages()
pkgdata = set(pkgdata)
for info in pkgdata:
key = self.entropyTools.dep_getkey(info[0])
keys.add(key)
names.add(key.split("/")[1])
atoms.add(info[0])
# dependencies
pkgdata = dbconn.listAllDependencies()
for info in pkgdata:
depends.add(info[1])
dbconn.closeDB()
del dbconn
self.updateProgress("Resolving metadata", importance = 1, type = "warning")
atomMatchCache.clear()
maxlen = len(names)
cnt = 0
for name in names:
cnt += 1
self.updateProgress("Resolving name: %s" % (
name
), importance = 0, type = "info", back = True, count = (cnt, maxlen) )
self.equoTools.atomMatch(name)
maxlen = len(keys)
cnt = 0
for key in keys:
cnt += 1
self.updateProgress("Resolving key: %s" % (
key
), importance = 0, type = "info", back = True, count = (cnt, maxlen) )
self.equoTools.atomMatch(key)
maxlen = len(atoms)
cnt = 0
for atom in atoms:
cnt += 1
self.updateProgress("Resolving atom: %s" % (
atom
), importance = 0, type = "info", back = True, count = (cnt, maxlen) )
self.equoTools.atomMatch(atom)
maxlen = len(depends)
cnt = 0
for depend in depends:
cnt += 1
self.updateProgress("Resolving dependency: %s" % (
depend
), importance = 0, type = "info", back = True, count = (cnt, maxlen) )
self.equoTools.atomMatch(depend)
self.updateProgress("Dependencies filled. Flushing to disk.", importance = 2, type = "warning")
self.equoTools.saveCaches()
# @input text: text to write
# @input back: write on on the same line?
# @input importance:
# values: 0,1,2
# used to specify information importance, 0<important<2
# @input type:
# values: "info, warning, error"
#
# feel free to reimplement this
def updateProgress(self, text, back = False, importance = 0, type = "info", count = []):
if (etpUi['quiet']):
return
import outputTools
count_str = ""
if count:
count_str = " (%s/%s) " % (outputTools.red(str(count[0])),outputTools.blue(str(count[1])),)
if importance == 0:
eval("outputTools.print_"+type)(outputTools.darkgreen("(")+outputTools.bold("*")+outputTools.darkgreen(") ")+count_str+outputTools.darkgreen(text), back = back)
elif importance == 1:
eval("outputTools.print_"+type)(outputTools.blue("(")+outputTools.bold("*")+outputTools.blue(") ")+count_str+outputTools.blue(text), back = back)
elif importance == 2:
eval("outputTools.print_"+type)(outputTools.red("(")+outputTools.bold("@@")+outputTools.red(") ")+count_str+outputTools.darkred(text), back = back)