-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathpc_pgsql.c
1066 lines (901 loc) · 26.9 KB
/
pc_pgsql.c
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
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/***********************************************************************
* pc_pgsql.c
*
* Utility functions to bind pc_api.h functions to PgSQL, including
* memory management and serialization/deserializations.
*
* PgSQL Pointcloud is free and open source software provided
* by the Government of Canada
* Copyright (c) 2013 Natural Resources Canada
*
***********************************************************************/
#include "pc_pgsql.h"
#include "access/hash.h"
#include "access/heapam.h"
#include "access/htup_details.h"
#include "access/sysattr.h"
#include "catalog/indexing.h"
#include "catalog/namespace.h"
#include "catalog/pg_extension.h"
#include "commands/extension.h"
#include "executor/spi.h"
#include "utils/fmgroids.h"
#include "utils/hsearch.h"
#include "utils/lsyscache.h"
#include "utils/memutils.h"
#include "utils/regproc.h"
#include <assert.h>
PG_MODULE_MAGIC;
/**********************************************************************************
* Pointcloud constants cache (mainly based on PostGIS source code)
*/
static PC_CONSTANTS *pc_constants_cache = NULL;
static Oid pointcloud_get_full_version_schema()
{
const char *proname = "pointcloud_full_version";
#if PGSQL_VERSION < 160
List *names = stringToQualifiedNameList(proname);
#else
List *names = stringToQualifiedNameList(proname, NULL);
#endif
#if PGSQL_VERSION < 140
FuncCandidateList clist =
FuncnameGetCandidates(names, -1, NIL, false, false, false);
#else
FuncCandidateList clist =
FuncnameGetCandidates(names, -1, NIL, false, false, false, false);
#endif
if (!clist)
return InvalidOid;
return get_func_namespace(clist->oid);
}
static Oid pointcloud_get_extension_schema(Oid ext_oid)
{
Oid result;
SysScanDesc scandesc;
HeapTuple tuple;
ScanKeyData entry[1];
#if PGSQL_VERSION < 120
Relation rel = heap_open(ExtensionRelationId, AccessShareLock);
ScanKeyInit(&entry[0], ObjectIdAttributeNumber, BTEqualStrategyNumber,
F_OIDEQ, ObjectIdGetDatum(ext_oid));
#else
Relation rel = table_open(ExtensionRelationId, AccessShareLock);
ScanKeyInit(&entry[0], Anum_pg_extension_oid, BTEqualStrategyNumber, F_OIDEQ,
ObjectIdGetDatum(ext_oid));
#endif
scandesc = systable_beginscan(rel, ExtensionOidIndexId, true, NULL, 1, entry);
tuple = systable_getnext(scandesc);
/* We assume that there can be at most one matching tuple */
if (HeapTupleIsValid(tuple))
result = ((Form_pg_extension)GETSTRUCT(tuple))->extnamespace;
else
result = InvalidOid;
systable_endscan(scandesc);
#if PGSQL_VERSION < 120
heap_close(rel, AccessShareLock);
#else
table_close(rel, AccessShareLock);
#endif
return result;
}
void pointcloud_init_constants_cache(void)
{
char *nsp_name;
Oid ext_oid;
Oid nsp_oid = InvalidOid;
MemoryContext context;
if (pc_constants_cache)
return;
ext_oid = get_extension_oid("pointcloud", true);
if (ext_oid != InvalidOid)
{
nsp_oid = pointcloud_get_extension_schema(ext_oid);
}
else
{
nsp_oid = pointcloud_get_full_version_schema();
}
/* early exit if we cannot lookup nsp_name */
if (nsp_oid == InvalidOid)
elog(ERROR, "Unable to determine 'pointcloud' install schema");
nsp_name = get_namespace_name(nsp_oid);
/* Put constants cache in a child of the CacheContext */
context = AllocSetContextCreate(
CacheMemoryContext, "Pointcloud Constants Context", ALLOCSET_SMALL_SIZES);
/* Allocate in the CacheContext so we don't lose this at the end of the
* statement */
pc_constants_cache = MemoryContextAlloc(context, sizeof(PC_CONSTANTS));
pc_constants_cache->schema =
MemoryContextStrdup(CacheMemoryContext, nsp_name);
pc_constants_cache->formats =
MemoryContextStrdup(CacheMemoryContext, "pointcloud_formats");
pc_constants_cache->formats_srid =
MemoryContextStrdup(CacheMemoryContext, "srid");
pc_constants_cache->formats_schema =
MemoryContextStrdup(CacheMemoryContext, "schema");
}
/**********************************************************************************
* POSTGRESQL MEMORY MANAGEMENT HOOKS
*/
static void *pgsql_alloc(size_t size)
{
void *result;
result = palloc(size);
if (!result)
{
ereport(ERROR,
(errcode(ERRCODE_OUT_OF_MEMORY), errmsg("Out of virtual memory")));
}
return result;
}
static void *pgsql_realloc(void *mem, size_t size)
{
void *result;
result = repalloc(mem, size);
if (!result)
{
ereport(ERROR,
(errcode(ERRCODE_OUT_OF_MEMORY), errmsg("Out of virtual memory")));
}
return result;
}
static void pgsql_free(void *ptr) { pfree(ptr); }
static void pgsql_msg_handler(int sig, const char *fmt, va_list ap)
__attribute__((format(printf, 2, 0)));
static void pgsql_msg_handler(int sig, const char *fmt, va_list ap)
{
#define MSG_MAXLEN 1024
char msg[MSG_MAXLEN] = {0};
vsnprintf(msg, MSG_MAXLEN, fmt, ap);
msg[MSG_MAXLEN - 1] = '\0';
ereport(sig, (errmsg_internal("%s", msg)));
}
static void pgsql_error(const char *fmt, va_list ap)
__attribute__((format(printf, 1, 0)));
static void pgsql_error(const char *fmt, va_list ap)
{
pgsql_msg_handler(ERROR, fmt, ap);
}
static void pgsql_warn(const char *fmt, va_list ap)
__attribute__((format(printf, 1, 0)));
static void pgsql_warn(const char *fmt, va_list ap)
{
pgsql_msg_handler(WARNING, fmt, ap);
}
static void pgsql_info(const char *fmt, va_list ap)
__attribute__((format(printf, 1, 0)));
static void pgsql_info(const char *fmt, va_list ap)
{
pgsql_msg_handler(NOTICE, fmt, ap);
}
/**********************************************************************************
* POINTCLOUD START-UP/SHUT-DOWN CALLBACKS
*/
/**
* On module load we want to hook the message writing and memory allocation
* functions of libpc to the PostgreSQL ones.
* TODO: also hook the libxml2 hooks into PostgreSQL.
*/
void _PG_init(void);
void _PG_init(void)
{
elog(LOG, "Pointcloud (%s) module loaded", POINTCLOUD_VERSION);
pc_set_handlers(pgsql_alloc, pgsql_realloc, pgsql_free, pgsql_error,
pgsql_info, pgsql_warn);
}
/* Module unload callback */
void _PG_fini(void);
void _PG_fini(void)
{
elog(LOG, "Pointcloud (%s) module unloaded", POINTCLOUD_VERSION);
}
/* Mask pcid from bottom of typmod */
uint32 pcid_from_typmod(const int32 typmod)
{
if (typmod == -1)
return 0;
else
return (typmod & 0x0000FFFF);
}
/**********************************************************************************
* PCPOINT WKB Handling
*/
PCPOINT *
#if PGSQL_VERSION < 120
pc_point_from_hexwkb(const char *hexwkb, size_t hexlen,
FunctionCallInfoData *fcinfo)
#else
pc_point_from_hexwkb(const char *hexwkb, size_t hexlen, FunctionCallInfo fcinfo)
#endif
{
PCPOINT *pt;
PCSCHEMA *schema;
uint32 pcid;
uint8 *wkb = pc_bytes_from_hexbytes(hexwkb, hexlen);
size_t wkblen = hexlen / 2;
pcid = pc_wkb_get_pcid(wkb);
schema = pc_schema_from_pcid(pcid, fcinfo);
pt = pc_point_from_wkb(schema, wkb, wkblen);
pfree(wkb);
return pt;
}
char *pc_point_to_hexwkb(const PCPOINT *pt)
{
uint8 *wkb;
size_t wkb_size;
char *hexwkb;
wkb = pc_point_to_wkb(pt, &wkb_size);
hexwkb = pc_hexbytes_from_bytes(wkb, wkb_size);
pfree(wkb);
return hexwkb;
}
/**********************************************************************************
* PCPATCH WKB Handling
*/
PCPATCH *
#if PGSQL_VERSION < 120
pc_patch_from_hexwkb(const char *hexwkb, size_t hexlen,
FunctionCallInfoData *fcinfo)
#else
pc_patch_from_hexwkb(const char *hexwkb, size_t hexlen, FunctionCallInfo fcinfo)
#endif
{
PCPATCH *patch;
PCSCHEMA *schema;
uint32 pcid;
uint8 *wkb = pc_bytes_from_hexbytes(hexwkb, hexlen);
size_t wkblen = hexlen / 2;
pcid = pc_wkb_get_pcid(wkb);
if (!pcid)
elog(ERROR, "%s: pcid is zero", __func__);
schema = pc_schema_from_pcid(pcid, fcinfo);
if (!schema)
elog(ERROR, "%s: unable to look up schema entry", __func__);
patch = pc_patch_from_wkb(schema, wkb, wkblen);
pfree(wkb);
return patch;
}
char *pc_patch_to_hexwkb(const PCPATCH *patch)
{
uint8 *wkb;
size_t wkb_size;
char *hexwkb;
wkb = pc_patch_to_wkb(patch, &wkb_size);
hexwkb = pc_hexbytes_from_bytes(wkb, wkb_size);
pfree(wkb);
return hexwkb;
}
/**********************************************************************************
* PCID <=> PCSCHEMA translation via POINTCLOUD_FORMATS
*/
uint32 pcid_from_datum(Datum d)
{
SERIALIZED_POINT *serpart;
if (!d)
return 0;
/* Serializations are int32_t <size> uint32_t <pcid> == 8 bytes */
/* Cast to SERIALIZED_POINT for convenience, SERIALIZED_PATCH shares same
* header */
serpart = (SERIALIZED_POINT *)PG_DETOAST_DATUM_SLICE(d, 0, 8);
return serpart->pcid;
}
PCSCHEMA *pc_schema_from_pcid_uncached(uint32 pcid)
{
char sql[256];
char *xml, *xml_spi, *srid_spi, *formats;
int err, srid;
size_t size;
PCSCHEMA *schema;
if (SPI_OK_CONNECT != SPI_connect())
{
elog(ERROR, "%s: could not connect to SPI manager", __func__);
return NULL;
}
if (!pc_constants_cache)
{
elog(ERROR, "%s: constants cache is not initialized", __func__);
return NULL;
}
formats = quote_qualified_identifier(pc_constants_cache->schema,
pc_constants_cache->formats);
sprintf(sql, "select %s, %s from %s where pcid = %d",
pc_constants_cache->formats_schema, pc_constants_cache->formats_srid,
formats, pcid);
err = SPI_exec(sql, 1);
if (err < 0)
{
elog(ERROR, "%s: error (%d) executing query: %s", __func__, err, sql);
return NULL;
}
/* No entry in POINTCLOUD_FORMATS */
if (SPI_processed <= 0)
{
elog(ERROR, "no entry in \"%s\" for pcid = %d", formats, pcid);
return NULL;
}
/* Result */
xml_spi = SPI_getvalue(SPI_tuptable->vals[0], SPI_tuptable->tupdesc, 1);
srid_spi = SPI_getvalue(SPI_tuptable->vals[0], SPI_tuptable->tupdesc, 2);
/* NULL result */
if (!(xml_spi && srid_spi))
{
elog(ERROR, "unable to read row from \"%s\" for pcid = %d", formats, pcid);
return NULL;
}
/* Copy result to upper executor context */
size = strlen(xml_spi) + 1;
xml = SPI_palloc(size);
memcpy(xml, xml_spi, size);
/* Parse the SRID string into the function stack */
srid = atoi(srid_spi);
/* Disconnect from SPI, losing all our SPI-allocated memory now... */
SPI_finish();
/* Build the schema object */
schema = pc_schema_from_xml(xml);
if (!schema)
{
ereport(ERROR, (errcode(ERRCODE_NOT_AN_XML_DOCUMENT),
errmsg("unable to parse XML for pcid = %d in \"%s\"", pcid,
formats)));
}
schema->pcid = pcid;
schema->srid = srid;
return schema;
}
/**
* Hold the schema references in a list.
* We'll just search them linearly, because
* usually we'll have only one per statement
*/
#define SchemaCacheSize 16
typedef struct
{
int next_slot;
int pcids[SchemaCacheSize];
PCSCHEMA *schemas[SchemaCacheSize];
} SchemaCache;
/**
* Get the schema entry from the schema cache if one exists.
* If it doesn't exist, make a new empty one, cache it, and
* return it.
*/
static SchemaCache *
#if PGSQL_VERSION < 120
GetSchemaCache(FunctionCallInfoData *fcinfo)
#else
GetSchemaCache(FunctionCallInfo fcinfo)
#endif
{
SchemaCache *cache = fcinfo->flinfo->fn_extra;
if (!cache)
{
cache = MemoryContextAlloc(fcinfo->flinfo->fn_mcxt, sizeof(SchemaCache));
memset(cache, 0, sizeof(SchemaCache));
fcinfo->flinfo->fn_extra = cache;
}
return cache;
}
PCSCHEMA *
#if PGSQL_VERSION < 120
pc_schema_from_pcid(uint32 pcid, FunctionCallInfoData *fcinfo)
#else
pc_schema_from_pcid(uint32 pcid, FunctionCallInfo fcinfo)
#endif
{
SchemaCache *schema_cache = GetSchemaCache(fcinfo);
int i;
PCSCHEMA *schema;
MemoryContext oldcontext;
/* Unable to find/make a schema cache? Odd. */
if (!schema_cache)
{
ereport(ERROR,
(errcode(ERRCODE_INTERNAL_ERROR),
errmsg("unable to create/load statement level schema cache")));
}
/* Find our PCID if it's in there (usually it will be first) */
for (i = 0; i < SchemaCacheSize; i++)
{
if (schema_cache->pcids[i] == pcid)
{
return schema_cache->schemas[i];
}
}
elog(DEBUG1, "schema cache miss, use pc_schema_from_pcid_uncached");
/* Not in there, load one the old-fashioned way. */
oldcontext = MemoryContextSwitchTo(fcinfo->flinfo->fn_mcxt);
pointcloud_init_constants_cache();
schema = pc_schema_from_pcid_uncached(pcid);
MemoryContextSwitchTo(oldcontext);
/* Failed to load the XML? Odd. */
if (!schema)
{
ereport(ERROR, (errcode(ERRCODE_INTERNAL_ERROR),
errmsg("unable to load schema for pcid %u", pcid)));
}
/* Save the XML in the next unused slot */
schema_cache->schemas[schema_cache->next_slot] = schema;
schema_cache->pcids[schema_cache->next_slot] = pcid;
schema_cache->next_slot = (schema_cache->next_slot + 1) % SchemaCacheSize;
return schema;
}
/**********************************************************************************
* SERIALIZATION/DESERIALIZATION UTILITIES
*/
SERIALIZED_POINT *pc_point_serialize(const PCPOINT *pcpt)
{
size_t serpt_size = sizeof(SERIALIZED_POINT) - 1 + pcpt->schema->size;
SERIALIZED_POINT *serpt = palloc(serpt_size);
serpt->pcid = pcpt->schema->pcid;
memcpy(serpt->data, pcpt->data, pcpt->schema->size);
SET_VARSIZE(serpt, serpt_size);
return serpt;
}
PCPOINT *pc_point_deserialize(const SERIALIZED_POINT *serpt,
const PCSCHEMA *schema)
{
PCPOINT *pcpt;
size_t pgsize = VARSIZE(serpt) + 1 - sizeof(SERIALIZED_POINT);
/*
* Big problem, the size on disk doesn't match what we expect,
* so we cannot reliably interpret the contents.
*/
if (schema->size != pgsize)
{
elog(ERROR, "schema size and disk size mismatch, repair the schema");
return NULL;
}
pcpt = pc_point_from_data(schema, serpt->data);
return pcpt;
}
size_t pc_patch_serialized_size(const PCPATCH *patch)
{
size_t stats_size = pc_stats_size(patch->schema);
size_t common_size = BUFFERALIGN(sizeof(SERIALIZED_PATCH)) - 1;
switch (patch->type)
{
case PC_NONE:
{
PCPATCH_UNCOMPRESSED *pu = (PCPATCH_UNCOMPRESSED *)patch;
return common_size + stats_size + pu->datasize;
}
case PC_DIMENSIONAL:
{
return common_size + stats_size +
pc_patch_dimensional_serialized_size((PCPATCH_DIMENSIONAL *)patch);
}
case PC_LAZPERF:
{
static size_t lazsize_size = 4;
PCPATCH_LAZPERF *pg = (PCPATCH_LAZPERF *)patch;
return common_size + stats_size + lazsize_size + pg->lazperfsize;
}
default:
{
pcerror("%s: unknown compresed %d", __func__, patch->type);
}
}
return -1;
}
static size_t pc_patch_stats_serialize(uint8_t *buf, const PCSCHEMA *schema,
const PCSTATS *stats)
{
size_t sz = schema->size;
/* Copy min */
memcpy(buf, stats->min.data, sz);
/* Copy max */
memcpy(buf + sz, stats->max.data, sz);
/* Copy avg */
memcpy(buf + 2 * sz, stats->avg.data, sz);
return sz * 3;
}
/**
* Stats are always three PCPOINT serializations in a row,
* min, max, avg. Their size is the uncompressed buffer size for
* a point, the schema->size.
*/
PCSTATS *pc_patch_stats_deserialize(const PCSCHEMA *schema, const uint8_t *buf)
{
size_t sz = schema->size;
const uint8_t *buf_min = buf;
const uint8_t *buf_max = buf + sz;
const uint8_t *buf_avg = buf + 2 * sz;
return pc_stats_new_from_data(schema, buf_min, buf_max, buf_avg);
}
static SERIALIZED_PATCH *pc_patch_dimensional_serialize(const PCPATCH *patch_in)
{
// uint32_t size;
// uint32_t pcid;
// uint32_t compression;
// uint32_t npoints;
// double xmin, xmax, ymin, ymax;
// data:
// pcpoint[3] stats;
// serialized_pcbytes[ndims] dimensions;
int i;
uint8_t *buf;
size_t serpch_size = pc_patch_serialized_size(patch_in);
SERIALIZED_PATCH *serpch = pcalloc(serpch_size);
const PCPATCH_DIMENSIONAL *patch = (PCPATCH_DIMENSIONAL *)patch_in;
assert(patch_in);
assert(patch_in->type == PC_DIMENSIONAL);
/* Copy basics */
serpch->pcid = patch->schema->pcid;
serpch->npoints = patch->npoints;
serpch->bounds = patch->bounds;
serpch->compression = patch->type;
/* Get a pointer to the data area */
buf = serpch->data;
/* Write stats into the buffer */
if (patch->stats)
{
buf += pc_patch_stats_serialize(buf, patch->schema, patch->stats);
}
else
{
pcerror("%s: stats missing!", __func__);
}
/* Write each dimension in after the stats */
for (i = 0; i < patch->schema->ndims; i++)
{
size_t bsize = 0;
PCBYTES *pcb = &(patch->bytes[i]);
pc_bytes_serialize(pcb, buf, &bsize);
buf += bsize;
}
SET_VARSIZE(serpch, serpch_size);
return serpch;
}
static SERIALIZED_PATCH *pc_patch_lazperf_serialize(const PCPATCH *patch_in)
{
size_t serpch_size = pc_patch_serialized_size(patch_in);
SERIALIZED_PATCH *serpch = pcalloc(serpch_size);
const PCPATCH_LAZPERF *patch = (PCPATCH_LAZPERF *)patch_in;
uint32_t lazsize = patch->lazperfsize;
uint8_t *buf = serpch->data;
assert(patch);
assert(patch->type == PC_LAZPERF);
/* Copy basics */
serpch->pcid = patch->schema->pcid;
serpch->npoints = patch->npoints;
serpch->bounds = patch->bounds;
serpch->compression = patch->type;
/* Write stats into the buffer first */
if (patch->stats)
{
buf += pc_patch_stats_serialize(buf, patch->schema, patch->stats);
}
else
{
pcerror("%s: stats missing!", __func__);
}
/* Write buffer size */
memcpy(buf, &(lazsize), 4);
buf += 4;
/* Write buffer */
memcpy(buf, patch->lazperf, patch->lazperfsize);
SET_VARSIZE(serpch, serpch_size);
return serpch;
}
static SERIALIZED_PATCH *
pc_patch_uncompressed_serialize(const PCPATCH *patch_in)
{
// uint32_t size;
// uint32_t pcid;
// uint32_t compression;
// uint32_t npoints;
// double xmin, xmax, ymin, ymax;
// data:
// pcpoint [];
uint8_t *buf;
size_t serpch_size;
SERIALIZED_PATCH *serpch;
const PCPATCH_UNCOMPRESSED *patch = (PCPATCH_UNCOMPRESSED *)patch_in;
serpch_size = pc_patch_serialized_size(patch_in);
serpch = pcalloc(serpch_size);
/* Copy basic */
serpch->compression = patch->type;
serpch->pcid = patch->schema->pcid;
serpch->npoints = patch->npoints;
serpch->bounds = patch->bounds;
/* Write stats into the buffer first */
buf = serpch->data;
if (patch->stats)
{
buf += pc_patch_stats_serialize(buf, patch->schema, patch->stats);
}
else
{
pcerror("%s: stats missing!", __func__);
}
/* Copy point list into data buffer */
memcpy(buf, patch->data, patch->datasize);
SET_VARSIZE(serpch, serpch_size);
return serpch;
}
/**
* Convert struct to byte array.
* Userdata is currently only PCDIMSTATS, hopefully updated across
* a number of iterations and saved.
*/
SERIALIZED_PATCH *pc_patch_serialize(const PCPATCH *patch_in, void *userdata)
{
PCPATCH *patch = (PCPATCH *)patch_in;
SERIALIZED_PATCH *serpatch = NULL;
/*
* Ensure the patch has stats calculated before going on
*/
if (!patch->stats)
{
pcerror("%s: patch is missing stats", __func__);
return NULL;
}
/*
* Convert the patch to the final target compression,
* which is the one in the schema.
*/
if (patch->type != patch->schema->compression)
{
patch = pc_patch_compress(patch_in, userdata);
}
switch (patch->type)
{
case PC_NONE:
{
serpatch = pc_patch_uncompressed_serialize(patch);
break;
}
case PC_DIMENSIONAL:
{
serpatch = pc_patch_dimensional_serialize(patch);
break;
}
case PC_LAZPERF:
{
serpatch = pc_patch_lazperf_serialize(patch);
break;
}
default:
{
pcerror("%s: unsupported compression type %d", __func__, patch->type);
}
}
if (patch != patch_in)
pc_patch_free(patch);
return serpatch;
}
/**
* Convert struct to byte array.
* Userdata is currently only PCDIMSTATS, hopefully updated across
* a number of iterations and saved.
*/
SERIALIZED_PATCH *pc_patch_serialize_to_uncompressed(const PCPATCH *patch_in)
{
PCPATCH *patch = (PCPATCH *)patch_in;
SERIALIZED_PATCH *serpatch;
/* Convert the patch to uncompressed, if necessary */
if (patch->type != PC_NONE)
{
patch = pc_patch_uncompress(patch_in);
}
serpatch = pc_patch_uncompressed_serialize(patch);
/* An uncompressed input won't result in a copy */
if (patch != patch_in)
pc_patch_free(patch);
return serpatch;
}
static PCPATCH *
pc_patch_uncompressed_deserialize(const SERIALIZED_PATCH *serpatch,
const PCSCHEMA *schema)
{
// typedef struct
// {
// uint32_t size;
// uint32_t pcid;
// uint32_t compression;
// uint32_t npoints;
// double xmin, xmax, ymin, ymax;
// data:
// pcpoint[3] pcstats(min, max, avg)
// pcpoint[npoints]
// }
// SERIALIZED_PATCH;
uint8_t *buf;
size_t stats_size = pc_stats_size(schema); // 3 pcpoints worth of stats
PCPATCH_UNCOMPRESSED *patch = pcalloc(sizeof(PCPATCH_UNCOMPRESSED));
/* Set up basic info */
patch->type = serpatch->compression;
patch->schema = schema;
patch->readonly = true;
patch->npoints = serpatch->npoints;
patch->maxpoints = 0;
patch->bounds = serpatch->bounds;
buf = (uint8_t *)serpatch->data;
/* Point into the stats area */
patch->stats = pc_patch_stats_deserialize(schema, buf);
/* Advance data pointer past the stats serialization */
patch->data = buf + stats_size;
/* Calculate the point data buffer size */
patch->datasize = VARSIZE(serpatch) - BUFFERALIGN(sizeof(SERIALIZED_PATCH)) +
1 - stats_size;
if (patch->datasize != patch->npoints * schema->size)
pcerror("%s: calculated patch data sizes don't match (%d != %d)", __func__,
patch->datasize, patch->npoints * schema->size);
return (PCPATCH *)patch;
}
static PCPATCH *
pc_patch_dimensional_deserialize(const SERIALIZED_PATCH *serpatch,
const PCSCHEMA *schema)
{
// typedef struct
// {
// uint32_t size;
// uint32_t pcid;
// uint32_t compression;
// uint32_t npoints;
// double xmin, xmax, ymin, ymax;
// data:
// pcpoint[3] pcstats(min, max, avg)
// pcbytes[ndims];
// }
// SERIALIZED_PATCH;
PCPATCH_DIMENSIONAL *patch;
int i;
const uint8_t *buf;
int ndims = schema->ndims;
int npoints = serpatch->npoints;
size_t stats_size = pc_stats_size(schema); // 3 pcpoints worth of stats
/* Reference the external data */
patch = pcalloc(sizeof(PCPATCH_DIMENSIONAL));
/* Set up basic info */
patch->type = serpatch->compression;
patch->schema = schema;
patch->readonly = true;
patch->npoints = npoints;
patch->bounds = serpatch->bounds;
/* Point into the stats area */
patch->stats = pc_patch_stats_deserialize(schema, serpatch->data);
/* Set up dimensions */
patch->bytes = pcalloc(ndims * sizeof(PCBYTES));
buf = serpatch->data + stats_size;
for (i = 0; i < ndims; i++)
{
PCBYTES *pcb = &(patch->bytes[i]);
PCDIMENSION *dim = schema->dims[i];
pc_bytes_deserialize(buf, dim, pcb, true /*readonly*/,
false /*flipendian*/);
pcb->npoints = npoints;
buf += pc_bytes_serialized_size(pcb);
}
return (PCPATCH *)patch;
}
/*
* We don't do any radical deserialization here. Don't build out the tree, just
* set up pointers to the start of the buffer, so we can build it out later
* if necessary.
*/
static PCPATCH *pc_patch_lazperf_deserialize(const SERIALIZED_PATCH *serpatch,
const PCSCHEMA *schema)
{
PCPATCH_LAZPERF *patch;
uint32_t lazperfsize;
int npoints = serpatch->npoints;
size_t stats_size = pc_stats_size(schema);
uint8_t *buf = (uint8_t *)serpatch->data + stats_size;
/* Reference the external data */
patch = pcalloc(sizeof(PCPATCH_LAZPERF));
/* Set up basic info */
patch->type = serpatch->compression;
patch->schema = schema;
patch->readonly = true;
patch->npoints = npoints;
patch->bounds = serpatch->bounds;
/* Point into the stats area */
patch->stats = pc_patch_stats_deserialize(schema, serpatch->data);
/* Set up buffer */
memcpy(&lazperfsize, buf, 4);
patch->lazperfsize = lazperfsize;
buf += 4;
patch->lazperf = pcalloc(patch->lazperfsize);
memcpy(patch->lazperf, buf, patch->lazperfsize);
return (PCPATCH *)patch;
}
PCPATCH *pc_patch_deserialize(const SERIALIZED_PATCH *serpatch,
const PCSCHEMA *schema)
{
switch (serpatch->compression)
{
case PC_NONE:
return pc_patch_uncompressed_deserialize(serpatch, schema);
case PC_DIMENSIONAL:
return pc_patch_dimensional_deserialize(serpatch, schema);
case PC_LAZPERF:
return pc_patch_lazperf_deserialize(serpatch, schema);
}
pcerror("%s: unsupported compression type", __func__);
return NULL;
}
static uint8_t *pc_patch_wkb_set_double(uint8_t *wkb, double d)
{
memcpy(wkb, &d, 8);
wkb += 8;
return wkb;
}
static uint8_t *pc_patch_wkb_set_int32(uint8_t *wkb, uint32_t i)
{
memcpy(wkb, &i, 4);
wkb += 4;
return wkb;
}
static uint8_t *pc_patch_wkb_set_char(uint8_t *wkb, char c)
{
memcpy(wkb, &c, 1);
wkb += 1;
return wkb;
}
/* 0 = xdr | big endian */
/* 1 = ndr | little endian */
static char machine_endian(void)
{
static int check_int = 1; /* dont modify this!!! */
return *((char *)&check_int);
}
uint8_t *pc_patch_to_geometry_wkb_envelope(const SERIALIZED_PATCH *pa,
const PCSCHEMA *schema,
size_t *wkbsize)
{
static uint32_t srid_mask = 0x20000000;
static uint32_t nrings = 1;