2015-01-14 03:26:32 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
|
|
|
|
|
|
|
|
import asyncio
|
|
|
|
import aiohttp
|
|
|
|
|
2015-01-20 03:30:57 +02:00
|
|
|
from uuid import UUID, uuid4
|
2015-01-20 13:46:15 +02:00
|
|
|
from .project_manager import ProjectManager
|
2015-01-14 03:26:32 +02:00
|
|
|
|
|
|
|
|
2015-01-14 19:52:02 +02:00
|
|
|
class BaseManager:
|
2015-01-20 14:24:00 +02:00
|
|
|
|
2015-01-14 03:26:32 +02:00
|
|
|
"""
|
2015-01-14 19:52:02 +02:00
|
|
|
Base class for all Manager.
|
2015-01-14 03:26:32 +02:00
|
|
|
Responsible of management of a VM pool
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
2015-01-19 23:43:35 +02:00
|
|
|
|
2015-01-14 03:26:32 +02:00
|
|
|
self._vms = {}
|
2015-01-19 23:43:35 +02:00
|
|
|
self._port_manager = None
|
2015-01-14 03:26:32 +02:00
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def instance(cls):
|
|
|
|
"""
|
2015-01-19 00:41:53 +02:00
|
|
|
Singleton to return only one instance of BaseManager.
|
2015-01-14 03:26:32 +02:00
|
|
|
|
2015-01-19 23:43:35 +02:00
|
|
|
:returns: instance of BaseManager
|
2015-01-14 03:26:32 +02:00
|
|
|
"""
|
|
|
|
|
2015-01-16 18:09:45 +02:00
|
|
|
if not hasattr(cls, "_instance") or cls._instance is None:
|
2015-01-14 03:26:32 +02:00
|
|
|
cls._instance = cls()
|
|
|
|
return cls._instance
|
|
|
|
|
2015-01-19 12:22:24 +02:00
|
|
|
@property
|
|
|
|
def port_manager(self):
|
|
|
|
"""
|
|
|
|
Returns the port_manager for this VMs
|
|
|
|
|
|
|
|
:returns: Port manager
|
|
|
|
"""
|
|
|
|
|
|
|
|
return self._port_manager
|
|
|
|
|
|
|
|
@port_manager.setter
|
|
|
|
def port_manager(self, new_port_manager):
|
|
|
|
|
2015-01-19 23:43:35 +02:00
|
|
|
self._port_manager = new_port_manager
|
2015-01-19 12:22:24 +02:00
|
|
|
|
2015-01-14 03:26:32 +02:00
|
|
|
@classmethod
|
2015-01-19 23:43:35 +02:00
|
|
|
@asyncio.coroutine # FIXME: why coroutine?
|
2015-01-14 03:26:32 +02:00
|
|
|
def destroy(cls):
|
2015-01-20 03:30:57 +02:00
|
|
|
|
2015-01-14 03:26:32 +02:00
|
|
|
cls._instance = None
|
|
|
|
|
2015-01-20 03:30:57 +02:00
|
|
|
def get_vm(self, uuid):
|
2015-01-14 03:26:32 +02:00
|
|
|
"""
|
|
|
|
Returns a VM instance.
|
|
|
|
|
2015-01-20 03:30:57 +02:00
|
|
|
:param uuid: VM UUID
|
2015-01-14 03:26:32 +02:00
|
|
|
|
|
|
|
:returns: VM instance
|
|
|
|
"""
|
|
|
|
|
2015-01-20 03:30:57 +02:00
|
|
|
try:
|
|
|
|
UUID(uuid, version=4)
|
|
|
|
except ValueError:
|
|
|
|
raise aiohttp.web.HTTPBadRequest(text="{} is not a valid UUID".format(uuid))
|
|
|
|
|
|
|
|
if uuid not in self._vms:
|
|
|
|
raise aiohttp.web.HTTPNotFound(text="UUID {} doesn't exist".format(uuid))
|
|
|
|
return self._vms[uuid]
|
2015-01-14 03:26:32 +02:00
|
|
|
|
|
|
|
@asyncio.coroutine
|
2015-01-20 20:56:18 +02:00
|
|
|
def create_vm(self, name, project_identifier, uuid=None, **kwargs):
|
2015-01-20 13:46:15 +02:00
|
|
|
"""
|
|
|
|
Create a new VM
|
|
|
|
|
|
|
|
:param name VM name
|
|
|
|
:param project_identifier UUID of Project
|
|
|
|
:param uuid Force UUID force VM
|
|
|
|
"""
|
2015-01-21 00:28:40 +02:00
|
|
|
|
2015-01-20 13:46:15 +02:00
|
|
|
project = ProjectManager.instance().get_project(project_identifier)
|
2015-01-20 03:30:57 +02:00
|
|
|
|
2015-01-20 14:04:20 +02:00
|
|
|
# TODO: support for old projects VM with normal IDs.
|
2015-01-20 03:30:57 +02:00
|
|
|
|
2015-01-20 14:04:20 +02:00
|
|
|
# TODO: supports specific args: pass kwargs to VM_CLASS?
|
2015-01-20 03:30:57 +02:00
|
|
|
|
|
|
|
if not uuid:
|
|
|
|
uuid = str(uuid4())
|
|
|
|
|
2015-01-20 20:56:18 +02:00
|
|
|
vm = self._VM_CLASS(name, uuid, project, self, **kwargs)
|
2015-01-20 03:30:57 +02:00
|
|
|
future = vm.create()
|
|
|
|
if isinstance(future, asyncio.Future):
|
|
|
|
yield from future
|
|
|
|
self._vms[vm.uuid] = vm
|
2015-01-14 03:26:32 +02:00
|
|
|
return vm
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
2015-01-20 03:30:57 +02:00
|
|
|
def start_vm(self, uuid):
|
|
|
|
|
|
|
|
vm = self.get_vm(uuid)
|
2015-01-14 03:26:32 +02:00
|
|
|
yield from vm.start()
|
|
|
|
|
|
|
|
@asyncio.coroutine
|
2015-01-20 03:30:57 +02:00
|
|
|
def stop_vm(self, uuid):
|
|
|
|
|
|
|
|
vm = self.get_vm(uuid)
|
2015-01-14 03:26:32 +02:00
|
|
|
yield from vm.stop()
|