0
0
mirror of https://github.com/nodejs/node.git synced 2024-11-30 15:30:56 +01:00
nodejs/benchmark/http_simple.js

81 lines
1.8 KiB
JavaScript
Raw Normal View History

2009-11-06 12:53:27 +01:00
path = require("path");
2010-05-05 07:35:55 +02:00
Buffer = require("buffer").Buffer;
2009-11-06 12:53:27 +01:00
port = parseInt(process.env.PORT || 8000);
2010-04-09 19:42:20 +02:00
var old = (process.argv[2] == 'old');
console.log('pid ' + process.pid);
http = require(old ? "http_old" : 'http');
if (old) console.log('old version');
2009-09-28 12:36:36 +02:00
fixed = ""
for (var i = 0; i < 20*1024; i++) {
fixed += "C";
}
2009-11-06 12:53:27 +01:00
stored = {};
2010-05-05 07:35:55 +02:00
storedBuffer = {};
2009-11-06 12:53:27 +01:00
2009-09-28 12:36:36 +02:00
http.createServer(function (req, res) {
var commands = req.url.split("/");
var command = commands[1];
var body = "";
var arg = commands[2];
var status = 200;
if (command == "bytes") {
var n = parseInt(arg, 10)
if (n <= 0)
2010-06-30 08:12:46 +02:00
throw "bytes called with n <= 0"
if (stored[n] === undefined) {
console.log("create stored[n]");
stored[n] = "";
for (var i = 0; i < n; i++) {
stored[n] += "C"
}
}
body = stored[n];
2010-05-05 07:35:55 +02:00
} else if (command == "buffer") {
var n = parseInt(arg, 10)
if (n <= 0) throw new Error("bytes called with n <= 0");
if (storedBuffer[n] === undefined) {
console.log("create storedBuffer[n]");
2010-05-05 07:35:55 +02:00
storedBuffer[n] = new Buffer(n);
for (var i = 0; i < n; i++) {
storedBuffer[n][i] = "C".charCodeAt(0);
}
}
body = storedBuffer[n];
} else if (command == "quit") {
res.connection.server.close();
body = "quitting";
} else if (command == "fixed") {
body = fixed;
} else {
status = 404;
body = "not found\n";
}
var content_length = body.length.toString();
2010-06-30 08:12:46 +02:00
res.writeHead( status
, { "Content-Type": "text/plain"
, "Content-Length": content_length
}
);
if (old) {
res.write(body, 'ascii');
res.close();
} else {
res.end(body, 'ascii');
}
}).listen(port);
console.log('Listening at http://127.0.0.1:'+port+'/');