-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTerminal.pm
166 lines (114 loc) · 3.2 KB
/
Terminal.pm
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
package Terminal;
use strict;
use warnings;
use Mojo::Base 'Mojo::EventEmitter';
use IO::Pty;
use IO::Tty::Constant;
use IO::Handle;
use POSIX qw(:sys_wait_h);
use Encode ();
sub new {
my $self = shift->SUPER::new(@_);
$self->{created} = time;
$self->{cmd} ||= '/bin/bash';
$self->{app} ||= sub { };
$self->init;
}
sub init {
my $self = shift;
$self->app->log->debug("Creating IO::Pty");
my $pty = IO::Pty->new;
my $tty_name = $pty->ttyname;
if (not defined $tty_name) {
die "Could not assign a pty";
}
$pty->autoflush;
$self->{pty} = $pty;
return $self;
}
sub start {
my $self = shift;
$self->app->log->debug("Starting a new process");
$self->_spawn_shell;
$self->{handle} = $self->_build_handle;
$self->{spawned} = 1;
return $self;
}
sub resize {
my ($self, $rows, $cols) = @_;
my $winsize = pack('SSSS', $rows, $cols, 0, 0);
ioctl($self->pty->slave, &IO::Tty::Constant::TIOCSWINSZ, $winsize);
return;
}
sub read {
my $self = shift;
my ($chunk) = @_;
$self->app->log->debug("got chunk from fd");
$chunk = Encode::decode('UTF-8', $chunk);
$self->emit('row_changed', $chunk);
}
sub write {
my $self = shift;
$self->{handle}->write(@_);
return $self;
}
sub _build_handle {
my $self = shift;
my $fh = IO::Handle->new_from_fd($self->pty->fileno, 'w+');
my $stream = Mojo::IOLoop::Stream->new($fh)->timeout(0);
$self->{stream_id} = Mojo::IOLoop->stream($stream);
$stream->on(read => sub {
my ($stream, $bytes) = @_;
$self->read($bytes);
});
$stream->on(close => sub {
my $stream = shift;
close $fh;
});
$self->{handle} = $stream;
}
sub _spawn_shell {
my $self = shift;
my $pty = $self->pty;
my $cmd = $self->cmd;
my $pgroup = getpgrp;
die "Can't fork: $!" unless defined(my $pid = fork);
if ($pid) { # Parent
$SIG{CHLD} = sub {
while ((my $child = waitpid(-1, WNOHANG)) > 0) {
$self->app->log->debug("$$: Parent waiting: $child");
$self->emit('close');
}
};
return $pid;
}
$self->app->log->info("Slot running: Child Pid:$$, Parrent Pid:" . getppid);
setpgrp($pid, $pgroup);
my $tty = $pty->slave;
my $tty_name = $tty->ttyname;
$tty->set_raw;
$pty->set_raw;
$pty->make_slave_controlling_terminal;
close($pty);
close(STDIN);
close(STDOUT);
close(STDERR);
open(STDIN, "<&" . $tty->fileno) || die "Couldn't reopen " . $tty_name . " for reading: $!";
open(STDOUT, ">&" . $tty->fileno) || die "Couldn't reopen " . $tty_name . " for writing: $!";
open(STDERR, ">&" . $tty->fileno) || die "Couldn't redirect STDERR: $!";
system 'stty sane';
exec $cmd;
die "Cannot exec '$cmd': $!";
}
sub cleanup {
my $self = shift;
$self->{'pty'} = undef;
Mojo::IOLoop->remove($self->stream_id);
}
sub created { shift->{'created'} }
sub pty { shift->{'pty'} }
sub cmd { shift->{'cmd'} }
sub app { shift->{'app'} }
sub stream_id { shift->{'stream_id'} }
sub is_spawned { shift->{'spawned'} }
1;