2019-11-20 18:59:30 +00:00
|
|
|
import logging
|
2019-11-03 06:47:43 +00:00
|
|
|
import tkinter as tk
|
2019-11-20 18:59:30 +00:00
|
|
|
from functools import partial
|
2019-11-03 06:47:43 +00:00
|
|
|
from tkinter import ttk
|
2020-01-13 23:31:41 +00:00
|
|
|
from typing import TYPE_CHECKING
|
2019-11-03 06:47:43 +00:00
|
|
|
|
2019-12-19 17:30:21 +00:00
|
|
|
from core.gui import nodeutils
|
|
|
|
from core.gui.appconfig import ICONS_PATH
|
|
|
|
from core.gui.dialogs.dialog import Dialog
|
|
|
|
from core.gui.dialogs.emaneconfig import EmaneModelDialog
|
|
|
|
from core.gui.images import Images
|
|
|
|
from core.gui.nodeutils import NodeUtils
|
|
|
|
from core.gui.themes import FRAME_PAD, PADX, PADY
|
2020-01-08 17:32:39 +00:00
|
|
|
from core.gui.widgets import ListboxScroll, image_chooser
|
2019-11-03 06:47:43 +00:00
|
|
|
|
2020-01-13 23:31:41 +00:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from core.gui.app import Application
|
|
|
|
from core.gui.graph.node import CanvasNode
|
|
|
|
|
2019-11-03 06:47:43 +00:00
|
|
|
|
2020-01-14 19:59:44 +00:00
|
|
|
def mac_auto(is_auto: tk.BooleanVar, entry: ttk.Entry):
|
2019-11-20 18:59:30 +00:00
|
|
|
logging.info("mac auto clicked")
|
|
|
|
if is_auto.get():
|
|
|
|
logging.info("disabling mac")
|
2020-01-14 19:59:44 +00:00
|
|
|
entry.delete(0, tk.END)
|
|
|
|
entry.insert(tk.END, "")
|
2019-11-20 18:59:30 +00:00
|
|
|
entry.config(state=tk.DISABLED)
|
|
|
|
else:
|
2020-01-14 19:59:44 +00:00
|
|
|
entry.delete(0, tk.END)
|
|
|
|
entry.insert(tk.END, "00:00:00:00:00:00")
|
2019-11-20 18:59:30 +00:00
|
|
|
entry.config(state=tk.NORMAL)
|
|
|
|
|
|
|
|
|
|
|
|
class InterfaceData:
|
2020-01-14 19:59:44 +00:00
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
is_auto: tk.BooleanVar,
|
|
|
|
mac: tk.StringVar,
|
|
|
|
ip4: tk.StringVar,
|
|
|
|
ip6: tk.StringVar,
|
|
|
|
):
|
2019-11-20 18:59:30 +00:00
|
|
|
self.is_auto = is_auto
|
|
|
|
self.mac = mac
|
|
|
|
self.ip4 = ip4
|
|
|
|
self.ip6 = ip6
|
|
|
|
|
|
|
|
|
2019-11-03 06:47:43 +00:00
|
|
|
class NodeConfigDialog(Dialog):
|
2020-01-14 19:06:52 +00:00
|
|
|
def __init__(
|
|
|
|
self, master: "Application", app: "Application", canvas_node: "CanvasNode"
|
|
|
|
):
|
2019-11-03 06:47:43 +00:00
|
|
|
"""
|
|
|
|
create an instance of node configuration
|
|
|
|
"""
|
2019-11-20 18:59:30 +00:00
|
|
|
super().__init__(
|
|
|
|
master, app, f"{canvas_node.core_node.name} Configuration", modal=True
|
|
|
|
)
|
2019-11-03 06:47:43 +00:00
|
|
|
self.canvas_node = canvas_node
|
2019-11-20 18:59:30 +00:00
|
|
|
self.node = canvas_node.core_node
|
2019-11-03 06:47:43 +00:00
|
|
|
self.image = canvas_node.image
|
2019-12-13 16:48:40 +00:00
|
|
|
self.image_file = None
|
2019-11-03 06:47:43 +00:00
|
|
|
self.image_button = None
|
2019-11-20 18:59:30 +00:00
|
|
|
self.name = tk.StringVar(value=self.node.name)
|
|
|
|
self.type = tk.StringVar(value=self.node.model)
|
2019-11-20 19:20:08 +00:00
|
|
|
self.container_image = tk.StringVar(value=self.node.image)
|
2019-11-20 18:59:30 +00:00
|
|
|
server = "localhost"
|
|
|
|
if self.node.server:
|
|
|
|
server = self.node.server
|
|
|
|
self.server = tk.StringVar(value=server)
|
|
|
|
self.interfaces = {}
|
2019-11-03 06:47:43 +00:00
|
|
|
self.draw()
|
|
|
|
|
|
|
|
def draw(self):
|
2019-11-13 18:45:43 +00:00
|
|
|
self.top.columnconfigure(0, weight=1)
|
2019-11-16 16:54:15 +00:00
|
|
|
row = 0
|
2019-11-03 06:47:43 +00:00
|
|
|
|
2019-11-16 16:54:15 +00:00
|
|
|
# field frame
|
2019-11-13 18:45:43 +00:00
|
|
|
frame = ttk.Frame(self.top)
|
2019-11-16 16:54:15 +00:00
|
|
|
frame.grid(sticky="ew")
|
2019-11-03 06:47:43 +00:00
|
|
|
frame.columnconfigure(1, weight=1)
|
|
|
|
|
2019-12-11 22:09:50 +00:00
|
|
|
# icon field
|
|
|
|
label = ttk.Label(frame, text="Icon")
|
2019-12-11 22:36:27 +00:00
|
|
|
label.grid(row=row, column=0, sticky="ew", padx=PADX, pady=PADY)
|
2019-12-11 22:09:50 +00:00
|
|
|
self.image_button = ttk.Button(
|
|
|
|
frame,
|
|
|
|
text="Icon",
|
|
|
|
image=self.image,
|
|
|
|
compound=tk.NONE,
|
|
|
|
command=self.click_icon,
|
|
|
|
)
|
|
|
|
self.image_button.grid(row=row, column=1, sticky="ew")
|
|
|
|
row += 1
|
|
|
|
|
2019-11-16 16:54:15 +00:00
|
|
|
# name field
|
|
|
|
label = ttk.Label(frame, text="Name")
|
2019-12-11 22:36:27 +00:00
|
|
|
label.grid(row=row, column=0, sticky="ew", padx=PADX, pady=PADY)
|
2019-12-10 00:33:32 +00:00
|
|
|
entry = ttk.Entry(
|
2019-12-10 17:57:12 +00:00
|
|
|
frame,
|
|
|
|
textvariable=self.name,
|
|
|
|
validate="key",
|
|
|
|
validatecommand=(self.app.validation.name, "%P"),
|
2019-12-10 00:33:32 +00:00
|
|
|
)
|
2019-12-10 21:23:03 +00:00
|
|
|
entry.bind(
|
|
|
|
"<FocusOut>", lambda event: self.app.validation.focus_out(event, "noname")
|
|
|
|
)
|
2019-11-16 16:54:15 +00:00
|
|
|
entry.grid(row=row, column=1, sticky="ew")
|
|
|
|
row += 1
|
|
|
|
|
|
|
|
# node type field
|
2019-11-20 19:20:08 +00:00
|
|
|
if NodeUtils.is_model_node(self.node.type):
|
|
|
|
label = ttk.Label(frame, text="Type")
|
2019-12-11 22:36:27 +00:00
|
|
|
label.grid(row=row, column=0, sticky="ew", padx=PADX, pady=PADY)
|
2019-11-20 19:20:08 +00:00
|
|
|
combobox = ttk.Combobox(
|
|
|
|
frame,
|
|
|
|
textvariable=self.type,
|
|
|
|
values=list(NodeUtils.NODE_MODELS),
|
|
|
|
state="readonly",
|
|
|
|
)
|
|
|
|
combobox.grid(row=row, column=1, sticky="ew")
|
|
|
|
row += 1
|
|
|
|
|
|
|
|
# container image field
|
|
|
|
if NodeUtils.is_image_node(self.node.type):
|
|
|
|
label = ttk.Label(frame, text="Image")
|
2019-12-11 22:36:27 +00:00
|
|
|
label.grid(row=row, column=0, sticky="ew", padx=PADX, pady=PADY)
|
2019-11-20 19:20:08 +00:00
|
|
|
entry = ttk.Entry(frame, textvariable=self.container_image)
|
|
|
|
entry.grid(row=row, column=1, sticky="ew")
|
|
|
|
row += 1
|
2019-11-03 06:47:43 +00:00
|
|
|
|
2019-11-20 19:20:08 +00:00
|
|
|
if NodeUtils.is_container_node(self.node.type):
|
2019-11-21 07:16:04 +00:00
|
|
|
# server
|
2019-11-20 19:20:08 +00:00
|
|
|
frame.grid(sticky="ew")
|
|
|
|
frame.columnconfigure(1, weight=1)
|
|
|
|
label = ttk.Label(frame, text="Server")
|
2019-12-11 22:36:27 +00:00
|
|
|
label.grid(row=row, column=0, sticky="ew", padx=PADX, pady=PADY)
|
2019-11-20 19:20:08 +00:00
|
|
|
servers = ["localhost"]
|
|
|
|
servers.extend(list(sorted(self.app.core.servers.keys())))
|
|
|
|
combobox = ttk.Combobox(
|
|
|
|
frame, textvariable=self.server, values=servers, state="readonly"
|
|
|
|
)
|
|
|
|
combobox.grid(row=row, column=1, sticky="ew")
|
|
|
|
row += 1
|
2019-11-03 06:47:43 +00:00
|
|
|
|
2020-01-08 17:32:39 +00:00
|
|
|
if NodeUtils.is_rj45_node(self.node.type):
|
|
|
|
response = self.app.core.client.get_interfaces()
|
|
|
|
logging.debug("host machine available interfaces: %s", response)
|
|
|
|
interfaces = ListboxScroll(frame)
|
|
|
|
interfaces.grid(
|
|
|
|
row=row, column=0, columnspan=2, sticky="ew", padx=PADX, pady=PADY
|
|
|
|
)
|
|
|
|
for inf in sorted(response.interfaces[:]):
|
|
|
|
interfaces.listbox.insert(tk.END, inf)
|
|
|
|
row += 1
|
|
|
|
interfaces.listbox.bind("<<ListboxSelect>>", self.interface_select)
|
|
|
|
|
2019-11-20 18:59:30 +00:00
|
|
|
# interfaces
|
|
|
|
if self.canvas_node.interfaces:
|
|
|
|
self.draw_interfaces()
|
|
|
|
|
2019-12-11 22:09:50 +00:00
|
|
|
self.draw_spacer()
|
2019-11-16 16:54:15 +00:00
|
|
|
self.draw_buttons()
|
2019-11-03 06:47:43 +00:00
|
|
|
|
2019-11-20 18:59:30 +00:00
|
|
|
def draw_interfaces(self):
|
2019-12-17 04:57:46 +00:00
|
|
|
notebook = ttk.Notebook(self.top)
|
|
|
|
notebook.grid(sticky="nsew", pady=PADY)
|
|
|
|
self.top.rowconfigure(notebook.grid_info()["row"], weight=1)
|
|
|
|
|
2019-11-20 18:59:30 +00:00
|
|
|
for interface in self.canvas_node.interfaces:
|
|
|
|
logging.info("interface: %s", interface)
|
2019-12-17 04:57:46 +00:00
|
|
|
tab = ttk.Frame(notebook, padding=FRAME_PAD)
|
|
|
|
tab.grid(sticky="nsew", pady=PADY)
|
|
|
|
tab.columnconfigure(1, weight=1)
|
|
|
|
tab.columnconfigure(2, weight=1)
|
|
|
|
notebook.add(tab, text=interface.name)
|
|
|
|
|
|
|
|
row = 0
|
|
|
|
emane_node = self.canvas_node.has_emane_link(interface.id)
|
|
|
|
if emane_node:
|
|
|
|
emane_model = emane_node.emane.split("_")[1]
|
|
|
|
button = ttk.Button(
|
|
|
|
tab,
|
|
|
|
text=f"Configure EMANE {emane_model}",
|
|
|
|
command=lambda: self.click_emane_config(emane_model, interface.id),
|
|
|
|
)
|
|
|
|
button.grid(row=row, sticky="ew", columnspan=3, pady=PADY)
|
|
|
|
row += 1
|
|
|
|
|
|
|
|
label = ttk.Label(tab, text="MAC")
|
|
|
|
label.grid(row=row, column=0, padx=PADX, pady=PADY)
|
2019-11-20 18:59:30 +00:00
|
|
|
is_auto = tk.BooleanVar(value=True)
|
2019-12-17 04:57:46 +00:00
|
|
|
checkbutton = ttk.Checkbutton(tab, text="Auto?", variable=is_auto)
|
2019-11-20 18:59:30 +00:00
|
|
|
checkbutton.var = is_auto
|
2019-12-17 04:57:46 +00:00
|
|
|
checkbutton.grid(row=row, column=1, padx=PADX)
|
2019-11-20 18:59:30 +00:00
|
|
|
mac = tk.StringVar(value=interface.mac)
|
2019-12-17 04:57:46 +00:00
|
|
|
entry = ttk.Entry(tab, textvariable=mac, state=tk.DISABLED)
|
|
|
|
entry.grid(row=row, column=2, sticky="ew")
|
2019-11-20 18:59:30 +00:00
|
|
|
func = partial(mac_auto, is_auto, entry)
|
|
|
|
checkbutton.config(command=func)
|
2019-12-17 04:57:46 +00:00
|
|
|
row += 1
|
2019-11-20 18:59:30 +00:00
|
|
|
|
2019-12-17 04:57:46 +00:00
|
|
|
label = ttk.Label(tab, text="IPv4")
|
|
|
|
label.grid(row=row, column=0, padx=PADX, pady=PADY)
|
2019-11-20 18:59:30 +00:00
|
|
|
ip4 = tk.StringVar(value=f"{interface.ip4}/{interface.ip4mask}")
|
2019-12-17 04:57:46 +00:00
|
|
|
entry = ttk.Entry(tab, textvariable=ip4)
|
2019-12-10 21:23:03 +00:00
|
|
|
entry.bind("<FocusOut>", self.app.validation.ip_focus_out)
|
2019-12-17 04:57:46 +00:00
|
|
|
entry.grid(row=row, column=1, columnspan=2, sticky="ew")
|
|
|
|
row += 1
|
2019-11-20 18:59:30 +00:00
|
|
|
|
2019-12-17 04:57:46 +00:00
|
|
|
label = ttk.Label(tab, text="IPv6")
|
|
|
|
label.grid(row=row, column=0, padx=PADX, pady=PADY)
|
2019-11-20 18:59:30 +00:00
|
|
|
ip6 = tk.StringVar(value=f"{interface.ip6}/{interface.ip6mask}")
|
2019-12-17 04:57:46 +00:00
|
|
|
entry = ttk.Entry(tab, textvariable=ip6)
|
2019-12-10 21:23:03 +00:00
|
|
|
entry.bind("<FocusOut>", self.app.validation.ip_focus_out)
|
2019-12-17 04:57:46 +00:00
|
|
|
entry.grid(row=row, column=1, columnspan=2, sticky="ew")
|
2019-11-20 18:59:30 +00:00
|
|
|
|
|
|
|
self.interfaces[interface.id] = InterfaceData(is_auto, mac, ip4, ip6)
|
|
|
|
|
2019-11-16 16:54:15 +00:00
|
|
|
def draw_buttons(self):
|
2019-11-13 18:45:43 +00:00
|
|
|
frame = ttk.Frame(self.top)
|
2019-11-16 16:54:15 +00:00
|
|
|
frame.grid(sticky="ew")
|
2019-11-03 06:47:43 +00:00
|
|
|
frame.columnconfigure(0, weight=1)
|
|
|
|
frame.columnconfigure(1, weight=1)
|
|
|
|
|
2019-11-12 20:13:53 +00:00
|
|
|
button = ttk.Button(frame, text="Apply", command=self.config_apply)
|
2019-12-11 22:36:27 +00:00
|
|
|
button.grid(row=0, column=0, padx=PADX, sticky="ew")
|
2019-11-03 06:47:43 +00:00
|
|
|
|
2019-11-12 20:13:53 +00:00
|
|
|
button = ttk.Button(frame, text="Cancel", command=self.destroy)
|
2019-11-03 06:47:43 +00:00
|
|
|
button.grid(row=0, column=1, sticky="ew")
|
|
|
|
|
2020-01-13 20:03:13 +00:00
|
|
|
def click_emane_config(self, emane_model: str, interface_id: int):
|
2019-12-17 04:57:46 +00:00
|
|
|
dialog = EmaneModelDialog(self, self.app, self.node, emane_model, interface_id)
|
|
|
|
dialog.show()
|
|
|
|
|
2019-11-03 06:47:43 +00:00
|
|
|
def click_icon(self):
|
2019-12-17 19:35:30 +00:00
|
|
|
file_path = image_chooser(self, ICONS_PATH)
|
2019-12-13 04:30:28 +00:00
|
|
|
if file_path:
|
|
|
|
self.image = Images.create(file_path, nodeutils.ICON_SIZE)
|
2019-11-03 06:47:43 +00:00
|
|
|
self.image_button.config(image=self.image)
|
2019-12-13 16:48:40 +00:00
|
|
|
self.image_file = file_path
|
2019-11-03 06:47:43 +00:00
|
|
|
|
|
|
|
def config_apply(self):
|
2019-11-20 18:59:30 +00:00
|
|
|
# update core node
|
|
|
|
self.node.name = self.name.get()
|
2019-11-20 19:20:08 +00:00
|
|
|
if NodeUtils.is_image_node(self.node.type):
|
|
|
|
self.node.image = self.container_image.get()
|
2019-11-26 00:50:44 +00:00
|
|
|
server = self.server.get()
|
|
|
|
if NodeUtils.is_container_node(self.node.type) and server != "localhost":
|
|
|
|
self.node.server = server
|
2019-11-20 18:59:30 +00:00
|
|
|
|
2019-12-13 16:48:40 +00:00
|
|
|
# set custom icon
|
|
|
|
if self.image_file:
|
|
|
|
self.node.icon = self.image_file
|
|
|
|
|
2019-11-20 18:59:30 +00:00
|
|
|
# update canvas node
|
2019-11-03 06:47:43 +00:00
|
|
|
self.canvas_node.image = self.image
|
2019-11-20 18:59:30 +00:00
|
|
|
|
|
|
|
# redraw
|
|
|
|
self.canvas_node.redraw()
|
2019-11-03 06:47:43 +00:00
|
|
|
self.destroy()
|
2020-01-08 17:32:39 +00:00
|
|
|
|
2020-01-13 20:03:13 +00:00
|
|
|
def interface_select(self, event: tk.Event):
|
2020-01-08 17:32:39 +00:00
|
|
|
listbox = event.widget
|
|
|
|
cur = listbox.curselection()
|
|
|
|
if cur:
|
|
|
|
interface = listbox.get(cur[0])
|
|
|
|
self.name.set(interface)
|