summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-08-22 22:39:11 +0000
committerZac Medico <zmedico@gentoo.org>2007-08-22 22:39:11 +0000
commitc396f9d96a2f98420662332fa2107395fa0b1c1a (patch)
treec42a115fa37fcc82d14c9b63b9f5a5cd1aa022dd
parent7ee09a98c8553f9aa12700a33ae89d6b9ffeaec1 (diff)
downloadportage-c396f9d96a2f98420662332fa2107395fa0b1c1a.tar.gz
portage-c396f9d96a2f98420662332fa2107395fa0b1c1a.tar.bz2
portage-c396f9d96a2f98420662332fa2107395fa0b1c1a.zip
Prevent output from being flushed to the console too frequently in dir_get_metadata(). (trunk r7672)
svn path=/main/branches/2.1.2/; revision=7673
-rw-r--r--pym/getbinpkg.py40
1 files changed, 30 insertions, 10 deletions
diff --git a/pym/getbinpkg.py b/pym/getbinpkg.py
index a108f0244..b11a775e1 100644
--- a/pym/getbinpkg.py
+++ b/pym/getbinpkg.py
@@ -552,18 +552,37 @@ def dir_get_metadata(baseurl, conn=None, chunk_size=3000, verbose=1, usingcache=
sys.stderr.flush()
break
# We may have metadata... now we run through the tbz2 list and check.
- ext_miss = 0
- ext_hit = 0
- out.write(yellow("cache miss: '"+str(ext_miss)+"'")+" --- "+green("cache hit: '"+str(ext_hit)+"'"))
- out.flush()
+
+ class CacheStats(object):
+ from time import time
+ def __init__(self, out):
+ self.misses = 0
+ self.hits = 0
+ self.last_update = 0
+ self.out = out
+ self.min_display_latency = 0.2
+ def update(self):
+ cur_time = self.time()
+ if cur_time - self.last_update >= self.min_display_latency:
+ self.last_update = cur_time
+ self.display()
+ def display(self):
+ self.out.write("\r"+yellow("cache miss: '"+str(self.misses)+"'")+\
+ " --- "+green("cache hit: '"+str(self.hits)+"'"))
+ self.out.flush()
+
+ cache_stats = CacheStats(out)
+ have_tty = out.isatty()
+ if have_tty:
+ cache_stats.display()
binpkg_filenames = set()
for x in tbz2list:
x = os.path.basename(x)
binpkg_filenames.add(x)
if x not in metadata[baseurl]["data"]:
- ext_miss += 1
- out.write("\r"+yellow("cache miss: '"+str(ext_miss)+"'")+" --- "+green("cache hit: '"+str(ext_hit)+"'"))
- out.flush()
+ cache_stats.misses += 1
+ if have_tty:
+ cache_stats.update()
metadata[baseurl]["modified"] = 1
myid = None
for retry in xrange(3):
@@ -586,9 +605,10 @@ def dir_get_metadata(baseurl, conn=None, chunk_size=3000, verbose=1, usingcache=
sys.stderr.write(red("!!! Failed to retrieve metadata on: ")+str(x)+"\n")
sys.stderr.flush()
else:
- ext_hit += 1
- out.write("\r"+yellow("cache miss: '"+str(ext_miss)+"'")+" --- "+green("cache hit: '"+str(ext_hit)+"'"))
- out.flush()
+ cache_stats.hits += 1
+ if have_tty:
+ cache_stats.update()
+ cache_stats.display()
# Cleanse stale cache for files that don't exist on the server anymore.
stale_cache = set(metadata[baseurl]["data"]).difference(binpkg_filenames)
if stale_cache: