mirror of
https://github.com/GNS3/gns3-server
synced 2025-01-11 16:41:04 +00:00
IOU + VirtualBox conversion of old projects.
This commit is contained in:
parent
85518a3cd6
commit
0eaad579c2
@ -44,6 +44,8 @@ class BaseManager:
|
|||||||
Responsible of management of a VM pool
|
Responsible of management of a VM pool
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
_convert_lock = asyncio.Lock()
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
||||||
self._vms = {}
|
self._vms = {}
|
||||||
@ -146,6 +148,45 @@ class BaseManager:
|
|||||||
|
|
||||||
return vm
|
return vm
|
||||||
|
|
||||||
|
@asyncio.coroutine
|
||||||
|
def _convert_old_project(self, project, legacy_id, name):
|
||||||
|
"""
|
||||||
|
Convert project made before version 1.3
|
||||||
|
|
||||||
|
:param project: Project instance
|
||||||
|
:param legacy_id: old identifier
|
||||||
|
:param name: VM name
|
||||||
|
|
||||||
|
:returns: new VM identifier
|
||||||
|
"""
|
||||||
|
|
||||||
|
vm_id = str(uuid4())
|
||||||
|
if hasattr(self, "get_legacy_vm_workdir"):
|
||||||
|
# move old project VM files to a new location
|
||||||
|
log.info("Converting old project...")
|
||||||
|
project_name = os.path.basename(project.path)
|
||||||
|
project_files_dir = os.path.join(project.path, "{}-files".format(project_name))
|
||||||
|
legacy_vm_dir = self.get_legacy_vm_workdir(legacy_id, name)
|
||||||
|
vm_working_dir = os.path.join(project_files_dir, legacy_vm_dir)
|
||||||
|
new_vm_working_dir = os.path.join(project.path, "project-files", self.module_name.lower(), vm_id)
|
||||||
|
try:
|
||||||
|
log.info('Moving "{}" to "{}"'.format(vm_working_dir, new_vm_working_dir))
|
||||||
|
yield from wait_run_in_executor(shutil.move, vm_working_dir, new_vm_working_dir)
|
||||||
|
except OSError as e:
|
||||||
|
raise aiohttp.web.HTTPInternalServerError(text="Could not move VM working directory: {} to {} {}".format(vm_working_dir, new_vm_working_dir, e))
|
||||||
|
|
||||||
|
try:
|
||||||
|
os.rmdir(os.path.dirname(vm_working_dir))
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
try:
|
||||||
|
os.rmdir(project_files_dir)
|
||||||
|
except OSError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
return vm_id
|
||||||
|
|
||||||
@asyncio.coroutine
|
@asyncio.coroutine
|
||||||
def create_vm(self, name, project_id, vm_id, *args, **kwargs):
|
def create_vm(self, name, project_id, vm_id, *args, **kwargs):
|
||||||
"""
|
"""
|
||||||
@ -157,34 +198,10 @@ class BaseManager:
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
project = ProjectManager.instance().get_project(project_id)
|
project = ProjectManager.instance().get_project(project_id)
|
||||||
|
|
||||||
# If it's not an UUID, old topology
|
# If it's not an UUID, old topology
|
||||||
if vm_id and (isinstance(vm_id, int) or len(vm_id) != 36):
|
if vm_id and isinstance(vm_id, int):
|
||||||
legacy_id = int(vm_id)
|
with (yield from BaseManager._convert_lock):
|
||||||
vm_id = str(uuid4())
|
vm_id = yield from self._convert_old_project(project, vm_id, name)
|
||||||
if hasattr(self, "get_legacy_vm_workdir_name"):
|
|
||||||
# move old project VM files to a new location
|
|
||||||
|
|
||||||
log.info("Converting old project...")
|
|
||||||
project_name = os.path.basename(project.path)
|
|
||||||
project_files_dir = os.path.join(project.path, "{}-files".format(project_name))
|
|
||||||
module_path = os.path.join(project_files_dir, self.module_name.lower())
|
|
||||||
vm_working_dir = os.path.join(module_path, self.get_legacy_vm_workdir_name(legacy_id))
|
|
||||||
new_vm_working_dir = os.path.join(project.path, "project-files", self.module_name.lower(), vm_id)
|
|
||||||
try:
|
|
||||||
yield from wait_run_in_executor(shutil.move, vm_working_dir, new_vm_working_dir)
|
|
||||||
except OSError as e:
|
|
||||||
raise aiohttp.web.HTTPInternalServerError(text="Could not move VM working directory: {} to {} {}".format(vm_working_dir, new_vm_working_dir, e))
|
|
||||||
|
|
||||||
try:
|
|
||||||
os.rmdir(module_path)
|
|
||||||
except OSError:
|
|
||||||
pass
|
|
||||||
|
|
||||||
try:
|
|
||||||
os.rmdir(project_files_dir)
|
|
||||||
except OSError:
|
|
||||||
pass
|
|
||||||
|
|
||||||
if not vm_id:
|
if not vm_id:
|
||||||
vm_id = str(uuid4())
|
vm_id = str(uuid4())
|
||||||
|
@ -105,7 +105,7 @@ class Dynamips(BaseManager):
|
|||||||
|
|
||||||
_VM_CLASS = DynamipsVM
|
_VM_CLASS = DynamipsVM
|
||||||
_DEVICE_CLASS = DynamipsDevice
|
_DEVICE_CLASS = DynamipsDevice
|
||||||
ghost_ios_lock = asyncio.Lock()
|
_ghost_ios_lock = asyncio.Lock()
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
|
|
||||||
@ -331,7 +331,7 @@ class Dynamips(BaseManager):
|
|||||||
|
|
||||||
ghost_ios_support = self.config.get_section_config("Dynamips").get("ghost_ios_support", True)
|
ghost_ios_support = self.config.get_section_config("Dynamips").get("ghost_ios_support", True)
|
||||||
if ghost_ios_support:
|
if ghost_ios_support:
|
||||||
with (yield from Dynamips.ghost_ios_lock):
|
with (yield from Dynamips._ghost_ios_lock):
|
||||||
yield from self._set_ghost_ios(vm)
|
yield from self._set_ghost_ios(vm)
|
||||||
|
|
||||||
@asyncio.coroutine
|
@asyncio.coroutine
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
IOU server module.
|
IOU server module.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import os
|
||||||
import asyncio
|
import asyncio
|
||||||
|
|
||||||
from ..base_manager import BaseManager
|
from ..base_manager import BaseManager
|
||||||
@ -63,12 +64,15 @@ class IOU(BaseManager):
|
|||||||
|
|
||||||
return self._used_application_ids.get(vm_id, 1)
|
return self._used_application_ids.get(vm_id, 1)
|
||||||
|
|
||||||
def get_legacy_vm_workdir_name(legacy_vm_id):
|
@staticmethod
|
||||||
|
def get_legacy_vm_workdir(legacy_vm_id, name):
|
||||||
"""
|
"""
|
||||||
Returns the name of the legacy working directory (pre 1.3) name for a VM.
|
Returns the name of the legacy working directory (pre 1.3) name for a VM.
|
||||||
|
|
||||||
:param legacy_vm_id: legacy VM identifier (integer)
|
:param legacy_vm_id: legacy VM identifier (integer)
|
||||||
|
:param name: VM name (not used)
|
||||||
|
|
||||||
:returns: working directory name
|
:returns: working directory name
|
||||||
"""
|
"""
|
||||||
|
|
||||||
return "device-{}".format(legacy_vm_id)
|
return os.path.join("iou", "device-{}".format(legacy_vm_id))
|
||||||
|
@ -34,17 +34,6 @@ from .qemu_vm import QemuVM
|
|||||||
class Qemu(BaseManager):
|
class Qemu(BaseManager):
|
||||||
_VM_CLASS = QemuVM
|
_VM_CLASS = QemuVM
|
||||||
|
|
||||||
@staticmethod
|
|
||||||
def get_legacy_vm_workdir_name(legacy_vm_id):
|
|
||||||
"""
|
|
||||||
Returns the name of the legacy working directory name for a VM.
|
|
||||||
|
|
||||||
:param legacy_vm_id: legacy VM identifier (integer)
|
|
||||||
:returns: working directory name
|
|
||||||
"""
|
|
||||||
|
|
||||||
return "vm-{}".format(legacy_vm_id)
|
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def binary_list():
|
def binary_list():
|
||||||
"""
|
"""
|
||||||
@ -108,3 +97,16 @@ class Qemu(BaseManager):
|
|||||||
raise QemuError("Could not determine the Qemu version for {}".format(qemu_path))
|
raise QemuError("Could not determine the Qemu version for {}".format(qemu_path))
|
||||||
except subprocess.SubprocessError as e:
|
except subprocess.SubprocessError as e:
|
||||||
raise QemuError("Error while looking for the Qemu version: {}".format(e))
|
raise QemuError("Error while looking for the Qemu version: {}".format(e))
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def get_legacy_vm_workdir(legacy_vm_id, name):
|
||||||
|
"""
|
||||||
|
Returns the name of the legacy working directory name for a VM.
|
||||||
|
|
||||||
|
:param legacy_vm_id: legacy VM identifier (integer)
|
||||||
|
:param: VM name (not used)
|
||||||
|
|
||||||
|
:returns: working directory name
|
||||||
|
"""
|
||||||
|
|
||||||
|
return os.path.join("qemu", "vm-{}".format(legacy_vm_id))
|
||||||
|
@ -129,12 +129,14 @@ class VirtualBox(BaseManager):
|
|||||||
return vms
|
return vms
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_legacy_vm_workdir_name(legacy_vm_id):
|
def get_legacy_vm_workdir(legacy_vm_id, name):
|
||||||
"""
|
"""
|
||||||
Returns the name of the legacy working directory name for a VM.
|
Returns the name of the legacy working directory name for a VM.
|
||||||
|
|
||||||
:param legacy_vm_id: legacy VM identifier (integer)
|
:param legacy_vm_id: legacy VM identifier (not used)
|
||||||
|
:param name: VM name
|
||||||
|
|
||||||
:returns: working directory name
|
:returns: working directory name
|
||||||
"""
|
"""
|
||||||
|
|
||||||
return "vm-{}".format(legacy_vm_id)
|
return os.path.join("vbox", "{}".format(name))
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
VPCS server module.
|
VPCS server module.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import os
|
||||||
import asyncio
|
import asyncio
|
||||||
|
|
||||||
from ..base_manager import BaseManager
|
from ..base_manager import BaseManager
|
||||||
@ -65,12 +66,14 @@ class VPCS(BaseManager):
|
|||||||
return self._used_mac_ids.get(vm_id, 1)
|
return self._used_mac_ids.get(vm_id, 1)
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_legacy_vm_workdir_name(legacy_vm_id):
|
def get_legacy_vm_workdir(legacy_vm_id, name):
|
||||||
"""
|
"""
|
||||||
Returns the name of the legacy working directory name for a VM.
|
Returns the name of the legacy working directory name for a VM.
|
||||||
|
|
||||||
:param legacy_vm_id: legacy VM identifier (integer)
|
:param legacy_vm_id: legacy VM identifier (integer)
|
||||||
|
:param name: VM name (not used)
|
||||||
|
|
||||||
:returns: working directory name
|
:returns: working directory name
|
||||||
"""
|
"""
|
||||||
|
|
||||||
return "pc-{}".format(legacy_vm_id)
|
return os.path.join("vpcs", "pc-{}".format(legacy_vm_id))
|
||||||
|
@ -303,6 +303,6 @@ def test_stop_capture(vm, tmpdir, manager, free_console_port, loop):
|
|||||||
assert vm._adapters[0].get_nio(0).capturing is False
|
assert vm._adapters[0].get_nio(0).capturing is False
|
||||||
|
|
||||||
|
|
||||||
def test_get_legacy_vm_workdir_name():
|
def test_get_legacy_vm_workdir():
|
||||||
|
|
||||||
assert IOU.get_legacy_vm_workdir_name(42) == "device-42"
|
assert IOU.get_legacy_vm_workdir(42) == "iou/device-42"
|
||||||
|
@ -48,6 +48,6 @@ def test_binary_list(loop):
|
|||||||
assert {"path": os.path.join(os.environ["PATH"], "hello"), "version": "2.2.0"} not in qemus
|
assert {"path": os.path.join(os.environ["PATH"], "hello"), "version": "2.2.0"} not in qemus
|
||||||
|
|
||||||
|
|
||||||
def test_get_legacy_vm_workdir_name():
|
def test_get_legacy_vm_workdir():
|
||||||
|
|
||||||
assert Qemu.get_legacy_vm_workdir_name(42) == "vm-42"
|
assert Qemu.get_legacy_vm_workdir(42) == "qemu/vm-42"
|
||||||
|
Loading…
Reference in New Issue
Block a user