aboutsummaryrefslogtreecommitdiff
path: root/wa/framework/run.py
blob: 7509e2b8a2c531ae939ea4fb19912f2eb0e2fad1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#    Copyright 2013-2018 ARM Limited
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

# Because of use of Enum (dynamic attrs)
# pylint: disable=no-member

import uuid
from collections import OrderedDict, Counter
from copy import copy
from datetime import datetime, timedelta

from wa.framework.configuration.core import Status
from wa.utils.serializer import Podable


class RunInfo(Podable):
    """
    Information about the current run, such as its unique ID, run
    time, etc.

    """
    _pod_serialization_version = 1

    @staticmethod
    def from_pod(pod):
        pod = RunInfo._upgrade_pod(pod)
        uid = pod.pop('uuid')
        _pod_version = pod.pop('_pod_version')
        duration = pod.pop('duration')
        if uid is not None:
            uid = uuid.UUID(uid)
        instance = RunInfo(**pod)
        instance._pod_version = _pod_version  # pylint: disable=protected-access
        instance.uuid = uid
        instance.duration = duration if duration is None else timedelta(seconds=duration)
        return instance

    def __init__(self, run_name=None, project=None, project_stage=None,
                 start_time=None, end_time=None, duration=None):
        super(RunInfo, self).__init__()
        self.uuid = uuid.uuid4()
        self.run_name = run_name
        self.project = project
        self.project_stage = project_stage
        self.start_time = start_time
        self.end_time = end_time
        self.duration = duration

    def to_pod(self):
        d = super(RunInfo, self).to_pod()
        d.update(copy(self.__dict__))
        d['uuid'] = str(self.uuid)
        if self.duration is None:
            d['duration'] = self.duration
        else:
            d['duration'] = self.duration.total_seconds()
        return d

    @staticmethod
    def _pod_upgrade_v1(pod):
        pod['_pod_version'] = pod.get('_pod_version', 1)
        return pod


class RunState(Podable):
    """
    Represents the state of a WA run.

    """
    _pod_serialization_version = 1

    @staticmethod
    def from_pod(pod):
        instance = super(RunState, RunState).from_pod(pod)
        instance.status = Status.from_pod(pod['status'])
        instance.timestamp = pod['timestamp']
        jss = [JobState.from_pod(j) for j in pod['jobs']]
        instance.jobs = OrderedDict(((js.id, js.iteration), js) for js in jss)
        return instance

    @property
    def num_completed_jobs(self):
        return sum(1 for js in self.jobs.values()
                   if js.status > Status.RUNNING)

    def __init__(self):
        super(RunState, self).__init__()
        self.jobs = OrderedDict()
        self.status = Status.NEW
        self.timestamp = datetime.utcnow()

    def add_job(self, job):
        job_state = JobState(job.id, job.label, job.iteration, job.status)
        self.jobs[(job_state.id, job_state.iteration)] = job_state

    def update_job(self, job):
        state = self.jobs[(job.id, job.iteration)]
        state.status = job.status
        state.timestamp = datetime.utcnow()

    def get_status_counts(self):
        counter = Counter()
        for job_state in self.jobs.values():
            counter[job_state.status] += 1
        return counter

    def to_pod(self):
        pod = super(RunState, self).to_pod()
        pod['status'] = self.status.to_pod()
        pod['timestamp'] = self.timestamp
        pod['jobs'] = [j.to_pod() for j in self.jobs.values()]
        return pod

    @staticmethod
    def _pod_upgrade_v1(pod):
        pod['_pod_version'] = pod.get('_pod_version', 1)
        pod['status'] = Status(pod['status']).to_pod()
        return pod


class JobState(Podable):

    _pod_serialization_version = 1

    @staticmethod
    def from_pod(pod):
        pod = JobState._upgrade_pod(pod)
        instance = JobState(pod['id'], pod['label'], pod['iteration'],
                            Status.from_pod(pod['status']))
        instance.retries = pod['retries']
        instance.timestamp = pod['timestamp']
        return instance

    @property
    def output_name(self):
        return '{}-{}-{}'.format(self.id, self.label, self.iteration)

    def __init__(self, id, label, iteration, status):
        # pylint: disable=redefined-builtin
        super(JobState, self).__init__()
        self.id = id
        self.label = label
        self.iteration = iteration
        self.status = status
        self.retries = 0
        self.timestamp = datetime.utcnow()

    def to_pod(self):
        pod = super(JobState, self).to_pod()
        pod['id'] = self.id
        pod['label'] = self.label
        pod['iteration'] = self.iteration
        pod['status'] = self.status.to_pod()
        pod['retries'] = 0
        pod['timestamp'] = self.timestamp
        return pod

    @staticmethod
    def _pod_upgrade_v1(pod):
        pod['_pod_version'] = pod.get('_pod_version', 1)
        pod['status'] = Status(pod['status']).to_pod()
        return pod