summaryrefslogtreecommitdiffstats
path: root/lib/bb/data_smart.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2015-05-26 08:27:15 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-07-12 22:50:27 +0100
commit41cf8d0c92d2d8a33fdad0921e424a0024914be1 (patch)
tree6ad78b6d5e0a1a4ab86eb9a096aa3548ed083932 /lib/bb/data_smart.py
parent1a39ccf66b30b54e1274669cb0e1dc8fc72dba49 (diff)
downloadopenembedded-core-contrib-41cf8d0c92d2d8a33fdad0921e424a0024914be1.tar.gz
data_smart: Tweak OVERRIDES value cache for performance
Updating the value of OVERRIDES whenever it changes turns out to be extremely expensve/pointless. Instead, clear its value and re-establish the value when we're going to use it. This gives significant speed back. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/data_smart.py')
-rw-r--r--lib/bb/data_smart.py16
1 files changed, 12 insertions, 4 deletions
diff --git a/lib/bb/data_smart.py b/lib/bb/data_smart.py
index 4ccbedbfab..c800a9a106 100644
--- a/lib/bb/data_smart.py
+++ b/lib/bb/data_smart.py
@@ -311,8 +311,7 @@ class DataSmart(MutableMapping):
# cookie monster tribute
self.overridedata = {}
-
- self.overrides = []
+ self.overrides = None
self.overridevars = set(["OVERRIDES", "FILE"])
def enableTracking(self):
@@ -360,8 +359,13 @@ class DataSmart(MutableMapping):
def internal_finalize(self, parent = False):
"""Performs final steps upon the datastore, including application of overrides"""
+ self.overrides = None
- self.overrides = (self.getVar("OVERRIDES", True) or "").split(":") or []
+ def need_overrides(self):
+ if self.overrides is None:
+ self.overrides = []
+ self.overrides = (self.getVar("OVERRIDES", True) or "").split(":") or []
+ self.expand_cache = {}
def initVar(self, var):
self.expand_cache = {}
@@ -587,6 +591,7 @@ class DataSmart(MutableMapping):
if flag == "_content" and var in self.overridedata and not parsing:
match = False
active = {}
+ self.need_overrides()
for (r, o) in self.overridedata[var]:
# What about double overrides both with "_" in the name?
if o in self.overrides:
@@ -619,6 +624,7 @@ class DataSmart(MutableMapping):
if flag == "_content" and local_var is not None and "_append" in local_var and not parsing:
if not value:
value = ""
+ self.need_overrides()
for (r, o) in local_var["_append"]:
match = True
if o:
@@ -631,6 +637,7 @@ class DataSmart(MutableMapping):
if flag == "_content" and local_var is not None and "_prepend" in local_var and not parsing:
if not value:
value = ""
+ self.need_overrides()
for (r, o) in local_var["_prepend"]:
match = True
@@ -652,6 +659,7 @@ class DataSmart(MutableMapping):
if value and flag == "_content" and local_var is not None and "_remove" in local_var:
removes = []
+ self.need_overrides()
for (r, o) in local_var["_remove"]:
match = True
if o:
@@ -762,7 +770,7 @@ class DataSmart(MutableMapping):
data._tracking = self._tracking
- data.overrides = copy.copy(self.overrides)
+ data.overrides = None
data.overridevars = copy.copy(self.overridevars)
data.overridedata = copy.copy(self.overridedata)