forked from mirrors/gecko-dev
		
	 449d528cf3
			
		
	
	
		449d528cf3
		
	
	
	
	
		
			
			MozReview-Commit-ID: 6aPdGbxn0D1 --HG-- rename : taskcluster/taskgraph/task/__init__.py => taskcluster/taskgraph/loader/__init__.py rename : taskcluster/taskgraph/task/balrog.py => taskcluster/taskgraph/loader/balrog.py rename : taskcluster/taskgraph/task/beetmover.py => taskcluster/taskgraph/loader/beetmover.py rename : taskcluster/taskgraph/task/beetmover_checksums.py => taskcluster/taskgraph/loader/beetmover_checksums.py rename : taskcluster/taskgraph/task/checksums_signing.py => taskcluster/taskgraph/loader/checksums_signing.py rename : taskcluster/taskgraph/task/post_build.py => taskcluster/taskgraph/loader/post_build.py rename : taskcluster/taskgraph/task/repacks.py => taskcluster/taskgraph/loader/repacks.py rename : taskcluster/taskgraph/task/signing.py => taskcluster/taskgraph/loader/signing.py rename : taskcluster/taskgraph/task/test.py => taskcluster/taskgraph/loader/test.py rename : taskcluster/taskgraph/task/transform.py => taskcluster/taskgraph/loader/transform.py rename : taskcluster/taskgraph/task/base.py => taskcluster/taskgraph/task.py extra : rebase_source : 42a183bae9aedfa04876d99a59119fd08bbf7d73
		
			
				
	
	
		
			86 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| # This Source Code Form is subject to the terms of the Mozilla Public
 | |
| # License, v. 2.0. If a copy of the MPL was not distributed with this
 | |
| # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 | |
| 
 | |
| from __future__ import absolute_import, print_function, unicode_literals
 | |
| 
 | |
| 
 | |
| class Task(object):
 | |
|     """
 | |
|     Representation of a task in a TaskGraph.  Each Task has, at creation:
 | |
| 
 | |
|     - kind: the name of the task kind
 | |
|     - label; the label for this task
 | |
|     - attributes: a dictionary of attributes for this task (used for filtering)
 | |
|     - task: the task definition (JSON-able dictionary)
 | |
|     - optimizations: optimizations to apply to the task (see taskgraph.optimize)
 | |
|     - dependencies: tasks this one depends on, in the form {name: label}, for example
 | |
|       {'build': 'build-linux64/opt', 'docker-image': 'build-docker-image-desktop-test'}
 | |
| 
 | |
|     And later, as the task-graph processing proceeds:
 | |
| 
 | |
|     - task_id -- TaskCluster taskId under which this task will be created
 | |
|     - optimized -- true if this task need not be performed
 | |
| 
 | |
|     This class is just a convenience wraper for the data type and managing
 | |
|     display, comparison, serialization, etc. It has no functionality of its own.
 | |
|     """
 | |
|     def __init__(self, kind, label, attributes, task,
 | |
|                  optimizations=None, dependencies=None):
 | |
|         self.kind = kind
 | |
|         self.label = label
 | |
|         self.attributes = attributes
 | |
|         self.task = task
 | |
| 
 | |
|         self.task_id = None
 | |
|         self.optimized = False
 | |
| 
 | |
|         self.attributes['kind'] = kind
 | |
| 
 | |
|         self.optimizations = optimizations or []
 | |
|         self.dependencies = dependencies or {}
 | |
| 
 | |
|     def __eq__(self, other):
 | |
|         return self.kind == other.kind and \
 | |
|             self.label == other.label and \
 | |
|             self.attributes == other.attributes and \
 | |
|             self.task == other.task and \
 | |
|             self.task_id == other.task_id and \
 | |
|             self.optimizations == other.optimizations and \
 | |
|             self.dependencies == other.dependencies
 | |
| 
 | |
|     def __repr__(self):
 | |
|         return ('Task({kind!r}, {label!r}, {attributes!r}, {task!r}, '
 | |
|                 'optimizations={optimizations!r}, '
 | |
|                 'dependencies={dependencies!r})'.format(**self.__dict__))
 | |
| 
 | |
|     def to_json(self):
 | |
|         rv = {
 | |
|             'kind': self.kind,
 | |
|             'label': self.label,
 | |
|             'attributes': self.attributes,
 | |
|             'dependencies': self.dependencies,
 | |
|             'optimizations': self.optimizations,
 | |
|             'task': self.task,
 | |
|         }
 | |
|         if self.task_id:
 | |
|             rv['task_id'] = self.task_id
 | |
|         return rv
 | |
| 
 | |
|     @classmethod
 | |
|     def from_json(cls, task_dict):
 | |
|         """
 | |
|         Given a data structure as produced by taskgraph.to_json, re-construct
 | |
|         the original Task object.  This is used to "resume" the task-graph
 | |
|         generation process, for example in Action tasks.
 | |
|         """
 | |
|         rv = cls(
 | |
|             kind=task_dict['kind'],
 | |
|             label=task_dict['label'],
 | |
|             attributes=task_dict['attributes'],
 | |
|             task=task_dict['task'],
 | |
|             optimizations=task_dict['optimizations'],
 | |
|             dependencies=task_dict.get('dependencies'))
 | |
|         if 'task_id' in task_dict:
 | |
|             rv.task_id = task_dict['task_id']
 | |
|         return rv
 |