neo-blessed/lib/tput.js

1295 lines
28 KiB
JavaScript
Raw Normal View History

2013-02-08 13:43:45 +00:00
/**
* Tput for node.js
* Copyright (c) 2013, Christopher Jeffrey (MIT License)
* https://github.com/chjj/blessed
*/
// Resources:
// $ man term
// $ man terminfo
// http://invisible-island.net/ncurses/man/term.5.html
// https://en.wikipedia.org/wiki/Terminfo
/**
* Modules
*/
var assert = require('assert')
, fs = require('fs');
/**
* Tput
*/
function Tput(term) {
2013-02-15 17:42:52 +00:00
if (!(this instanceof Tput)) {
return new Tput(term);
}
2013-02-08 13:43:45 +00:00
this.term = term;
this.data = null;
this.info = {};
}
Tput.prototype.readTermInfo = function() {
if (this.data) return;
var file = '/usr/share/terminfo/'
+ this.term[0]
+ '/'
+ this.term;
this.data = fs.readFileSync(file);
this.info = this.parseTermInfo(this.data);
return this.info;
};
Tput.prototype.parseTermInfo = function(data) {
var info = {}
, l = data.length
, i = 0;
var h = info.header = {
dataSize: data.length,
headerSize: 12,
magicNumber: (data[1] << 8) | data[0],
namesSize: (data[3] << 8) | data[2],
boolCount: (data[5] << 8) | data[4],
numCount: (data[7] << 8) | data[6],
strCount: (data[9] << 8) | data[8],
strTableSize: (data[11] << 8) | data[10]
};
h.total = h.headerSize
+ h.namesSize
+ h.boolCount
+ h.numCount * 2
+ h.strCount * 2
+ h.strTableSize;
i = h.headerSize;
// Names Section
var names = data.toString('ascii', i, i + h.namesSize - 1)
, parts = names.split('|')
, name = parts[0]
, desc = parts.slice(1).join('|');
info.name = name;
info.desc = desc;
i += h.namesSize - 1;
// Names is nul-terminated.
assert.equal(data[i], 0);
i++;
// Booleans Section
// One byte for each flag
// Same order as <term.h>
info.bools = {};
l = i + h.boolCount;
var o = 0, b;
for (; i < l; i++) {
b = Tput.bools[o++] || 'OFFSET: ' + (o - 1);
info.bools[b] = !!data[i];
}
// Null byte in between to make sure numbers begin on an even byte.
if (i % 2) {
assert.equal(data[i], 0);
i++;
}
// Numbers Section
info.numbers = {};
l = i + h.numCount * 2;
var o = 0, n;
for (; i < l; i += 2) {
n = Tput.numbers[o++] || 'OFFSET: ' + (o - 1);
if (data[i + 1] === 0377 && data[i] === 0377) {
info.numbers[n] = -1;
} else {
info.numbers[n] = (data[i + 1] << 8) | data[i];
}
}
// Strings Section
info.strings = {};
l = i + h.strCount * 2;
var o = 0, s;
for (; i < l; i += 2) {
s = Tput.strings[o++] || 'OFFSET: ' + (o - 1);
if (data[i + 1] === 0377 && data[i] === 0377) {
info.strings[s] = -1;
} else {
info.strings[s] = (data[i + 1] << 8) | data[i];
}
}
// String Table
Object.keys(info.strings).forEach(function(key) {
if (info.strings[key] === -1) {
delete info.strings[key];
return;
}
var s = i + info.strings[key]
, j = s;
while (data[j]) j++;
if (s >= data.length || j > data.length) {
delete info.strings[key];
return;
}
info.strings[key] = data.toString('ascii', s, j);
});
2013-02-15 17:42:52 +00:00
// Extended Header
if (this.extended) {
i += h.strTableSize + 1; // offset?
l = data.length;
if (i < l) {
info.extended = this.parseExtended(data.slice(i));
Object.keys(info.extended).forEach(function(key) {
info[key].extended = info.extended[key];
});
delete info.extended;
}
2013-02-08 13:43:45 +00:00
}
return info;
};
Tput.prototype.parseExtended = function(data) {
var info = {}
, l = data.length
, i = 0;
var h = info.header = {
dataSize: data.length,
headerSize: 10,
boolCount: (data[i + 1] << 8) | data[i + 0],
numCount: (data[i + 3] << 8) | data[i + 2],
strCount: (data[i + 5] << 8) | data[i + 4],
strTableSize: (data[i + 7] << 8) | data[i + 6],
lastStrTableOffset: (data[i + 9] << 8) | data[i + 8]
};
h.total = h.headerSize
+ h.boolCount
+ h.numCount * 2
+ h.strCount * 2
+ h.strTableSize;
i = h.headerSize;
// Booleans Section
// One byte for each flag
// Same order as <term.h>
info.bools = {};
l = i + h.boolCount;
var o = 36 + 1, b;
for (; i < l; i++) {
b = Tput.bools[o++] || 'OFFSET: ' + (o - 1);
info.bools[b] = !!data[i];
}
// Null byte in between to make sure numbers begin on an even byte.
if (i % 2) {
assert.equal(data[i], 0);
i++;
}
// Numbers Section
info.numbers = {};
l = i + h.numCount * 2;
var o = 32 + 1, n;
for (; i < l; i += 2) {
n = Tput.numbers[o++] || 'OFFSET: ' + (o - 1);
if (data[i + 1] === 0377 && data[i] === 0377) {
info.numbers[n] = -1;
} else {
info.numbers[n] = (data[i + 1] << 8) | data[i];
}
}
// Strings Section
info.strings = {};
l = i + h.strCount * 2;
var o = 393 + 1, s;
for (; i < l; i += 2) {
s = Tput.strings[o++] || 'OFFSET: ' + (o - 1);
if (data[i + 1] === 0377 && data[i] === 0377) {
info.strings[s] = -1;
} else {
info.strings[s] = (data[i + 1] << 8) | data[i];
}
}
// String Table
Object.keys(info.strings).forEach(function(key) {
if (info.strings[key] === -1) {
delete info.strings[key];
return;
}
var s = i + info.strings[key]
, j = s;
while (data[j]) j++;
if (s >= data.length || j > data.length) {
delete info.strings[key];
return;
}
info.strings[key] = data.toString('ascii', s, j);
});
return info;
};
2013-02-16 21:11:05 +00:00
Tput.prototype.compile = function(key) {
var self = this
, info = this.info;
this.methods = {};
this.info.all = {};
Object.keys(info.bools).forEach(function(key) {
2013-02-17 19:25:58 +00:00
info.all[key] = info.bools[key];
2013-02-16 21:11:05 +00:00
});
Object.keys(info.numbers).forEach(function(key) {
2013-02-17 19:25:58 +00:00
info.all[key] = info.numbers[key];
2013-02-16 21:11:05 +00:00
});
2013-02-08 13:43:45 +00:00
2013-02-16 21:11:05 +00:00
Object.keys(info.strings).forEach(function(key) {
2013-02-17 19:25:58 +00:00
info.all[key] = info.strings[key];
2013-02-16 21:11:05 +00:00
});
Object.keys(info.all).forEach(function(key) {
2013-02-17 20:46:01 +00:00
console.log('Compiling ' + key + ': ' + JSON.stringify(info.all[key]));
2013-02-16 21:11:05 +00:00
self.methods[key] = self._compile(info.all[key]);
});
};
Tput.prototype._compile = function(val) {
var self = this;
2013-02-08 13:43:45 +00:00
switch (typeof val) {
case 'boolean':
2013-02-16 21:11:05 +00:00
return function() {
return val ? 'true' : 'false';
};
2013-02-08 13:43:45 +00:00
case 'number':
2013-02-16 21:11:05 +00:00
return function() {
return val === -1 ? null : val;
};
2013-02-08 13:43:45 +00:00
case 'string':
2013-02-16 21:11:05 +00:00
break;
default:
return function() {};
}
// e.g.
// set_attributes: '%?%p9%t\u001b(0%e\u001b(B%;\u001b[0%?%p6%t;1%;%?%p2%t;4%;%?%p1%p3%|%t;7%;%?%p4%t;5%;%?%p7%t;8%;m',
// cursor_address: '\u001b[%i%p1%d;%p2%dH',
// column_address: '\u001b[%i%p1%dG',
// change_scroll_region: '\u001b[%i%p1%d;%p2%dr',
// CSI Ps ; Ps r
// CSI ? Pm r
2013-02-16 23:54:20 +00:00
//var code = 'var dyn = {}, stat = {}, stack = [], out = []; out.push("';
2013-02-17 22:40:45 +00:00
var ch, op, i, v, cap;
2013-02-16 23:54:20 +00:00
var code = 'var v, dyn = {}, stat = {}, stack = [], out = []; function o(a){out.push(a);return a}'
, buff = '';
2013-02-16 21:11:05 +00:00
// man terminfo, around line 940
2013-02-16 23:54:20 +00:00
function b() {
if (buff) {
code += 'o("';
code += buff.replace(/([\r\n"])/g, '\\$1');
2013-02-17 19:25:58 +00:00
code += '"),';
2013-02-16 23:54:20 +00:00
buff = '';
}
}
2013-02-17 22:40:45 +00:00
function exec(regex) {
cap = regex.exec(val);
if (!cap) return;
val = val.substring(cap[0].length);
ch = op = i = v = cap[1];
b();
return cap;
}
2013-02-17 20:46:01 +00:00
2013-02-17 22:40:45 +00:00
while (val) {
2013-02-16 21:11:05 +00:00
// '\e' -> ^[
2013-02-17 22:40:45 +00:00
if (exec(/^\\e/gi)) {
2013-02-16 23:54:20 +00:00
code += 'o("';
2013-02-17 20:46:01 +00:00
code += '\\x1b';
2013-02-17 19:25:58 +00:00
code += '"),';
2013-02-16 21:11:05 +00:00
continue;
}
// '^A' -> ^A
2013-02-17 22:40:45 +00:00
if (exec(/^\^(.)/gi)) { // case-insensitive?
2013-02-16 23:54:20 +00:00
code += 'o("';
2013-02-16 21:11:05 +00:00
switch (ch) {
case '@':
2013-02-17 20:46:01 +00:00
code += '\\x00';
2013-02-16 21:11:05 +00:00
break;
case 'A':
2013-02-17 20:46:01 +00:00
code += '\\x01';
2013-02-16 21:11:05 +00:00
break;
case 'B':
2013-02-17 20:46:01 +00:00
code += '\\x02';
2013-02-16 21:11:05 +00:00
break;
case 'C':
2013-02-17 20:46:01 +00:00
code += '\\x03';
2013-02-16 21:11:05 +00:00
break;
case 'D':
2013-02-17 20:46:01 +00:00
code += '\\x04';
2013-02-16 21:11:05 +00:00
break;
case 'E':
2013-02-17 20:46:01 +00:00
code += '\\x05';
2013-02-16 21:11:05 +00:00
break;
case 'F':
2013-02-17 20:46:01 +00:00
code += '\\x06';
2013-02-16 21:11:05 +00:00
break;
case 'G':
2013-02-17 20:46:01 +00:00
code += '\\x07';
2013-02-16 21:11:05 +00:00
break;
case 'H':
2013-02-17 20:46:01 +00:00
code += '\\x08';
2013-02-16 21:11:05 +00:00
break;
case 'I':
2013-02-17 20:46:01 +00:00
code += '\\x09'; // \t
2013-02-16 21:11:05 +00:00
break;
case 'J':
2013-02-17 20:46:01 +00:00
code += '\\x0a'; // \n
2013-02-16 21:11:05 +00:00
break;
case 'K':
2013-02-17 20:46:01 +00:00
code += '\\x0b';
2013-02-16 21:11:05 +00:00
break;
case 'L':
2013-02-17 20:46:01 +00:00
code += '\\x0c';
2013-02-16 21:11:05 +00:00
break;
case 'M':
2013-02-17 20:46:01 +00:00
code += '\\x0d';
2013-02-16 21:11:05 +00:00
break;
case 'N':
2013-02-17 20:46:01 +00:00
code += '\\x0e';
2013-02-16 21:11:05 +00:00
break;
case 'O':
2013-02-17 20:46:01 +00:00
code += '\\x0f';
2013-02-16 21:11:05 +00:00
break;
case 'P':
2013-02-17 20:46:01 +00:00
code += '\\x10';
2013-02-16 21:11:05 +00:00
break;
case 'Q':
2013-02-17 20:46:01 +00:00
code += '\\x11';
2013-02-16 21:11:05 +00:00
break;
case 'R':
2013-02-17 20:46:01 +00:00
code += '\\x12';
2013-02-16 21:11:05 +00:00
break;
case 'S':
2013-02-17 20:46:01 +00:00
code += '\\x13';
2013-02-16 21:11:05 +00:00
break;
case 'T':
2013-02-17 20:46:01 +00:00
code += '\\x14';
2013-02-16 21:11:05 +00:00
break;
case 'U':
2013-02-17 20:46:01 +00:00
code += '\\x15';
2013-02-16 21:11:05 +00:00
break;
case 'V':
2013-02-17 20:46:01 +00:00
code += '\\x16';
2013-02-16 21:11:05 +00:00
break;
case 'W':
2013-02-17 20:46:01 +00:00
code += '\\x17';
2013-02-16 21:11:05 +00:00
break;
case 'X':
2013-02-17 20:46:01 +00:00
code += '\\x18';
2013-02-16 21:11:05 +00:00
break;
case 'Y':
2013-02-17 20:46:01 +00:00
code += '\\x19';
2013-02-16 21:11:05 +00:00
break;
case 'Z':
2013-02-17 20:46:01 +00:00
code += '\\x1a';
2013-02-16 21:11:05 +00:00
break;
case '\\':
2013-02-17 20:46:01 +00:00
code += '\\x1c';
2013-02-16 21:11:05 +00:00
break;
case '^':
2013-02-17 20:46:01 +00:00
code += '\\x1e';
2013-02-16 21:11:05 +00:00
break;
case '_':
2013-02-17 20:46:01 +00:00
code += '\\x1f';
2013-02-16 21:11:05 +00:00
break;
case '[':
2013-02-17 20:46:01 +00:00
code += '\\x1b';
2013-02-16 21:11:05 +00:00
break;
case ']':
2013-02-17 20:46:01 +00:00
code += '\\x1d';
2013-02-16 21:11:05 +00:00
break;
case '?':
2013-02-17 20:46:01 +00:00
code += '\\x7f';
2013-02-16 21:11:05 +00:00
break;
}
2013-02-17 19:25:58 +00:00
code += '"),';
2013-02-16 21:11:05 +00:00
continue;
}
// '\n' -> \n
// '\r' -> \r
// '\0' -> \200 (special case)
2013-02-17 22:40:45 +00:00
if (exec(/^\\([nlrtbfs\^\\,:0])/g)) {
2013-02-16 23:54:20 +00:00
code += 'o("';
2013-02-16 21:11:05 +00:00
switch (ch) {
case 'n':
2013-02-17 20:46:01 +00:00
code += '\\n';
2013-02-16 21:11:05 +00:00
case 'l':
2013-02-17 20:46:01 +00:00
code += '\\l'; // ?
2013-02-16 21:11:05 +00:00
case 'r':
2013-02-17 20:46:01 +00:00
code += '\\r';
2013-02-16 21:11:05 +00:00
case 't':
2013-02-17 20:46:01 +00:00
code += '\\t';
2013-02-16 21:11:05 +00:00
case 'b':
2013-02-17 20:46:01 +00:00
code += '\\x08';
2013-02-16 21:11:05 +00:00
case 'f':
2013-02-17 20:46:01 +00:00
code += '\\x0c';
//case 'v':
// return '\\x0b';
//case 'a':
// return '\\x07':
2013-02-16 21:11:05 +00:00
case 's':
2013-02-17 20:46:01 +00:00
code += '\\s'; // ?
2013-02-16 21:11:05 +00:00
case '\\':
2013-02-17 20:46:01 +00:00
code += '\\\\';
2013-02-16 21:11:05 +00:00
case ',':
2013-02-17 20:46:01 +00:00
code += ',';
2013-02-16 21:11:05 +00:00
case ';':
2013-02-17 20:46:01 +00:00
code += ';';
2013-02-16 21:11:05 +00:00
case '0':
//return '\0';
2013-02-17 20:46:01 +00:00
code += '\\200';
2013-02-15 23:08:36 +00:00
}
2013-02-17 19:25:58 +00:00
code += '"),';
2013-02-16 21:11:05 +00:00
continue;
}
2013-02-16 18:15:10 +00:00
2013-02-16 21:11:05 +00:00
// 3 octal digits -> character
2013-02-17 22:40:45 +00:00
if (exec(/^\\(\d\d\d)/g)) {
2013-02-16 23:54:20 +00:00
code += 'o("';
2013-02-17 20:46:01 +00:00
code += '\\' + ch;
//code += String.fromCharCode(parseInt(ch, 8));
2013-02-17 19:25:58 +00:00
code += '"),';
2013-02-16 21:11:05 +00:00
continue;
}
2013-02-16 18:15:10 +00:00
2013-02-16 21:11:05 +00:00
// $<5> -> padding
2013-02-17 22:40:45 +00:00
if (exec(/^\$<(\d+)>(\*|\/)/g)) {
2013-02-16 23:54:20 +00:00
code += 'o("';
2013-02-16 21:11:05 +00:00
code += Array(+ch + 1).join(' '); // "padding" characters?
2013-02-17 19:25:58 +00:00
code += '"),';
2013-02-16 21:11:05 +00:00
continue;
}
// man terminfo, around page 1034
// %% outputs `%'
2013-02-17 22:40:45 +00:00
if (exec(/^%%/g)) {
2013-02-16 23:54:20 +00:00
code += 'o("';
2013-02-16 21:11:05 +00:00
code += '%';
2013-02-17 19:25:58 +00:00
code += '"),';
2013-02-16 21:11:05 +00:00
continue;
}
// %[[:]flags][width[.precision]][doxXs]
// as in printf, flags are [-+#] and space. Use a `:' to allow the
// next character to be a `-' flag, avoiding interpreting "%-" as an
// operator.
2013-02-17 22:40:45 +00:00
if (exec(/^%(?:(:)?([\-+# ]+))(?:(\d+)(\.\d+)?)?([doxXs])?/g)) {
2013-02-16 23:54:20 +00:00
code += 'o("';
2013-02-16 21:11:05 +00:00
code += 'TODO';
2013-02-17 19:25:58 +00:00
code += '"),';
2013-02-16 21:11:05 +00:00
continue;
}
// %c print pop() like %c in printf
2013-02-17 22:40:45 +00:00
if (exec(/^%c/g)) {
2013-02-16 23:54:20 +00:00
code += 'o(';
2013-02-16 21:11:05 +00:00
code += 'stack.pop()'; // TODO: FORMAT
2013-02-17 19:25:58 +00:00
code += '),';
2013-02-16 21:11:05 +00:00
continue;
}
// %d print pop() like %d in printf
// NOT SURE ABOUT %d being print!
2013-02-17 22:40:45 +00:00
if (exec(/^%d/g)) {
2013-02-16 23:54:20 +00:00
code += 'o(';
2013-02-16 21:11:05 +00:00
code += 'stack.pop()'; // TODO: FORMAT
2013-02-17 19:25:58 +00:00
code += '),';
2013-02-16 21:11:05 +00:00
continue;
}
// %s print pop() like %s in printf
2013-02-17 22:40:45 +00:00
if (exec(/^%s/g)) {
2013-02-16 23:54:20 +00:00
code += 'o(';
2013-02-16 21:11:05 +00:00
code += 'stack.pop()'; // TODO: FORMAT
2013-02-17 19:25:58 +00:00
code += '),';
2013-02-16 21:11:05 +00:00
continue;
}
// %p[1-9]
// push i'th parameter
2013-02-17 22:40:45 +00:00
if (exec(/^%p([1-9])/g)) {
2013-02-16 23:54:20 +00:00
//code += 'o(';
2013-02-17 19:25:58 +00:00
//code += 'params[' + (i - 1) + ']';
//code += '(stack.push(v = params[' + (i - 1) + ']), v)';
code += '(stack.push(v = params[' + (i - 1) + ']), v),';
2013-02-16 23:54:20 +00:00
//code += ')';
2013-02-16 21:11:05 +00:00
continue;
}
// %P[a-z]
// set dynamic variable [a-z] to pop()
2013-02-17 22:40:45 +00:00
if (exec(/^%P([a-z])/g)) {
2013-02-17 19:25:58 +00:00
code += 'dyn.' + v + ' = stack.pop(),';
2013-02-16 21:11:05 +00:00
continue;
}
// %g[a-z]
// get dynamic variable [a-z] and push it
2013-02-17 22:40:45 +00:00
if (exec(/^%g([a-z])/g)) {
2013-02-17 19:25:58 +00:00
code += '(stack.push(dyn.' + v + '), dyn.' + v + '),';
2013-02-16 21:11:05 +00:00
continue;
}
// %P[A-Z]
// set static variable [a-z] to pop()
2013-02-17 22:40:45 +00:00
if (exec(/^%P([A-Z])/g)) {
2013-02-17 19:25:58 +00:00
code += 'stat.' + v + ' = stack.pop(),';
2013-02-16 21:11:05 +00:00
continue;
}
// %g[A-Z]
// get static variable [a-z] and push it
// The terms "static" and "dynamic" are misleading. Historically,
// these are simply two different sets of variables, whose values are
// not reset between calls to tparm. However, that fact is not
// documented in other implementations. Relying on it will adversely
// impact portability to other implementations.
2013-02-17 22:40:45 +00:00
if (exec(/^%g([A-Z])/g)) {
2013-02-17 19:25:58 +00:00
code += '(stack.push(v = stat.' + v + '), v),';
2013-02-16 21:11:05 +00:00
continue;
}
// %'c' char constant c
2013-02-17 22:40:45 +00:00
if (exec(/^%'(\w)'/g)) {
2013-02-17 19:25:58 +00:00
code += '(stack.push(v = "' + ch + '", v),';
2013-02-16 21:11:05 +00:00
continue;
}
// %{nn}
// integer constant nn
2013-02-17 22:40:45 +00:00
if (exec(/^%\{(\d+)\}/g)) {
2013-02-17 19:25:58 +00:00
code += '(stack.push(v = ' + ch + '), v),';
2013-02-16 21:11:05 +00:00
continue;
}
// %l push strlen(pop)
2013-02-17 22:40:45 +00:00
if (exec(/^%l/g)) {
2013-02-17 19:25:58 +00:00
code += '(stack.push(v = stack.pop().length), v),';
2013-02-16 21:11:05 +00:00
continue;
}
// %+ %- %* %/ %m
// arithmetic (%m is mod): push(pop() op pop())
// %& %| %^
// bit operations (AND, OR and exclusive-OR): push(pop() op pop())
// %= %> %<
// logical operations: push(pop() op pop())
2013-02-17 22:40:45 +00:00
if (exec(/^%([+\-*\/m&|\^=><])/g)) {
2013-02-16 21:11:05 +00:00
if (op === '=') op = '===';
else if (op === 'm') op = '%';
2013-02-17 19:25:58 +00:00
code += '(stack.push(v = (stack.pop() ' + op + ' stack.pop())), v),';
2013-02-16 21:11:05 +00:00
continue;
}
// %A, %O
// logical AND and OR operations (for conditionals)
2013-02-17 22:40:45 +00:00
if (exec(/^%([AO])/g)) {
2013-02-17 20:46:01 +00:00
if (code[code.length-1] === ',') code = code.slice(0, -1);
2013-02-16 21:11:05 +00:00
code += op === ' A ' ? ' && ' : ' || ';
continue;
}
// %! %~
// unary operations (logical and bit complement): push(op pop())
2013-02-17 22:40:45 +00:00
if (exec(/^%([!~])/g)) {
2013-02-17 19:25:58 +00:00
code += '(stack.push(v = ' + op + 'stack.pop()), v),';
2013-02-16 21:11:05 +00:00
continue;
}
// %i add 1 to first two parameters (for ANSI terminals)
2013-02-17 22:40:45 +00:00
if (exec(/^%i/g)) {
2013-02-17 19:25:58 +00:00
code += '(params[0]++, params[1]++),';
2013-02-16 21:11:05 +00:00
continue;
}
// %? expr %t thenpart %e elsepart %;
// This forms an if-then-else. The %e elsepart is optional. Usually
// the %? expr part pushes a value onto the stack, and %t pops it from
// the stack, testing if it is nonzero (true). If it is zero (false),
// control passes to the %e (else) part.
// It is possible to form else-if's a la Algol 68:
// %? c1 %t b1 %e c2 %t b2 %e c3 %t b3 %e c4 %t b4 %e %;
// where ci are conditions, bi are bodies.
// Use the -f option of tic or infocmp to see the structure of
// if-then-else's. Some strings, e.g., sgr can be very complicated when
// written on one line. The -f option splits the string into lines with
// the parts indented.
2013-02-17 22:40:45 +00:00
if (exec(/^%\?/g)) {
2013-02-16 23:54:20 +00:00
//code += '"); if (';
2013-02-17 19:25:58 +00:00
if (code[code.length-1] === ',') code = code.slice(0, -1);
code += ';if (';
2013-02-16 21:11:05 +00:00
continue;
}
2013-02-17 22:40:45 +00:00
if (exec(/^%t/g)) {
2013-02-16 23:54:20 +00:00
//code += ') { out.push("';
2013-02-17 19:25:58 +00:00
if (code[code.length-1] === ',') code = code.slice(0, -1);
2013-02-16 23:54:20 +00:00
code += ') {';
2013-02-16 21:11:05 +00:00
continue;
}
2013-02-17 22:40:45 +00:00
if (exec(/^%e/g)) {
2013-02-16 23:54:20 +00:00
//code += '"); } else { out.push("';
2013-02-17 19:25:58 +00:00
if (code[code.length-1] === ',') code = code.slice(0, -1);
var end = val.indexOf('%;');
var els = val.indexOf('%e');
var then = val.indexOf('%t');
// does else if's like this: %?[expr]%t...%e[expr]%t...%;
if (then < end && then < els) {
code += '} else if (';
} else {
code += '} else {';
}
2013-02-16 21:11:05 +00:00
continue;
}
2013-02-17 22:40:45 +00:00
if (exec(/^%;/g)) {
2013-02-16 23:54:20 +00:00
//code += '"); } out.push("';
2013-02-17 19:25:58 +00:00
if (code[code.length-1] === ',') code = code.slice(0, -1);
2013-02-16 23:54:20 +00:00
code += '}';
2013-02-16 21:11:05 +00:00
continue;
}
// Binary operations are in postfix form with the operands in the usual
// order. That is, to get x-5 one would use "%gx%{5}%-". %P and %g vari
// ables are persistent across escape-string evaluations.
// Consider the HP2645, which, to get to row 3 and column 12, needs to be
// sent \E&a12c03Y padded for 6 milliseconds. Note that the order of the
// rows and columns is inverted here, and that the row and column are
// printed as two digits. Thus its cup capability is
// “cup=6\E&%p2%2dc%p1%2dY”.
// The Microterm ACT-IV needs the current row and column sent
// preceded by a ^T, with the row and column simply encoded in
// binary, “cup=^T%p1%c%p2%c”. Terminals which use “%c” need to be able
// to backspace the cursor (cub1), and to move the cursor up one line
// on the screen (cuu1). This is necessary because it is not always safe
// to transmit \n ^D and \r, as the system may change or discard them.
// (The library routines dealing with terminfo set tty modes so that tabs
// are never expanded, so \t is safe to send. This turns out to be
// essential for the Ann Arbor 4080.)
// A final example is the LSI ADM-3a, which uses row and column offset
// by a blank character, thus “cup=\E=%p1%' '%+%c%p2%' '%+%c”. After
// sending `\E=', this pushes the first parameter, pushes the ASCII value
// for a space (32), adds them (pushing the sum on the stack in place of
// the two previous values) and outputs that value as a character.
// Then the same is done for the second parameter. More complex
// arithmetic is possible using the stack.
2013-02-16 23:54:20 +00:00
buff += val[0];
2013-02-16 21:11:05 +00:00
val = val.substring(1);
2013-02-08 13:43:45 +00:00
}
2013-02-17 19:25:58 +00:00
b();
if (code[code.length-1] === ',') code = code.slice(0, -1);
//code = code.replace(/(;|})/g, '\n$1\n');
code += ';return out.join("");';
2013-02-08 13:43:45 +00:00
2013-02-16 23:54:20 +00:00
console.log(code.replace(/\x1b/g, '\\x1b'));
try {
return new Function('params', code);
} catch (e) {
2013-02-17 19:25:58 +00:00
//console.log(JSON.stringify(e.stack).replace(/\\n/g, '\n'));
console.log(e.stack.replace(/\x1b/g, '\\x1b'));
2013-02-16 23:54:20 +00:00
}
2013-02-08 13:43:45 +00:00
};
// Return alias if one exists.
Tput.prototype.alias = function(key) {
switch (key) {
case 'no_esc_ctlc': // bool
return 'beehive_glitch';
case 'dest_tabs_magic_smso': // bool
return 'teleray_glitch';
case 'micro_col_size': // num
return 'micro_char_size';
}
};
Tput.prototype.setupAliases = function(info) {
var self = this;
Object.keys(info).forEach(function(name) {
var obj = info[name];
Object.keys(obj).forEach(function(key) {
var alias = self.alias(key);
if (alias) obj[alias] = obj[key];
});
});
};
Tput.prototype.colors = function() {
};
Tput.bools = [
'auto_left_margin',
'auto_right_margin',
'no_esc_ctlc',
'ceol_standout_glitch',
'eat_newline_glitch',
'erase_overstrike',
'generic_type',
'hard_copy',
'has_meta_key',
'has_status_line',
'insert_null_glitch',
'memory_above',
'memory_below',
'move_insert_mode',
'move_standout_mode',
'over_strike',
'status_line_esc_ok',
'dest_tabs_magic_smso',
'tilde_glitch',
'transparent_underline',
'xon_xoff',
'needs_xon_xoff',
'prtr_silent',
'hard_cursor',
'non_rev_rmcup',
'no_pad_char',
'non_dest_scroll_region',
'can_change',
'back_color_erase',
'hue_lightness_saturation',
'col_addr_glitch',
'cr_cancels_micro_mode',
'has_print_wheel',
'row_addr_glitch',
'semi_auto_right_margin',
'cpi_changes_res',
'lpi_changes_res',
// #ifdef __INTERNAL_CAPS_VISIBLE
'backspaces_with_bs',
'crt_no_scrolling',
'no_correctly_working_cr',
'gnu_has_meta_key',
'linefeed_is_newline',
'has_hardware_tabs',
'return_does_clr_eol'
];
Tput.numbers = [
'columns',
'init_tabs',
'lines',
'lines_of_memory',
'magic_cookie_glitch',
'padding_baud_rate',
'virtual_terminal',
'width_status_line',
'num_labels',
'label_height',
'label_width',
'max_attributes',
'maximum_windows',
'max_colors',
'max_pairs',
'no_color_video',
'buffer_capacity',
'dot_vert_spacing',
'dot_horz_spacing',
'max_micro_address',
'max_micro_jump',
'micro_col_size',
'micro_line_size',
'number_of_pins',
'output_res_char',
'output_res_line',
'output_res_horz_inch',
'output_res_vert_inch',
'print_rate',
'wide_char_size',
'buttons',
'bit_image_entwining',
'bit_image_type',
// #ifdef __INTERNAL_CAPS_VISIBLE
'magic_cookie_glitch_ul',
'carriage_return_delay',
'new_line_delay',
'backspace_delay',
'horizontal_tab_delay',
'number_of_function_keys'
];
Tput.strings = [
'back_tab',
'bell',
'carriage_return',
'change_scroll_region',
'clear_all_tabs',
'clear_screen',
'clr_eol',
'clr_eos',
'column_address',
'command_character',
'cursor_address',
'cursor_down',
'cursor_home',
'cursor_invisible',
'cursor_left',
'cursor_mem_address',
'cursor_normal',
'cursor_right',
'cursor_to_ll',
'cursor_up',
'cursor_visible',
'delete_character',
'delete_line',
'dis_status_line',
'down_half_line',
'enter_alt_charset_mode',
'enter_blink_mode',
'enter_bold_mode',
'enter_ca_mode',
'enter_delete_mode',
'enter_dim_mode',
'enter_insert_mode',
'enter_secure_mode',
'enter_protected_mode',
'enter_reverse_mode',
'enter_standout_mode',
'enter_underline_mode',
'erase_chars',
'exit_alt_charset_mode',
'exit_attribute_mode',
'exit_ca_mode',
'exit_delete_mode',
'exit_insert_mode',
'exit_standout_mode',
'exit_underline_mode',
'flash_screen',
'form_feed',
'from_status_line',
'init_1string',
'init_2string',
'init_3string',
'init_file',
'insert_character',
'insert_line',
'insert_padding',
'key_backspace',
'key_catab',
'key_clear',
'key_ctab',
'key_dc',
'key_dl',
'key_down',
'key_eic',
'key_eol',
'key_eos',
'key_f0',
'key_f1',
'key_f10',
'key_f2',
'key_f3',
'key_f4',
'key_f5',
'key_f6',
'key_f7',
'key_f8',
'key_f9',
'key_home',
'key_ic',
'key_il',
'key_left',
'key_ll',
'key_npage',
'key_ppage',
'key_right',
'key_sf',
'key_sr',
'key_stab',
'key_up',
'keypad_local',
'keypad_xmit',
'lab_f0',
'lab_f1',
'lab_f10',
'lab_f2',
'lab_f3',
'lab_f4',
'lab_f5',
'lab_f6',
'lab_f7',
'lab_f8',
'lab_f9',
'meta_off',
'meta_on',
'newline',
'pad_char',
'parm_dch',
'parm_delete_line',
'parm_down_cursor',
'parm_ich',
'parm_index',
'parm_insert_line',
'parm_left_cursor',
'parm_right_cursor',
'parm_rindex',
'parm_up_cursor',
'pkey_key',
'pkey_local',
'pkey_xmit',
'print_screen',
'prtr_off',
'prtr_on',
'repeat_char',
'reset_1string',
'reset_2string',
'reset_3string',
'reset_file',
'restore_cursor',
'row_address',
'save_cursor',
'scroll_forward',
'scroll_reverse',
'set_attributes',
'set_tab',
'set_window',
'tab',
'to_status_line',
'underline_char',
'up_half_line',
'init_prog',
'key_a1',
'key_a3',
'key_b2',
'key_c1',
'key_c3',
'prtr_non',
'char_padding',
'acs_chars',
'plab_norm',
'key_btab',
'enter_xon_mode',
'exit_xon_mode',
'enter_am_mode',
'exit_am_mode',
'xon_character',
'xoff_character',
'ena_acs',
'label_on',
'label_off',
'key_beg',
'key_cancel',
'key_close',
'key_command',
'key_copy',
'key_create',
'key_end',
'key_enter',
'key_exit',
'key_find',
'key_help',
'key_mark',
'key_message',
'key_move',
'key_next',
'key_open',
'key_options',
'key_previous',
'key_print',
'key_redo',
'key_reference',
'key_refresh',
'key_replace',
'key_restart',
'key_resume',
'key_save',
'key_suspend',
'key_undo',
'key_sbeg',
'key_scancel',
'key_scommand',
'key_scopy',
'key_screate',
'key_sdc',
'key_sdl',
'key_select',
'key_send',
'key_seol',
'key_sexit',
'key_sfind',
'key_shelp',
'key_shome',
'key_sic',
'key_sleft',
'key_smessage',
'key_smove',
'key_snext',
'key_soptions',
'key_sprevious',
'key_sprint',
'key_sredo',
'key_sreplace',
'key_sright',
'key_srsume',
'key_ssave',
'key_ssuspend',
'key_sundo',
'req_for_input',
'key_f11',
'key_f12',
'key_f13',
'key_f14',
'key_f15',
'key_f16',
'key_f17',
'key_f18',
'key_f19',
'key_f20',
'key_f21',
'key_f22',
'key_f23',
'key_f24',
'key_f25',
'key_f26',
'key_f27',
'key_f28',
'key_f29',
'key_f30',
'key_f31',
'key_f32',
'key_f33',
'key_f34',
'key_f35',
'key_f36',
'key_f37',
'key_f38',
'key_f39',
'key_f40',
'key_f41',
'key_f42',
'key_f43',
'key_f44',
'key_f45',
'key_f46',
'key_f47',
'key_f48',
'key_f49',
'key_f50',
'key_f51',
'key_f52',
'key_f53',
'key_f54',
'key_f55',
'key_f56',
'key_f57',
'key_f58',
'key_f59',
'key_f60',
'key_f61',
'key_f62',
'key_f63',
'clr_bol',
'clear_margins',
'set_left_margin',
'set_right_margin',
'label_format',
'set_clock',
'display_clock',
'remove_clock',
'create_window',
'goto_window',
'hangup',
'dial_phone',
'quick_dial',
'tone',
'pulse',
'flash_hook',
'fixed_pause',
'wait_tone',
'user0',
'user1',
'user2',
'user3',
'user4',
'user5',
'user6',
'user7',
'user8',
'user9',
'orig_pair',
'orig_colors',
'initialize_color',
'initialize_pair',
'set_color_pair',
'set_foreground',
'set_background',
'change_char_pitch',
'change_line_pitch',
'change_res_horz',
'change_res_vert',
'define_char',
'enter_doublewide_mode',
'enter_draft_quality',
'enter_italics_mode',
'enter_leftward_mode',
'enter_micro_mode',
'enter_near_letter_quality',
'enter_normal_quality',
'enter_shadow_mode',
'enter_subscript_mode',
'enter_superscript_mode',
'enter_upward_mode',
'exit_doublewide_mode',
'exit_italics_mode',
'exit_leftward_mode',
'exit_micro_mode',
'exit_shadow_mode',
'exit_subscript_mode',
'exit_superscript_mode',
'exit_upward_mode',
'micro_column_address',
'micro_down',
'micro_left',
'micro_right',
'micro_row_address',
'micro_up',
'order_of_pins',
'parm_down_micro',
'parm_left_micro',
'parm_right_micro',
'parm_up_micro',
'select_char_set',
'set_bottom_margin',
'set_bottom_margin_parm',
'set_left_margin_parm',
'set_right_margin_parm',
'set_top_margin',
'set_top_margin_parm',
'start_bit_image',
'start_char_set_def',
'stop_bit_image',
'stop_char_set_def',
'subscript_characters',
'superscript_characters',
'these_cause_cr',
'zero_motion',
'char_set_names',
'key_mouse',
'mouse_info',
'req_mouse_pos',
'get_mouse',
'set_a_foreground',
'set_a_background',
'pkey_plab',
'device_type',
'code_set_init',
'set0_des_seq',
'set1_des_seq',
'set2_des_seq',
'set3_des_seq',
'set_lr_margin',
'set_tb_margin',
'bit_image_repeat',
'bit_image_newline',
'bit_image_carriage_return',
'color_names',
'define_bit_image_region',
'end_bit_image_region',
'set_color_band',
'set_page_length',
'display_pc_char',
'enter_pc_charset_mode',
'exit_pc_charset_mode',
'enter_scancode_mode',
'exit_scancode_mode',
'pc_term_options',
'scancode_escape',
'alt_scancode_esc',
'enter_horizontal_hl_mode',
'enter_left_hl_mode',
'enter_low_hl_mode',
'enter_right_hl_mode',
'enter_top_hl_mode',
'enter_vertical_hl_mode',
'set_a_attributes',
'set_pglen_inch',
// #ifdef __INTERNAL_CAPS_VISIBLE
'termcap_init2',
'termcap_reset',
'linefeed_if_not_lf',
'backspace_if_not_bs',
'other_non_function_keys',
'arrow_key_map',
'acs_ulcorner',
'acs_llcorner',
'acs_urcorner',
'acs_lrcorner',
'acs_ltee',
'acs_rtee',
'acs_btee',
'acs_ttee',
'acs_hline',
'acs_vline',
'acs_plus',
'memory_lock',
'memory_unlock',
'box_chars_1'
];
Object.keys(Tput.prototype).forEach(function(key) {
if (key === 'readTermInfo') return;
var method = Tput.prototype[key];
Tput.prototype[key] = function() {
this.readTermInfo();
return method.apply(this, arguments);
};
});
2013-02-15 17:42:52 +00:00
module.exports = Tput;