-
Notifications
You must be signed in to change notification settings - Fork 157
/
layer_table.go
606 lines (545 loc) · 16.3 KB
/
layer_table.go
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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
package main
import (
"context"
"encoding/json"
"fmt"
"net/http"
"net/url"
"sort"
"strconv"
"strings"
// Database
"github.com/CrunchyData/pg_tileserv/cql"
"github.com/jackc/pgtype"
// Logging
log "github.com/sirupsen/logrus"
// Configuration
"github.com/spf13/viper"
)
// LayerTable provides metadata about the table layer
type LayerTable struct {
ID string
Schema string
Table string
Description string
Properties map[string]TableProperty
GeometryType string
IDColumn string
GeometryColumn string
Srid int
}
// TableProperty provides metadata about a single property field,
// features in a table layer may have multiple such fields
type TableProperty struct {
Name string `json:"name"`
Type string `json:"type"`
Description string `json:"description"`
order int
}
// TableDetailJSON gives the output structure for the table layer.
type TableDetailJSON struct {
ID string `json:"id"`
Schema string `json:"schema"`
Name string `json:"name"`
Description string `json:"description,omitempty"`
Properties []TableProperty `json:"properties,omitempty"`
GeometryType string `json:"geometrytype,omitempty"`
Center [2]float64 `json:"center"`
Bounds [4]float64 `json:"bounds"`
MinZoom int `json:"minzoom"`
MaxZoom int `json:"maxzoom"`
TileURL string `json:"tileurl"`
}
/********************************************************************************
* Layer Interface
*/
// GetType disambiguates between function and table layers
func (lyr LayerTable) GetType() LayerType {
return LayerTypeTable
}
// GetID returns the complete ID (schema.name) by which to reference a given layer
func (lyr LayerTable) GetID() string {
return lyr.ID
}
// GetDescription returns the text description for a layer
// or an empty string if no description is set
func (lyr LayerTable) GetDescription() string {
return lyr.Description
}
// GetName returns just the name of a given layer
func (lyr LayerTable) GetName() string {
return lyr.Table
}
// GetSchema returns just the schema for a given layer
func (lyr LayerTable) GetSchema() string {
return lyr.Schema
}
// WriteLayerJSON outputs parameters and optional arguments for the table layer
func (lyr LayerTable) WriteLayerJSON(w http.ResponseWriter, req *http.Request) error {
jsonTableDetail, err := lyr.getTableDetailJSON(req)
if err != nil {
return err
}
w.Header().Add("Content-Type", "application/json")
json.NewEncoder(w).Encode(jsonTableDetail)
// all good, no error
return nil
}
// GetTileRequest takes tile and request parameters as input and returns a TileRequest
// specifying the SQL to fetch appropriate data
func (lyr LayerTable) GetTileRequest(tile Tile, r *http.Request) TileRequest {
rp := lyr.getQueryParameters(r.URL.Query())
sql, _ := lyr.requestSQL(&tile, &rp)
tr := TileRequest{
LayerID: lyr.ID,
Tile: tile,
SQL: sql,
Args: nil,
}
return tr
}
/********************************************************************************/
type queryParameters struct {
Limit int
Properties []string
Resolution int
Buffer int
Filter string
FilterCrs int
}
// getRequestIntParameter ignores missing parameters and non-integer parameters,
// returning the "unknown integer" value for this case, which is -1
func getQueryIntParameter(q url.Values, param string) int {
ok := false
sParam := make([]string, 0)
for k, v := range q {
if strings.EqualFold(k, param) {
sParam = v
ok = true
break
}
}
if ok {
iParam, err := strconv.Atoi(sParam[0])
if err == nil {
return iParam
}
}
return -1
}
func getQueryStringParameter(q url.Values, param string) string {
vals := q[param]
if vals != nil {
return vals[0]
}
return ""
}
// getRequestPropertiesParameter compares the properties in the request
// with the properties in the table layer, and returns a slice of
// just those that occur in both, or a slice of all table properties
// if there is not query parameter, or no matches
func (lyr *LayerTable) getQueryPropertiesParameter(q url.Values) []string {
sAtts := make([]string, 0)
haveProperties := false
for k, v := range q {
if strings.EqualFold(k, "properties") {
sAtts = v
haveProperties = true
break
}
}
lyrAtts := (*lyr).Properties
queryAtts := make([]string, 0, len(lyrAtts))
haveIDColumn := false
if haveProperties {
aAtts := strings.Split(sAtts[0], ",")
for _, att := range aAtts {
decAtt, err := url.QueryUnescape(att)
if err == nil {
decAtt = strings.Trim(decAtt, " ")
att, ok := lyrAtts[decAtt]
if ok {
if att.Name == lyr.IDColumn {
haveIDColumn = true
}
queryAtts = append(queryAtts, att.Name)
}
}
}
}
// No request parameter or no matches, so we want to
// return all the properties in the table layer
if len(queryAtts) == 0 {
for _, v := range lyrAtts {
queryAtts = append(queryAtts, v.Name)
}
}
if (!haveIDColumn) && lyr.IDColumn != "" {
queryAtts = append(queryAtts, lyr.IDColumn)
}
return queryAtts
}
// getRequestParameters reads user-settables parameters
// from the request URL, or uses the system defaults
// if the parameters are not set
func (lyr *LayerTable) getQueryParameters(q url.Values) queryParameters {
rp := queryParameters{
Limit: getQueryIntParameter(q, "limit"),
Resolution: getQueryIntParameter(q, "resolution"),
Buffer: getQueryIntParameter(q, "buffer"),
Properties: lyr.getQueryPropertiesParameter(q),
Filter: getQueryStringParameter(q, "filter"),
FilterCrs: getQueryIntParameter(q, "filter-crs"),
}
if rp.Limit < 0 {
rp.Limit = viper.GetInt("MaxFeaturesPerTile")
}
if rp.Resolution < 0 {
rp.Resolution = viper.GetInt("DefaultResolution")
}
if rp.Buffer < 0 {
rp.Buffer = viper.GetInt("DefaultBuffer")
}
if rp.FilterCrs < 0 {
rp.FilterCrs = 4326
}
return rp
}
/********************************************************************************/
func (lyr *LayerTable) getTableDetailJSON(req *http.Request) (TableDetailJSON, error) {
td := TableDetailJSON{
ID: lyr.ID,
Schema: lyr.Schema,
Name: lyr.Table,
Description: lyr.Description,
GeometryType: lyr.GeometryType,
MinZoom: viper.GetInt("DefaultMinZoom"),
MaxZoom: viper.GetInt("DefaultMaxZoom"),
}
// TileURL is relative to server base
td.TileURL = fmt.Sprintf("%s/%s/{z}/{x}/{y}.pbf", serverURLBase(req), url.PathEscape(lyr.ID))
// Want to add the properties to the Json representation
// in table order, which is fiddly
tmpMap := make(map[int]TableProperty)
tmpKeys := make([]int, 0, len(lyr.Properties))
for _, v := range lyr.Properties {
tmpMap[v.order] = v
tmpKeys = append(tmpKeys, v.order)
}
sort.Ints(tmpKeys)
for _, v := range tmpKeys {
td.Properties = append(td.Properties, tmpMap[v])
}
// Read table bounds and convert to Json
// which prefers an array form
bnds, err := lyr.GetBounds()
if err != nil {
return td, err
}
td.Bounds[0] = bnds.Xmin
td.Bounds[1] = bnds.Ymin
td.Bounds[2] = bnds.Xmax
td.Bounds[3] = bnds.Ymax
td.Center[0] = (bnds.Xmin + bnds.Xmax) / 2.0
td.Center[1] = (bnds.Ymin + bnds.Ymax) / 2.0
return td, nil
}
// GetBoundsExact returns the data coverage extent for a table layer
// in EPSG:4326, clipped to (+/-180, +/-90)
func (lyr *LayerTable) GetBoundsExact() (Bounds, error) {
bounds := Bounds{}
extentSQL := fmt.Sprintf(`
WITH ext AS (
SELECT
coalesce(
ST_Transform(ST_SetSRID(ST_Extent("%s"), %d), 4326),
ST_MakeEnvelope(-180, -90, 180, 90, 4326)
) AS geom
FROM "%s"."%s"
)
SELECT
ST_XMin(ext.geom) AS xmin,
ST_YMin(ext.geom) AS ymin,
ST_XMax(ext.geom) AS xmax,
ST_YMax(ext.geom) AS ymax
FROM ext
`, lyr.GeometryColumn, lyr.Srid, lyr.Schema, lyr.Table)
db, err := dbConnect()
if err != nil {
return bounds, err
}
var (
xmin pgtype.Float8
xmax pgtype.Float8
ymin pgtype.Float8
ymax pgtype.Float8
)
err = db.QueryRow(context.Background(), extentSQL).Scan(&xmin, &ymin, &xmax, &ymax)
if err != nil {
return bounds, tileAppError{
SrcErr: err,
Message: "Unable to calculate table bounds",
}
}
bounds.SRID = 4326
bounds.Xmin = xmin.Float
bounds.Ymin = ymin.Float
bounds.Xmax = xmax.Float
bounds.Ymax = ymax.Float
bounds.sanitize()
return bounds, nil
}
// GetBounds returns the estimated extent for a table layer, transformed to EPSG:4326
func (lyr *LayerTable) GetBounds() (Bounds, error) {
bounds := Bounds{}
extentSQL := fmt.Sprintf(`
WITH ext AS (
SELECT ST_Transform(ST_SetSRID(ST_EstimatedExtent('%s', '%s', '%s'), %d), 4326) AS geom
)
SELECT
ST_XMin(ext.geom) AS xmin,
ST_YMin(ext.geom) AS ymin,
ST_XMax(ext.geom) AS xmax,
ST_YMax(ext.geom) AS ymax
FROM ext
`, lyr.Schema, lyr.Table, lyr.GeometryColumn, lyr.Srid)
db, err := dbConnect()
if err != nil {
return bounds, err
}
var (
xmin pgtype.Float8
xmax pgtype.Float8
ymin pgtype.Float8
ymax pgtype.Float8
)
err = db.QueryRow(context.Background(), extentSQL).Scan(&xmin, &ymin, &xmax, &ymax)
if err != nil {
return bounds, tileAppError{
SrcErr: err,
Message: "Unable to calculate table bounds",
}
}
// Failed to get estimate? Get the exact bounds.
if xmin.Status == pgtype.Null {
warning := fmt.Sprintf("Estimated extent query failed, run 'ANALYZE %s.%s'", lyr.Schema, lyr.Table)
log.WithFields(log.Fields{
"event": "request",
"topic": "detail",
"key": warning,
}).Warn(warning)
return lyr.GetBoundsExact()
}
bounds.SRID = 4326
bounds.Xmin = xmin.Float
bounds.Ymin = ymin.Float
bounds.Xmax = xmax.Float
bounds.Ymax = ymax.Float
bounds.sanitize()
return bounds, nil
}
func (lyr *LayerTable) requestSQL(tile *Tile, qp *queryParameters) (string, error) {
type sqlParameters struct {
TileSQL string
QuerySQL string
FilterSQL string
TileSrid int
Resolution int
Buffer int
Properties string
MvtParams string
Limit string
Schema string
Table string
GeometryColumn string
Srid int
}
// need both the exact tile boundary for clipping and an
// expanded version for querying
tileBounds := tile.Bounds
queryBounds := tile.Bounds
queryBounds.Expand(tile.width() * float64(qp.Buffer) / float64(qp.Resolution))
tileSQL := tileBounds.SQL()
tileQuerySQL := queryBounds.SQL()
filterSQL, err := lyr.filterSQL(qp)
if err != nil {
return "", err
}
// SRID of the tile we are going to generate, which might be different
// from the layer SRID in the database
tileSrid := tile.Bounds.SRID
// preserve case and special characters in column names
// of SQL query by double quoting names
attrNames := make([]string, 0, len(qp.Properties))
for _, a := range qp.Properties {
attrNames = append(attrNames, fmt.Sprintf("\"%s\"", a))
}
// only specify MVT format parameters we have configured
mvtParams := make([]string, 0)
mvtParams = append(mvtParams, fmt.Sprintf("'%s', %d", lyr.ID, qp.Resolution))
if lyr.GeometryColumn != "" {
mvtParams = append(mvtParams, fmt.Sprintf("'%s'", lyr.GeometryColumn))
}
// The idColumn parameter is PostGIS3+ only
if globalPostGISVersion >= 3000000 && lyr.IDColumn != "" {
mvtParams = append(mvtParams, fmt.Sprintf("'%s'", lyr.IDColumn))
}
sp := sqlParameters{
TileSQL: tileSQL,
QuerySQL: tileQuerySQL,
FilterSQL: filterSQL,
TileSrid: tileSrid,
Resolution: qp.Resolution,
Buffer: qp.Buffer,
Properties: strings.Join(attrNames, ", "),
MvtParams: strings.Join(mvtParams, ", "),
Schema: lyr.Schema,
Table: lyr.Table,
GeometryColumn: lyr.GeometryColumn,
Srid: lyr.Srid,
}
if qp.Limit > 0 {
sp.Limit = fmt.Sprintf("LIMIT %d", qp.Limit)
}
// TODO: Remove ST_Force2D when fixes to line clipping are common
// in GEOS. See https://trac.osgeo.org/postgis/ticket/4690
tmplSQL := `
SELECT ST_AsMVT(mvtgeom, {{ .MvtParams }}) FROM (
SELECT ST_AsMVTGeom(
ST_Transform(ST_Force2D(t."{{ .GeometryColumn }}"), {{ .TileSrid }}),
bounds.geom_clip,
{{ .Resolution }},
{{ .Buffer }}
) AS "{{ .GeometryColumn }}"
{{ if .Properties }}
, {{ .Properties }}
{{ end }}
FROM "{{ .Schema }}"."{{ .Table }}" t, (
SELECT {{ .TileSQL }} AS geom_clip,
{{ .QuerySQL }} AS geom_query
) bounds
WHERE ST_Intersects(t."{{ .GeometryColumn }}",
ST_Transform(bounds.geom_query, {{ .Srid }}))
{{ .FilterSQL }}
{{ .Limit }}
) mvtgeom
`
sql, err := renderSQLTemplate("tabletilesql", tmplSQL, sp)
if err != nil {
return "", err
}
return sql, err
}
func (lyr *LayerTable) filterSQL(qp *queryParameters) (string, error) {
//filter := "pop_est < 2000000"
filter := qp.Filter
sql, err := cql.TranspileToSQL(filter, qp.FilterCrs, lyr.Srid)
if err != nil {
return "", err
}
if sql != "" {
sql = "AND " + sql
}
return sql, nil
}
func getTableLayers() ([]LayerTable, error) {
layerSQL := `
SELECT
Format('%s.%s', n.nspname, c.relname) AS id,
n.nspname AS schema,
c.relname AS table,
coalesce(d.description, '') AS description,
a.attname AS geometry_column,
postgis_typmod_srid(a.atttypmod) AS srid,
trim(trailing 'ZM' from postgis_typmod_type(a.atttypmod)) AS geometry_type,
coalesce(case when it.typname is not null then ia.attname else null end, '') AS id_column,
(
SELECT array_agg(ARRAY[sa.attname, st.typname, coalesce(da.description,''), sa.attnum::text]::text[] ORDER BY sa.attnum)
FROM pg_attribute sa
JOIN pg_type st ON sa.atttypid = st.oid
LEFT JOIN pg_description da ON (c.oid = da.objoid and sa.attnum = da.objsubid)
WHERE sa.attrelid = c.oid
AND sa.attnum > 0
AND NOT sa.attisdropped
AND st.typname NOT IN ('geometry', 'geography')
) AS props
FROM pg_class c
JOIN pg_namespace n ON (c.relnamespace = n.oid)
JOIN pg_attribute a ON (a.attrelid = c.oid)
JOIN pg_type t ON (a.atttypid = t.oid)
LEFT JOIN pg_description d ON (c.oid = d.objoid and d.objsubid = 0)
LEFT JOIN pg_index i ON (c.oid = i.indrelid AND i.indisprimary AND i.indnatts = 1)
LEFT JOIN pg_attribute ia ON (ia.attrelid = i.indexrelid)
LEFT JOIN pg_type it ON (ia.atttypid = it.oid AND it.typname in ('int2', 'int4', 'int8'))
WHERE c.relkind IN ('r', 'v', 'm', 'p', 'f')
AND t.typname = 'geometry'
AND has_table_privilege(c.oid, 'select')
AND has_schema_privilege(n.oid, 'usage')
AND postgis_typmod_srid(a.atttypmod) > 0
ORDER BY 1
`
db, connerr := dbConnect()
if connerr != nil {
return nil, connerr
}
rows, err := db.Query(context.Background(), layerSQL)
if err != nil {
return nil, connerr
}
// Reset array of layers
layerTables := make([]LayerTable, 0)
for rows.Next() {
var (
id, schema, table, description, geometryColumn string
srid int
geometryType, idColumn string
atts pgtype.TextArray
)
err := rows.Scan(&id, &schema, &table, &description, &geometryColumn,
&srid, &geometryType, &idColumn, &atts)
if err != nil {
return nil, err
}
// We use https://godoc.org/github.com/jackc/pgtype#TextArray
// here to scan the text[][] map of property name/type
// created in the query. It gets a little ugly demapping the
// pgx TextArray type, but it is at least native handling of
// the array. It's complex because of PgSQL ARRAY generality
// really, no fault of pgx
properties := make(map[string]TableProperty)
if atts.Status == pgtype.Present {
arrLen := atts.Dimensions[0].Length
arrStart := atts.Dimensions[0].LowerBound - 1
elmLen := atts.Dimensions[1].Length
for i := arrStart; i < arrLen; i++ {
pos := i * elmLen
elmID := atts.Elements[pos].String
elm := TableProperty{
Name: elmID,
Type: atts.Elements[pos+1].String,
Description: atts.Elements[pos+2].String,
}
elm.order, _ = strconv.Atoi(atts.Elements[pos+3].String)
properties[elmID] = elm
}
}
// "schema.tablename" is our unique key for table layers
lyr := LayerTable{
ID: id,
Schema: schema,
Table: table,
Description: description,
GeometryColumn: geometryColumn,
Srid: srid,
GeometryType: geometryType,
IDColumn: idColumn,
Properties: properties,
}
layerTables = append(layerTables, lyr)
}
// Check for errors from iterating over rows.
if err := rows.Err(); err != nil {
return nil, err
}
return layerTables, nil
}