weechat-protocol.js: clean code (indentation/trailing spaces)

This commit is contained in:
Philippe Proulx 2013-10-05 14:24:36 -04:00
parent a7f3412b5d
commit 9bdcb814ab
2 changed files with 163 additions and 149 deletions

View file

@ -324,7 +324,7 @@ weechat.factory('handlers', ['$rootScope', 'colors', 'pluginManager', function($
}]); }]);
weechat.factory('connection', ['$rootScope', '$log', 'handlers', 'colors', function($rootScope, $log, handlers, colors) { weechat.factory('connection', ['$rootScope', '$log', 'handlers', 'colors', function($rootScope, $log, handlers, colors) {
protocol = new Protocol(); protocol = new WeeChatProtocol();
var websocket = null; var websocket = null;

View file

@ -1,10 +1,11 @@
var Protocol = function() { var WeeChatProtocol = function() {
var self = this; var self = this;
var getInfo = function() { var getInfo = function() {
var info = {}; var info = {};
info.key = getString(); info.key = getString();
info.value = getString(); info.value = getString();
return info; return info;
}; };
@ -14,8 +15,6 @@ var Protocol = function() {
var objs = []; var objs = [];
var hpath = getString(); var hpath = getString();
keys = getString().split(','); keys = getString().split(',');
paths = hpath.split('/'); paths = hpath.split('/');
count = getInt(); count = getInt();
@ -23,69 +22,76 @@ var Protocol = function() {
keys = keys.map(function(key) { keys = keys.map(function(key) {
return key.split(':'); return key.split(':');
}); });
var i;
for (i = 0; i < count; i++) { for (var i = 0; i < count; i++) {
var tmp = {}; var tmp = {};
tmp.pointers = paths.map(function(path) { tmp.pointers = paths.map(function(path) {
return getPointer(); return getPointer();
}); });
keys.forEach(function(key) { keys.forEach(function(key) {
tmp[key[0]] = runType(key[1]); tmp[key[0]] = runType(key[1]);
}); });
objs.push(tmp); objs.push(tmp);
}; };
return objs; return objs;
}; };
function getPointer() { function getPointer() {
var l = getChar(); var l = getChar();
var pointer = getSlice(l) var pointer = getSlice(l)
var parsed_data = new Uint8Array(pointer); var parsed_data = new Uint8Array(pointer);
return _uiatos(parsed_data);
return _uiatos(parsed_data);
}; };
var _uiatos =function(uia) { var _uiatos = function(uia) {
var _str = []; var _str = [];
for (var c = 0; c < uia.length; c++) { for (var c = 0; c < uia.length; c++) {
_str[c] = String.fromCharCode(uia[c]); _str[c] = String.fromCharCode(uia[c]);
} }
return decodeURIComponent(escape(_str.join(""))); return decodeURIComponent(escape(_str.join("")));
}; };
var getInt = function() { var getInt = function() {
var parsed_data = new Uint8Array(getSlice(4)); var parsed_data = new Uint8Array(getSlice(4));
var i = ((parsed_data[0] & 0xff) << 24) | ((parsed_data[1] & 0xff) << 16) | ((parsed_data[2] & 0xff) << 8) | (parsed_data[3] & 0xff); var i = ((parsed_data[0] & 0xff) << 24) | ((parsed_data[1] & 0xff) << 16) | ((parsed_data[2] & 0xff) << 8) | (parsed_data[3] & 0xff);
return i;
return i;
}; };
var getChar = function() { var getChar = function() {
var parsed_data = new Uint8Array(getSlice(1)); var parsed_data = new Uint8Array(getSlice(1));
return parsed_data[0]; return parsed_data[0];
}; };
var getString = function() { var getString = function() {
var l = getInt(); var l = getInt();
if (l > 0) { if (l > 0) {
var s = getSlice(l); var s = getSlice(l);
var parsed_data = new Uint8Array(s); var parsed_data = new Uint8Array(s);
return _uiatos(parsed_data); return _uiatos(parsed_data);
} }
return ""; return "";
}; };
var getSlice = function(length) { var getSlice = function(length) {
var slice = self.data.slice(0,length); var slice = self.data.slice(0,length);
self.data = self.data.slice(length); self.data = self.data.slice(length);
return slice; return slice;
}; };
var getType = function() { var getType = function() {
var t = getSlice(3); var t = getSlice(3);
return _uiatos(new Uint8Array(t)); return _uiatos(new Uint8Array(t));
}; };
@ -93,14 +99,16 @@ var Protocol = function() {
if (type in types) { if (type in types) {
return types[type](); return types[type]();
} }
0;
}; };
var getHeader = function() { var getHeader = function() {
var len = getInt();
var comp = getChar();
return { return {
length: getInt(), length: len,
compression: getChar(), compression: comp,
} };
}; };
var getId = function() { var getId = function() {
@ -109,6 +117,7 @@ var Protocol = function() {
var getObject = function() { var getObject = function() {
var type = getType(); var type = getType();
if (type) { if (type) {
return object = { return object = {
type: type, type: type,
@ -119,19 +128,22 @@ var Protocol = function() {
self.parse = function(data) { self.parse = function(data) {
self.setData(data); self.setData(data);
var header = getHeader(); var header = getHeader();
var id = getId(); var id = getId();
var objects = []; var objects = [];
var object = getObject(); var object = getObject();
while(object) { while(object) {
objects.push(object); objects.push(object);
object = getObject(); object = getObject();
} }
return { return {
header: header, header: header,
id: id, id: id,
objects: objects, objects: objects,
} };
} }
self.setData = function (data) { self.setData = function (data) {
@ -146,10 +158,11 @@ var Protocol = function() {
type = getType(); type = getType();
count = getInt(); count = getInt();
values = []; values = [];
var i;
for (i = 0; i < count; i++) { for (var i = 0; i < count; i++) {
values.push(runType(type)); values.push(runType(type));
}; };
return values; return values;
} }
@ -165,16 +178,17 @@ var Protocol = function() {
buf: getString, buf: getString,
arr: array arr: array
}; };
//TODO: IMPLEMENT THIS STUFF //TODO: IMPLEMENT THIS STUFF
// chr: this.getChar, // chr: this.getChar,
// 'int': getInt, // 'int': getInt,
// hacks // hacks
// hacks // hacks
// htb: getHashtable, // htb: getHashtable,
// inf: Protocol.getInfo, // inf: Protocol.getInfo,
// inl: getInfolist, // inl: getInfolist,
// }, // },
} };