forked from kernelci/kernelci-pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.py
78 lines (62 loc) · 2.34 KB
/
base.py
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
#!/usr/bin/env python3
#
# SPDX-License-Identifier: LGPL-2.1-or-later
#
# Copyright (C) 2022 Collabora Limited
# Author: Guillaume Tucker <[email protected]>
import logging
import os
import kernelci
from kernelci.api.helper import APIHelper
from logger import Logger
class Service:
"""Common class for pipeline services"""
def __init__(self, configs, args, name):
self._name = name
self._logger = Logger("config/logger.conf", name)
self._api_config = configs['api_configs'][args.api_config]
api_token = os.getenv('KCI_API_TOKEN')
self._api = kernelci.api.get_api(self._api_config, api_token)
self._api_helper = APIHelper(self._api)
@property
def log(self):
return self._logger
def _setup(self, args):
"""Set up the service
Set up the service and return an arbitrary context object. This will
then be passed again in `_run()` and `_stop()`.
"""
return None
def _stop(self, context):
"""Stop the service
This is where any resource allocated during _setup() should be
released. Please note that if _setup() failed, _stop() is still called
so checks should be made to determine whether resources were actually
allocated.
"""
pass
def _run(self, context):
"""Implementation method to run the service"""
raise NotImplementedError("_run() needs to be implemented")
def run(self, args=None):
"""Interface method to run the service
Run the service by first calling _setup() to set things up so that
_stop() can then be called upon termination to release any resources.
The _run() method is called in between and exceptions are handled
accordingly. Any exception except KeyboardInterrupt will result in a
returned status of False. The `args` optional arguments are for
providing extra options, typically parsed from the command line.
"""
status = True
context = None
try:
context = self._setup(args)
status = self._run(context)
except KeyboardInterrupt:
self.log.info("Stopping.")
except Exception:
self.log.traceback()
status = False
finally:
self._stop(context)
return status