X-Git-Url: https://git.sesse.net/?p=remoteglot;a=blobdiff_plain;f=www%2Fserve-analysis.js;h=d69c23a7dd2135e43062c710589202319fd432ee;hp=cc1d2dd4303bdf6e0eb9428ec5072ea81c962c42;hb=6f7ddebb2dd0756615d36ae6d11388e67abdfdad;hpb=70bc196b94f2959ea9726f62019e5f0caa696eab diff --git a/www/serve-analysis.js b/www/serve-analysis.js index cc1d2dd..d69c23a 100644 --- a/www/serve-analysis.js +++ b/www/serve-analysis.js @@ -11,13 +11,29 @@ var zlib = require('zlib'); var delta = require('./js/json_delta.js'); // Constants. +var HISTORY_TO_KEEP = 5; +var MINIMUM_VERSION = null; + +// Filename to serve. var json_filename = '/srv/analysis.sesse.net/www/analysis.json'; +if (process.argv.length >= 3) { + json_filename = process.argv[2]; +} + +// TCP port to listen on. +var port = 5000; +if (process.argv.length >= 4) { + port = parseInt(process.argv[3]); +} + +// If set to 1, we are already processing a JSON update and should not +// start a new one. If set to 2, we are _also_ having one in the queue. +var json_lock = 0; // The current contents of the file to hand out, and its last modified time. var json = undefined; // The last five timestamps, and diffs from them to the latest version. -var history_to_keep = 5; var historic_json = []; var diff_json = {}; @@ -50,7 +66,7 @@ var replace_json = function(new_json_contents, mtime) { } if (!json.invalid_base) { historic_json.push(json); - if (historic_json.length > history_to_keep) { + if (historic_json.length > HISTORY_TO_KEEP) { historic_json.shift(); } } @@ -69,6 +85,7 @@ var replace_json = function(new_json_contents, mtime) { new_json.gzip = buffer; json = new_json; diff_json = new_diff_json; + json_lock = 0; // Finally, wake up any sleeping clients. possibly_wakeup_clients(); @@ -88,8 +105,8 @@ var create_json_historic_diff = function(new_json, history_left, new_diff_json, zlib.gzip(diff_text, function(err, buffer) { if (err) throw err; new_diff_json[histobj.last_modified] = { - plain: diff, - text: diff_text, + parsed: diff, + plain: diff_text, gzip: buffer, last_modified: new_json.last_modified, }; @@ -101,6 +118,17 @@ var reread_file = function(event, filename) { if (filename != path.basename(json_filename)) { return; } + if (json_lock >= 2) { + return; + } + if (json_lock == 1) { + // Already processing; wait a bit. + json_lock = 2; + setTimeout(function() { json_lock = 1; reread_file(event, filename); }, 100); + return; + } + json_lock = 1; + console.log("Rereading " + json_filename); fs.open(json_filename, 'r+', function(err, fd) { if (err) throw err; @@ -164,20 +192,25 @@ var send_json = function(response, ims, accept_gzip, num_viewers) { var headers = { 'Content-Type': 'text/json', - 'X-Remoteglot-Last-Modified': this_json.last_modified, - 'X-Remoteglot-Num-Viewers': num_viewers, - 'Access-Control-Expose-Headers': 'X-Remoteglot-Last-Modified, X-Remoteglot-Num-Viewers', - 'Expires': 'Mon, 01 Jan 1970 00:00:00 UTC', + 'X-RGLM': this_json.last_modified, + 'X-RGNV': num_viewers, + 'Access-Control-Expose-Headers': 'X-RGLM, X-RGNV, X-RGMV', 'Vary': 'Accept-Encoding', }; + if (MINIMUM_VERSION) { + headers['X-RGMV'] = MINIMUM_VERSION; + } + if (accept_gzip) { + headers['Content-Length'] = this_json.gzip.length; headers['Content-Encoding'] = 'gzip'; response.writeHead(200, headers); response.write(this_json.gzip); } else { + headers['Content-Length'] = this_json.plain.length; response.writeHead(200, headers); - response.write(this_json.text); + response.write(this_json.plain); } response.end(); } @@ -226,7 +259,7 @@ server.on('request', function(request, response) { var ims = (u.query)['ims']; var unique = (u.query)['unique']; - console.log((new Date).getTime()*1e-3 + " " + request.url); + console.log(((new Date).getTime()*1e-3).toFixed(3) + " " + request.url); if (u.pathname === '/override-num-viewers') { handle_viewer_override(request, u, response); return; @@ -275,4 +308,5 @@ server.on('connection', function(socket) { } }); }); -server.listen(5000); + +server.listen(port);