
Adding new dashboard code for the Radar CI Dashboard old radar code was moved to the directory scripts Change-Id: I8a588a56aa9fd044826c889813986041fcd142d6
149 lines
4.1 KiB
Python
149 lines
4.1 KiB
Python
# Copyright (c) 2014 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# 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.
|
|
|
|
import signal
|
|
|
|
from multiprocessing import Process
|
|
from threading import Timer
|
|
|
|
from oslo.config import cfg
|
|
from radar.tasks.update_systems import update
|
|
from radar.openstack.common import log
|
|
|
|
|
|
CONF = cfg.CONF
|
|
LOG = log.getLogger(__name__)
|
|
MANAGER = None
|
|
|
|
IMPORT_OPTS = [
|
|
cfg.IntOpt("worker-count",
|
|
default="1",
|
|
help="The number of workers to spawn and manage.")
|
|
]
|
|
|
|
|
|
def run():
|
|
"""Start the daemon manager.
|
|
"""
|
|
global MANAGER
|
|
|
|
log.setup('radar')
|
|
CONF.register_cli_opts(IMPORT_OPTS)
|
|
CONF(project='radar')
|
|
|
|
signal.signal(signal.SIGTERM, terminate)
|
|
signal.signal(signal.SIGINT, terminate)
|
|
|
|
MANAGER = DaemonManager(daemon_method=update,
|
|
child_process_count=CONF.worker_count)
|
|
MANAGER.start()
|
|
|
|
|
|
def terminate(signal, frame):
|
|
# This assumes that all the child processes will terminate gracefully
|
|
# on a SIGINT
|
|
global MANAGER
|
|
MANAGER.stop()
|
|
|
|
# Raise SIGINT to all child processes.
|
|
signal.default_int_handler()
|
|
|
|
|
|
class DaemonManager():
|
|
"""A Daemon manager to handle multiple subprocesses.
|
|
"""
|
|
def __init__(self, child_process_count, daemon_method):
|
|
"""Create a new daemon manager with N processes running the passed
|
|
method. Once start() is called, The daemon method will be spawned N
|
|
times and continually checked/restarted until the process is
|
|
interrupted either by a system exit or keyboard interrupt.
|
|
|
|
:param child_process_count: The number of child processes to spawn.
|
|
:param daemon_method: The method to run in the child process.
|
|
"""
|
|
|
|
# Number of child procs.
|
|
self._child_process_count = child_process_count
|
|
|
|
# Process management threads.
|
|
self._procs = list()
|
|
|
|
# Save the daemon method
|
|
self._daemon_method = daemon_method
|
|
|
|
# Health check timer
|
|
self._timer = PerpetualTimer(1, self._health_check)
|
|
|
|
def _health_check(self):
|
|
processes = list(self._procs)
|
|
dead_processes = 0
|
|
|
|
for process in processes:
|
|
if not process.is_alive():
|
|
LOG.warning("Dead Process found [exit code:%d]" %
|
|
(process.exitcode,))
|
|
dead_processes += 1
|
|
self._procs.remove(process)
|
|
|
|
for i in range(dead_processes):
|
|
self._add_process()
|
|
|
|
def start(self):
|
|
"""Start the daemon manager and spawn child processes.
|
|
"""
|
|
LOG.info("Spawning %s child processes" % (self._child_process_count,))
|
|
self._timer.start()
|
|
for i in range(self._child_process_count):
|
|
self._add_process()
|
|
|
|
def stop(self):
|
|
self._timer.cancel()
|
|
|
|
processes = list(self._procs)
|
|
for process in processes:
|
|
if process.is_alive():
|
|
process.terminate()
|
|
process.join()
|
|
self._procs.remove(process)
|
|
|
|
def _add_process(self):
|
|
process = Process(target=self._daemon_method)
|
|
process.start()
|
|
self._procs.append(process)
|
|
|
|
|
|
class PerpetualTimer():
|
|
"""A timer wrapper class that repeats itself.
|
|
"""
|
|
|
|
def __init__(self, t, handler):
|
|
self.t = t
|
|
self.handler = handler
|
|
self.thread = Timer(self.t, self.handle_function)
|
|
|
|
def handle_function(self):
|
|
self.handler()
|
|
self.thread = Timer(self.t, self.handle_function)
|
|
self.thread.setDaemon(True)
|
|
self.thread.start()
|
|
|
|
def start(self):
|
|
self.thread.start()
|
|
|
|
def cancel(self):
|
|
self.thread.cancel()
|
|
|
|
if __name__ == "__main__":
|
|
run()
|