From 1ef946ea79efb274202c0b4eb513c896d1db305d Mon Sep 17 00:00:00 2001 From: Philipp Borgers Date: Sun, 16 Jan 2011 02:33:19 +0100 Subject: "fixed" timestamp format; added strange flowcontrol for subqueries; introduced heavy code duplication :) => reorganize code --- src/nodejs/no1.js | 97 ++++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 67 insertions(+), 30 deletions(-) (limited to 'src') diff --git a/src/nodejs/no1.js b/src/nodejs/no1.js index a5a33be..6c6809e 100644 --- a/src/nodejs/no1.js +++ b/src/nodejs/no1.js @@ -5,13 +5,29 @@ var builder = require('xmlbuilder') var connectionString = "pg://user:password@host/database"; -function createDateString(date) { - - //2006-09-11T16:28:25+01:00 time format - date = Date(date); - return date.getUTCFullYear() + "-" + date.getUTCDate() + "-" + date.getUTCDate() + "T"; +function toISO8601(date) { + //2007-03-31T00:09:22+01:00 + var pad_two = function(n) { + return (n < 10 ? '0' : '') + n; + }; + var pad_three = function(n) { + return (n < 100 ? '0' : '') + (n < 10 ? '0' : '') + n; + }; + return [ + date.getUTCFullYear(), + '-', + pad_two(date.getUTCMonth() + 1), + '-', + pad_two(date.getUTCDate()), + 'T', + pad_two(date.getUTCHours()), + ':', + pad_two(date.getUTCMinutes()), + ':', + pad_two(date.getUTCSeconds()), + '+01:00' //FIX ME + ].join(''); } - function createWayBboxQuery(key, value, left, bottom, right, top) { return "SELECT id,tstamp,version,changeset_id, nodes, user_id, hstore_to_array(tags) as tags FROM ways WHERE (tags @> hstore('" + key + "','" + value + "') AND linestring && st_setsrid(st_makebox2d(st_setsrid(st_makepoint(" + left + "," + bottom + "),4326), st_setsrid(st_makepoint(" + right + "," + top + "),4326)),4326));"; @@ -54,11 +70,15 @@ function nodeBboxHandler(req, res, key, value, left, bottom, right, top) { }); query.on('end', function() { + //console.log("end event\n"); if(success) { res.write(""); res.end(); } else { + //empty response + res.writeHead(404,{}); + res.end(); //perhaps write 404? is error also raised? } }); @@ -75,17 +95,18 @@ function nodeBboxHandler(req, res, key, value, left, bottom, right, top) { var node = builder.begin('node') .att('id', row.id) - .att('timetamp', row.tstamp) + .att('timetamp', toISO8601(row.tstamp)) .att('version', row.version) .att('changeset', row.changeset_id) .att('lat', row.lat) .att('lon', row.lon); - var temp = row.tags.replace("{","").replace("}","").split(","); - for(var x=0;x"); - res.end(); //problem!!! + if(count == 0) { + res.write(""); + res.end(); + } + //res.write(""); + //res.end(); //problem!!! } else { + res.writeHead(404,{}); res.end(); //perhaps write 404? } @@ -141,40 +168,50 @@ function wayBboxHandler(req, res, key, value, left, bottom, right, top) { } //console.log(row); if(row.nodes != '{}') { - + count++; var subquery = client.query(createNodesForWayQuery(row.nodes)); subquery.on('error',function(err) {}); + subquery.on('end', function() { + count--; + if(count==0) + res.write(""); + res.end(); + }); subquery.on('row', function(row) { console.log(row); var node = builder.begin('node') .att('id', row.id) - .att('timetamp', row.tstamp) + .att('timetamp', toISO8601(row.tstamp)) .att('version', row.version) .att('changeset', row.changeset_id) .att('lat', row.lat) .att('lon', row.lon); - var temp = row.tags.replace("{","").replace("}","").split(","); - for(var x=0;x