summaryrefslogtreecommitdiff
path: root/designate/service_status.py
blob: bf4a2044bdbb1a4e81da3acee18cfb5225a8fecd (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
# Copyright 2016 Hewlett Packard Enterprise Development Company LP
#
# 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 abc

from oslo_log import log as logging
from oslo_utils import timeutils

import designate.conf
from designate import context
from designate import objects
from designate import plugin
from designate.central import rpcapi as central_rpcapi


CONF = designate.conf.CONF
LOG = logging.getLogger(__name__)


class HeartBeatEmitter(plugin.DriverPlugin):
    __plugin_ns__ = 'designate.heartbeat_emitter'
    __plugin_type__ = 'heartbeat_emitter'

    def __init__(self, service, threadgroup, status_factory=None):
        super(HeartBeatEmitter, self).__init__()

        self._service = service
        self._hostname = CONF.host

        self._running = False
        self._tg = threadgroup
        self._tg.add_timer(
            CONF.heartbeat_emitter.heartbeat_interval,
            self._emit_heartbeat)

        self._status_factory = status_factory

    def _get_status(self):
        if self._status_factory is not None:
            return self._status_factory()

        return True, {}, {}

    def _emit_heartbeat(self):
        """
        Returns Status, Stats, Capabilities
        """
        if not self._running:
            return

        status, stats, capabilities = self._get_status()

        service_status = objects.ServiceStatus(
            service_name=self._service,
            hostname=self._hostname,
            status=status,
            stats=stats,
            capabilities=capabilities,
            heartbeated_at=timeutils.utcnow()
        )

        LOG.trace("Emitting %s", service_status)

        self._transmit(service_status)

    @abc.abstractmethod
    def _transmit(self, status):
        pass

    def start(self):
        self._running = True

    def stop(self):
        self._running = False


class NoopEmitter(HeartBeatEmitter):
    __plugin_name__ = 'noop'

    def _transmit(self, status):
        LOG.debug(status)


class RpcEmitter(HeartBeatEmitter):
    __plugin_name__ = 'rpc'

    def __init__(self, service, thread_group, rpc_api=None, *args, **kwargs):
        super(RpcEmitter, self).__init__(
            service, thread_group, *args, **kwargs)
        self.rpc_api = rpc_api

    def _transmit(self, status):
        admin_context = context.DesignateContext.get_admin_context()
        api = self.rpc_api or central_rpcapi.CentralAPI.get_instance()
        api.update_service_status(admin_context, status)