Files
gns3-gui/gns3/modules/iou/__init__.py

384 lines
12 KiB
Python

# -*- coding: utf-8 -*-
#
# Copyright (C) 2014 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 module implementation.
"""
import sys
import os
import shutil
from gns3.qt import QtCore, QtWidgets
from gns3.local_server_config import LocalServerConfig
from gns3.local_config import LocalConfig
from ..module import Module
from ..module_error import ModuleError
from .iou_device import IOUDevice
from .settings import IOU_SETTINGS
from .settings import IOU_DEVICE_SETTINGS
import logging
log = logging.getLogger(__name__)
class IOU(Module):
"""
IOU module.
"""
def __init__(self):
super().__init__()
self._settings = {}
self._nodes = []
self._iou_devices = {}
self._iou_images_cache = {}
self.configChangedSlot()
def configChangedSlot(self):
# load the settings
self._loadSettings()
def _loadSettings(self):
"""
Loads the settings from the persistent settings file.
"""
self._settings = LocalConfig.instance().loadSectionSettings(self.__class__.__name__, IOU_SETTINGS)
if sys.platform.startswith("linux") and not os.path.exists(self._settings["iouyap_path"]):
iouyap_path = shutil.which("iouyap")
if iouyap_path:
self._settings["iouyap_path"] = os.path.abspath(iouyap_path)
else:
self._settings["iouyap_path"] = ""
self._loadIOUDevices()
def _saveSettings(self):
"""
Saves the settings to the persistent settings file.
"""
# save the settings
LocalConfig.instance().saveSectionSettings(self.__class__.__name__, self._settings)
# save some settings to the local server config file
server_settings = {
"iourc_path": self._settings["iourc_path"],
"iouyap_path": self._settings["iouyap_path"],
"license_check": self._settings["license_check"]
}
config = LocalServerConfig.instance()
config.saveSettings(self.__class__.__name__, server_settings)
def _loadIOUDevices(self):
"""
Load the IOU devices from the persistent settings file.
"""
settings = LocalConfig.instance().settings()
if "devices" in settings.get(self.__class__.__name__, {}):
for device in settings[self.__class__.__name__]["devices"]:
name = device.get("name")
server = device.get("server")
key = "{server}:{name}".format(server=server, name=name)
if key in self._iou_devices or not name or not server:
continue
device_settings = IOU_DEVICE_SETTINGS.copy()
device_settings.update(device)
# for backward compatibility before version 1.4
if "symbol" not in device_settings:
device_settings["symbol"] = device_settings["default_symbol"]
device_settings["symbol"] = device_settings["symbol"][:-11] + ".svg" if device_settings["symbol"].endswith("normal.svg") else device_settings["symbol"]
device_settings["startup_config"] = device_settings.get("initial_config", device_settings["startup_config"])
self._iou_devices[key] = device_settings
def _saveIOUDevices(self):
"""
Saves the IOU devices to the persistent settings file.
"""
self._settings["devices"] = list(self._iou_devices.values())
self._saveSettings()
def addNode(self, node):
"""
Adds a node to this module.
:param node: Node instance
"""
self._nodes.append(node)
def removeNode(self, node):
"""
Removes a node from this module.
:param node: Node instance
"""
if node in self._nodes:
if "ram" in node.settings():
node.server().decreaseAllocatedRAM(node.settings()["ram"])
self._nodes.remove(node)
def iouDevices(self):
"""
Returns IOU devices settings.
:returns: IOU devices settings (dictionary)
"""
return self._iou_devices
def setIOUDevices(self, new_iou_devices):
"""
Sets IOS devices settings.
:param new_iou_devices: IOU images settings (dictionary)
"""
self._iou_devices = new_iou_devices.copy()
self._saveIOUDevices()
def settings(self):
"""
Returns the module settings
:returns: module settings (dictionary)
"""
return self._settings
def setSettings(self, settings):
"""
Sets the module settings
:param settings: module settings (dictionary)
"""
self._settings.update(settings)
self._saveSettings()
def createNode(self, node_class, server, project):
"""
Creates a new node.
:param node_class: Node object
:param server: HTTPClient instance
:param project: Project instance
"""
log.info("creating node {}".format(node_class))
# create an instance of the node class
return node_class(self, server, project)
def setupNode(self, node, node_name):
"""
Setups a node.
:param node: Node instance
:param node_name: Node name
"""
log.info("configuring node {}".format(node))
iouimage = None
if node_name:
for iou_key, info in self._iou_devices.items():
if node_name == info["name"]:
iouimage = iou_key
if not iouimage:
selected_images = []
for image, info in self._iou_devices.items():
if info["server"] == node.server().host() or (node.server().isLocal() and info["server"] == "local"):
selected_images.append(image)
if not selected_images:
raise ModuleError("No IOU image found for this device")
elif len(selected_images) > 1:
from gns3.main_window import MainWindow
mainwindow = MainWindow.instance()
(selection, ok) = QtWidgets.QInputDialog.getItem(mainwindow, "IOU image", "Please choose an image", selected_images, 0, False)
if ok:
iouimage = selection
else:
raise ModuleError("Please select an IOU image")
else:
iouimage = selected_images[0]
vm_settings = {}
for setting_name, value in self._iou_devices[iouimage].items():
if setting_name in node.settings() and setting_name != "name" and value != "" and value is not None:
vm_settings[setting_name] = value
if vm_settings["use_default_iou_values"]:
del vm_settings["ram"]
del vm_settings["nvram"]
if "console" in vm_settings:
# Older GNS3 versions may have a console setting in the VM template
del vm_settings["console"]
iou_path = vm_settings.pop("path")
node.setup(iou_path, additional_settings=vm_settings)
def reset(self):
"""
Resets the servers.
"""
log.info("IOU module reset")
self._nodes.clear()
def exportConfigs(self, directory):
"""
Exports all configs for all nodes to a directory.
:param directory: destination directory path
"""
for node in self._nodes:
if node.initialized():
node.exportConfigToDirectory(directory)
def importConfigs(self, directory):
"""
Imports configs to all nodes from a directory.
:param directory: source directory path
"""
for node in self._nodes:
if node.initialized():
node.importConfigFromDirectory(directory)
def findAlternativeIOUImage(self, image):
"""
Tries to find an alternative IOU image
:param image: path to IOU
:return: IOU image path
"""
if image in self._iou_images_cache:
return self._iou_images_cache[image]
from gns3.main_window import MainWindow
mainwindow = MainWindow.instance()
iou_devices = self.iouDevices()
candidate_iou_images = {}
alternative_image = image
# find all images with the same platform and local server
for iou_device in iou_devices.values():
if iou_device["server"] == "local":
candidate_iou_images[iou_device["image"]] = iou_device["path"]
if candidate_iou_images:
selection, ok = QtWidgets.QInputDialog.getItem(mainwindow,
"IOU image", "IOU image {} could not be found\nPlease select an alternative from your existing images:".format(image),
list(candidate_iou_images.keys()), 0, False)
if ok:
iou_image = candidate_iou_images[selection]
self._iou_images_cache[image] = iou_image
return iou_image
# no registered IOU image is used, let's just ask for an IOU image path
QtWidgets.QMessageBox.critical(mainwindow, "IOU image", "Could not find the {} IOU image \nPlease select a similar IOU image!".format(image))
from .pages.iou_device_preferences_page import IOUDevicePreferencesPage
path = IOUDevicePreferencesPage.getIOUImage(mainwindow, None)
if path:
alternative_image = path
self._iou_images_cache[image] = alternative_image
return alternative_image
@staticmethod
def getNodeClass(name):
"""
Returns the object with the corresponding name.
:param name: object name
"""
if name in globals():
return globals()[name]
return None
@staticmethod
def classes():
"""
Returns all the node classes supported by this module.
:returns: list of classes
"""
return [IOUDevice]
def nodes(self):
"""
Returns all the node data necessary to represent a node
in the nodes view and create a node on the scene.
"""
nodes = []
for iou_device in self._iou_devices.values():
nodes.append(
{"class": IOUDevice.__name__,
"name": iou_device["name"],
"ram": iou_device["ram"],
"server": iou_device["server"],
"symbol": iou_device["symbol"],
"categories": [iou_device["category"]]
}
)
return nodes
@staticmethod
def preferencePages():
"""
:returns: QWidget object list
"""
from .pages.iou_preferences_page import IOUPreferencesPage
from .pages.iou_device_preferences_page import IOUDevicePreferencesPage
return [IOUPreferencesPage, IOUDevicePreferencesPage]
@staticmethod
def instance():
"""
Singleton to return only on instance of IOU module.
:returns: instance of IOU
"""
if not hasattr(IOU, "_instance"):
IOU._instance = IOU()
return IOU._instance