def populate_table(self): commands_info = typedict(self.client.server_last_info).dictget("commands") if self.commands_info!=commands_info and commands_info: log("populate_table() new commands_info=%s", commands_info) self.commands_info = commands_info if self.table: self.alignment.remove(self.table) tb = TableBuilder(rows=1, columns=2, row_spacings=15) self.table = tb.get_table() headers = [gtk.Label(""), gtk.Label("PID"), gtk.Label("Command"), gtk.Label("Exit Code")] if self.client.server_commands_signals: headers.append(gtk.Label("Send Signal")) tb.add_row(*headers) for procinfo in self.commands_info.values(): if not isinstance(procinfo, dict): continue #some records aren't procinfos: pi = typedict(procinfo) command = pi.strlistget("command") pid = pi.intget("pid", 0) returncode = pi.intget("returncode", None) if pid>0 and command: cmd_str = " ".join(command) rstr = "" if returncode is not None: rstr = "%s" % returncode #find the windows matching this pid windows = () from xpra.client import mixin_features if mixin_features.windows: windows = tuple(w for w in self.client._id_to_window.values() if getattr(w, "_metadata", {}).get("pid")==pid) log("windows matching pid=%i: %s", pid, windows) icon = gtk.Label() if windows: try: icons = tuple(getattr(w, "_current_icon", None) for w in windows) icons = tuple(x for x in icons if x is not None) log("icons: %s", icons) if icons: from PIL import Image img = icons[0].resize((24, 24), Image.ANTIALIAS) has_alpha = img.mode=="RGBA" width, height = img.size rowstride = width * (3+int(has_alpha)) pixbuf = get_pixbuf_from_data(img.tobytes(), has_alpha, width, height, rowstride) icon = gtk.Image() icon.set_from_pixbuf(pixbuf) except Exception: log("failed to get window icon", exc_info=True) items = [icon, gtk.Label("%s" % pid), gtk.Label(cmd_str), gtk.Label(rstr)] if self.client.server_commands_signals: if returncode is None: items.append(self.signal_button(pid)) else: items.append(gtk.Label("")) tb.add_row(*items) self.alignment.add(self.table) self.table.show_all() self.client.send_info_request() return True
def populate_table(self): log("populate_table: %i records", len(self.records)) if self.table: self.vbox.remove(self.table) self.table = None if not self.records: self.table = gtk.Label("No sessions found") self.vbox.add(self.table) self.table.show() return tb = TableBuilder(1, 6, False) tb.add_row(gtk.Label("Host"), gtk.Label("Display"), gtk.Label("Name"), gtk.Label("Platform"), gtk.Label("Type"), gtk.Label("URI"), gtk.Label("Connect"), gtk.Label("Open in Browser")) self.table = tb.get_table() self.vbox.add(self.table) self.table.resize(1+len(self.records), 5) #group them by uuid d = OrderedDict() for i, record in enumerate(self.records): interface, protocol, name, stype, domain, host, address, port, text = record td = typedict(text) log("populate_table: record[%i]=%s", i, record) uuid = td.strget("uuid", "") display = td.strget("display", "") platform = td.strget("platform", "") dtype = td.strget("type", "") #older servers expose the "session-name" as "session": session_name = td.strget("name", "") or td.strget("session", "") if domain=="local" and host.endswith(".local"): host = host[:-len(".local")] key = (uuid, uuid or i, host, display, session_name, platform, dtype) log("populate_table: key[%i]=%s", i, key) d.setdefault(key, []).append((interface, protocol, name, stype, domain, host, address, port, text)) for key, recs in d.items(): if type(key)==tuple: uuid, _, host, display, name, platform, dtype = key else: display = key uuid, host, name, platform, dtype = None, None, "", sys.platform, None title = uuid if display: title = display label = gtk.Label(title) if uuid!=title: label.set_tooltip_text(uuid) #try to use an icon for the platform: platform_icon_name = self.get_platform_icon_name(platform) pwidget = None if platform_icon_name: pwidget = scaled_image(self.get_pixbuf("%s.png" % platform_icon_name), 28) if pwidget: pwidget.set_tooltip_text(platform_icon_name) if not pwidget: pwidget = gtk.Label(platform) w, c, b = self.make_connect_widgets(key, recs, address, port, display) tb.add_row(gtk.Label(host), label, gtk.Label(name), pwidget, gtk.Label(dtype), w, c, b) self.table.show_all()
def populate_table(self): if self.table: self.alignment.remove(self.table) #remove expired requests: now = monotonic_time() self.requests = [x for x in self.requests if x[-1] > now] self.expire_labels = {} tb = TableBuilder(rows=1, columns=4, row_spacings=15) #generate a new table: self.table = tb.get_table() if not self.requests: tb.add_row(gtk.Label("No requests pending")) else: headers = [ gtk.Label("URL / Filename"), gtk.Label(""), gtk.Label("Expires in"), gtk.Label("Action") ] tb.add_row(*headers) for cb_answer, send_id, dtype, url, filesize, printit, openit, expires in self.requests: details = u"" if dtype == b"file" and filesize > 0: details = u"%sB" % std_unit_dec(filesize) expires_label = gtk.Label() self.expire_labels[expires_label] = expires buttons = self.action_buttons(cb_answer, send_id, dtype, printit, openit) items = (gtk.Label(bytestostr(url)), gtk.Label(details), expires_label, buttons) tb.add_row(*items) self.update_expires_label() self.alignment.add(self.table) self.table.show_all()
def __init__(self): self.window = Gtk.Window() self.window.connect("destroy", self.destroy) self.window.set_default_size(640, 300) self.window.set_border_width(20) self.window.set_position(Gtk.WindowPosition.CENTER) self.window.set_title("Clipboard Test Tool") vbox = Gtk.VBox(False, 0) vbox.set_spacing(15) self.log = deque(maxlen=25) for x in range(25): self.log.append("") self.events = Gtk.Label() fixed = Pango.FontDescription('monospace 9') self.events.modify_font(fixed) #how many clipboards to show: self.clipboards = CLIPBOARDS tb = TableBuilder() table = tb.get_table() labels = [label("Selection")] labels += [ label("Value"), label("Clear"), label("Targets"), label("Actions") ] tb.add_row(*labels) for selection in self.clipboards: cs = ClipboardInstance(selection, self.add_event) get_actions = Gtk.HBox() for x in (cs.get_get_targets_btn, cs.get_target_btn, cs.get_string_btn): get_actions.pack_start(x) tb.add_row(label(selection), cs.value_label, cs.clear_label_btn, cs.get_targets, get_actions) set_actions = Gtk.HBox() for x in (cs.set_target_btn, cs.set_string_btn): set_actions.pack_start(x) tb.add_row(None, cs.value_entry, cs.clear_entry_btn, cs.set_targets, set_actions) vbox.pack_start(table) vbox.add(self.events) self.window.add(vbox) self.window.show_all() icon = get_icon_pixbuf("clipboard.png") if icon: self.window.set_icon(icon) try: self.add_event( "ALL", "window=%s, xid=%#x" % (self.window, self.window.get_window().get_xid())) except Exception: self.add_event("ALL", "window=%s" % self.window)
def populate_table(self): if self.table: self.alignment.remove(self.table) #remove expired requests: now = monotonic_time() self.requests = [x for x in self.requests if x[-1] > now] self.expire_labels = {} tb = TableBuilder(rows=1, columns=4, row_spacings=15) def l(s=""): return gtk.Label(s) #generate a new table: self.table = tb.get_table() if not self.requests: tb.add_row(l("No requests pending")) else: headers = [ l("URL / Filename"), l(""), l("Expires in"), l("Action") ] tb.add_row(*headers) for cb_answer, send_id, dtype, url, filesize, printit, openit, expires in self.requests: details = u"" if dtype == b"file" and filesize > 0: details = u"%sB" % std_unit_dec(filesize) expires_label = l() self.expire_labels[expires_label] = expires buttons = self.action_buttons(cb_answer, send_id, dtype, printit, openit) s = bytestostr(url) main_label = l(s) if dtype == b"url" and s.find("?") > 0 and len(s) > 48: parts = s.split("?", 1) main_label.set_label(parts[0] + "?..") main_label.set_tooltip_text(s) main_label.set_line_wrap(True) try: main_label.set_line_wrap_mode(pango.WrapMode.WORD_CHAR) except AttributeError: main_label.set_line_wrap_mode(pango.WRAP_WORD_CHAR) main_label.set_size_request(URI_MAX_WIDTH, -1) items = (main_label, l(details), expires_label, buttons) tb.add_row(*items) self.update_expires_label() self.alignment.add(self.table) self.table.show_all()
def __init__(self): self.window = gtk.Window(gtk.WINDOW_TOPLEVEL) self.window.connect("destroy", self.destroy) self.window.set_default_size(640, 300) self.window.set_border_width(20) vbox = gtk.VBox(False, 0) vbox.set_spacing(15) self.log = maxdeque(maxlen=25) for x in range(25): self.log.append("") self.events = gtk.Label() fixed = pango.FontDescription('monospace 9') self.events.modify_font(fixed) #how many clipboards to show: self.clipboards = ["CLIPBOARD", "PRIMARY", "SECONDARY"] if sys.platform.startswith("win"): self.clipboards = ["CLIPBOARD"] tb = TableBuilder() table = tb.get_table() labels = [label("Selection")] labels += [label("Value"), label("Clear"), label("Targets"), label("Actions")] tb.add_row(*labels) for selection in self.clipboards: cs = ClipboardInstance(selection, self.add_event) get_actions = gtk.HBox() for x in (cs.get_get_targets_btn, cs.get_target_btn, cs.get_string_btn): get_actions.pack_start(x) tb.add_row(label(selection), cs.value_label, cs.clear_label_btn, cs.get_targets, get_actions) set_actions = gtk.HBox() for x in (cs.set_target_btn, cs.set_string_btn): set_actions.pack_start(x) tb.add_row(None, cs.value_entry, cs.clear_entry_btn, cs.set_targets, set_actions) vbox.pack_start(table) vbox.add(self.events) self.window.add(vbox) self.window.show_all() icon = get_icon("clipboard.png") if icon: self.window.set_icon(icon) try: self.add_event("ALL", "window=%s, xid=%s" % (self.window, hex(self.window.get_window().xid))) except: self.add_event("ALL", "window=%s" % self.window)
def __init__(self, client, session_name, window_icon_pixbuf, conn, get_pixbuf): gtk.Window.__init__(self) self.client = client self.session_name = session_name self.connection = conn self.last_populate_time = 0 self.last_populate_statistics = 0 self.is_closed = False self.get_pixbuf = get_pixbuf if not self.session_name or self.session_name=="Xpra": title = "Session Info" else: title = "%s: Session Info" % self.session_name self.set_title(title) self.set_destroy_with_parent(True) self.set_resizable(True) self.set_decorated(True) if window_icon_pixbuf: self.set_icon(window_icon_pixbuf) self.set_position(WIN_POS_CENTER) #tables on the left in a vbox with buttons at the top: self.tab_box = gtk.VBox(False, 0) self.tab_button_box = gtk.HBox(True, 0) self.tabs = [] #pairs of button, table self.populate_cb = None self.tab_box.pack_start(self.tab_button_box, expand=False, fill=True, padding=0) #Package Table: tb, _ = self.table_tab("package.png", "Software", self.populate_package) #title row: tb.attach(title_box(""), 0, xoptions=EXPAND|FILL, xpadding=0) tb.attach(title_box("Client"), 1, xoptions=EXPAND|FILL, xpadding=0) tb.attach(title_box("Server"), 2, xoptions=EXPAND|FILL, xpadding=0) tb.inc() def make_os_str(*args): s = os_info(*args) return "\n".join(s) distro = "" if hasattr(python_platform, "linux_distribution"): distro = python_platform.linux_distribution() LOCAL_PLATFORM_NAME = make_os_str(sys.platform, python_platform.release(), python_platform.platform(), distro) SERVER_PLATFORM_NAME = make_os_str(self.client._remote_platform, self.client._remote_platform_release, self.client._remote_platform_platform, self.client._remote_platform_linux_distribution) tb.new_row("Operating System", label(LOCAL_PLATFORM_NAME), label(SERVER_PLATFORM_NAME)) scaps = self.client.server_capabilities from xpra.__init__ import __version__ tb.new_row("Xpra", label(__version__), label(self.client._remote_version or "unknown")) cl_rev, cl_ch, cl_date = "unknown", "", "" try: from xpra.build_info import BUILD_DATE as cl_date, BUILD_TIME as cl_time from xpra.src_info import REVISION as cl_rev, LOCAL_MODIFICATIONS as cl_ch #@UnresolvedImport except: pass def make_version_str(version): if version and type(version) in (tuple, list): version = ".".join([str(x) for x in version]) return version or "unknown" def server_info(*prop_names): for x in prop_names: v = scaps.capsget(x) if v is not None: return v if self.client.server_last_info: v = self.client.server_last_info.get(x) if v is not None: return v return None def server_version_info(*prop_names): return make_version_str(server_info(*prop_names)) def make_revision_str(rev, changes): if not changes: return rev return "%s (%s changes)" % (rev, changes) def make_datetime(date, time): if not time: return date return "%s %s" % (date, time) tb.new_row("Revision", label(make_revision_str(cl_rev, cl_ch)), label(make_revision_str(self.client._remote_revision, server_version_info("build.local_modifications", "local_modifications")))) tb.new_row("Build date", label(make_datetime(cl_date, cl_time)), label(make_datetime(server_info("build_date", "build.date"), server_info("build.time")))) gtk_version_info = get_gtk_version_info() def client_vinfo(prop, fallback="unknown"): k = "%s.version" % prop return label(make_version_str(gtk_version_info.get(k, fallback))) def server_vinfo(prop): k = "%s.version" % prop fk = "%s_version" % prop return label(server_version_info(k, fk)) tb.new_row("Glib", client_vinfo("glib"), server_vinfo("glib")) tb.new_row("PyGlib", client_vinfo("pyglib"), server_vinfo("pyglib")) tb.new_row("Gobject", client_vinfo("gobject"), server_vinfo("gobject")) tb.new_row("PyGTK", client_vinfo("pygtk", ""), server_vinfo("pygtk")) tb.new_row("GTK", client_vinfo("gtk"), server_vinfo("gtk")) tb.new_row("GDK", client_vinfo("gdk"), server_vinfo("gdk")) tb.new_row("Cairo", client_vinfo("cairo"), server_vinfo("cairo")) tb.new_row("Pango", client_vinfo("pango"), server_vinfo("pango")) tb.new_row("Python", label(python_platform.python_version()), label(server_version_info("server.python.version", "python_version", "python.version"))) cl_gst_v, cl_pygst_v = "", "" try: from xpra.sound.gstreamer_util import gst_version as cl_gst_v, pygst_version as cl_pygst_v except Exception as e: log("cannot load gstreamer: %s", e) tb.new_row("GStreamer", label(make_version_str(cl_gst_v)), label(server_version_info("sound.gst.version", "gst_version"))) tb.new_row("pygst", label(make_version_str(cl_pygst_v)), label(server_version_info("sound.pygst.version", "pygst_version"))) tb.new_row("OpenGL", label(make_version_str(self.client.opengl_props.get("opengl", "n/a"))), label("n/a")) tb.new_row("OpenGL Vendor", label(make_version_str(self.client.opengl_props.get("vendor", ""))), label("n/a")) tb.new_row("PyOpenGL", label(make_version_str(self.client.opengl_props.get("pyopengl", "n/a"))), label("n/a")) # Features Table: vbox = self.vbox_tab("features.png", "Features", self.populate_features) #add top table: tb = TableBuilder(rows=1, columns=2) table = tb.get_table() al = gtk.Alignment(xalign=0.5, yalign=0.5, xscale=0.0, yscale=1.0) al.add(table) vbox.pack_start(al, expand=True, fill=False, padding=10) #top table contents: randr_box = gtk.HBox(False, 20) self.server_randr_label = label() self.server_randr_icon = gtk.Image() randr_box.add(self.server_randr_icon) randr_box.add(self.server_randr_label) tb.new_row("RandR Support", randr_box) opengl_box = gtk.HBox(False, 20) self.client_opengl_label = label() self.client_opengl_label.set_line_wrap(True) self.client_opengl_icon = gtk.Image() opengl_box.add(self.client_opengl_icon) opengl_box.add(self.client_opengl_label) tb.new_row("Client OpenGL", opengl_box) self.opengl_buffering = label() tb.new_row("OpenGL Buffering", self.opengl_buffering) self.server_mmap_icon = gtk.Image() tb.new_row("Memory Mapped Transfers", self.server_mmap_icon) self.server_clipboard_icon = gtk.Image() tb.new_row("Clipboard", self.server_clipboard_icon) self.server_notifications_icon = gtk.Image() tb.new_row("Notification Forwarding", self.server_notifications_icon) self.server_bell_icon = gtk.Image() tb.new_row("Bell Forwarding", self.server_bell_icon) self.server_cursors_icon = gtk.Image() tb.new_row("Cursor Forwarding", self.server_cursors_icon) speaker_box = gtk.HBox(False, 20) self.server_speaker_icon = gtk.Image() speaker_box.add(self.server_speaker_icon) self.speaker_codec_label = label() speaker_box.add(self.speaker_codec_label) tb.new_row("Speaker Forwarding", speaker_box) microphone_box = gtk.HBox(False, 20) self.server_microphone_icon = gtk.Image() microphone_box.add(self.server_microphone_icon) self.microphone_codec_label = label() microphone_box.add(self.microphone_codec_label) tb.new_row("Microphone Forwarding", microphone_box) #add bottom table: tb = TableBuilder(rows=1, columns=3) table = tb.get_table() vbox.pack_start(table, expand=True, fill=True, padding=20) #bottom table headings: tb.attach(title_box(""), 0, xoptions=EXPAND|FILL, xpadding=0) tb.attach(title_box("Client"), 1, xoptions=EXPAND|FILL, xpadding=0) tb.attach(title_box("Server"), 2, xoptions=EXPAND|FILL, xpadding=0) tb.inc() #bottom table contents: self.client_encodings_label = label() self.client_encodings_label.set_line_wrap(True) self.client_encodings_label.set_size_request(250, -1) self.server_encodings_label = label() self.server_encodings_label.set_line_wrap(True) self.server_encodings_label.set_size_request(250, -1) tb.new_row("Encodings", self.client_encodings_label, self.server_encodings_label) self.client_speaker_codecs_label = label() self.server_speaker_codecs_label = label() tb.new_row("Speaker Codecs", self.client_speaker_codecs_label, self.server_speaker_codecs_label) self.client_microphone_codecs_label = label() self.server_microphone_codecs_label = label() tb.new_row("Microphone Codecs", self.client_microphone_codecs_label, self.server_microphone_codecs_label) self.client_packet_encoders_label = label() self.server_packet_encoders_label = label() tb.new_row("Packet Encoders", self.client_packet_encoders_label, self.server_packet_encoders_label) self.client_packet_compressors_label = label() self.server_packet_compressors_label = label() tb.new_row("Packet Compressors", self.client_packet_compressors_label, self.server_packet_compressors_label) # Connection Table: tb, _ = self.table_tab("connect.png", "Connection", self.populate_connection) tb.new_row("Server Endpoint", label(self.connection.target)) if self.client.server_display: tb.new_row("Server Display", label(prettify_plug_name(self.client.server_display))) hostname = scaps.strget("hostname") if hostname: tb.new_row("Server Hostname", label(hostname)) if self.client.server_platform: tb.new_row("Server Platform", label(self.client.server_platform)) self.server_load_label = label() tb.new_row("Server Load", self.server_load_label, label_tooltip="Average over 1, 5 and 15 minutes") self.session_started_label = label() tb.new_row("Session Started", self.session_started_label) self.session_connected_label = label() tb.new_row("Session Connected", self.session_connected_label) self.input_packets_label = label() tb.new_row("Packets Received", self.input_packets_label) self.input_bytes_label = label() tb.new_row("Bytes Received", self.input_bytes_label) self.output_packets_label = label() tb.new_row("Packets Sent", self.output_packets_label) self.output_bytes_label = label() tb.new_row("Bytes Sent", self.output_bytes_label) self.compression_label = label() tb.new_row("Encoding + Compression", self.compression_label) self.connection_type_label = label() tb.new_row("Connection Type", self.connection_type_label) self.input_encryption_label = label() tb.new_row("Input Encryption", self.input_encryption_label) self.output_encryption_label = label() tb.new_row("Output Encryption", self.output_encryption_label) self.speaker_label = label() self.speaker_details = label(font="monospace 10") tb.new_row("Speaker", self.speaker_label, self.speaker_details) self.microphone_label = label() tb.new_row("Microphone", self.microphone_label) # Details: tb, stats_box = self.table_tab("browse.png", "Statistics", self.populate_statistics) tb.widget_xalign = 1.0 tb.attach(title_box(""), 0, xoptions=EXPAND|FILL, xpadding=0) tb.attach(title_box("Latest"), 1, xoptions=EXPAND|FILL, xpadding=0) tb.attach(title_box("Minimum"), 2, xoptions=EXPAND|FILL, xpadding=0) tb.attach(title_box("Average"), 3, xoptions=EXPAND|FILL, xpadding=0) tb.attach(title_box("90 percentile"), 4, xoptions=EXPAND|FILL, xpadding=0) tb.attach(title_box("Maximum"), 5, xoptions=EXPAND|FILL, xpadding=0) tb.inc() def maths_labels(): return label(), label(), label(), label(), label() self.server_latency_labels = maths_labels() tb.add_row(label("Server Latency (ms)", "The time it takes for the server to respond to pings"), *self.server_latency_labels) self.client_latency_labels = maths_labels() tb.add_row(label("Client Latency (ms)", "The time it takes for the client to respond to pings, as measured by the server"), *self.client_latency_labels) if self.client.windows_enabled: if self.client.server_info_request: self.batch_labels = maths_labels() tb.add_row(label("Batch Delay (ms)", "How long the server waits for new screen updates to accumulate before processing them"), *self.batch_labels) self.damage_labels = maths_labels() tb.add_row(label("Damage Latency (ms)", "The time it takes to compress a frame and pass it to the OS network layer"), *self.damage_labels) self.quality_labels = maths_labels() tb.add_row(label("Encoding Quality (pct)"), *self.quality_labels) self.speed_labels = maths_labels() tb.add_row(label("Encoding Speed (pct)"), *self.speed_labels) self.decoding_labels = maths_labels() tb.add_row(label("Decoding Latency (ms)", "How long it takes the client to decode a screen update"), *self.decoding_labels) self.regions_per_second_labels = maths_labels() tb.add_row(label("Regions/s", "The number of screen updates per second (includes both partial and full screen updates)"), *self.regions_per_second_labels) self.regions_sizes_labels = maths_labels() tb.add_row(label("Pixels/region", "The number of pixels per screen update"), *self.regions_sizes_labels) self.pixels_per_second_labels = maths_labels() tb.add_row(label("Pixels/s", "The number of pixels processed per second"), *self.pixels_per_second_labels) #Window count stats: wtb = TableBuilder() stats_box.add(wtb.get_table()) #title row: wtb.attach(title_box(""), 0, xoptions=EXPAND|FILL, xpadding=0) wtb.attach(title_box("Regular"), 1, xoptions=EXPAND|FILL, xpadding=0) wtb.attach(title_box("Transient"), 2, xoptions=EXPAND|FILL, xpadding=0) wtb.attach(title_box("Trays"), 3, xoptions=EXPAND|FILL, xpadding=0) if self.client.client_supports_opengl: wtb.attach(title_box("OpenGL"), 4, xoptions=EXPAND|FILL, xpadding=0) wtb.inc() wtb.attach(label("Windows:"), 0, xoptions=EXPAND|FILL, xpadding=0) self.windows_managed_label = label() wtb.attach(self.windows_managed_label, 1) self.transient_managed_label = label() wtb.attach(self.transient_managed_label, 2) self.trays_managed_label = label() wtb.attach(self.trays_managed_label, 3) if self.client.client_supports_opengl: self.opengl_label = label() wtb.attach(self.opengl_label, 4) #add encoder info: etb = TableBuilder() stats_box.add(etb.get_table()) self.encoder_info_box = gtk.HBox(spacing=4) etb.new_row("Window Encoders", self.encoder_info_box) if not is_gtk3(): #needs porting to cairo... self.graph_box = gtk.VBox(False, 10) self.add_tab("statistics.png", "Graphs", self.populate_graphs, self.graph_box) bandwidth_label = "Bandwidth used" if SHOW_PIXEL_STATS: bandwidth_label += ",\nand number of pixels rendered" self.bandwidth_graph = self.add_graph_button(bandwidth_label, self.save_graphs) self.connect("realize", self.populate_graphs) self.latency_graph = self.add_graph_button(None, self.save_graphs) self.pixel_in_data = deque(maxlen=N_SAMPLES+4) self.net_in_bytecount = deque(maxlen=N_SAMPLES+4) self.net_out_bytecount = deque(maxlen=N_SAMPLES+4) self.sound_in_bytecount = deque(maxlen=N_SAMPLES+4) self.sound_out_bytecount = deque(maxlen=N_SAMPLES+4) self.set_border_width(15) self.add(self.tab_box) if not is_gtk3(): self.set_geometry_hints(self.tab_box) def window_deleted(*args): self.is_closed = True self.connect('delete_event', window_deleted) self.show_tab(self.tabs[0][2]) self.set_size_request(-1, 480) self.init_counters() self.populate() self.populate_all() gobject.timeout_add(1000, self.populate) gobject.timeout_add(100, self.populate_tab) add_close_accel(self, self.destroy)
def populate_table(self): log("populate_table: %i records", len(self.records)) if self.table: self.vbox.remove(self.table) self.table = None if not self.records: self.table = Gtk.Label("No sessions found") self.vbox.add(self.table) self.table.show() self.set_size_request(440, 200) self.password_box.hide() return self.password_box.show() self.set_size_request(-1, -1) tb = TableBuilder(1, 6, False) labels = [Gtk.Label(x) for x in ( "Host", "Display", "Name", "Platform", "Type", "URI", "Connect", "Open in Browser", )] tb.add_row(*labels) self.table = tb.get_table() self.vbox.add(self.table) self.table.resize(1+len(self.records), 5) #group them by uuid d = {} session_names = {} for i, record in enumerate(self.records): interface, protocol, name, stype, domain, host, address, port, text = record td = typedict(text) log("populate_table: record[%i]=%s", i, record) uuid = td.strget("uuid", "") display = td.strget("display", "") if domain=="local" and host.endswith(".local"): host = host[:-len(".local")] if uuid: key = uuid else: key = (host.rstrip("."), display) log("populate_table: key[%i]=%s", i, key) d.setdefault(key, []).append((interface, protocol, name, stype, domain, host, address, port, text)) #older servers expose the "session-name" as "session": td = typedict(text) session_name = td.strget("name", "") or td.strget("session", "") if session_name: session_names[key] = session_name for key, recs in d.items(): if isinstance(key, tuple): host, display = key else: uuid = key host, platform, dtype = None, sys.platform, None #try to find a valid host name: hosts = [rec[5] for rec in recs if not rec[5].startswith("local")] if not hosts: hosts = [rec[5] for rec in recs] host = hosts[0] platform, dtype = None, None for rec in recs: td = typedict(rec[-1]) if not platform: platform = td.strget("platform", "") if not dtype: dtype = td.strget("type", "") title = uuid if display: title = display label = Gtk.Label(title) if uuid!=title: label.set_tooltip_text(uuid) #try to use an icon for the platform: platform_icon_name = self.get_platform_icon_name(platform) pwidget = None if platform_icon_name: pwidget = scaled_image(get_icon_pixbuf("%s.png" % platform_icon_name), 28) if pwidget: pwidget.set_tooltip_text(platform_icon_name) if not pwidget: pwidget = Gtk.Label(platform) w, c, b = self.make_connect_widgets(key, recs, address, port, display) session_name = session_names.get(key, "") tb.add_row(Gtk.Label(host), label, Gtk.Label(session_name), pwidget, Gtk.Label(dtype), w, c, b) self.table.show_all()