1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-10-10 18:08:55 +00:00
gns3-server/gns3server/server.py

158 lines
5.5 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
#
2015-01-14 00:05:26 +00:00
# Copyright (C) 2015 GNS3 Technologies Inc.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2013-12-06 04:39:27 +00:00
"""
Set up and run the server.
2013-12-06 04:39:27 +00:00
"""
import os
2015-01-14 00:05:26 +00:00
import sys
import signal
2015-01-14 00:05:26 +00:00
import asyncio
import aiohttp
import functools
import types
import time
2015-01-14 00:05:26 +00:00
from .web.route import Route
from .config import Config
from .modules import MODULES
2015-01-15 15:59:01 +00:00
from .modules.port_manager import PortManager
2015-01-20 12:24:00 +00:00
# TODO: get rid of * have something generic to automatically import handlers so the routes can be found
2015-01-14 10:43:23 +00:00
from gns3server.handlers import *
from gns3server.handlers.virtualbox_handler import VirtualBoxHandler
2015-01-14 00:05:26 +00:00
import logging
log = logging.getLogger(__name__)
2015-01-14 00:05:26 +00:00
class Server:
2015-01-14 00:05:26 +00:00
def __init__(self, host, port, console_bind_to_any):
self._host = host
self._port = port
2015-01-14 00:05:26 +00:00
self._loop = None
self._start_time = time.time()
2015-01-15 15:59:01 +00:00
self._port_manager = PortManager(host, console_bind_to_any)
2015-01-20 12:24:00 +00:00
# TODO: server config file support, to be reviewed
2015-01-14 00:05:26 +00:00
# # get the projects and temp directories from the configuration file (passed to the modules)
# config = Config.instance()
# server_config = config.get_default_section()
# # default projects directory is "~/GNS3/projects"
# self._projects_dir = os.path.expandvars(os.path.expanduser(server_config.get("projects_directory", "~/GNS3/projects")))
# self._temp_dir = server_config.get("temporary_directory", tempfile.gettempdir())
#
# try:
# os.makedirs(self._projects_dir)
# log.info("projects directory '{}' created".format(self._projects_dir))
# except FileExistsError:
# pass
# except OSError as e:
# log.error("could not create the projects directory {}: {}".format(self._projects_dir, e))
@asyncio.coroutine
def _run_application(self, app):
server = yield from self._loop.create_server(app.make_handler(), self._host, self._port)
return server
def _stop_application(self):
2013-12-06 04:39:27 +00:00
"""
2015-01-14 00:05:26 +00:00
Cleanup the modules (shutdown running emulators etc.)
"""
2015-01-20 12:24:00 +00:00
# TODO: clean everything from here
2015-01-14 00:05:26 +00:00
self._loop.stop()
2015-01-14 00:05:26 +00:00
def _signal_handling(self):
2015-01-14 00:05:26 +00:00
def signal_handler(signame):
2015-01-20 13:59:19 +00:00
log.warning("Server has got signal {}, exiting...".format(signame))
2015-01-14 00:05:26 +00:00
self._stop_application()
signals = ["SIGTERM", "SIGINT"]
if sys.platform.startswith("win"):
signals.extend(["SIGBREAK"])
else:
signals.extend(["SIGHUP", "SIGQUIT"])
2015-01-14 00:05:26 +00:00
for signal_name in signals:
callback = functools.partial(signal_handler, signal_name)
if sys.platform.startswith("win"):
# add_signal_handler() is not yet supported on Windows
signal.signal(getattr(signal, signal_name), callback)
else:
self._loop.add_signal_handler(getattr(signal, signal_name), callback)
def _reload_hook(self):
def reload():
2015-01-20 13:59:19 +00:00
log.info("Reloading")
2015-01-14 00:05:26 +00:00
self._stop_application()
os.execv(sys.executable, [sys.executable] + sys.argv)
# code extracted from tornado
for module in sys.modules.values():
# Some modules play games with sys.modules (e.g. email/__init__.py
# in the standard library), and occasionally this can cause strange
# failures in getattr. Just ignore anything that's not an ordinary
# module.
if not isinstance(module, types.ModuleType):
continue
path = getattr(module, "__file__", None)
if not path:
continue
if path.endswith(".pyc") or path.endswith(".pyo"):
path = path[:-1]
modified = os.stat(path).st_mtime
if modified > self._start_time:
2015-01-20 13:59:19 +00:00
log.debug("File {} has been modified".format(path))
2015-01-14 00:05:26 +00:00
reload()
self._loop.call_later(1, self._reload_hook)
def run(self):
"""
2015-01-14 00:05:26 +00:00
Starts the server.
"""
2015-01-20 12:24:00 +00:00
# TODO: SSL support for Rackspace cloud integration (here or with nginx for instance).
2015-01-14 00:05:26 +00:00
self._loop = asyncio.get_event_loop()
app = aiohttp.web.Application()
for method, route, handler in Route.get_routes():
2015-01-20 13:59:19 +00:00
log.debug("Adding route: {} {}".format(method, route))
2015-01-14 00:05:26 +00:00
app.router.add_route(method, route, handler)
for module in MODULES:
2015-01-20 13:59:19 +00:00
log.debug("Loading module {}".format(module.__name__))
2015-01-15 15:59:01 +00:00
m = module.instance()
m.port_manager = self._port_manager
2015-01-20 13:59:19 +00:00
log.info("Starting server on {}:{}".format(self._host, self._port))
2015-01-14 00:05:26 +00:00
self._loop.run_until_complete(self._run_application(app))
self._signal_handling()
2015-01-20 12:24:00 +00:00
# FIXME: remove it in production or in tests
2015-01-14 00:05:26 +00:00
self._loop.call_later(1, self._reload_hook)
try:
2015-01-14 00:05:26 +00:00
self._loop.run_forever()
except KeyboardInterrupt:
log.info("\nExiting...")
self._cleanup()