summaryrefslogtreecommitdiff
path: root/src/buildstream/_scheduler/queues/sourcepushqueue.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/buildstream/_scheduler/queues/sourcepushqueue.py')
-rw-r--r--src/buildstream/_scheduler/queues/sourcepushqueue.py42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/buildstream/_scheduler/queues/sourcepushqueue.py b/src/buildstream/_scheduler/queues/sourcepushqueue.py
new file mode 100644
index 000000000..c38460e6a
--- /dev/null
+++ b/src/buildstream/_scheduler/queues/sourcepushqueue.py
@@ -0,0 +1,42 @@
+#
+# Copyright (C) 2019 Bloomberg Finance LP
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library. If not, see <http://www.gnu.org/licenses/>.
+#
+# Authors:
+# Raoul Hidalgo Charman <raoul.hidalgocharman@codethink.co.uk>
+
+from . import Queue, QueueStatus
+from ..resources import ResourceType
+from ..._exceptions import SkipJob
+
+
+# A queue which pushes staged sources
+#
+class SourcePushQueue(Queue):
+
+ action_name = "Src-push"
+ complete_name = "Sources pushed"
+ resources = [ResourceType.UPLOAD]
+
+ def process(self, element):
+ # Returns whether a source was pushed or not
+ if not element._source_push():
+ raise SkipJob(self.action_name)
+
+ def status(self, element):
+ if element._skip_source_push():
+ return QueueStatus.SKIP
+
+ return QueueStatus.READY