653 bool boot_postgis_enable_outdb_rasters =
false;
654 MemoryContext old_context;
660 old_context = MemoryContextSwitchTo(TopMemoryContext);
679 "boot_postgis_gdal_enabled_drivers = %s",
693 elog(ERROR,
"_PG_init: Cannot process environmental variable: POSTGIS_ENABLE_OUTDB_RASTERS");
697 if (strcmp(env,
"1") == 0)
698 boot_postgis_enable_outdb_rasters =
true;
705 "boot_postgis_enable_outdb_rasters = %s",
706 boot_postgis_enable_outdb_rasters ?
"TRUE" :
"FALSE"
710 pg_install_lwgeom_handlers();
718 if ( postgis_guc_find_option(
"postgis.gdal_datapath") )
723 elog(WARNING,
"'%s' is already set and cannot be changed until you reconnect",
"postgis.gdal_datapath");
727 DefineCustomStringVariable(
728 "postgis.gdal_datapath",
729 "Path to GDAL data files.",
730 "Physical path to directory containing GDAL data files (sets the GDAL_DATA config option).",
741 if ( postgis_guc_find_option(
"postgis.gdal_enabled_drivers") )
746 elog(WARNING,
"'%s' is already set and cannot be changed until you reconnect",
"postgis.gdal_enabled_drivers");
750 DefineCustomStringVariable(
751 "postgis.gdal_enabled_drivers",
752 "Enabled GDAL drivers.",
753 "List of enabled GDAL drivers by short name. To enable/disable all drivers, use 'ENABLE_ALL' or 'DISABLE_ALL' (sets the GDAL_SKIP config option).",
764 if ( postgis_guc_find_option(
"postgis.enable_outdb_rasters") )
769 elog(WARNING,
"'%s' is already set and cannot be changed until you reconnect",
"postgis.enable_outdb_rasters");
773 DefineCustomBoolVariable(
774 "postgis.enable_outdb_rasters",
775 "Enable Out-DB raster bands",
776 "If true, rasters can access data located outside the database",
778 boot_postgis_enable_outdb_rasters,
788 if ( postgis_guc_find_option(
"postgis.gdal_cpl_debug") )
793 elog(WARNING,
"'%s' is already set and cannot be changed until you reconnect",
"postgis.gdal_cpl_debug");
797 DefineCustomBoolVariable(
798 "postgis.gdal_cpl_debug",
799 "Enable GDAL debugging messages",
800 "GDAL debug messages will be sent at the PgSQL debug log level",
811 if ( postgis_guc_find_option(
"postgis.gdal_vsi_options") )
813 elog(WARNING,
"'%s' is already set and cannot be changed until you reconnect",
"postgis.gdal_vsi_options");
817 DefineCustomStringVariable(
818 "postgis.gdal_vsi_options",
819 "VSI config options",
820 "Set the config options to be used when opening /vsi/ network files",
832 MemoryContextSwitchTo(old_context);
void rt_set_handlers_options(rt_allocator allocator, rt_reallocator reallocator, rt_deallocator deallocator, rt_message_handler error_handler, rt_message_handler info_handler, rt_message_handler warning_handler, rt_options options_handler)
void rtpg_gdal_set_cpl_debug(bool value, void *extra)
char * rtpg_trim(const char *input)
static char * rt_pg_options(const char *varname)
static char * env_postgis_enable_outdb_rasters
static void * rt_pg_alloc(size_t size)
static char * gdal_vsi_options
static void rtpg_assignHookGDALDataPath(const char *newpath, void *extra)
static void rt_pg_error(const char *fmt, va_list ap) __attribute__((format(printf
static bool enable_outdb_rasters
static void rt_pg_notice(const char *fmt, va_list ap) __attribute__((format(printf
static bool rt_pg_vsi_check_options(char **newval, void **extra, GucSource source)
static char * env_postgis_gdal_enabled_drivers
static char * boot_postgis_gdal_enabled_drivers
static void rtpg_assignHookGDALEnabledDrivers(const char *enabled_drivers, void *extra)
static void * rt_pg_realloc(void *mem, size_t size)
static void rt_pg_free(void *ptr)
static bool gdal_cpl_debug
static char * gdal_enabled_drivers
static void rtpg_assignHookEnableOutDBRasters(bool enable, void *extra)
static void rt_pg_debug(const char *fmt, va_list ap) __attribute__((format(printf
static char * gdal_datapath
#define POSTGIS_RT_DEBUGF(level, msg,...)