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
|
/**********************************************************************
*
* PostGIS - Spatial Types for PostgreSQL
*
* http://postgis.net
*
* Copyright (C) 2011 Sandro Santilli <strk@kbt.io>
* Copyright (C) 2009-2011 Paul Ramsey <pramsey@cleverelephant.ca>
* Copyright (C) 2008 Mark Cave-Ayland <mark.cave-ayland@siriusit.co.uk>
* Copyright (C) 2004-2007 Refractions Research Inc.
*
* This is free software; you can redistribute and/or modify it under
* the terms of the GNU General Public Licence. See the COPYING file.
*
**********************************************************************/
#include <postgres.h>
#include <fmgr.h>
#include <miscadmin.h>
#include <executor/spi.h>
#include <utils/guc.h>
#include <utils/guc_tables.h>
#include "../postgis_config.h"
#include "liblwgeom.h"
#include "lwgeom_pg.h"
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#define PARANOIA_LEVEL 1
#define PGC_ERRMSG_MAXLEN 256
/**
* Utility to convert cstrings to textp pointers
*/
text*
cstring2text(const char *cstring)
{
text *output;
size_t sz;
/* Guard against null input */
if( !cstring )
return NULL;
sz = strlen(cstring);
output = palloc(sz + VARHDRSZ);
if ( ! output )
return NULL;
SET_VARSIZE(output, sz + VARHDRSZ);
if ( sz )
memcpy(VARDATA(output),cstring,sz);
return output;
}
char*
text2cstring(const text *textptr)
{
size_t size = VARSIZE(textptr) - VARHDRSZ;
char *str = lwalloc(size+1);
memcpy(str, VARDATA(textptr), size);
str[size]='\0';
return str;
}
/*
* Error message parsing functions
*
* Produces nicely formatted messages for parser/unparser errors with optional HINT
*/
void
pg_parser_errhint(LWGEOM_PARSER_RESULT *lwg_parser_result)
{
char *hintbuffer;
/* Only display the parser position if the location is > 0; this provides a nicer output when the first token
within the input stream cannot be matched */
if (lwg_parser_result->errlocation > 0)
{
/* Return a copy of the input string start truncated
* at the error location */
hintbuffer = lwmessage_truncate(
(char *)lwg_parser_result->wkinput, 0,
lwg_parser_result->errlocation - 1, 40, 0);
ereport(ERROR,
(errmsg("%s", lwg_parser_result->message),
errhint("\"%s\" <-- parse error at position %d within geometry", hintbuffer, lwg_parser_result->errlocation))
);
}
else
{
ereport(ERROR,
(errmsg("%s", lwg_parser_result->message),
errhint("You must specify a valid OGC WKT geometry type such as POINT, LINESTRING or POLYGON"))
);
}
}
void
pg_unparser_errhint(LWGEOM_UNPARSER_RESULT *lwg_unparser_result)
{
/* For the unparser simply output the error message without any associated HINT */
elog(ERROR, "%s", lwg_unparser_result->message);
}
static void *
pg_alloc(size_t size)
{
void * result;
CHECK_FOR_INTERRUPTS(); /* give interrupter a chance */
POSTGIS_DEBUGF(5, " pg_alloc(%d) called", (int)size);
result = palloc(size);
POSTGIS_DEBUGF(5, " pg_alloc(%d) returning %p", (int)size, result);
if ( ! result )
{
ereport(ERROR, (errmsg_internal("Out of virtual memory")));
return NULL;
}
return result;
}
static void *
pg_realloc(void *mem, size_t size)
{
void * result;
CHECK_FOR_INTERRUPTS(); /* give interrupter a chance */
POSTGIS_DEBUGF(5, " pg_realloc(%p, %d) called", mem, (int)size);
result = repalloc(mem, size);
POSTGIS_DEBUGF(5, " pg_realloc(%p, %d) returning %p", mem, (int)size, result);
return result;
}
static void
pg_free(void *ptr)
{
pfree(ptr);
}
static void
pg_error(const char *fmt, va_list ap)
{
char errmsg[PGC_ERRMSG_MAXLEN+1];
vsnprintf (errmsg, PGC_ERRMSG_MAXLEN, fmt, ap);
errmsg[PGC_ERRMSG_MAXLEN]='\0';
ereport(ERROR, (errmsg_internal("%s", errmsg)));
}
static void
pg_warning(const char *fmt, va_list ap)
{
char errmsg[PGC_ERRMSG_MAXLEN+1];
vsnprintf (errmsg, PGC_ERRMSG_MAXLEN, fmt, ap);
errmsg[PGC_ERRMSG_MAXLEN]='\0';
ereport(WARNING, (errmsg_internal("%s", errmsg)));
}
static void
pg_notice(const char *fmt, va_list ap)
{
char errmsg[PGC_ERRMSG_MAXLEN+1];
vsnprintf (errmsg, PGC_ERRMSG_MAXLEN, fmt, ap);
errmsg[PGC_ERRMSG_MAXLEN]='\0';
ereport(NOTICE, (errmsg_internal("%s", errmsg)));
}
static void
pg_debug(int level, const char *fmt, va_list ap)
{
char errmsg[PGC_ERRMSG_MAXLEN+1];
vsnprintf (errmsg, PGC_ERRMSG_MAXLEN, fmt, ap);
errmsg[PGC_ERRMSG_MAXLEN]='\0';
int pglevel[6] = {NOTICE, DEBUG1, DEBUG2, DEBUG3, DEBUG4, DEBUG5};
if ( level >= 0 && level <= 5 )
ereport(pglevel[level], (errmsg_internal("%s", errmsg)));
else
ereport(DEBUG5, (errmsg_internal("%s", errmsg)));
}
void
pg_install_lwgeom_handlers(void)
{
/* install PostgreSQL handlers */
lwgeom_set_handlers(pg_alloc, pg_realloc, pg_free, pg_error, pg_notice);
lwgeom_set_debuglogger(pg_debug);
}
/**
* Utility method to call the serialization and then set the
* PgSQL varsize header appropriately with the serialized size.
*/
/**
* Utility method to call the serialization and then set the
* PgSQL varsize header appropriately with the serialized size.
*/
GSERIALIZED* geography_serialize(LWGEOM *lwgeom)
{
size_t ret_size = 0;
GSERIALIZED *g = NULL;
/** force to geodetic in case it's not **/
lwgeom_set_geodetic(lwgeom, true);
g = gserialized_from_lwgeom(lwgeom, &ret_size);
if ( ! g ) lwpgerror("Unable to serialize lwgeom.");
SET_VARSIZE(g, ret_size);
return g;
}
/**
* Utility method to call the serialization and then set the
* PgSQL varsize header appropriately with the serialized size.
*/
GSERIALIZED* geometry_serialize(LWGEOM *lwgeom)
{
size_t ret_size = 0;
GSERIALIZED *g = NULL;
g = gserialized_from_lwgeom(lwgeom, &ret_size);
if ( ! g ) lwpgerror("Unable to serialize lwgeom.");
SET_VARSIZE(g, ret_size);
return g;
}
void
lwpgnotice(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
pg_notice(fmt, ap);
va_end(ap);
}
void
lwpgwarning(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
pg_warning(fmt, ap);
va_end(ap);
}
void
lwpgerror(const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
pg_error(fmt, ap);
va_end(ap);
}
/*
* the bare comparison function for GUC names
*/
int
postgis_guc_name_compare(const char *namea, const char *nameb)
{
/*
* The temptation to use strcasecmp() here must be resisted, because the
* array ordering has to remain stable across setlocale() calls. So, build
* our own with a simple ASCII-only downcasing.
*/
while (*namea && *nameb)
{
char cha = *namea++;
char chb = *nameb++;
if (cha >= 'A' && cha <= 'Z')
cha += 'a' - 'A';
if (chb >= 'A' && chb <= 'Z')
chb += 'a' - 'A';
if (cha != chb)
return cha - chb;
}
if (*namea)
return 1; /* a is longer */
if (*nameb)
return -1; /* b is longer */
return 0;
}
/*
* comparator for qsorting and bsearching guc_variables array
*/
int
postgis_guc_var_compare(const void *a, const void *b)
{
const struct config_generic *confa = *(struct config_generic * const *) a;
const struct config_generic *confb = *(struct config_generic * const *) b;
return postgis_guc_name_compare(confa->name, confb->name);
}
/*
* This is copied from the top half of the find_option function
* in postgresql's guc.c. We search the guc_variables for our option.
* Then we make sure it's not a placeholder. Only then are we sure
* we have a potential conflict, of the sort experienced during an
* extension upgrade.
*/
int
postgis_guc_find_option(const char *name)
{
const char **key = &name;
struct config_generic **res;
/*
* By equating const char ** with struct config_generic *, we are assuming
* the name field is first in config_generic.
*/
res = (struct config_generic **) bsearch((void *) &key,
(void *) get_guc_variables(),
GetNumConfigOptions(),
sizeof(struct config_generic *),
postgis_guc_var_compare);
/* Found nothing? Good */
if ( ! res ) return 0;
/* Hm, you found something, but maybe it's just a placeholder? */
/* We'll consider a placehold a "not found" */
if ( (*res)->flags & GUC_CUSTOM_PLACEHOLDER )
return 0;
return 1;
}
|