From 2dbb067eba4efe3216fd4dbc0103c63f883d8ef4 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 26 May 2015 08:27:15 +0000 Subject: bitbake: 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. (Bitbake rev: 41cf8d0c92d2d8a33fdad0921e424a0024914be1) Signed-off-by: Richard Purdie --- bitbake/lib/bb/data_smart.py | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'bitbake/lib/bb/data_smart.py') diff --git a/bitbake/lib/bb/data_smart.py b/bitbake/lib/bb/data_smart.py index 4ccbedbfab..c800a9a106 100644 --- a/bitbake/lib/bb/data_smart.py +++ b/bitbake/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) -- cgit v1.2.3-54-g00ecf