This commit is contained in:
AJ ONeal 2016-09-22 12:17:45 -06:00
parent 269605e1ba
commit 88be06c872
3 changed files with 163 additions and 151 deletions

View File

@ -34,7 +34,7 @@ var tunneler = net.connect({ port: 5443 , host: 'pokemap.hellabit.com' }, functi
// a place to store data
// file management
// Synergy Teamwork Paradigm = Jabberwocky
var machine = require('./machine.js');
var machine = require('./machine.js').create();
machine.onMessage = function (opts) {
var id = opts.family + ',' + opts.address + ',' + opts.port;
var service = 'https';

View File

@ -1,5 +1,7 @@
'use strict';
module.exports.create = function () {
var machine = {};
machine._version = 1;
machine.state = 0;
@ -59,7 +61,6 @@ machine.fns.header = function (chunk) {
// write these bits, and wait for the next chunk.
if (!machine.buf) {
machine.buf = Buffer.alloc(machine.headerLen);
//console.log('[1a] machine.headerLen:', machine.headerLen);
}
// partLen should be no more than the available size
@ -123,7 +124,7 @@ machine.fns.data = function (chunk) {
return false;
}
if (machine.buf) {
if (machine.bufIndex > 0) {
// the completing remainder of the body is in the current slice
chunk.copy(machine.buf, machine.bufIndex, machine.chunkIndex, machine.chunkIndex + partLen);
}
@ -131,12 +132,13 @@ machine.fns.data = function (chunk) {
// the whole body is in the current slice
machine.buf = chunk.slice(machine.chunkIndex, machine.chunkIndex + partLen);
}
machine.bufIndex += partLen;
machine.onMessage({
family: machine.family
, address: machine.address
, port: machine.port
, data: machine.buf
, data: machine.buf.slice(0, machine.bufIndex)
});
machine.chunkIndex += partLen; // === chunk.length
@ -159,9 +161,6 @@ machine.fns.addChunk = function (chunk) {
}
};
module.exports = machine;
return machine;
process.on('uncaughtException', function (err) {
console.error(err);
debug(Buffer.from([0]));
});
};

View File

@ -1,7 +1,7 @@
'use strict';
var sni = require('sni');
var machine = require('./machine.js');
var machine = require('./machine.js').create();
var hello = require('fs').readFileSync('./sni.hello.bin');
var version = 1;
var header = 'IPv4,127.0.1.1,443,' + hello.byteLength;
@ -12,6 +12,7 @@ var buf = Buffer.concat([
]);
var services = { 'ssh': 22, 'http': 4080, 'https': 8443 };
var clients = {};
var count = 0;
machine.onMessage = function (opts) {
var id = opts.family + ',' + opts.address + ',' + opts.port;
@ -35,24 +36,28 @@ machine.onMessage = function (opts) {
}
console.log("servername: '" + servername + "'");
}
count += 1;
};
console.log('');
// full message in one go
// 223 = 2 + 22 + 199
console.log('');
console.log('[WHOLE BUFFER]', 2, header.length, hello.length, buf.byteLength);
clients = {};
machine.fns.addChunk(buf);
console.log('');
// messages one byte at a time
console.log('');
console.log('[BYTE-BY-BYTE BUFFER]', 1);
clients = {};
buf.forEach(function (byte) {
machine.fns.addChunk(Buffer.from([ byte ]));
});
console.log('');
// split messages in overlapping thirds
@ -63,7 +68,6 @@ buf.forEach(function (byte) {
// 225-247 (22)
// 247-446 (199)
buf = Buffer.concat([ buf, buf ]);
console.log('');
console.log('[OVERLAPPING BUFFERS]', buf.length);
clients = {};
[ buf.slice(0, 7) // version + header
@ -77,3 +81,12 @@ clients = {};
].forEach(function (buf) {
machine.fns.addChunk(Buffer.from(buf));
});
console.log('');
process.on('exit', function () {
if (count !== 4) {
throw new Error("should have delivered 4 messages, not", count);
}
console.log('TESTS PASS');
console.log('');
});