2012-05-08 17:38:02 +02:00
|
|
|
var path = require('path'),
|
|
|
|
exec = require('child_process').exec,
|
|
|
|
http = require('http');
|
2009-11-06 12:53:27 +01:00
|
|
|
|
2012-05-08 17:38:02 +02:00
|
|
|
var port = parseInt(process.env.PORT || 8000);
|
2010-05-03 02:26:18 +02:00
|
|
|
|
2012-05-08 17:38:02 +02:00
|
|
|
var fixed = makeString(20 * 1024, 'C'),
|
|
|
|
storedBytes = {},
|
2012-05-08 18:09:04 +02:00
|
|
|
storedBuffer = {},
|
|
|
|
storedUnicode = {};
|
2009-11-06 12:53:27 +01:00
|
|
|
|
2012-04-10 23:59:21 +02:00
|
|
|
var useDomains = process.env.NODE_USE_DOMAINS;
|
|
|
|
|
|
|
|
// set up one global domain.
|
|
|
|
if (useDomains) {
|
|
|
|
var domain = require('domain');
|
|
|
|
var gdom = domain.create();
|
|
|
|
gdom.on('error', function(er) {
|
2013-02-12 08:43:22 +01:00
|
|
|
console.error('Error on global domain', er);
|
2012-04-10 23:59:21 +02:00
|
|
|
throw er;
|
|
|
|
});
|
|
|
|
gdom.enter();
|
|
|
|
}
|
|
|
|
|
2013-02-25 17:30:05 +01:00
|
|
|
var server = module.exports = http.createServer(function (req, res) {
|
2012-04-10 23:59:21 +02:00
|
|
|
if (useDomains) {
|
|
|
|
var dom = domain.create();
|
|
|
|
dom.add(req);
|
|
|
|
dom.add(res);
|
|
|
|
}
|
|
|
|
|
2012-05-08 17:38:02 +02:00
|
|
|
var commands = req.url.split('/');
|
2009-05-15 18:11:49 +02:00
|
|
|
var command = commands[1];
|
2012-05-08 17:38:02 +02:00
|
|
|
var body = '';
|
2009-05-15 18:11:49 +02:00
|
|
|
var arg = commands[2];
|
2011-08-17 22:38:30 +02:00
|
|
|
var n_chunks = parseInt(commands[3], 10);
|
2009-05-15 18:11:49 +02:00
|
|
|
var status = 200;
|
|
|
|
|
2012-05-08 17:38:02 +02:00
|
|
|
if (command == 'bytes') {
|
|
|
|
var n = ~~arg;
|
2009-05-15 18:11:49 +02:00
|
|
|
if (n <= 0)
|
2012-05-08 17:38:02 +02:00
|
|
|
throw new Error('bytes called with n <= 0')
|
|
|
|
if (storedBytes[n] === undefined) {
|
|
|
|
storedBytes[n] = makeString(n, 'C');
|
2009-05-15 18:11:49 +02:00
|
|
|
}
|
2012-05-08 17:38:02 +02:00
|
|
|
body = storedBytes[n];
|
2009-05-15 18:11:49 +02:00
|
|
|
|
2012-05-08 17:38:02 +02:00
|
|
|
} else if (command == 'buffer') {
|
|
|
|
var n = ~~arg;
|
|
|
|
if (n <= 0)
|
|
|
|
throw new Error('buffer called with n <= 0');
|
2010-05-05 07:35:55 +02:00
|
|
|
if (storedBuffer[n] === undefined) {
|
|
|
|
storedBuffer[n] = new Buffer(n);
|
|
|
|
for (var i = 0; i < n; i++) {
|
2012-05-08 17:38:02 +02:00
|
|
|
storedBuffer[n][i] = 'C'.charCodeAt(0);
|
2010-05-05 07:35:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
body = storedBuffer[n];
|
|
|
|
|
2012-05-08 18:09:04 +02:00
|
|
|
} else if (command == 'unicode') {
|
|
|
|
var n = ~~arg;
|
|
|
|
if (n <= 0)
|
|
|
|
throw new Error('unicode called with n <= 0');
|
|
|
|
if (storedUnicode[n] === undefined) {
|
|
|
|
storedUnicode[n] = makeString(n, '\u263A');
|
|
|
|
}
|
|
|
|
body = storedUnicode[n];
|
|
|
|
|
2012-05-08 17:38:02 +02:00
|
|
|
} else if (command == 'quit') {
|
2009-05-18 12:44:01 +02:00
|
|
|
res.connection.server.close();
|
2012-05-08 17:38:02 +02:00
|
|
|
body = 'quitting';
|
2009-05-15 22:41:36 +02:00
|
|
|
|
2012-05-08 17:38:02 +02:00
|
|
|
} else if (command == 'fixed') {
|
2009-05-16 12:49:33 +02:00
|
|
|
body = fixed;
|
2009-05-15 22:41:36 +02:00
|
|
|
|
2012-05-08 17:38:02 +02:00
|
|
|
} else if (command == 'echo') {
|
|
|
|
res.writeHead(200, { 'Content-Type': 'text/plain',
|
|
|
|
'Transfer-Encoding': 'chunked' });
|
2011-12-30 02:03:08 +01:00
|
|
|
req.pipe(res);
|
|
|
|
return;
|
|
|
|
|
2009-05-15 18:11:49 +02:00
|
|
|
} else {
|
|
|
|
status = 404;
|
2012-05-08 17:38:02 +02:00
|
|
|
body = 'not found\n';
|
2009-05-15 18:11:49 +02:00
|
|
|
}
|
|
|
|
|
2011-08-17 22:38:30 +02:00
|
|
|
// example: http://localhost:port/bytes/512/4
|
|
|
|
// sends a 512 byte body in 4 chunks of 128 bytes
|
|
|
|
if (n_chunks > 0) {
|
2012-05-08 17:38:02 +02:00
|
|
|
res.writeHead(status, { 'Content-Type': 'text/plain',
|
|
|
|
'Transfer-Encoding': 'chunked' });
|
2011-08-17 22:38:30 +02:00
|
|
|
// send body in chunks
|
|
|
|
var len = body.length;
|
2012-12-19 14:09:10 +01:00
|
|
|
var step = Math.floor(len / n_chunks) || 1;
|
2011-08-17 22:38:30 +02:00
|
|
|
|
2012-12-19 14:09:10 +01:00
|
|
|
for (var i = 0, n = (n_chunks - 1); i < n; ++i) {
|
|
|
|
res.write(body.slice(i * step, i * step + step));
|
2011-08-17 22:38:30 +02:00
|
|
|
}
|
2012-12-19 14:09:10 +01:00
|
|
|
res.end(body.slice((n_chunks - 1) * step));
|
2011-08-17 20:39:20 +02:00
|
|
|
} else {
|
|
|
|
var content_length = body.length.toString();
|
|
|
|
|
2012-05-08 17:38:02 +02:00
|
|
|
res.writeHead(status, { 'Content-Type': 'text/plain',
|
|
|
|
'Content-Length': content_length });
|
2011-08-17 22:38:30 +02:00
|
|
|
res.end(body);
|
2011-08-17 20:39:20 +02:00
|
|
|
}
|
2010-10-13 23:16:49 +02:00
|
|
|
});
|
|
|
|
|
2012-05-08 17:38:02 +02:00
|
|
|
function makeString(size, c) {
|
|
|
|
var s = '';
|
|
|
|
while (s.length < size) {
|
|
|
|
s += c;
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2010-10-13 23:16:49 +02:00
|
|
|
server.listen(port, function () {
|
2013-02-12 08:43:22 +01:00
|
|
|
if (module === require.main)
|
|
|
|
console.error('Listening at http://127.0.0.1:'+port+'/');
|
2011-10-07 00:02:27 +02:00
|
|
|
});
|