1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757
|
"""
NAME
remote.py - Add support for remote sessions like ssh and docker/podman
DESCRIPTION
This plugin will look for a child remote session inside terminal using the
psutil API and provide mechanisms in the context menu to clone session into
a new terminal and/or change profiles based on the remote type or host.
Cloning sessions inspired from https://github.com/ilgarm/terminator_plugins
* Not maintained anymore
Host profile matching inspired from https://github.com/GratefulTony/TerminatorHostWatch
* This finds hosts by parsing the PS1 using a regex
INSTALLATION
Put this file in ~/.config/terminator/plugins/
CONFIGURATION
Plugin section in ~/.config/terminator/config
[plugins]
[[Remote]]
Configuration keys:
* auto_clone: Clone automatically when you split a remote session
* infer_cwd: When a session is cloned, attempt to `cd` into working directory
* ssh_default_profile: optional profile to apply to all SSH sessions
* container_default_profile: optional profile to apply to all container sessions
Host section:
You can add host sections with a 'profile' key which will override the defaults
ex)
[plugins]
[[Remote]]
ssh_default_profile = common_ssh_profile
container_default_profile = common_docker_profile
auto_clone = False
[[[foo]]]
profile = foo_profile
[[[bar]]]
profile = bar_profile
DEBUGGING
To debug, start Terminator from another terminal emulator like so:
$ terminator -d --debug-classes Remote,SSHSession,ContainerSession,RemoteProcWatch -u
DEVELOPMENT
support for future types of "Remote Sessions" can be easily added by
subclassing `RemoteSession` and appending an instance to `Remote.remote_session_types`
AUTHORS
The plugin was developed by Asif Amin <asifamin@utexas.edu>
"""
import os
import time
import getopt
import argparse
import re
import psutil
import asyncio
import threading
from typing import Optional, List
import gi
from gi.repository import Gtk, GLib
gi.require_version('Vte', '2.91')
from gi.repository import Vte
from terminatorlib.plugin import MenuItem
from terminatorlib.config import Config
from terminatorlib.terminator import Terminator
from terminatorlib.util import err, dbg
from terminatorlib.translation import _
from terminatorlib.version import APP_NAME, APP_VERSION
AVAILABLE = ['Remote']
def vte_get_text(vte_term, start_row, start_col, end_row, end_col):
""" wrapper for get_text_range* based on Vte version """
version = "{}.{}".format(
Vte.get_major_version(),
Vte.get_minor_version()
)
if version < "0.72":
return vte_term.get_text_range(
start_row=start_row,
start_col=start_col,
end_row=end_row,
end_col=end_col,
is_selected=None,
)[0]
return vte_term.get_text_range_format(
format=Vte.Format.TEXT,
start_row=start_row,
start_col=start_col,
end_row=end_row,
end_col=end_col
)[0]
class RemoteSession(object):
"""
API representing a 'Remote Session'
"""
def __init__(self, exe):
"""
constructor, exe acts like our type
"""
self.exe = exe
def IsType(self, proc: psutil.Process) -> bool:
""" check if psutil.Process matches this type of remote session """
raise NotImplementedError()
def GetHost(self, proc: psutil.Process) -> Optional[str]:
""" get remote host target """
raise NotImplementedError()
def Clone(self, proc: psutil.Process) -> List[str]:
""" get the command to clone session """
raise NotImplementedError()
def matches_by_name(self, proc: psutil.Process) -> bool:
"""
generic check if proc matches self.exe
https://psutil.readthedocs.io/en/latest/#find-process-by-name
"""
if self.exe == proc.name():
return True
if proc.exe():
if self.exe == os.path.basename(proc.exe()):
return True
if proc.cmdline():
if self.exe == proc.cmdline()[0]:
return True
return False
class SSHSession(RemoteSession):
""" SSH sessions """
def __init__(self, exe='ssh'):
""" constructor """
RemoteSession.__init__(self, exe)
def IsType(self, proc):
""" check if this is an ssh session """
return self.matches_by_name(proc)
def GetHost(self, proc):
"""
extract host from ssh command line
"""
def extractHost(target):
if '@' in target:
return target.split('@')[1]
return target
# https://github.com/openssh/openssh-portable/blob/99a2df5e1994cdcb44ba2187b5f34d0e9190be91/ssh.c#L713
# while ((opt = getopt(ac, av, "1246ab:c:e:fgi:kl:m:no:p:qstvx"
# "AB:CD:E:F:GI:J:KL:MNO:P:Q:R:S:TVw:W:XYy")) != -1) { /* HUZdhjruz */
shortOpts = (
"1246ab:c:e:fgi:kl:m:no:p:qstvx"
"AB:CD:E:F:GI:J:KL:MNO:P:Q:R:S:TVw:W:XYy"
)
try:
ssh_args = proc.cmdline()[1:]
_, args = getopt.getopt(ssh_args, shortOpts)
return extractHost(args[0])
except psutil.NoSuchProcess as e:
dbg("proc has gone away")
except Exception as e:
dbg(f"caught error: {e}")
return None
def Clone(self, proc):
""" ssh just needs to copy the cmdline """
return proc.cmdline()
class ContainerSession(RemoteSession):
""" container type sessions """
def __init__(self, exe):
""" constructor """
super().__init__(exe)
def IsType(self, proc):
""" check if this is a running docker session """
if not self.matches_by_name(proc):
return False
dbg(f"checking cmdline: {proc.cmdline()}")
# make sure this is an interactive run, exec, or attach
return self._get_command(proc) != None
def GetHost(self, proc):
""" try to find container name from cmdline """
cmd = self._get_command(proc)
if not cmd:
return None
try:
if cmd == "run":
return self._get_host_run(proc)
elif cmd == "exec":
return self._get_host_exec(proc)
elif cmd == "attach":
return self._get_host_attach(proc)
err("unrecognized sub command?")
except psutil.NoSuchProcess as e:
dbg(f"proc has gone away: {e}")
except Exception as e:
err(f"caught exception {e}")
return None
def Clone(self, proc):
""" get cmd to launch terminal into container session """
cmd = self._get_command(proc)
if not cmd:
err("shouldnt happen?")
return proc.cmdline()
if cmd in ["exec" , "attach"]:
return proc.cmdline()
# this is a docker run
host = self.GetHost(proc)
if not host:
# we dont have host info
# just make new container
return proc.cmdline()
else:
# we should exec a terminal session here
return [ self.exe, 'exec', '-it', host, 'sh' ]
def _get_command(self, proc):
""" get type of container command, we only support interactive ones """
interactiveCmds = { 'run', 'exec', 'attach' }
try:
for arg in proc.cmdline():
if arg in interactiveCmds:
return arg
except psutil.NoSuchProcess as e:
dbg(f"process has gone away: {e}")
except Exception as e:
err(f"unhandled exception: {e}")
return None
def _get_host_run(self, proc):
"""
docker run, just check for --name
If we dont have name (it would be random), give up.
I'd have to parse docker ps / inspect or use the
API which is a bit beyond the scope of this
"""
try:
idxOfName = proc.cmdline().index("--name")
name = proc.cmdline()[idxOfName + 1]
dbg(f"parsed container name: {name}")
return name
except Exception as e:
dbg(f"caught error '{e}'")
return None
def _get_host_exec(self, proc):
"""
get container name from docker exec cmdline
FORMAT: podman exec [options] CONTAINER [COMMAND [ARG...]]
Options:
-d, --detach Run the exec session in detached mode (backgrounded)
--detach-keys string Select the key sequence for detaching a container. Format is a single character [a-Z] or ctrl-<value> where <value> is one of: a-z, @, ^, [, , or _ (default "ctrl-p,ctrl-q")
-e, --env stringArray Set environment variables
--env-file strings Read in a file of environment variables
-i, --interactive Keep STDIN open even if not attached
-l, --latest Act on the latest container podman is aware of
Not supported with the "--remote" flag
--preserve-fds uint Pass N additional file descriptors to the container
--privileged Give the process extended Linux capabilities inside the container. The default is false
-t, --tty Allocate a pseudo-TTY. The default is false
-u, --user string Sets the username or UID used and optionally the groupname or GID for the specified command
-w, --workdir string Working directory inside the container
"""
fullArgs = proc.cmdline()
startIndex = fullArgs.index('exec') + 1
parser = argparse.ArgumentParser()
parser.add_argument("container")
parser.add_argument("command", nargs='?')
parser.add_argument('-d', '--detach', action='store_true')
parser.add_argument('--detach-keys')
parser.add_argument('-e', '--env')
parser.add_argument('--env-file')
parser.add_argument('-i', '--interactive', action='store_true')
parser.add_argument('-l', '--latest', action='store_true')
parser.add_argument('--privileged')
parser.add_argument('--preserve-fds')
parser.add_argument('-t', '--tty', action='store_true')
parser.add_argument('-u', '--user')
parser.add_argument('-w', '--workdir')
args, unknown = parser.parse_known_args(fullArgs[startIndex:])
dbg(f"got args: {args}, unknown: {unknown}")
return args.container
def _get_host_attach(self, proc):
"""
get container name from docker attach
FORMAT: podman attach [options] container
OPTIONS
--detach-keys=sequence
Specify the key sequence for detaching a container. Format is a single character [a-Z] or one or more ctrl-<value> characters where <value> is one of: a-z, @, ^, [, , or _.
Specifying "" disables this feature. The default is ctrl-p,ctrl-q.
This option can also be set in containers.conf(5) file.
--latest, -l
Instead of providing the container name or ID, use the last created container. Note: the last started container can be from other users of Podman on the host machine.
(This option is not available with the remote Podman client, including Mac and Windows (excluding WSL2) machines)
--no-stdin
Do not attach STDIN. The default is false.
--sig-proxy
Proxy received signals to the container process (non-TTY mode only). SIGCHLD, SIGSTOP, and SIGKILL are not proxied.
The default is true.
"""
fullArgs = proc.cmdline()
startIndex = fullArgs.index('attach') + 1
parser = argparse.ArgumentParser()
parser.add_argument("container")
parser.add_argument('--detach-keys')
parser.add_argument('-l', '--latest', action='store_true')
parser.add_argument('--no-stdin', action='store_false')
parser.add_argument('--sig-proxy', action='store_true')
args, unknown = parser.parse_known_args(fullArgs[startIndex:])
dbg(f"got args: {args}, unknown: {unknown}")
return args.container
class RemoteProcWatch(object):
"""
cache current remote sessions
"""
def __init__(self, session_types, poll_rate=1.0) -> None:
""" constructor """
self.remote_session_types = session_types
self.poll_rate = poll_rate
self.watches = dict() # pid -> None or (psutil.Process, RemoteSession)
self.quit = False
self.loop = asyncio.new_event_loop()
self.thread = threading.Thread(target=self._external_thread, daemon=True)
def _has_remote_session(self, pid):
""" check if this PID has a direct child with remote session """
children = psutil.Process(pid).children(recursive=True)
dbg(f"terminal PID {pid} has children: {children}")
for child in children:
with child.oneshot():
for remote_session in self.remote_session_types:
if remote_session.IsType(child):
return (child, remote_session)
return None
def Register(self, pid):
""" watch PID for children """
if pid in self.watches:
return
dbg(f"adding new pid {pid}")
self.watches[pid] = None
# start poll thread if not yet started
if not self.thread.is_alive():
self.thread.start()
def GetPIDProcInfo(self, pid):
""" get current remote proc info """
if pid not in self.watches:
return None
return self.watches[pid]
async def _poll(self):
""" check psutil proc info """
while not self.quit:
for procPid in list(self.watches.keys()):
try:
ret = self._has_remote_session(procPid)
self.watches[procPid] = ret
except psutil.NoSuchProcess as e:
dbg(f"removing proc: {procPid}")
# pid has gone away
del self.watches[procPid]
except Exception as e:
dbg(f"caught generic exception: {e}")
if len(self.watches) == 0:
dbg(f"no watches, leaving!")
self.quit = True
break
await asyncio.sleep(self.poll_rate)
async def _async_main(self):
""" async stuff """
task = self.loop.create_task(self._poll())
await task
def _external_thread(self):
""" external event loop """
self.loop.run_until_complete(self._async_main())
self.loop.close()
class Remote(MenuItem):
"""
Add remote commands to the terminal menu
"""
capabilities = ['terminal_menu']
remote_session_types = [
SSHSession(),
ContainerSession('docker'),
ContainerSession('podman')
]
# global plugin config
config = None
# I hate using regex, got this from ChatGPT 3.5
# This should try to match a sane linux file path that can
# have alphanumeric characters, ~, underscores, hyphens, and dots
cwd_regex = re.compile(
r'(\/(?:[\w.-]+\/)*[\w.-]+|\~(?:\/[\w.-]+)*)+(?:\.\w+)?'
)
def __init__(self):
""" constructor """
MenuItem.__init__(self)
if not Remote.config:
Remote.config = Remote.get_config()
dbg(f"using config: {self.config}")
self.terminator = Terminator()
# current terminal instance data
# from context menu
self.peers = set()
self.remote_proc = None
self.remote_type = None
self.remote_cwd = None
# current terminals with a remote session found via polling
self.currRemoteTerminals = dict() # terminal -> last profile
# timer callbacks
self.timeout_id = None
self.watch_id = GLib.timeout_add(
1.0 * 1000,
self._update_watches,
None
)
# Proc watch poller
self.remote_proc_watch = RemoteProcWatch(self.remote_session_types)
def _isNewlySpawned(self, pid):
proc = psutil.Process(pid)
return abs(time.time() - proc.create_time()) < 3
def _update_watches(self, _):
"""
Watch for new terminals in background
"""
for terminal in self.terminator.terminals:
self.remote_proc_watch.Register(terminal.pid)
ret = self.remote_proc_watch.GetPIDProcInfo(terminal.pid)
if ret:
child, remoteType = ret
if terminal not in self.currRemoteTerminals:
self._apply_host_settings(
terminal=terminal,
proc=child,
proc_type=remoteType
)
else:
if terminal in self.currRemoteTerminals and not self._isNewlySpawned(terminal.pid):
dbg(f"restoring original profile: {self.currRemoteTerminals[terminal]}")
terminal.set_profile(None, profile=self.currRemoteTerminals[terminal])
self.currRemoteTerminals.pop(terminal)
return True
@classmethod
def get_config(cls):
""" return configuration dict, ensure we have proper keys """
config = {
'ssh_default_profile': "",
'container_default_profile': "",
'auto_clone': "False",
'infer_cwd': "True"
}
user_config = Config().plugin_get_config(cls.__name__)
dbg(f"read user config: {user_config}")
if user_config:
config.update(user_config)
def get_as_bool(config, key):
try:
config[key] = config[key].lower() == 'true'
except Exception as e:
err(f"problem parsing {key} as bool: {e}")
config[key] = False
get_as_bool(config, 'auto_clone')
get_as_bool(config, 'infer_cwd')
return config
def _get_cwd_from_lines(self, terminal, N=3):
"""
get last N lines in terminal and try to infer the CWD
by finding the last sane linux file path. This assumes there
is a PS1 which outputs the working directory
"""
vte = terminal.get_vte()
currCol, currRow = vte.get_cursor_position()
lines = vte_get_text(
vte_term=vte,
start_row=max(0, currRow - N),
start_col=0,
end_row=currRow,
end_col=currCol
)
if lines:
matches = list(self.cwd_regex.finditer(lines))
if matches:
lastMatch = matches[-1]
dbg(f"Inferred remote cwd: {lastMatch.group()}")
return lastMatch.group()
dbg(f"cant find remote cwd in '{lines}'")
return None
def callback(self, menuitems, menu, terminal):
""" Add our menu items to the menu """
ret = self.remote_proc_watch._has_remote_session(terminal.pid)
if not ret:
return
child, remote_session = ret
dbg(f"Found remote session {child}")
def get_image_menuitem(title, horiz):
item = Gtk.ImageMenuItem.new_with_mnemonic(title)
image = Gtk.Image()
image.set_from_icon_name(
"{}_{}".format(APP_NAME, "horiz" if horiz else "vert"),
Gtk.IconSize.MENU
)
item.set_image(image)
if hasattr(item, 'set_always_show_image'):
item.set_always_show_image(True)
return item
# if we have split-auto signal
if APP_VERSION >= '2.1.3':
item = Gtk.MenuItem.new_with_mnemonic(_('Clone Auto'))
item.connect(
'activate',
self._menu_item_activated,
('split-auto', terminal)
)
menuitems.append(item)
# normal split buttons
item = get_image_menuitem(_('Clone Horizontally'), horiz=True)
item.connect(
'activate',
self._menu_item_activated,
('split-horiz', terminal)
)
menuitems.append(item)
item = get_image_menuitem(_('Clone Vertically'), horiz=False)
item.connect(
'activate',
self._menu_item_activated,
('split-vert', terminal)
)
menuitems.append(item)
# add option to clone on split
item = Gtk.CheckMenuItem(_('Clone On Split'))
item.set_active(self.config['auto_clone'])
item.connect(
'toggled',
self._on_clone_on_split,
None
)
menuitems.append(item)
# find the split items and add our clone handlers when they finish
if self.config['auto_clone']:
self.peers = self._get_all_terminals()
for child in menu.get_children():
if 'Split' in child.get_label():
dbg(f"handling split on menu item '{child.get_label()}'")
child.connect_after(
'activate', self._split_axis, terminal
)
def _on_clone_on_split(self, widget, data):
""" handle check text box """
self.config['auto_clone'] = widget.get_active()
def _poll_new_terminals(self, start_time):
"""
Watch for new terminals
TODO: I'd rather have a signal for when the new terminal is spawned
"""
currPeers = self._get_all_terminals()
if len(currPeers) != len(self.peers):
# parent container changed, get the added child
newPeers = [ x for x in currPeers if x not in self.peers ]
if not len(newPeers):
err("container removed children?!")
return False
dbg(f"Container has new children: {newPeers}")
if len(newPeers) != 1:
err("container has more than one child?!")
newTermUUID = newPeers[0]
newTerminal = self.terminator.find_terminal_by_uuid(newTermUUID.urn)
self._spawn_remote_session(newTerminal)
self.timeout_id = None
self.newPeers = None
return False
# check if we have been polling too long
if abs(time.time() - start_time) > 0.1:
err("timeout polling for terminals")
self.timeout_id = None
self.newPeers = None
return False
dbg("polling for new terminals...")
return True
def _get_all_terminals(self):
""" get all unique terminal instances """
peers = set()
try:
peers = { x.uuid for x in self.terminator.terminals }
except Exception as e:
err(f"caught exception getting terminals: {e}")
return peers
def _spawn_remote_session(self, terminal):
""" spawn user session into terminal """
remote_cmd = self.remote_type.Clone(self.remote_proc)
spawn_cmd = " ".join(remote_cmd) # get as full string, not list of strings
cmd = f"{spawn_cmd}{os.linesep}" # make sure we press "enter"
if self.remote_cwd:
cmd += f"cd {self.remote_cwd}{os.linesep}"
dbg(f"will launch '{cmd}' into new terminal")
vte = terminal.get_vte()
vte.feed_child(cmd.encode())
self._apply_host_settings(terminal)
def _get_default_profile(self, remote_type):
"""
get default profile from config
maybe more useful in the future...
"""
if isinstance(remote_type, SSHSession):
return self.config['ssh_default_profile']
if isinstance(remote_type, ContainerSession):
return self.config['container_default_profile']
return ''
def _apply_host_settings(self, terminal, proc=None, proc_type=None):
""" setup terminal if host is in config """
remote_proc = self.remote_proc if proc is None else proc
remote_type = self.remote_type if proc_type is None else proc_type
profile = self._get_default_profile(remote_type)
if not profile:
dbg("no default profile specified in config")
# check host entry in config
remoteHost = remote_type.GetHost(remote_proc)
if not remoteHost:
dbg(f"cannot determine host for proc {remote_proc}")
elif remoteHost not in self.config:
dbg(f"no host entry for {remoteHost}")
else:
hostSettings = self.config[remoteHost]
if 'profile' in hostSettings:
profile = hostSettings['profile']
else:
dbg(f"no profile entry for {remoteHost}")
if not profile:
dbg("cant find a profile in config")
return
if terminal.get_profile() != profile:
dbg(f"applying profile: {profile}")
self.currRemoteTerminals[terminal] = terminal.get_profile()
terminal.set_profile(None, profile=profile)
def _split_axis(self, widget, terminal):
""" handle upstream split command, called AFTER default handler """
dbg(f"handling split on terminal {terminal}!")
# make sure original terminal still has remote session
ret = self.remote_proc_watch._has_remote_session(terminal.pid)
if not ret:
err("lost remote session seen on context menu?")
return
self.remote_proc, self.remote_type = ret
if self.config['infer_cwd']:
self.remote_cwd = self._get_cwd_from_lines(terminal)
self._apply_host_settings(terminal)
# original split command should have finished due to our
# connect_after. Try to find the new terminal since we
# last activated the context menu.
currPeers = self._get_all_terminals()
if len(currPeers) != len(self.peers):
# parent container changed, get the added child
newPeers = [ x for x in currPeers if x not in self.peers ]
if not len(newPeers):
err("container removed children?!")
return False
dbg(f"Container has new children: {newPeers}")
if len(newPeers) != 1:
err("container has more than one child?!")
newTermUUID = newPeers[0]
newTerminal = self.terminator.find_terminal_by_uuid(newTermUUID.urn)
self._spawn_remote_session(newTerminal)
else:
err("cant figure out the new terminal?")
def _menu_item_activated(self, _, args):
"""
clone callback, args: ( signal, terminal )
"""
signal, terminal = args
ret = self.remote_proc_watch._has_remote_session(terminal.pid)
if not ret:
err("lost remote session seen on context menu?")
return
child, remoteType = ret
if not self.timeout_id: # check if we are already waiting
self.remote_proc = child
self.remote_type = remoteType
if self.config['infer_cwd']:
self.remote_cwd = self._get_cwd_from_lines(terminal)
# get list of current terminals, we will watch for a new one
self.peers = self._get_all_terminals()
dbg("First peer list: {}".format(self.peers))
# launch idle callback to poll for new terminals
self.timeout_id = GLib.idle_add(
self._poll_new_terminals,
time.time()
)
self._apply_host_settings(terminal)
# launch new terminal
terminal.emit(signal, terminal.get_cwd())
else:
err("already waiting for a terminal?")
|