You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gns3-server/gns3server/controller/drawing.py

131 lines
3.4 KiB

#!/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
import uuid
8 years ago
class Drawing:
"""
8 years ago
Drawing are visual element not used by the network emulation. Like
text, images, rectangle... They are pure SVG elements.
"""
8 years ago
def __init__(self, project, drawing_id=None, svg="<svg></svg>", x=0, y=0, z=0, rotation=0):
self.svg = svg
self._project = project
8 years ago
if drawing_id is None:
self._id = str(uuid.uuid4())
else:
8 years ago
self._id = drawing_id
self._x = x
self._y = y
self._z = z
8 years ago
self._rotation = rotation
@property
def id(self):
return self._id
@property
def svg(self):
return self._svg
@svg.setter
def svg(self, value):
self._svg = value
@property
def x(self):
return self._x
@x.setter
def x(self, val):
self._x = val
@property
def y(self):
return self._y
@y.setter
def y(self, val):
self._y = val
@property
def z(self):
return self._z
@z.setter
def z(self, val):
self._z = val
8 years ago
@property
def rotation(self):
return self._rotation
@rotation.setter
def rotation(self, val):
self._rotation = val
@asyncio.coroutine
def update(self, **kwargs):
"""
8 years ago
Update the drawing
8 years ago
:param kwargs: Drawing properties
"""
# Update node properties with additional elements
svg_changed = False
for prop in kwargs:
if getattr(self, prop) != kwargs[prop]:
if prop == "svg":
# To avoid spamming client with large data we don't send the svg if the SVG didn't change
svg_changed = True
setattr(self, prop, kwargs[prop])
data = self.__json__()
if not svg_changed:
del data["svg"]
8 years ago
self._project.controller.notification.emit("drawing.updated", data)
self._project.dump()
def __json__(self, topology_dump=False):
"""
:param topology_dump: Filter to keep only properties require for saving on disk
"""
if topology_dump:
return {
8 years ago
"drawing_id": self._id,
"x": self._x,
"y": self._y,
"z": self._z,
8 years ago
"rotation": self._rotation,
"svg": self._svg
}
return {
"project_id": self._project.id,
8 years ago
"drawing_id": self._id,
"x": self._x,
"y": self._y,
"z": self._z,
8 years ago
"rotation": self._rotation,
"svg": self._svg
}
def __repr__(self):
8 years ago
return "<gns3server.controller.Drawing {}>".format(self._id)