-
Notifications
You must be signed in to change notification settings - Fork 46
/
index.js
519 lines (447 loc) · 18.1 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
var url = require('url');
var path = require('path');
var mapnik = require('mapnik');
var fs = require('fs');
var qs = require('querystring');
var sm = new (require('@mapbox/sphericalmercator'))();
var immediate = global.setImmediate || process.nextTick;
var mapnik_pool = require('mapnik-pool');
var Pool = mapnik_pool.Pool;
var os = require('os');
var utils = require('./utils.js');
// Register datasource plugins
mapnik.register_default_input_plugins();
// this will run on require, which means downstream users that are registering plugins
// and include this environment variable will hit this section even if it is not desired
if (process.env.BRIDGE_LOG_MAX_VTILE_BYTES_COMPRESSED) {
var stats = { max:0, total:0, count:0 };
process.on('exit', function() {
stats.avg = stats.total/stats.count;
if (stats.count > 0) {
fs.writeFileSync(os.tmpdir() + '/tilelive-bridge-stats.json', JSON.stringify(stats));
}
});
}
var mapnikPool = mapnik_pool(mapnik);
var ImagePool = function(size) {
return Pool({
create: create,
destroy: destroy,
max: os.cpus().length * 2
});
function create(callback) {
return callback(null,new mapnik.Image(size,size));
}
function destroy(im) {
delete im;
}
}
module.exports = Bridge;
function Bridge(uri, callback) {
this.BRIDGE_MAX_VTILE_BYTES_COMPRESSED = process.env.BRIDGE_MAX_VTILE_BYTES_COMPRESSED ? +process.env.BRIDGE_MAX_VTILE_BYTES_COMPRESSED : 0;
this.BRIDGE_LOG_MAX_VTILE_BYTES_COMPRESSED = process.env.BRIDGE_LOG_MAX_VTILE_BYTES_COMPRESSED ? +process.env.BRIDGE_LOG_MAX_VTILE_BYTES_COMPRESSED : 0;
var source = this;
if (typeof uri === 'string' || (uri.protocol && !uri.xml)) {
uri = typeof uri === 'string' ? url.parse(uri) : uri;
uri.query = typeof uri.query === 'string' ? qs.parse(uri.query) : (uri.query || {});
var filepath = path.resolve(uri.pathname);
fs.readFile(filepath, 'utf8', function(err, xml) {
if (err) {
return callback(err);
}
var opts = Object.keys(uri.query).reduce(function(memo, key) {
memo[key] = !!parseInt(uri.query[key], 10);
return memo;
}, {xml:xml, base:path.dirname(filepath)});
init(opts);
});
return source;
} else {
init(uri);
return source;
}
function init(uri) {
if (!uri.xml) {
return callback && callback(new Error('No xml'));
}
source._uri = uri;
source._base = path.resolve(uri.base || __dirname);
// 'blank' option forces all solid tiles to be interpreted as blank.
source._blank = typeof uri.blank === 'boolean' ? uri.blank : false;
if (callback) source.once('open', callback);
source.update(uri, function(err) {
source.emit('open', err, source);
});
}
}
require('util').inherits(Bridge, require('events').EventEmitter);
Bridge.registerProtocols = function(tilelive) {
tilelive.protocols['bridge:'] = Bridge;
};
// Helper for callers to ensure source is open. This is not built directly
// into the constructor because there is no good auto cache-keying system
// for these tile sources (ie. sharing/caching is best left to the caller).
Bridge.prototype.open = function(callback) {
if (this._map) {
return callback(null, this);
}
this.once('open', callback);
};
// Allows in-place update of XML/backends.
Bridge.prototype.update = function(opts, callback) {
// Unset maxzoom. Will be re-set on first getTile.
this._maxzoom = undefined;
// Unset type. Will be re-set on first getTile.
this._type = undefined;
this._xml = opts.xml;
this._readonly_map = new mapnik.Map(1,1);
var mopts = { strict: false, base: this._base + '/' };
this._readonly_map.fromString(this._xml,mopts,function(err) {
if (err) {
return callback(err);
}
this.close(function() {
this._map = mapnikPool.fromString(this._xml,
{ size: 256, bufferSize: 256 },
mopts);
this._im = ImagePool(512);
return callback();
}.bind(this));
}.bind(this));
};
function poolDrain(pool,callback) {
if (!pool) {
return callback();
}
pool.drain(function() {
pool.destroyAllNow(callback);
});
}
Bridge.prototype.close = function(callback) {
// For currently unknown reasons map objects can currently be acquired
// without being released under certain circumstances. When this occurs
// a source cannot be closed fully during a copy or other operation. For
// now error out in these scenarios as a close timeout.
setTimeout(function() {
if (!callback) return;
console.warn(new Error('Source resource pool drain timed out after 5s'));
callback();
callback = false;
}, 5000);
poolDrain(this._map,function() {
poolDrain(this._im,function() {
if (!callback) return;
callback();
callback = false;
});
}.bind(this));
};
Bridge.prototype.getTile = function(z, x, y, callback) {
if (!this._map) return callback(new Error('Tilesource not loaded'));
var source = this;
source._map.acquire(function(err, map) {
if (err) {
return callback(err);
}
// set source _maxzoom cache to prevent repeat calls to map.parameters
if (source._maxzoom === undefined) {
source._maxzoom = map.parameters.maxzoom ? parseInt(map.parameters.maxzoom, 10) : 14;
}
// set source _type cache to prevent repeat calls to map layers
if (source._type === undefined) {
var layers = map.layers();
if (layers.length && layers.some(function(l) { return l.datasource.type === 'raster' })) {
source._type = 'raster';
} else {
source._type = 'vector';
}
}
if (source._threading_mode === undefined) {
var threading_type = map.parameters.threading_mode;
if (threading_type === 'auto') {
source._threading_mode = mapnik.threadingMode.auto;
} else if (threading_type === 'async') {
source._threading_mode = mapnik.threadingMode.async;
} else {
source._threading_mode = mapnik.threadingMode.deferred;
}
}
if (source._type === 'raster') {
source._im.acquire(function(err, im) {
Bridge.getRaster(source, map, im, z, x, y, function(err,buffer,headers) {
source._im.release(im);
return callback(err,buffer,headers);
});
});
} else {
Bridge.getVector(source, map, z, x, y, callback);
}
});
};
Bridge.getRaster = function(source, map, im, z, x, y, callback) {
map.bufferSize = 0;
map.resize(512,512);
map.extent = sm.bbox(+x,+y,+z, false, '900913');
im.clear();
map.render(im, function(err, image) {
source._map.release(map);
if (err) {
return callback(err);
}
image.isSolid(function(err, solid, pixel) {
if (err) {
return callback(err);
}
// If source is in blank mode any solid tile is empty.
if (solid && source._blank) {
return callback(new Error('Tile does not exist'));
}
var pixel_key = '';
if (solid) {
var a = (pixel>>>24) & 0xff;
var r = pixel & 0xff;
var g = (pixel>>>8) & 0xff;
var b = (pixel>>>16) & 0xff;
pixel_key = r +','+ g + ',' + b + ',' + a;
}
image.encode('webp', {}, function(err, buffer) {
if (err) {
return callback(err);
}
buffer.solid = pixel_key;
if (source.BRIDGE_LOG_MAX_VTILE_BYTES_COMPRESSED > 0 && buffer.length) {
stats.count++;
stats.total = stats.total + (buffer.length*0.001);
if (stats.max < buffer.length) {
stats.max = buffer.length;
}
var area = stats.hasOwnProperty(z)
? stats[z] + utils.calculateTileArea(z, x, y)
: utils.calculateTileArea(z, x, y);
stats = {
...stats,
[z]: area
};
}
return callback(err, buffer, {'Content-Type':'image/webp'});
});
});
});
};
Bridge.getVector = function(source, map, z, x, y, callback) {
var opts = {};
var headers = {};
headers['Content-Type'] = 'application/x-protobuf';
// The buffer size is in vector tile coordinates, while the buffer size on the
// map object is in image coordinates. Therefore, lets multiply the buffer_size
// by the old "path_multiplier" value of 16 to get a proper buffer size.
try {
// Try-catch is necessary here because the constructor will throw if x and y
// are out of bounds at zoom-level z
var vtile = new mapnik.VectorTile(+z,+x,+y, {buffer_size:16*map.bufferSize});
} catch(err) {
return callback(err, null, headers);
}
map.extent = vtile.extent();
/*
Simplification works to generalize geometries before encoding into vector tiles.
The 'simplify_distance' value works in integer space over a 4096 pixel grid and uses
the Douglas-Peucker algorithm.
The 4096 results from the path_multiplier used to maintain precision (default of 16)
and tile width (default of 256)
A simplify_distance of <= 0 disables the DP simplification in mapnik-vector-tile, however
be aware that geometries will still end up being generalized based on conversion to integers during encoding.
The greater the value the higher the level of generalization.
The goal is to simplify enough to reduce the encoded geometry size without noticeable visual impact.
A value of 4 is used below maxzoom and was chosen for detail when using mapbox-gl-js (with legacy rendering, 8 does ok as well)
A value of 1 is used at maxzoom and above. The idea is that 1 will throw out nearly coincident points while
having negligible visual impact even if the tile is overzoomed (but this warrants more testing).
*/
opts.simplify_distance = z < source._maxzoom ? 4 : 1;
opts.threading_mode = source._threading_mode;
// enable strictly_simple
opts.strictly_simple = true;
// make zoom_level variable available to mapnik postgis datasource
opts.variables = { "zoom_level": z };
map.render(vtile, opts, function(err, vtile) {
source._map.release(map);
if (err) {
return callback(err);
}
headers['x-tilelive-contains-data'] = vtile.painted();
if (vtile.empty()) {
return callback(new Error('Tile does not exist'), null, headers);
}
vtile.getData({compression:'gzip'}, function(err, pbfz) {
if (err) return callback(err);
headers['Content-Encoding'] = 'gzip';
if (source.BRIDGE_LOG_MAX_VTILE_BYTES_COMPRESSED > 0 && pbfz.length > source.BRIDGE_LOG_MAX_VTILE_BYTES_COMPRESSED) {
stats.count++;
stats.total = stats.total + (pbfz.length*0.001);
var area = stats.hasOwnProperty(z)
? stats[z] + utils.calculateTileArea(z, x, y)
: utils.calculateTileArea(z, x, y);
stats = {
...stats,
[z]: area
};
if (stats.max < pbfz.length) {
stats.max = pbfz.length;
}
}
if (source.BRIDGE_MAX_VTILE_BYTES_COMPRESSED > 0 && pbfz.length > source.BRIDGE_MAX_VTILE_BYTES_COMPRESSED) {
return callback(new Error("Tile >= max allowed size"), pbfz, headers);
}
return callback(err, pbfz, headers);
});
});
};
Bridge.prototype.getInfo = function(callback) {
var map = this._readonly_map;
if (!map) {
return callback(new Error('Tilesource not loaded'));
}
var params = map.parameters;
var info = Object.keys(params).reduce(function(memo, key) {
switch (key) {
// The special 'json' key/value pair allows JSON to be serialized
// and merged into the metadata of a mapnik XML based source. This
// enables nested properties and non-string datatypes to be
// captured by mapnik XML.
case 'json':
try {
var jsondata = JSON.parse(params[key]);
Object.keys(jsondata).reduce(function(memo, key) {
memo[key] = memo[key] || jsondata[key];
return memo;
}, memo);
}
catch (err) { return callback(err); }
break;
case 'bounds':
case 'center':
memo[key] = params[key].split(',').map(function(v) { return parseFloat(v) });
break;
default:
memo[key] = params[key];
break;
}
return memo;
}, {});
// Set an intelligent default for geocoder_shardlevel if not set.
if (info.geocoder_layer && !('geocoder_shardlevel' in info)) {
if (info.maxzoom > 12) {
info.geocoder_shardlevel = 3;
} else if (info.maxzoom > 8) {
info.geocoder_shardlevel = 2;
} else if (info.maxzoom > 6) {
info.geocoder_shardlevel = 1;
} else {
info.geocoder_shardlevel = 0;
}
}
return callback(null, info);
};
Bridge.prototype.getIndexableDocs = function(pointer, callback) {
var map = this._readonly_map;
if (!map) {
return callback(new Error('Tilesource not loaded'));
}
pointer = pointer || {};
pointer.limit = pointer.limit || 10000;
var source = this;
var knownsrs = {
'+proj=merc +a=6378137 +b=6378137 +lat_ts=0.0 +lon_0=0.0 +x_0=0.0 +y_0=0.0 +k=1.0 +units=m +nadgrids=@null +wktext +no_defs +over': '+init=epsg:3857',
'+proj=merc +lon_0=0 +lat_ts=0 +x_0=0 +y_0=0 +ellps=WGS84 +datum=WGS84 +units=m +no_defs': '+init=epsg:3857',
'+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs': '+init=epsg:4326'
};
source.getInfo(function(err, info) {
if (err) {
return callback(err);
}
var name = (map.parameters.geocoder_layer||'').split('.').shift() || '';
var field = (map.parameters.geocoder_layer||'').split('.').pop() || 'carmen:text';
var zoom = info.maxzoom + parseInt(map.parameters.geocoder_resolution||0, 10);
var layer = name ?
map.layers().filter(function(l) { return l.name === name })[0] :
map.layers()[0];
if (!zoom) {
return callback(new Error('No geocoding zoom defined'));
}
if (!layer) {
return callback(new Error('No geocoding layer found'));
}
if (!knownsrs[layer.srs]) {
return callback(new Error('Unknown layer SRS'));
}
var srs = knownsrs[layer.srs];
if (!pointer.featureset) {
pointer.featureset = layer.datasource.featureset();
}
var featureset = pointer.featureset;
var params = layer.datasource.parameters();
var docs = [];
var cache = {};
var i = 0;
function feature() {
if (i === pointer.limit) {
return callback(null, docs, pointer);
}
var f = featureset.next();
if (!f) {
return callback(null, docs, pointer);
}
var newdoc = {
type: 'Feature',
properties: f.attributes()
};
var doc = f.attributes();
if (!doc[field]) {
return ++i && immediate(feature);
}
newdoc.id = f.id();
newdoc.properties['carmen:text'] = doc[field];
if (typeof doc.bbox === 'string') {
newdoc.bbox = doc.bbox.split(',').map(parseFloat);
} else {
newdoc.bbox = doc.bbox || (srs === '+init=epsg:4326' ? f.extent() : sm.convert(f.extent(), 'WGS84'));
}
var itpFields = ['carmen:addressnumber', 'carmen:lfromhn', 'carmen:ltohn', 'carmen:rfromhn', 'carmen:rtohn', 'carmen:parityr', 'carmen:parityl'];
for(var field_i=0;field_i<itpFields.length;field_i++)
if (newdoc.properties[itpFields[field_i]])
newdoc.properties[itpFields[field_i]] = newdoc.properties[itpFields[field_i]].split(',');
if (typeof doc['carmen:center'] === 'string') {
newdoc.properties['carmen:center'] = doc['carmen:center'].split(',').map(parseFloat);
}
else {
newdoc.properties['carmen:center'] = [
newdoc.bbox[0] + (newdoc.bbox[2] - newdoc.bbox[0]) * 0.5,
newdoc.bbox[1] + (newdoc.bbox[3] - newdoc.bbox[1]) * 0.5
];
}
if (newdoc.bbox[0] === newdoc.bbox[2]) {
delete newdoc.bbox;
}
var geom = f.geometry();
if (srs == '+init=epsg:4326') {
geom.toJSON(function(err,json_string) {
newdoc.geometry = JSON.parse(json_string);
docs.push(newdoc);
i++;
immediate(feature);
});
} else {
var from = new mapnik.Projection(srs);
var to = new mapnik.Projection('+init=epsg:4326');
var tr = new mapnik.ProjTransform(from,to);
geom.toJSON({transform:tr},function(err,json_string) {
newdoc.geometry = JSON.parse(json_string);
docs.push(newdoc);
i++;
immediate(feature);
});
}
}
feature();
});
};