diff options
author | James Ennis <james.ennis@codethink.com> | 2019-01-18 17:20:42 +0000 |
---|---|---|
committer | James Ennis <james.ennis@codethink.com> | 2019-01-18 17:20:42 +0000 |
commit | f35c46b256c8f32a8c88d8171829b4c3115c0c98 (patch) | |
tree | d17c97b51b6afd99e5b033150824618b12c428f1 | |
parent | 1a08ddbff0783c5f655c166d56a62a978e54a500 (diff) | |
download | buildstream-danielsilverstone-ct/for-jim.tar.gz |
_profile.py: Added a new profiling topic, load-selectiondanielsilverstone-ct/for-jim
profile_start() and profile_end() calls have been added to
Stream.load_selection()
-rw-r--r-- | buildstream/_profile.py | 1 | ||||
-rw-r--r-- | buildstream/_stream.py | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/buildstream/_profile.py b/buildstream/_profile.py index b293c342b..d977c5da2 100644 --- a/buildstream/_profile.py +++ b/buildstream/_profile.py @@ -46,6 +46,7 @@ class Topics(): LOAD_CONTEXT = 'load-context' LOAD_PROJECT = 'load-project' LOAD_PIPELINE = 'load-pipeline' + LOAD_SELECTION = 'load-selection' SCHEDULER = 'scheduler' SHOW = 'show' ARTIFACT_RECEIVE = 'artifact-receive' diff --git a/buildstream/_stream.py b/buildstream/_stream.py index 62eff1d8b..26aa64548 100644 --- a/buildstream/_stream.py +++ b/buildstream/_stream.py @@ -32,6 +32,7 @@ from ._exceptions import StreamError, ImplError, BstError, set_last_task_error from ._message import Message, MessageType from ._scheduler import Scheduler, SchedStatus, TrackQueue, FetchQueue, BuildQueue, PullQueue, PushQueue from ._pipeline import Pipeline, PipelineSelection +from ._profile import Topics, profile_start, profile_end from . import utils, _yaml, _site from . import Scope, Consistency @@ -106,10 +107,16 @@ class Stream(): def load_selection(self, targets, *, selection=PipelineSelection.NONE, except_targets=()): + + profile_start(Topics.LOAD_SELECTION, "_".join(t.replace(os.sep, '-') for t in targets)) + elements, _ = self._load(targets, (), selection=selection, except_targets=except_targets, fetch_subprojects=False) + + profile_end(Topics.LOAD_SELECTION, "_".join(t.replace(os.sep, '-') for t in targets)) + return elements # shell() |