hyper/session.js

113 lines
2.5 KiB
JavaScript
Raw Normal View History

2016-06-30 22:01:04 -08:00
const { EventEmitter } = require('events');
const { exec } = require('child_process');
const defaultShell = require('default-shell');
2016-06-30 22:01:04 -08:00
2016-07-13 13:06:05 -08:00
let spawn;
try {
spawn = require('child_pty').spawn;
} catch (err) {
console.error(
'A native module failed to load. Typically this means ' +
'you installed the modules incorrectly.\n Use `scripts/install.sh` ' +
'to trigger the installation.\n ' +
'More information: https://github.com/zeit/hyperterm/issues/72'
);
}
2016-07-08 13:26:44 -08:00
const TITLE_POLL_INTERVAL = 500;
2016-06-30 22:01:04 -08:00
module.exports = class Session extends EventEmitter {
2016-07-03 12:35:45 -08:00
constructor ({ rows, cols: columns }) {
2016-06-30 22:01:04 -08:00
super();
this.pty = spawn(defaultShell, ['--login'], {
2016-07-03 12:35:45 -08:00
columns,
2016-06-30 22:01:04 -08:00
rows,
cwd: process.env.HOME,
env: Object.assign({}, process.env, {
TERM: 'xterm-256color'
})
});
this.pty.stdout.on('data', (data) => {
this.emit('data', data.toString('utf8'));
});
this.pty.on('exit', () => {
if (!this.ended) {
this.ended = true;
this.emit('exit');
}
});
this.getTitle();
}
focus () {
this.getTitle(true);
}
blur () {
clearTimeout(this.titlePoll);
}
getTitle (subscribe = false) {
if ('win32' === process.platform) return;
let tty = this.pty.stdout.ttyname;
tty = tty.replace(/^\/dev\/tty/, '');
// try to exclude grep from the results
// by grepping for `[s]001` instead of `s001`
tty = `[${tty[0]}]${tty.substr(1)}`;
// TODO: limit the concurrency of how many processes we run?
// TODO: only tested on mac
2016-07-08 13:26:44 -08:00
exec(`ps uxac | grep ${tty} | head -n 1`, (err, out) => {
2016-06-30 22:01:04 -08:00
if (this.ended) return;
if (err) return;
let title = out.split(' ').pop();
if (title) {
title = title.replace(/^\(/, '');
title = title.replace(/\)?\n$/, '');
if (title !== this.lastTitle) {
this.emit('title', title);
this.lastTitle = title;
}
}
if (subscribe) {
this.titlePoll = setTimeout(() => this.getTitle(true), TITLE_POLL_INTERVAL);
}
});
}
exit () {
this.destroy();
}
write (data) {
this.pty.stdin.write(data);
}
resize ({ cols: columns, rows }) {
try {
this.pty.stdout.resize({ columns, rows });
} catch (err) {
2016-06-30 22:25:19 -08:00
console.error(err.stack);
2016-06-30 22:01:04 -08:00
}
}
destroy () {
2016-07-03 12:35:45 -08:00
try {
this.pty.kill('SIGHUP');
} catch (err) {
console.error('exit error', err.stack);
}
2016-06-30 22:01:04 -08:00
this.emit('exit');
this.ended = true;
clearTimeout(this.titlePoll);
}
};