aboutsummaryrefslogtreecommitdiff
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-07-26 01:02:56 -0700
committerZac Medico <zmedico@gentoo.org>2010-07-26 01:02:56 -0700
commit0859f81c690b5d99dcd60a1f5cca5df65ab3c5d7 (patch)
treef5889118fdcfbbc48e0e9f3558a1b10366299ea2 /pym
parentMake extended_cp_match() use re.escape() for safety, and since the result is (diff)
downloadportage-0859f81c690b5d99dcd60a1f5cca5df65ab3c5d7.tar.gz
portage-0859f81c690b5d99dcd60a1f5cca5df65ab3c5d7.tar.bz2
portage-0859f81c690b5d99dcd60a1f5cca5df65ab3c5d7.zip
When the iter_owners dblink cache becomes full, do not finish processing
the current path, and go directly to the low-memory implemention.
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/dbapi/vartree.py71
1 files changed, 35 insertions, 36 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py
index 304b82ee6..5953997f3 100644
--- a/pym/portage/dbapi/vartree.py
+++ b/pym/portage/dbapi/vartree.py
@@ -51,7 +51,6 @@ from portage import _unicode_encode
from portage.cache.mappings import slot_dict_class
import codecs
-from collections import deque
import gc
import re, shutil, stat, errno, copy, subprocess
import logging
@@ -1650,8 +1649,6 @@ class vardbapi(dbapi):
yield x
return
- switch_to_low_mem = False
-
owners_cache = self._populate()
vardb = self._vardb
@@ -1661,19 +1658,15 @@ class vardbapi(dbapi):
base_names = self._vardb._aux_cache["owners"]["base_names"]
dblink_cache = {}
- dblink_fifo = deque()
def dblink(cpv):
x = dblink_cache.get(cpv)
if x is None:
- if len(dblink_fifo) >= 20:
+ if len(dblink_cache) > 20:
# Ensure that we don't run out of memory.
- del dblink_cache[dblink_fifo.popleft().mycpv]
- gc.collect()
- switch_to_low_mem = True
+ raise StopIteration()
x = self._vardb._dblink(cpv)
dblink_cache[cpv] = x
- dblink_fifo.append(x)
return x
while path_iter:
@@ -1690,36 +1683,42 @@ class vardbapi(dbapi):
name_hash = hash_str(name)
pkgs = base_names.get(name_hash)
+ owners = []
if pkgs is not None:
- for hash_value in pkgs:
- if not isinstance(hash_value, tuple) or \
- len(hash_value) != 3:
- continue
- cpv, counter, mtime = hash_value
- if not isinstance(cpv, basestring):
- continue
- try:
- current_hash = hash_pkg(cpv)
- except KeyError:
- continue
+ try:
+ for hash_value in pkgs:
+ if not isinstance(hash_value, tuple) or \
+ len(hash_value) != 3:
+ continue
+ cpv, counter, mtime = hash_value
+ if not isinstance(cpv, basestring):
+ continue
+ try:
+ current_hash = hash_pkg(cpv)
+ except KeyError:
+ continue
- if current_hash != hash_value:
- continue
+ if current_hash != hash_value:
+ continue
- if is_basename:
- for p in dblink(cpv).getcontents():
- if os.path.basename(p) == name:
- yield dblink(cpv), p[len(root):]
- else:
- if dblink(cpv).isowner(path, root):
- yield dblink(cpv), path
-
- if switch_to_low_mem:
- dblink_cache.clear()
- gc.collect()
- for x in self._iter_owners_low_mem(path_iter):
- yield x
- return
+ if is_basename:
+ for p in dblink(cpv).getcontents():
+ if os.path.basename(p) == name:
+ owners.append((cpv, p[len(root):]))
+ else:
+ if dblink(cpv).isowner(path, root):
+ owners.append((cpv, path))
+ except StopIteration:
+ path_iter.append(path)
+ del owners[:]
+ dblink_cache.clear()
+ gc.collect()
+ for x in self._iter_owners_low_mem(path_iter):
+ yield x
+ return
+ else:
+ for cpv, p in owners:
+ yield (dblink(cpv), p)
def _iter_owners_low_mem(self, path_list):
"""