335 lines
8.5 KiB
JavaScript
335 lines
8.5 KiB
JavaScript
|
/**
|
||
|
* Originally from: https://github.com/jorgeecardona/ansi-to-html
|
||
|
* Modified by jschorr: Add ability to repeat existing styles and not close them out automatically.
|
||
|
*/
|
||
|
angular.module('ansiToHtml', []).value('ansi2html', (function() {
|
||
|
// Define the styles supported from ANSI.
|
||
|
var STYLES = {
|
||
|
'ef0': 'color:#000',
|
||
|
'ef1': 'color:#A00',
|
||
|
'ef2': 'color:#0A0',
|
||
|
'ef3': 'color:#A50',
|
||
|
'ef4': 'color:#00A',
|
||
|
'ef5': 'color:#A0A',
|
||
|
'ef6': 'color:#0AA',
|
||
|
'ef7': 'color:#AAA',
|
||
|
'ef8': 'color:#555',
|
||
|
'ef9': 'color:#F55',
|
||
|
'ef10': 'color:#5F5',
|
||
|
'ef11': 'color:#FF5',
|
||
|
'ef12': 'color:#55F',
|
||
|
'ef13': 'color:#F5F',
|
||
|
'ef14': 'color:#5FF',
|
||
|
'ef15': 'color:#FFF',
|
||
|
'eb0': 'background-color:#000',
|
||
|
'eb1': 'background-color:#A00',
|
||
|
'eb2': 'background-color:#0A0',
|
||
|
'eb3': 'background-color:#A50',
|
||
|
'eb4': 'background-color:#00A',
|
||
|
'eb5': 'background-color:#A0A',
|
||
|
'eb6': 'background-color:#0AA',
|
||
|
'eb7': 'background-color:#AAA',
|
||
|
'eb8': 'background-color:#555',
|
||
|
'eb9': 'background-color:#F55',
|
||
|
'eb10': 'background-color:#5F5',
|
||
|
'eb11': 'background-color:#FF5',
|
||
|
'eb12': 'background-color:#55F',
|
||
|
'eb13': 'background-color:#F5F',
|
||
|
'eb14': 'background-color:#5FF',
|
||
|
'eb15': 'background-color:#FFF'
|
||
|
};
|
||
|
|
||
|
// Define the default styles.
|
||
|
var DEFAULTS = {
|
||
|
fg: '#FFF',
|
||
|
bg: '#000'
|
||
|
};
|
||
|
|
||
|
var __slice = [].slice;
|
||
|
|
||
|
var toHexString = function(num) {
|
||
|
num = num.toString(16);
|
||
|
while (num.length < 2) {
|
||
|
num = "0" + num;
|
||
|
}
|
||
|
return num;
|
||
|
};
|
||
|
|
||
|
var escapeHtml = function (unsafe) {
|
||
|
return unsafe
|
||
|
.replace(/&/g, "&")
|
||
|
.replace(/</g, "<")
|
||
|
.replace(/>/g, ">")
|
||
|
.replace(/"/g, """)
|
||
|
.replace(/'/g, "'");
|
||
|
};
|
||
|
|
||
|
// Define the derived styles.
|
||
|
[0, 1, 2, 3, 4, 5].forEach(
|
||
|
function(red) {
|
||
|
return [0, 1, 2, 3, 4, 5].forEach(
|
||
|
function(green) {
|
||
|
return [0, 1, 2, 3, 4, 5].forEach(
|
||
|
function(blue) {
|
||
|
var b, c, g, n, r, rgb;
|
||
|
c = 16 + (red * 36) + (green * 6) + blue;
|
||
|
r = red > 0 ? red * 40 + 55 : 0;
|
||
|
g = green > 0 ? green * 40 + 55 : 0;
|
||
|
b = blue > 0 ? blue * 40 + 55 : 0;
|
||
|
rgb = ((function() {
|
||
|
var _i, _len, _ref, _results;
|
||
|
_ref = [r, g, b];
|
||
|
_results = [];
|
||
|
for (_i = 0, _len = _ref.length; _i < _len; _i++) {
|
||
|
n = _ref[_i];
|
||
|
_results.push(toHexString(n));
|
||
|
}
|
||
|
return _results;
|
||
|
})()).join('');
|
||
|
STYLES["ef" + c] = "color:#" + rgb;
|
||
|
return STYLES["eb" + c] = "background-color:#" + rgb;
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
|
||
|
(function() {
|
||
|
_results = [];
|
||
|
for (_i = 0; _i <= 23; _i++){ _results.push(_i); }
|
||
|
return _results;
|
||
|
}).apply(this).forEach(
|
||
|
function(gray) {
|
||
|
var c, l;
|
||
|
c = gray + 232;
|
||
|
l = toHexString(gray * 10 + 8);
|
||
|
STYLES["ef" + c] = "color:#" + l + l + l;
|
||
|
return STYLES["eb" + c] = "background-color:#" + l + l + l;
|
||
|
});
|
||
|
|
||
|
// Define the filter class which will track all the ANSI style state.
|
||
|
function Filter(options) {
|
||
|
this.opts = $.extend(true, DEFAULTS, options || {});
|
||
|
this.input = [];
|
||
|
this.stack = [];
|
||
|
}
|
||
|
|
||
|
Filter.create = function() {
|
||
|
return new Filter();
|
||
|
};
|
||
|
|
||
|
Filter.prototype.toHtml = function(input) {
|
||
|
this.resetStyles();
|
||
|
var html = this.addInputToStream(input) + this.getTeardownHtml();
|
||
|
this.resetStyles();
|
||
|
return html;
|
||
|
};
|
||
|
|
||
|
Filter.prototype.addInputToStream = function(input) {
|
||
|
var buf = [];
|
||
|
|
||
|
this.input = typeof input === 'string' ? [input] : input;
|
||
|
this.forEach(function(chunk) {
|
||
|
return buf.push(chunk);
|
||
|
});
|
||
|
|
||
|
return buf.join('');
|
||
|
};
|
||
|
|
||
|
Filter.prototype.getSetupHtml = function() {
|
||
|
return this.stack.map(function(data) {
|
||
|
return data['html'];
|
||
|
}).join('');
|
||
|
};
|
||
|
|
||
|
Filter.prototype.getTeardownHtml = function() {
|
||
|
var stackCopy = this.stack.slice();
|
||
|
return stackCopy.reverse().map(function(data) {
|
||
|
return "</" + data['kind'] + ">";
|
||
|
}).join('');
|
||
|
};
|
||
|
|
||
|
Filter.prototype.forEach = function(callback) {
|
||
|
var that = this;
|
||
|
var buf = '';
|
||
|
var handleDisplay = function(code) {
|
||
|
code = parseInt(code, 10);
|
||
|
if (code === -1) {
|
||
|
callback('<br/>');
|
||
|
}
|
||
|
if (code === 0) {
|
||
|
callback(that.getTeardownHtml());
|
||
|
that.resetStyles();
|
||
|
}
|
||
|
if (code === 1) {
|
||
|
callback(that.pushTag('b'));
|
||
|
}
|
||
|
if (code === 2) {
|
||
|
|
||
|
}
|
||
|
if ((2 < code && code < 5)) {
|
||
|
callback(that.pushTag('u'));
|
||
|
}
|
||
|
if ((4 < code && code < 7)) {
|
||
|
callback(that.pushTag('blink'));
|
||
|
}
|
||
|
if (code === 7) {
|
||
|
|
||
|
}
|
||
|
if (code === 8) {
|
||
|
callback(that.pushStyle('display:none'));
|
||
|
}
|
||
|
if (code === 9) {
|
||
|
callback(that.pushTag('strike'));
|
||
|
}
|
||
|
if (code === 24) {
|
||
|
callback(that.closeTag('u'));
|
||
|
}
|
||
|
if ((29 < code && code < 38)) {
|
||
|
callback(that.pushStyle("ef" + (code - 30)));
|
||
|
}
|
||
|
if (code === 39) {
|
||
|
callback(that.pushStyle("color:" + that.opts.fg));
|
||
|
}
|
||
|
if ((39 < code && code < 48)) {
|
||
|
callback(that.pushStyle("eb" + (code - 40)));
|
||
|
}
|
||
|
if (code === 49) {
|
||
|
callback(that.pushStyle("background-color:" + that.opts.bg));
|
||
|
}
|
||
|
if ((89 < code && code < 98)) {
|
||
|
callback(that.pushStyle("ef" + (8 + (code - 90))));
|
||
|
}
|
||
|
if ((99 < code && code < 108)) {
|
||
|
return callback(that.pushStyle("eb" + (8 + (code - 100))));
|
||
|
}
|
||
|
};
|
||
|
|
||
|
this.input.forEach(function(chunk) {
|
||
|
buf += chunk;
|
||
|
return that.tokenize(buf, function(tok, data) {
|
||
|
switch (tok) {
|
||
|
case 'text':
|
||
|
return callback(escapeHtml(data));
|
||
|
case 'display':
|
||
|
return handleDisplay(data);
|
||
|
case 'xterm256':
|
||
|
return callback(that.pushStyle("ef" + data));
|
||
|
}
|
||
|
});
|
||
|
});
|
||
|
};
|
||
|
|
||
|
Filter.prototype.pushTag = function(tag, style) {
|
||
|
if (style == null) {
|
||
|
style = '';
|
||
|
}
|
||
|
if (style.length && style.indexOf(':') === -1) {
|
||
|
style = STYLES[style];
|
||
|
}
|
||
|
var html = ["<" + tag, (style ? " style=\"" + style + "\"" : void 0), ">"].join('');
|
||
|
this.stack.push({'html': html, 'kind': tag});
|
||
|
return html;
|
||
|
};
|
||
|
|
||
|
Filter.prototype.pushStyle = function(style) {
|
||
|
return this.pushTag("span", style);
|
||
|
};
|
||
|
|
||
|
Filter.prototype.closeTag = function(style) {
|
||
|
var last;
|
||
|
if (this.stack.slice(-1)[0]['kind'] === style) {
|
||
|
last = this.stack.pop();
|
||
|
}
|
||
|
if (last != null) {
|
||
|
return "</" + style + ">";
|
||
|
}
|
||
|
};
|
||
|
|
||
|
Filter.prototype.resetStyles = function() {
|
||
|
this.stack = [];
|
||
|
};
|
||
|
|
||
|
Filter.prototype.tokenize = function(text, callback) {
|
||
|
var ansiHandler, ansiMatch, ansiMess, handler, i, length, newline, process, realText, remove, removeXterm256, tokens, _j, _len, _results1,
|
||
|
_this = this;
|
||
|
ansiMatch = false;
|
||
|
ansiHandler = 3;
|
||
|
remove = function(m) {
|
||
|
return '';
|
||
|
};
|
||
|
removeXterm256 = function(m, g1) {
|
||
|
callback('xterm256', g1);
|
||
|
return '';
|
||
|
};
|
||
|
newline = function(m) {
|
||
|
if (_this.opts.newline) {
|
||
|
callback('display', -1);
|
||
|
} else {
|
||
|
callback('text', m);
|
||
|
}
|
||
|
return '';
|
||
|
};
|
||
|
ansiMess = function(m, g1) {
|
||
|
var code, _j, _len;
|
||
|
ansiMatch = true;
|
||
|
if (g1.trim().length === 0) {
|
||
|
g1 = '0';
|
||
|
}
|
||
|
g1 = g1.trimRight(';').split(';');
|
||
|
for (_j = 0, _len = g1.length; _j < _len; _j++) {
|
||
|
code = g1[_j];
|
||
|
callback('display', code);
|
||
|
}
|
||
|
return '';
|
||
|
};
|
||
|
realText = function(m) {
|
||
|
callback('text', m);
|
||
|
return '';
|
||
|
};
|
||
|
tokens = [
|
||
|
{
|
||
|
pattern: /^\x08+/,
|
||
|
sub: remove
|
||
|
}, {
|
||
|
pattern: /^\x1b\[38;5;(\d+)m/,
|
||
|
sub: removeXterm256
|
||
|
}, {
|
||
|
pattern: /^\n+/,
|
||
|
sub: newline
|
||
|
}, {
|
||
|
pattern: /^\x1b\[((?:\d{1,3};?)+|)m/,
|
||
|
sub: ansiMess
|
||
|
}, {
|
||
|
pattern: /^\x1b\[?[\d;]{0,3}/,
|
||
|
sub: remove
|
||
|
}, {
|
||
|
pattern: /^([^\x1b\x08\n]+)/,
|
||
|
sub: realText
|
||
|
}
|
||
|
];
|
||
|
process = function(handler, i) {
|
||
|
var matches;
|
||
|
if (i > ansiHandler && ansiMatch) {
|
||
|
return;
|
||
|
} else {
|
||
|
ansiMatch = false;
|
||
|
}
|
||
|
matches = text.match(handler.pattern);
|
||
|
text = text.replace(handler.pattern, handler.sub);
|
||
|
};
|
||
|
_results1 = [];
|
||
|
while ((length = text.length) > 0) {
|
||
|
for (i = _j = 0, _len = tokens.length; _j < _len; i = ++_j) {
|
||
|
handler = tokens[i];
|
||
|
process(handler, i);
|
||
|
}
|
||
|
if (text.length === length) {
|
||
|
break;
|
||
|
} else {
|
||
|
_results1.push(void 0);
|
||
|
}
|
||
|
}
|
||
|
return _results1;
|
||
|
};
|
||
|
|
||
|
return Filter;
|
||
|
})());
|