mirror of
https://github.com/GNS3/gns3-server
synced 2024-11-05 15:48:59 +00:00
121 lines
3.4 KiB
Python
121 lines
3.4 KiB
Python
# -*- 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/>.
|
|
|
|
"""
|
|
IOU server module.
|
|
"""
|
|
|
|
import os
|
|
import asyncio
|
|
|
|
from ..base_manager import BaseManager
|
|
from .iou_error import IOUError
|
|
from .iou_vm import IOUVM
|
|
|
|
import logging
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
class IOU(BaseManager):
|
|
|
|
_NODE_CLASS = IOUVM
|
|
_NODE_TYPE = "iou"
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__()
|
|
self._free_application_ids = list(range(1, 512))
|
|
self._used_application_ids = {}
|
|
|
|
@asyncio.coroutine
|
|
def create_node(self, *args, **kwargs):
|
|
"""
|
|
Creates a new IOU VM.
|
|
|
|
:returns: IOUVM instance
|
|
"""
|
|
|
|
node = yield from super().create_node(*args, **kwargs)
|
|
try:
|
|
self._used_application_ids[node.id] = self._free_application_ids.pop(0)
|
|
except IndexError:
|
|
raise IOUError("Cannot create a new IOU VM (limit of 512 VMs reached on this host)")
|
|
return node
|
|
|
|
@asyncio.coroutine
|
|
def close_node(self, node_id, *args, **kwargs):
|
|
"""
|
|
Closes an IOU VM.
|
|
|
|
:returns: IOUVM instance
|
|
"""
|
|
|
|
node = self.get_node(node_id)
|
|
if node_id in self._used_application_ids:
|
|
i = self._used_application_ids[node_id]
|
|
self._free_application_ids.insert(0, i)
|
|
del self._used_application_ids[node_id]
|
|
yield from super().close_node(node_id, *args, **kwargs)
|
|
return node
|
|
|
|
@asyncio.coroutine
|
|
def project_committed(self, project):
|
|
"""
|
|
Called when a project has been committed.
|
|
|
|
:param project: Project instance
|
|
"""
|
|
|
|
# save the configs when the project is committed
|
|
for node in self._nodes.copy().values():
|
|
if node.project.id == project.id:
|
|
try:
|
|
node.save_configs()
|
|
except IOUError as e:
|
|
log.warning(e)
|
|
continue
|
|
|
|
def get_application_id(self, node_id):
|
|
"""
|
|
Get an unique application identifier for IOU.
|
|
|
|
:param node_id: Node identifier
|
|
|
|
:returns: IOU application identifier
|
|
"""
|
|
|
|
return self._used_application_ids.get(node_id, 1)
|
|
|
|
@staticmethod
|
|
def get_legacy_vm_workdir(legacy_vm_id, name):
|
|
"""
|
|
Returns the name of the legacy working directory (pre 1.3) name for a node.
|
|
|
|
:param legacy_vm_id: legacy node identifier (integer)
|
|
:param name: Node name (not used)
|
|
|
|
:returns: working directory name
|
|
"""
|
|
|
|
return os.path.join("iou", "device-{}".format(legacy_vm_id))
|
|
|
|
def get_images_directory(self):
|
|
"""
|
|
Return the full path of the images directory on disk
|
|
"""
|
|
return os.path.join(os.path.expanduser(self.config.get_section_config("Server").get("images_path", "~/GNS3/images")), "IOU")
|