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

159 lines
4.4 KiB
Python
Raw Normal View History

2016-03-10 20:51:29 +00:00
#!/usr/bin/env python
#
# Copyright (C) 2016 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
2016-03-11 14:49:28 +00:00
import copy
2016-03-10 20:51:29 +00:00
import uuid
class VM:
2016-03-11 14:06:14 +00:00
def __init__(self, project, hypervisor, vm_id=None, vm_type=None, name=None, console=None, console_type="telnet", properties={}):
2016-03-10 20:51:29 +00:00
"""
:param project: Project of the VM
:param hypervisor: Hypervisor server where the server will run
:param vm_id: UUID of the vm. Integer id
:param vm_type: Type of emulator
:param name: Name of the vm
:param console: TCP port of the console
:param console_type: Type of the console (telnet, vnc, serial..)
2016-03-11 14:06:14 +00:00
:param properties: Emulator specific properties of the VM
2016-03-10 20:51:29 +00:00
"""
if vm_id is None:
self._id = str(uuid.uuid4())
else:
self._id = vm_id
self._name = name
self._project = project
self._hypervisor = hypervisor
self._vm_type = vm_type
self._console = console
self._console_type = console_type
2016-03-11 14:06:14 +00:00
self._properties = properties
2016-03-10 20:51:29 +00:00
@property
def id(self):
return self._id
2016-03-15 10:32:10 +00:00
@property
def name(self):
return self._name
2016-03-10 20:51:29 +00:00
@property
def vm_type(self):
return self._vm_type
@property
def console(self):
return self._console
@property
def console_type(self):
return self._console_type
@property
def properties(self):
return self._properties
@property
def project(self):
return self._project
@property
def hypervisor(self):
return self._hypervisor
2016-03-15 10:32:10 +00:00
@property
def host(self):
"""
:returns: Domain or ip for console connection
"""
return self._hypervisor.host
2016-03-10 20:51:29 +00:00
@asyncio.coroutine
def create(self):
2016-03-11 14:49:28 +00:00
data = copy.copy(self._properties)
2016-03-10 20:51:29 +00:00
data["vm_id"] = self._id
2016-03-11 14:06:14 +00:00
data["name"] = self._name
2016-03-10 20:51:29 +00:00
data["console"] = self._console
data["console_type"] = self._console_type
2016-03-15 09:45:05 +00:00
# None properties should be send. Because it can mean the emulator doesn't support it
for key in list(data.keys()):
if data[key] is None:
del data[key]
response = yield from self._hypervisor.post("/projects/{}/{}/vms".format(self._project.id, self._vm_type), data=data)
for key, value in response.json.items():
if key == "console":
self._console = value
elif key in ["console_type", "name", "vm_id"]:
pass
else:
self._properties[key] = value
2016-03-10 20:51:29 +00:00
@asyncio.coroutine
def start(self):
"""
Start a VM
"""
2016-04-14 10:22:10 +00:00
yield from self.post("/start")
@asyncio.coroutine
def stop(self):
"""
Stop a VM
"""
2016-04-14 10:22:10 +00:00
yield from self.post("/stop")
@asyncio.coroutine
def suspend(self):
"""
Suspend a VM
"""
2016-04-14 10:22:10 +00:00
yield from self.post("/suspend")
@asyncio.coroutine
def post(self, path, data={}):
"""
HTTP post on the VM
"""
return (yield from self._hypervisor.post("/projects/{}/{}/vms/{}{}".format(self._project.id, self._vm_type, self._id, path), data=data))
2016-03-14 16:40:27 +00:00
@asyncio.coroutine
def delete(self, path):
"""
HTTP post on the VM
"""
return (yield from self._hypervisor.delete("/projects/{}/{}/vms/{}{}".format(self._project.id, self._vm_type, self._id, path)))
2016-03-10 20:51:29 +00:00
def __json__(self):
return {
"hypervisor_id": self._hypervisor.id,
2016-03-11 14:06:14 +00:00
"project_id": self._project.id,
2016-03-10 20:51:29 +00:00
"vm_id": self._id,
"vm_type": self._vm_type,
"name": self._name,
"console": self._console,
"console_type": self._console_type,
"properties": self._properties
}