~townsend/libertine/remove-X-umount

« back to all changes in this revision

Viewing changes to python/libertine/lifecycle/ContainerLifecycleServiceRunner.py

  • Committer: Tarmac
  • Author(s): Larry Price
  • Date: 2017-01-05 18:38:37 UTC
  • mfrom: (302.30.14 lxd-manager)
  • Revision ID: tarmac-20170105183837-zlcaa8xncukr51n5
Create d-bus service for lxd container management.

Approved by Christopher Townsend, Libertine CI Bot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python3
 
2
# -*- coding: utf-8 -*-
 
3
 
 
4
# Copyright (C) 2016 Canonical Ltd.
 
5
 
 
6
# This program is free software: you can redistribute it and/or modify
 
7
# it under the terms of the GNU General Public License as published by
 
8
# the Free Software Foundation; version 3 of the License.
 
9
#
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU General Public License
 
16
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 
 
18
import signal
 
19
 
 
20
from gi.repository import GLib
 
21
from libertine import utils
 
22
 
 
23
 
 
24
class ContainerLifecycleServiceRunner(object):
 
25
    def __init__(self, service):
 
26
        self._service = service
 
27
 
 
28
    def _sigterm(self, sig):
 
29
        utils.get_logger().warning("Received SIGTERM")
 
30
        self._shutdown()
 
31
 
 
32
    def _shutdown(self):
 
33
        utils.get_logger().info("Shutting down")
 
34
        GLib.MainLoop().quit()
 
35
 
 
36
    def run(self):
 
37
        GLib.unix_signal_add(GLib.PRIORITY_HIGH,
 
38
                             signal.SIGTERM,
 
39
                             self._sigterm,
 
40
                             None)
 
41
 
 
42
        try:
 
43
            utils.get_logger().info("Starting main loop")
 
44
            GLib.MainLoop().run()
 
45
        except KeyboardInterrupt:
 
46
            self._shutdown()