summaryrefslogtreecommitdiffstats
path: root/lib/bb/cache.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/bb/cache.py')
-rw-r--r--lib/bb/cache.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index 981d8bd91..d72622d74 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -189,14 +189,31 @@ class Cache(object):
logger.info('Bitbake version mismatch, rebuilding...')
return
+ cachesize = os.fstat(cachefile.fileno()).st_size
+ bb.event.fire(bb.event.CacheLoadStarted(cachesize), self.data)
+
+ previous_percent = 0
while cachefile:
try:
key = pickled.load()
value = pickled.load()
except Exception:
break
+
self.depends_cache[key] = value
+ # only fire events on even percentage boundaries
+ current_progress = cachefile.tell()
+ current_percent = 100 * current_progress / cachesize
+ if current_percent > previous_percent:
+ previous_percent = current_percent
+ bb.event.fire(bb.event.CacheLoadProgress(current_progress),
+ self.data)
+
+ bb.event.fire(bb.event.CacheLoadCompleted(cachesize,
+ len(self.depends_cache)),
+ self.data)
+
@staticmethod
def virtualfn2realfn(virtualfn):
"""
@@ -576,3 +593,4 @@ class CacheData(object):
# calculations
if not info.broken and not info.not_world:
self.possible_world.append(fn)
+