Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Comment: | implementing KNN2 and removing any dependency from libsqlite3 for mod_spatialite |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
03786a62cdb4ab17187090468b57b4e1 |
User & Date: | sandro 2021-06-21 15:51:34 |
2021-07-11
| ||
09:52 | implementing GetPointIndex() and SetMultiplePoints() check-in: 49f2548150 user: sandro tags: trunk | |
2021-06-21
| ||
15:51 | implementing KNN2 and removing any dependency from libsqlite3 for mod_spatialite check-in: 03786a62cd user: sandro tags: trunk | |
2021-06-12
| ||
09:56 | supporting FreeXL 2.0 - VirtualXL and ImportXLS() check-in: a5bf3d2f68 user: sandro tags: trunk | |
Changes to Makefile.in.
312 313 314 315 316 317 318 319 320 321 322 323 324 325 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to config.h.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
/* Define to 1 if you have the <inttypes.h> header file. */ #define HAVE_INTTYPES_H 1 /* Define to 1 if you have the <librttopo.h> header file. */ #define HAVE_LIBRTTOPO_H 1 /* Define to 1 if you have the `sqlite3' library (-lsqlite3). */ #define HAVE_LIBSQLITE3 1 /* Define to 1 if you have the `z' library (-lz). */ #define HAVE_LIBZ 1 /* Define to 1 if you have the `localtime_r' function. */ #define HAVE_LOCALTIME_R 1 |
| |
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
/* Define to 1 if you have the <inttypes.h> header file. */ #define HAVE_INTTYPES_H 1 /* Define to 1 if you have the <librttopo.h> header file. */ #define HAVE_LIBRTTOPO_H 1 /* Define to 1 if you have the `sqlite3' library (-lsqlite3). */ /* #undef HAVE_LIBSQLITE3 */ /* Define to 1 if you have the `z' library (-lz). */ #define HAVE_LIBZ 1 /* Define to 1 if you have the `localtime_r' function. */ #define HAVE_LOCALTIME_R 1 |
Changes to configure.
644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 ... 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 ... 825 826 827 828 829 830 831 832 833 834 835 836 837 838 .... 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 .... 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 .... 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 ..... 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 ..... 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 ..... 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 |
MODULE_ONLY_TRUE ENABLE_EXAMPLES_FALSE ENABLE_EXAMPLES_TRUE ENABLE_GEOPACKAGE_FALSE ENABLE_GEOPACKAGE_TRUE LIBXML2_LIBS LIBXML2_CFLAGS PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG GEOS_CFLAGS GEOS_LDFLAGS GEOSCONFIG LIBOBJS CXXCPP OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL ................................................................................ enable_static with_pic enable_fast_install with_gnu_ld with_sysroot enable_libtool_lock enable_mathsql enable_geocallbacks enable_knn enable_proj enable_iconv enable_freexl enable_epsg enable_geos with_geosconfig enable_gcp ................................................................................ CXX CXXFLAGS CCC CXXCPP PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR LIBXML2_CFLAGS LIBXML2_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ................................................................................ speeds up one-time build --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) --enable-mathsql enables SQL math functions [default=yes] --enable-geocallbacks enables geometry callbacks [default=no] --enable-knn enables KNN support [default=yes] --enable-proj enables PROJ.4 inclusion [default=yes] --enable-iconv enables ICONV inclusion [default=yes] --enable-freexl enables FreeXL inclusion [default=yes] --enable-epsg enables full EPSG dataset support [default=yes] --enable-geos enables GEOS inclusion [default=yes] --enable-gcp enables Control Points (from Grass GIS) [default=yes] ................................................................................ CXXFLAGS C++ compiler flags CXXCPP C++ preprocessor PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path LIBXML2_CFLAGS C compiler flags for LIBXML2, overriding pkg-config LIBXML2_LIBS linker flags for LIBXML2, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. ................................................................................ # disabling debug support $as_echo "#define NDEBUG 1" >>confdefs.h # config depending options ................................................................................ _ACEOF fi done # Checks for installed libraries { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqlite3_prepare_v2 in -lsqlite3" >&5 $as_echo_n "checking for sqlite3_prepare_v2 in -lsqlite3... " >&6; } if ${ac_cv_lib_sqlite3_sqlite3_prepare_v2+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsqlite3 -lm $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char sqlite3_prepare_v2 (); int main () { return sqlite3_prepare_v2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_sqlite3_sqlite3_prepare_v2=yes else ac_cv_lib_sqlite3_sqlite3_prepare_v2=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_prepare_v2" >&5 $as_echo "$ac_cv_lib_sqlite3_sqlite3_prepare_v2" >&6; } if test "x$ac_cv_lib_sqlite3_sqlite3_prepare_v2" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBSQLITE3 1 _ACEOF LIBS="-lsqlite3 $LIBS" else as_fn_error $? "'libsqlite3' is required but it doesn't seem to be installed on this system." "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inflateInit_ in -lz" >&5 $as_echo_n "checking for inflateInit_ in -lz... " >&6; } if ${ac_cv_lib_z_inflateInit_+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lz -lm $LIBS" ................................................................................ if test x"$enable_mathsql" != "xyes"; then $as_echo "#define OMIT_MATHSQL 1" >>confdefs.h fi #----------------------------------------------------------------------- #----------------------------------------------------------------------- # --enable-geocallbacks # # Check whether --enable-geocallbacks was given. if test "${enable_geocallbacks+set}" = set; then : enableval=$enable_geocallbacks; else enable_geocallbacks=no fi if test x"$enable_geocallbacks" == "xyes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqlite3_rtree_geometry_callback in -lsqlite3" >&5 $as_echo_n "checking for sqlite3_rtree_geometry_callback in -lsqlite3... " >&6; } if ${ac_cv_lib_sqlite3_sqlite3_rtree_geometry_callback+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsqlite3 -lm $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char sqlite3_rtree_geometry_callback (); int main () { return sqlite3_rtree_geometry_callback (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_sqlite3_sqlite3_rtree_geometry_callback=yes else ac_cv_lib_sqlite3_sqlite3_rtree_geometry_callback=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_rtree_geometry_callback" >&5 $as_echo "$ac_cv_lib_sqlite3_sqlite3_rtree_geometry_callback" >&6; } if test "x$ac_cv_lib_sqlite3_sqlite3_rtree_geometry_callback" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBSQLITE3 1 _ACEOF LIBS="-lsqlite3 $LIBS" else as_fn_error $? "obsolete 'libsqlite3' (< v.3.7.3). please retry specifying: --disable-geocallbacks" "$LINENO" 5 fi else $as_echo "#define OMIT_GEOCALLBACKS 1" >>confdefs.h fi #----------------------------------------------------------------------- #----------------------------------------------------------------------- # --enable-knn # # Check whether --enable-knn was given. if test "${enable_knn+set}" = set; then : enableval=$enable_knn; else enable_knn=yes fi if test x"$enable_knn" == "xyes"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sqlite3_rtree_query_callback in -lsqlite3" >&5 $as_echo_n "checking for sqlite3_rtree_query_callback in -lsqlite3... " >&6; } if ${ac_cv_lib_sqlite3_sqlite3_rtree_query_callback+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsqlite3 -lm $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char sqlite3_rtree_query_callback (); int main () { return sqlite3_rtree_query_callback (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_sqlite3_sqlite3_rtree_query_callback=yes else ac_cv_lib_sqlite3_sqlite3_rtree_query_callback=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_sqlite3_sqlite3_rtree_query_callback" >&5 $as_echo "$ac_cv_lib_sqlite3_sqlite3_rtree_query_callback" >&6; } if test "x$ac_cv_lib_sqlite3_sqlite3_rtree_query_callback" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBSQLITE3 1 _ACEOF LIBS="-lsqlite3 $LIBS" else as_fn_error $? "obsolete 'libsqlite3' (< v.3.8.5). please retry specifying: --disable-knn" "$LINENO" 5 fi else $as_echo "#define OMIT_KNN 1" >>confdefs.h fi #----------------------------------------------------------------------- #----------------------------------------------------------------------- # --enable-proj # # Check whether --enable-proj was given. if test "${enable_proj+set}" = set; then : enableval=$enable_proj; ................................................................................ enableval=$enable_libxml2; else enable_libxml2=yes fi if test x"$enable_libxml2" != "xno"; then if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBXML2" >&5 $as_echo_n "checking for LIBXML2... " >&6; } if test -n "$LIBXML2_CFLAGS"; then pkg_cv_LIBXML2_CFLAGS="$LIBXML2_CFLAGS" elif test -n "$PKG_CONFIG"; then |
< < < > > > > > < < > > < < > > > > < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < < | < < < < < < > > > > > > > > | | | | | | | < < > > | | | | | | | | | > > > > > | < | < < < < | < < > > | | | > > < < < < < < < > > > > > > > > > < > > > > > > > > > > > > > > > | > > > > > > > > > > < > > > > > > > > > > > > > | < > > > < < < < < < > > > > > > > > | < > > > | > < > | | < < > > > > > > > > > > > > < < < < > > > > > > > > > > > > > > > > > > > > > > < < < < < < < < < | < | < > > > | < < < > > < > < < < < < < < < < < < < < > > | < > | > > > > > > > < > > > > < > < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 ... 790 791 792 793 794 795 796 797 798 799 800 801 802 803 ... 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 .... 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 .... 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 .... 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 ..... 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 ..... 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 ..... 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 |
MODULE_ONLY_TRUE ENABLE_EXAMPLES_FALSE ENABLE_EXAMPLES_TRUE ENABLE_GEOPACKAGE_FALSE ENABLE_GEOPACKAGE_TRUE LIBXML2_LIBS LIBXML2_CFLAGS GEOS_CFLAGS GEOS_LDFLAGS GEOSCONFIG SQLITE3_LIBS SQLITE3_CFLAGS PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG LIBOBJS CXXCPP OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL ................................................................................ enable_static with_pic enable_fast_install with_gnu_ld with_sysroot enable_libtool_lock enable_mathsql enable_proj enable_iconv enable_freexl enable_epsg enable_geos with_geosconfig enable_gcp ................................................................................ CXX CXXFLAGS CCC CXXCPP PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR SQLITE3_CFLAGS SQLITE3_LIBS LIBXML2_CFLAGS LIBXML2_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ................................................................................ speeds up one-time build --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) --enable-mathsql enables SQL math functions [default=yes] --enable-proj enables PROJ.4 inclusion [default=yes] --enable-iconv enables ICONV inclusion [default=yes] --enable-freexl enables FreeXL inclusion [default=yes] --enable-epsg enables full EPSG dataset support [default=yes] --enable-geos enables GEOS inclusion [default=yes] --enable-gcp enables Control Points (from Grass GIS) [default=yes] ................................................................................ CXXFLAGS C++ compiler flags CXXCPP C++ preprocessor PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path SQLITE3_CFLAGS C compiler flags for SQLITE3, overriding pkg-config SQLITE3_LIBS linker flags for SQLITE3, overriding pkg-config LIBXML2_CFLAGS C compiler flags for LIBXML2, overriding pkg-config LIBXML2_LIBS linker flags for LIBXML2, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. ................................................................................ # disabling debug support $as_echo "#define NDEBUG 1" >>confdefs.h # config depending options ................................................................................ _ACEOF fi done # Checks for installed libraries # AC_CHECK_LIB(sqlite3,sqlite3_prepare_v2,,AC_MSG_ERROR(['libsqlite3' is required but it doesn't seem to be installed on this system.]),-lm) { $as_echo "$as_me:${as_lineno-$LINENO}: checking for inflateInit_ in -lz" >&5 $as_echo_n "checking for inflateInit_ in -lz... " >&6; } if ${ac_cv_lib_z_inflateInit_+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lz -lm $LIBS" ................................................................................ if test x"$enable_mathsql" != "xyes"; then $as_echo "#define OMIT_MATHSQL 1" >>confdefs.h fi #----------------------------------------------------------------------- if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SQLITE3" >&5 $as_echo_n "checking for SQLITE3... " >&6; } if test -n "$SQLITE3_CFLAGS"; then pkg_cv_SQLITE3_CFLAGS="$SQLITE3_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sqlite3\""; } >&5 ($PKG_CONFIG --exists --print-errors "sqlite3") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SQLITE3_CFLAGS=`$PKG_CONFIG --cflags "sqlite3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$SQLITE3_LIBS"; then pkg_cv_SQLITE3_LIBS="$SQLITE3_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sqlite3\""; } >&5 ($PKG_CONFIG --exists --print-errors "sqlite3") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SQLITE3_LIBS=`$PKG_CONFIG --libs "sqlite3" 2>/dev/null` test "x$?" != "x0" && pkg_failed=yes else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then SQLITE3_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "sqlite3" 2>&1` else SQLITE3_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "sqlite3" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$SQLITE3_PKG_ERRORS" >&5 as_fn_error $? "'libsqlite3' is required but it doesn't seem to be installed on this system." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } as_fn_error $? "'libsqlite3' is required but it doesn't seem to be installed on this system." "$LINENO" 5 else SQLITE3_CFLAGS=$pkg_cv_SQLITE3_CFLAGS SQLITE3_LIBS=$pkg_cv_SQLITE3_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi #----------------------------------------------------------------------- # --enable-proj # # Check whether --enable-proj was given. if test "${enable_proj+set}" = set; then : enableval=$enable_proj; ................................................................................ enableval=$enable_libxml2; else enable_libxml2=yes fi if test x"$enable_libxml2" != "xno"; then pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for LIBXML2" >&5 $as_echo_n "checking for LIBXML2... " >&6; } if test -n "$LIBXML2_CFLAGS"; then pkg_cv_LIBXML2_CFLAGS="$LIBXML2_CFLAGS" elif test -n "$PKG_CONFIG"; then |
Changes to configure.ac.
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 ... 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 ... 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 |
[Should be defined in order to disable PROJ.4 support.]) AH_TEMPLATE([OMIT_ICONV], [Should be defined in order to disable ICONV support.]) AH_TEMPLATE([OMIT_MATHSQL], [Should be defined in order to disable MATHSQL support.]) AH_TEMPLATE([OMIT_EPSG], [Should be defined in order to disable EPSG full support.]) AH_TEMPLATE([OMIT_GEOCALLBACKS], [Should be defined in order to disable GEOCALLBACKS support.]) AH_TEMPLATE([OMIT_KNN], [Should be defined in order to disable KNN support.]) AH_TEMPLATE([OMIT_FREEXL], [Should be defined in order to disable FREEXL support.]) AH_TEMPLATE([ENABLE_LIBXML2], [Should be defined in order to enable LIBXML2 support.]) AH_TEMPLATE([ENABLE_MINIZIP], ................................................................................ AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK AC_FUNC_MEMCMP AC_FUNC_STAT AC_FUNC_STRFTIME AC_CHECK_FUNCS([memset sqrt strcasecmp strerror strncasecmp strstr fdatasync ftruncate getcwd gettimeofday localtime_r memmove strerror]) # Checks for installed libraries AC_CHECK_LIB(sqlite3,sqlite3_prepare_v2,,AC_MSG_ERROR(['libsqlite3' is required but it doesn't seem to be installed on this system.]),-lm) AC_CHECK_LIB(z,inflateInit_,,AC_MSG_ERROR(['libz' is required but it doesn't seem to be installed on this system.]),-lm) AC_CONFIG_FILES([Makefile \ src/Makefile \ src/headers/Makefile \ src/gaiaaux/Makefile \ src/gaiaexif/Makefile \ ................................................................................ [--enable-mathsql], [enables SQL math functions [default=yes]])], [], [enable_mathsql=yes]) if test x"$enable_mathsql" != "xyes"; then AC_DEFINE(OMIT_MATHSQL) fi #----------------------------------------------------------------------- #----------------------------------------------------------------------- # --enable-geocallbacks # AC_ARG_ENABLE(geocallbacks, [AS_HELP_STRING( [--enable-geocallbacks], [enables geometry callbacks [default=no]])], [], [enable_geocallbacks=no]) if test x"$enable_geocallbacks" == "xyes"; then AC_CHECK_LIB(sqlite3,sqlite3_rtree_geometry_callback,,AC_MSG_ERROR([obsolete 'libsqlite3' (< v.3.7.3). please retry specifying: --disable-geocallbacks]),-lm) else AC_DEFINE(OMIT_GEOCALLBACKS) fi #----------------------------------------------------------------------- #----------------------------------------------------------------------- # --enable-knn # AC_ARG_ENABLE(knn, [AS_HELP_STRING( [--enable-knn], [enables KNN support [default=yes]])], [], [enable_knn=yes]) if test x"$enable_knn" == "xyes"; then AC_CHECK_LIB(sqlite3,sqlite3_rtree_query_callback,,AC_MSG_ERROR([obsolete 'libsqlite3' (< v.3.8.5). please retry specifying: --disable-knn]),-lm) else AC_DEFINE(OMIT_KNN) fi #----------------------------------------------------------------------- #----------------------------------------------------------------------- # --enable-proj # AC_ARG_ENABLE(proj, [AS_HELP_STRING( [--enable-proj], [enables PROJ.4 inclusion [default=yes]])], [], [enable_proj=yes]) |
< < | < < < < < < < < < < < < < < < < < < < < < < < < < > > |
47 48 49 50 51 52 53 54 55 56 57 58 59 60 ... 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 ... 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 |
[Should be defined in order to disable PROJ.4 support.]) AH_TEMPLATE([OMIT_ICONV], [Should be defined in order to disable ICONV support.]) AH_TEMPLATE([OMIT_MATHSQL], [Should be defined in order to disable MATHSQL support.]) AH_TEMPLATE([OMIT_EPSG], [Should be defined in order to disable EPSG full support.]) AH_TEMPLATE([OMIT_KNN], [Should be defined in order to disable KNN support.]) AH_TEMPLATE([OMIT_FREEXL], [Should be defined in order to disable FREEXL support.]) AH_TEMPLATE([ENABLE_LIBXML2], [Should be defined in order to enable LIBXML2 support.]) AH_TEMPLATE([ENABLE_MINIZIP], ................................................................................ AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK AC_FUNC_MEMCMP AC_FUNC_STAT AC_FUNC_STRFTIME AC_CHECK_FUNCS([memset sqrt strcasecmp strerror strncasecmp strstr fdatasync ftruncate getcwd gettimeofday localtime_r memmove strerror]) # Checks for installed libraries # AC_CHECK_LIB(sqlite3,sqlite3_prepare_v2,,AC_MSG_ERROR(['libsqlite3' is required but it doesn't seem to be installed on this system.]),-lm) AC_CHECK_LIB(z,inflateInit_,,AC_MSG_ERROR(['libz' is required but it doesn't seem to be installed on this system.]),-lm) AC_CONFIG_FILES([Makefile \ src/Makefile \ src/headers/Makefile \ src/gaiaaux/Makefile \ src/gaiaexif/Makefile \ ................................................................................ [--enable-mathsql], [enables SQL math functions [default=yes]])], [], [enable_mathsql=yes]) if test x"$enable_mathsql" != "xyes"; then AC_DEFINE(OMIT_MATHSQL) fi #----------------------------------------------------------------------- PKG_CHECK_MODULES([SQLITE3], [sqlite3], , AC_MSG_ERROR(['libsqlite3' is required but it doesn't seem to be installed on this system.])) AC_SUBST(SQLITE3_LIBS) #----------------------------------------------------------------------- # --enable-proj # AC_ARG_ENABLE(proj, [AS_HELP_STRING( [--enable-proj], [enables PROJ.4 inclusion [default=yes]])], [], [enable_proj=yes]) |
Changes to examples/Makefile.am.
4 5 6 7 8 9 10 11 12 13 14 15 |
else
noinst_PROGRAMS = demo1 demo2 demo3 demo4 demo5
endif
AM_CFLAGS = -I@srcdir@/../src/headers
AM_LDFLAGS = -L../src -lspatialite -lm $(GCOV_FLAGS)
LDADD = @LIBXML2_LIBS@
MOSTLYCLEANFILES = *.gcna *.gcno *.gcda
EXTRA_DIST = examples.doxy
|
< < |
4 5 6 7 8 9 10 11 12 13 |
else noinst_PROGRAMS = demo1 demo2 demo3 demo4 demo5 endif AM_CFLAGS = -I@srcdir@/../src/headers AM_LDFLAGS = -L../src -lspatialite -lm $(GCOV_FLAGS) MOSTLYCLEANFILES = *.gcna *.gcno *.gcda EXTRA_DIST = examples.doxy |
Changes to examples/Makefile.in.
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 ... 267 268 269 270 271 272 273 274 275 276 277 278 279 280 ... 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 |
$(top_builddir)/./src/headers/spatialite/gaiaconfig-msvc.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = PROGRAMS = $(noinst_PROGRAMS) demo1_SOURCES = demo1.c demo1_OBJECTS = demo1.$(OBJEXT) demo1_LDADD = $(LDADD) demo1_DEPENDENCIES = AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = demo2_SOURCES = demo2.c demo2_OBJECTS = demo2.$(OBJEXT) demo2_LDADD = $(LDADD) demo2_DEPENDENCIES = demo3_SOURCES = demo3.c demo3_OBJECTS = demo3.$(OBJEXT) demo3_LDADD = $(LDADD) demo3_DEPENDENCIES = demo4_SOURCES = demo4.c demo4_OBJECTS = demo4.$(OBJEXT) demo4_LDADD = $(LDADD) demo4_DEPENDENCIES = demo5_SOURCES = demo5.c demo5_OBJECTS = demo5.$(OBJEXT) demo5_LDADD = $(LDADD) demo5_DEPENDENCIES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; ................................................................................ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ................................................................................ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = -I@srcdir@/../src/headers AM_LDFLAGS = -L../src -lspatialite -lm $(GCOV_FLAGS) LDADD = @LIBXML2_LIBS@ MOSTLYCLEANFILES = *.gcna *.gcno *.gcda EXTRA_DIST = examples.doxy all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) |
< < < < < > > < |
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 ... 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 ... 321 322 323 324 325 326 327 328 329 330 331 332 333 334 |
$(top_builddir)/./src/headers/spatialite/gaiaconfig-msvc.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = PROGRAMS = $(noinst_PROGRAMS) demo1_SOURCES = demo1.c demo1_OBJECTS = demo1.$(OBJEXT) demo1_LDADD = $(LDADD) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = demo2_SOURCES = demo2.c demo2_OBJECTS = demo2.$(OBJEXT) demo2_LDADD = $(LDADD) demo3_SOURCES = demo3.c demo3_OBJECTS = demo3.$(OBJEXT) demo3_LDADD = $(LDADD) demo4_SOURCES = demo4.c demo4_OBJECTS = demo4.$(OBJEXT) demo4_LDADD = $(LDADD) demo5_SOURCES = demo5.c demo5_OBJECTS = demo5.$(OBJEXT) demo5_LDADD = $(LDADD) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; ................................................................................ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ................................................................................ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CFLAGS = -I@srcdir@/../src/headers AM_LDFLAGS = -L../src -lspatialite -lm $(GCOV_FLAGS) MOSTLYCLEANFILES = *.gcna *.gcno *.gcda EXTRA_DIST = examples.doxy all: all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) |
Changes to fakeconfig.h.
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
...
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
|
/* Define to 1 if you have the <inttypes.h> header file. */ #define HAVE_INTTYPES_H 1 /* Define to 1 if you have the <librttopo.h> header file. */ #define HAVE_LIBRTTOPO_H 1 /* Define to 1 if you have the `sqlite3' library (-lsqlite3). */ #define HAVE_LIBSQLITE3 1 /* Define to 1 if you have the `z' library (-lz). */ #define HAVE_LIBZ 1 /* Define to 1 if you have the `localtime_r' function. */ #define HAVE_LOCALTIME_R 1 /* Define to 1 if `lstat' has the bug that it succeeds when given the ................................................................................ /* Should be defined in order to disable EPSG full support. */ /* #undef OMIT_EPSG */ /* Should be defined in order to disable FREEXL support. */ /* #undef OMIT_FREEXL */ /* Should be defined in order to disable GEOCALLBACKS support. */ #define OMIT_GEOCALLBACKS 1 /* Should be defined in order to disable GEOS support. */ /* #undef OMIT_GEOS */ /* Should be defined in order to disable ICONV support. */ /* #undef OMIT_ICONV */ /* Should be defined in order to disable KNN support. */ |
<
<
<
<
<
<
|
63
64
65
66
67
68
69
70
71
72
73
74
75
76
...
172
173
174
175
176
177
178
179
180
181
182
183
184
185
|
/* Define to 1 if you have the <inttypes.h> header file. */
#define HAVE_INTTYPES_H 1
/* Define to 1 if you have the <librttopo.h> header file. */
#define HAVE_LIBRTTOPO_H 1
/* Define to 1 if you have the `z' library (-lz). */
#define HAVE_LIBZ 1
/* Define to 1 if you have the `localtime_r' function. */
#define HAVE_LOCALTIME_R 1
/* Define to 1 if `lstat' has the bug that it succeeds when given the
................................................................................
/* Should be defined in order to disable EPSG full support. */
/* #undef OMIT_EPSG */
/* Should be defined in order to disable FREEXL support. */
/* #undef OMIT_FREEXL */
/* Should be defined in order to disable GEOS support. */
/* #undef OMIT_GEOS */
/* Should be defined in order to disable ICONV support. */
/* #undef OMIT_ICONV */
/* Should be defined in order to disable KNN support. */
|
Changes to fakeconfig.h.in.
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
...
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
|
/* Define to 1 if you have the <inttypes.h> header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the <librttopo.h> header file. */ #undef HAVE_LIBRTTOPO_H /* Define to 1 if you have the `sqlite3' library (-lsqlite3). */ #undef HAVE_LIBSQLITE3 /* Define to 1 if you have the `z' library (-lz). */ #undef HAVE_LIBZ /* Define to 1 if you have the `localtime_r' function. */ #undef HAVE_LOCALTIME_R /* Define to 1 if `lstat' has the bug that it succeeds when given the ................................................................................ /* Should be defined in order to disable EPSG full support. */ #undef OMIT_EPSG /* Should be defined in order to disable FREEXL support. */ #undef OMIT_FREEXL /* Should be defined in order to disable GEOCALLBACKS support. */ #undef OMIT_GEOCALLBACKS /* Should be defined in order to disable GEOS support. */ #undef OMIT_GEOS /* Should be defined in order to disable ICONV support. */ #undef OMIT_ICONV /* Should be defined in order to disable KNN support. */ |
<
<
<
<
<
<
|
62
63
64
65
66
67
68
69
70
71
72
73
74
75
...
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
/* Define to 1 if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* Define to 1 if you have the <librttopo.h> header file. */
#undef HAVE_LIBRTTOPO_H
/* Define to 1 if you have the `z' library (-lz). */
#undef HAVE_LIBZ
/* Define to 1 if you have the `localtime_r' function. */
#undef HAVE_LOCALTIME_R
/* Define to 1 if `lstat' has the bug that it succeeds when given the
................................................................................
/* Should be defined in order to disable EPSG full support. */
#undef OMIT_EPSG
/* Should be defined in order to disable FREEXL support. */
#undef OMIT_FREEXL
/* Should be defined in order to disable GEOS support. */
#undef OMIT_GEOS
/* Should be defined in order to disable ICONV support. */
#undef OMIT_ICONV
/* Should be defined in order to disable KNN support. */
|
Changes to spatialite-sql-latest.html.
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 .... 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 .... 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 .... 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 |
<li><a href="#p16">SQL functions for Spatial-MetaData and Spatial-Index handling</a></li> <li><a href="#p16metacatalog">SQL functions supporting the MetaCatalog and related Statistics</a></li> <li><a href="#p16style">SQL functions supporting SLD/SE Styled Layers</a></li> <li><a href="#p16isometa">SQL functions supporting ISO Metadata</a></li> <li><a href="#p16fdo">SQL functions implementing FDO/OGR compatibility</a></li> <li><a href="#p16gpkg">SQL functions implementing OGC GeoPackage compatibility</a></li> <li><a href="#p17">SQL functions for MbrCache-based queries</a></li> <li><a href="#p18">SQL functions for R*Tree-based queries (Geometry Callbacks)</a></li> <li><a href="#xmlBlob">SQL functions supporting XmlBLOB</a></li> <li><a href="#srid">SQL functions supporting SRID inspection</a></li> <li><a href="#proj6">SQL functions supporting new PROJ.6 API</a></li> <li><a href="#topology">SQL functions supporting Topology-Geometry</a></li> <li><a href="#network">SQL functions supporting Topology-Network</a></li> <li><a href="#wms">SQL functions supporting WMS datasources</a></li> <li><a href="#datalic">SQL functions supporting Data Licenses</a></li> ................................................................................ and only an invalid RTree will be then actually rebuilt</li> <li>if <b>no_check = TRUE</b> the RTree will be unconditionally rebuilt from scratch</li> </ul></li> </ul><hr> the return type is Integer, with a return value of 1 for TRUE or 0 for FALSE<br> NULL will be returned if the requested RTree doesn't exist<hr> -1 will be returned if any physical column named "rowid" (caseless) shadowing the real ROWID is detected.</td></tr> <tr><td><b>GetSpatialIndexExtent</b></td> <td>GetSpatialIndexExtent( db_prefix <i>String</i> , table <i>String</i> , column <i>String</i> ) : <i>Geometry</i></td> <td></td> <td align="center" bgcolor="#d0f0d0">base</td> <td>Retrieves the Full Extent from an RTree <b>Spatial Index</b> supporting a <b>SpatialTable</b>/<b>SpatialView</b> or a <b>GeoPackage-Geometry</b>. <ul> <li>The <b>db_prefix</b> argument specifies which one of the ATTACHED databases is expected to contain the RTree; if <b>NULL</b> then the <b>MAIN</b> database will be assumed by default.</li> <li>The <b>table</b> and <b>column</b> arguments specifying which Table and Geometry is intended.</li> </ul> <hr> returns a Rectangle (Polygon Geometry). The Polygon is defined by the corner points of the RTree's Full Extent [(MINX, MINY),(MAXX, MINY), (MAXX, MAXY), (MINX, MAXY), (MINX, MINY)].<br> <b>NULL</b> will be returned on invalid arguments, or on a not existing Table/Geometry, or if no coresponding Spatial Index exists.<hr> <u>Plase note</u>: retrieving the Full Extenxt from an RTree is a very quick operation even when performed on a Table/Geometry containing many million rows.<br> <u>Also</u>: The returned Geometry will be a Spatialite-Binary, even when a GeoPackage-Table/Geometry has been requested.</td></tr> <tr><td><b>InvalidateLayerStatistics</b></td> <td>InvalidateLayerStatistics( [ void ) : <i>Integer</i><hr> InvalidateLayerStatistics( table <i>String</i> [ , column <i>String</i> ] ) : <i>Integer</i></td> <td></td> <td align="center" bgcolor="#d0f0d0">base</td> <td>Immediately and unconditionally invalidates the internal Layer Statistics<ul> <li>if no arguments are passed, then internal statistics will be invalidated ................................................................................ <td>BuildMbrFilter( x1 <i>Double precision</i> , y1 <i>Double precision</i> , x2 <i>Double precision</i> , y2 <i>Double precision</i> )</td> <td></td> <td align="center" bgcolor="#d0f0d0">base</td> <td>Creates an MBR identified by extreme points <b>x1 y1</b> and <b>x2 y2</b><hr> This fuction is used internally by <u><i>triggers</i></u> related to MbrCache management, and is not intended for any other usage</td></tr> <tr><td colspan="5" align="center" bgcolor="#f0f0c0"> <h3><a name="p18">SQL functions for R*Tree-based queries (Geometry Callbacks)</a></h3></td></tr> <tr><th bgcolor="#d0d0d0">Function</th> <th bgcolor="#d0d0d0">Syntax</th> <th bgcolor="#d0d0d0">OGC<br>defined</th> <th bgcolor="#d0d0d0">required<br>module</th> <th bgcolor="#d0d0d0">Summary</th></tr> <tr><td><b>RTreeIntersects</b></td> <td>RTreeIntersects( x1 <i>Double precision</i> , y1 <i>Double precision</i> , x2 <i>Double precision</i> , y2 <i>Double precision</i> )</td> <td></td> <td align="center" bgcolor="#d0d0d0">geocallbacks</td> <td>Retrieves from an R*Tree Spatial Index any entity whose MBR <u><i>intersect</i></u> the rectangle identified by extreme points <b>x1 y1</b> and <b>x2 y2</b></td></tr> <tr><td><b>RTreeWithin</b></td> <td>RTreeWithin( x1 <i>Double precision</i> , y1 <i>Double precision</i> , x2 <i>Double precision</i> , y2 <i>Double precision</i> )</td> <td></td> <td align="center" bgcolor="#d0d0d0">geocallbacks</td> <td><b>Deprecated function</b><br> Still maintained so to avoid backward compatibility issues, but now simply is an <i>alias-name</i> for <b>RTreeIntersects</b></td></tr> <tr><td><b>RTreeContains</b></td> <td>RTreeContains( x1 <i>Double precision</i> , y1 <i>Double precision</i> , x2 <i>Double precision</i> , y2 <i>Double precision</i> )</td> <td></td> <td align="center" bgcolor="#d0d0d0">geocallbacks</td> <td><b>Deprecated function</b><br> Still maintained so to avoid backward compatibility issues, but now simply is an <i>alias-name</i> for <b>RTreeIntersects</b></td></tr> <tr><td><b>RTreeDistWithin</b></td> <td>RTreeDistWithin( x <i>Double precision</i> , y <i>Double precision</i> , radius <i>Double precision</i> )</td> <td></td> <td align="center" bgcolor="#d0d0d0">geocallbacks</td> <td>Retrieves from an R*Tree Spatial Index any entity whose MBR <u><i>intersect</i></u> the square circumscribed on the given circle (<b>x y</b> center, <b>radius)</b></td></tr> <tr><td colspan="5" align="center" bgcolor="#f0f0c0"> <h3><a name="xmlBlob">SQL functions supporting XmlBLOB</a></h3></td></tr> <tr><th bgcolor="#d0d0d0">Function</th> <th bgcolor="#d0d0d0">Syntax</th> <th bgcolor="#d0d0d0">OGC<br>defined</th> <th bgcolor="#d0d0d0">required<br>module</th> <th bgcolor="#d0d0d0">Summary</th></tr> ................................................................................ Will return the total number of imported rows.<br> <b>NULL</b> will be returned on invalid arguments.<hr> <u>Please note well</u>: this SQL function opens the door to many potential security issues, and thus is always <i>disabled by default</i>.<br> Explicitly setting the environment variable <b>SPATIALITE_SECURITY=relaxed</b> is absolutely required in order to enable this function.</td></tr> <tr><td><b>ImportXLS</b></td> <td>ImportXLS( filename <i>Text</i> , table <i>Text</i> ) : <i>Integer</i><hr> ImportXLS( filename <i>Text</i> , table <i>Text</i> [ , worksheet_index <i>Integer</i> [ , first_line_titles <i>Integer</i> ] ] ) : <i>Integer</i></td> <td colspan="3">Will import an external spreadsheet file (<i>Microsoft .xls format</i>) into an internal Table: <ul> <li>Mandatory arguments: <ul> <li><b>filename</b> absolute or relative path leading to the spreadsheet file.</li> <li><b>table</b> name of the table to be created.</li> </ul></li> <li>Optional arguments: |
< < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | |
52 53 54 55 56 57 58 59 60 61 62 63 64 65 .... 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 .... 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 .... 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 |
<li><a href="#p16">SQL functions for Spatial-MetaData and Spatial-Index handling</a></li> <li><a href="#p16metacatalog">SQL functions supporting the MetaCatalog and related Statistics</a></li> <li><a href="#p16style">SQL functions supporting SLD/SE Styled Layers</a></li> <li><a href="#p16isometa">SQL functions supporting ISO Metadata</a></li> <li><a href="#p16fdo">SQL functions implementing FDO/OGR compatibility</a></li> <li><a href="#p16gpkg">SQL functions implementing OGC GeoPackage compatibility</a></li> <li><a href="#p17">SQL functions for MbrCache-based queries</a></li> <li><a href="#xmlBlob">SQL functions supporting XmlBLOB</a></li> <li><a href="#srid">SQL functions supporting SRID inspection</a></li> <li><a href="#proj6">SQL functions supporting new PROJ.6 API</a></li> <li><a href="#topology">SQL functions supporting Topology-Geometry</a></li> <li><a href="#network">SQL functions supporting Topology-Network</a></li> <li><a href="#wms">SQL functions supporting WMS datasources</a></li> <li><a href="#datalic">SQL functions supporting Data Licenses</a></li> ................................................................................ and only an invalid RTree will be then actually rebuilt</li> <li>if <b>no_check = TRUE</b> the RTree will be unconditionally rebuilt from scratch</li> </ul></li> </ul><hr> the return type is Integer, with a return value of 1 for TRUE or 0 for FALSE<br> NULL will be returned if the requested RTree doesn't exist<hr> -1 will be returned if any physical column named "rowid" (caseless) shadowing the real ROWID is detected.</td></tr> <tr><td><b>InvalidateLayerStatistics</b></td> <td>InvalidateLayerStatistics( [ void ) : <i>Integer</i><hr> InvalidateLayerStatistics( table <i>String</i> [ , column <i>String</i> ] ) : <i>Integer</i></td> <td></td> <td align="center" bgcolor="#d0f0d0">base</td> <td>Immediately and unconditionally invalidates the internal Layer Statistics<ul> <li>if no arguments are passed, then internal statistics will be invalidated ................................................................................ <td>BuildMbrFilter( x1 <i>Double precision</i> , y1 <i>Double precision</i> , x2 <i>Double precision</i> , y2 <i>Double precision</i> )</td> <td></td> <td align="center" bgcolor="#d0f0d0">base</td> <td>Creates an MBR identified by extreme points <b>x1 y1</b> and <b>x2 y2</b><hr> This fuction is used internally by <u><i>triggers</i></u> related to MbrCache management, and is not intended for any other usage</td></tr> <tr><td colspan="5" align="center" bgcolor="#f0f0c0"> <h3><a name="xmlBlob">SQL functions supporting XmlBLOB</a></h3></td></tr> <tr><th bgcolor="#d0d0d0">Function</th> <th bgcolor="#d0d0d0">Syntax</th> <th bgcolor="#d0d0d0">OGC<br>defined</th> <th bgcolor="#d0d0d0">required<br>module</th> <th bgcolor="#d0d0d0">Summary</th></tr> ................................................................................ Will return the total number of imported rows.<br> <b>NULL</b> will be returned on invalid arguments.<hr> <u>Please note well</u>: this SQL function opens the door to many potential security issues, and thus is always <i>disabled by default</i>.<br> Explicitly setting the environment variable <b>SPATIALITE_SECURITY=relaxed</b> is absolutely required in order to enable this function.</td></tr> <tr><td><b>ImportXLS</b></td> <td>ImportXLS( filename <i>Text</i> , table <i>Text</i> ) : <i>Integer</i><hr> ImportXLS( filename <i>Text</i> , table <i>Text</i> [ , worksheet_index <i>Integer</i> [ , first_line_titles <i>Integer</i> ] ] ) : <i>Integer</i></td> <td colspan="3">Will import an external spreadsheet file (<i>Microsoft Excel <b>.xls</b> or <b>.xlsx</b> formats or Libre/OpenOffice Calc <b>.ods</b> format</i>) into an internal Table: <ul> <li>Mandatory arguments: <ul> <li><b>filename</b> absolute or relative path leading to the spreadsheet file.</li> <li><b>table</b> name of the table to be created.</li> </ul></li> <li>Optional arguments: |
Changes to spatialite.pc.in.
4 5 6 7 8 9 10 11 12 |
exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: spatialite Description: Spatial SQL database engine based on SQLite Version: @VERSION@ Libs: -L${libdir} -lspatialite @LIBS@ @LIBXML2_LIBS@ -lm Cflags: -I${includedir} |
| |
4 5 6 7 8 9 10 11 12 |
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
Name: spatialite
Description: Spatial SQL database engine based on SQLite
Version: @VERSION@
Libs: -L${libdir} -lspatialite @LIBS@ @LIBXML2_LIBS@ @SQLITE3_LIBS@ -lm
Cflags: -I${includedir}
|
Changes to src/Makefile.am.
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
./control_points/libcontrol_points.la \ ./cutter/libcutter.la \ ./topology/libtopology.la \ ./srsinit/libsrsinit.la \ ./stored_procedures/libstored_procedures.la \ ./connection_cache/libconnection_cache.la \ ./virtualtext/libvirtualtext.la \ ./wfs/libwfs.la @LIBXML2_LIBS@ if MINGW libspatialite_la_LDFLAGS = -version-info 5:1:0 -no-undefined libspatialite_la_LIBADD += -lm else if ANDROID libspatialite_la_LDFLAGS = -version-info 8:2:2 |
| |
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
./control_points/libcontrol_points.la \
./cutter/libcutter.la \
./topology/libtopology.la \
./srsinit/libsrsinit.la \
./stored_procedures/libstored_procedures.la \
./connection_cache/libconnection_cache.la \
./virtualtext/libvirtualtext.la \
./wfs/libwfs.la @LIBXML2_LIBS@ @SQLITE3_LIBS@
if MINGW
libspatialite_la_LDFLAGS = -version-info 5:1:0 -no-undefined
libspatialite_la_LIBADD += -lm
else
if ANDROID
libspatialite_la_LDFLAGS = -version-info 8:2:2
|
Changes to src/Makefile.in.
362
363
364
365
366
367
368
369
370
371
372
373
374
375
...
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
|
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
................................................................................
./geopackage/libgeopackage.la ./spatialite/libsplite.la \
./shapefiles/libshapefiles.la ./dxf/libdxf.la ./md5/libmd5.la \
./control_points/libcontrol_points.la ./cutter/libcutter.la \
./topology/libtopology.la ./srsinit/libsrsinit.la \
./stored_procedures/libstored_procedures.la \
./connection_cache/libconnection_cache.la \
./virtualtext/libvirtualtext.la ./wfs/libwfs.la @LIBXML2_LIBS@ \
$(am__append_1) $(am__append_2) $(am__append_3)
@ANDROID_FALSE@@MINGW_FALSE@libspatialite_la_LDFLAGS = -version-info 8:2:2
@ANDROID_TRUE@@MINGW_FALSE@libspatialite_la_LDFLAGS = -version-info 8:2:2
@MINGW_TRUE@libspatialite_la_LDFLAGS = -version-info 5:1:0 -no-undefined
mod_spatialite_la_SOURCES = versioninfo/version.c
mod_spatialite_la_LIBADD = ./gaiaaux/gaiaaux.la ./gaiaexif/gaiaexif.la \
./gaiageo/gaiageo.la ./geopackage/geopackage.la \
./spatialite/splite.la ./shapefiles/shapefiles.la ./dxf/dxf.la \
|
>
>
|
|
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
...
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
|
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ................................................................................ ./geopackage/libgeopackage.la ./spatialite/libsplite.la \ ./shapefiles/libshapefiles.la ./dxf/libdxf.la ./md5/libmd5.la \ ./control_points/libcontrol_points.la ./cutter/libcutter.la \ ./topology/libtopology.la ./srsinit/libsrsinit.la \ ./stored_procedures/libstored_procedures.la \ ./connection_cache/libconnection_cache.la \ ./virtualtext/libvirtualtext.la ./wfs/libwfs.la @LIBXML2_LIBS@ \ @SQLITE3_LIBS@ $(am__append_1) $(am__append_2) $(am__append_3) @ANDROID_FALSE@@MINGW_FALSE@libspatialite_la_LDFLAGS = -version-info 8:2:2 @ANDROID_TRUE@@MINGW_FALSE@libspatialite_la_LDFLAGS = -version-info 8:2:2 @MINGW_TRUE@libspatialite_la_LDFLAGS = -version-info 5:1:0 -no-undefined mod_spatialite_la_SOURCES = versioninfo/version.c mod_spatialite_la_LIBADD = ./gaiaaux/gaiaaux.la ./gaiaexif/gaiaexif.la \ ./gaiageo/gaiageo.la ./geopackage/geopackage.la \ ./spatialite/splite.la ./shapefiles/shapefiles.la ./dxf/dxf.la \ |
Changes to src/connection_cache/Makefile.in.
304 305 306 307 308 309 310 311 312 313 314 315 316 317 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/connection_cache/generator/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/control_points/Makefile.in.
269 270 271 272 273 274 275 276 277 278 279 280 281 282 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/cutter/Makefile.in.
253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/dxf/Makefile.in.
267 268 269 270 271 272 273 274 275 276 277 278 279 280 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/gaiaaux/Makefile.in.
256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/gaiaexif/Makefile.in.
254 255 256 257 258 259 260 261 262 263 264 265 266 267 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/gaiageo/Makefile.in.
341 342 343 344 345 346 347 348 349 350 351 352 353 354 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/gaiageo/flex/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/gaiageo/lemon/Makefile.in.
256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/gaiageo/lemon/lemon_src/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/geopackage/Makefile.in.
311 312 313 314 315 316 317 318 319 320 321 322 323 324 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/headers/Makefile.in.
260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/headers/spatialite.h.
2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 |
const char *name_column, int a_star_enabled, int bidirectional, const char *oneway_from, const char *oneway_to, int overwrite); /** Will attempt to retrieve the Full Extent from an R*Tree (SpatiaLite) \param db_handle handle to the current SQLite connection \param prefix schema prefix identifying the DB containing the R*Tree\n "main" always identifies the main DB (primary, not Attached). \param name the name of the R*Tree table \param srid the intended SRID for the R*Tree \sa gaiaGetGpkgRTreeFullExtent \return a Rectangle Geometry corresponding to the Full Extent,\n NULL on failure. */ SPATIALITE_DECLARE gaiaGeomCollPtr gaiaGetRTreeFullExtent (sqlite3 * db_handle, const char *db_prefix, const char *name, int srid); SPATIALITE_DECLARE gaiaGeomCollPtr gaiaGetGpkgRTreeFullExtent (sqlite3 * db_handle, const char *db_prefix, const char *name, int srid); SPATIALITE_DECLARE const char *gaia_create_routing_get_last_error (const void *cache); SPATIALITE_DECLARE int gaiaGPKG2Spatialite (sqlite3 * handle_in, const char *gpkg_in_path, sqlite3 * handle_out, |
< < < < < < < < < < < < < < < < < < < < < < < < < < < < |
2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 |
const char *name_column, int a_star_enabled, int bidirectional, const char *oneway_from, const char *oneway_to, int overwrite); SPATIALITE_DECLARE const char *gaia_create_routing_get_last_error (const void *cache); SPATIALITE_DECLARE int gaiaGPKG2Spatialite (sqlite3 * handle_in, const char *gpkg_in_path, sqlite3 * handle_out, |
Changes to src/headers/spatialite/gaiaconfig.h.
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
/* Should be defined in order to disable EPSG full support. */ /* #undef OMIT_EPSG */ /* Should be defined in order to disable FREEXL support. */ /* #undef OMIT_FREEXL */ /* Should be defined in order to disable GEOCALLBACKS support. */ #define OMIT_GEOCALLBACKS 1 /* Should be defined in order to disable GEOS support. */ /* #undef OMIT_GEOS */ /* Should be defined in order to disable ICONV support. */ /* #undef OMIT_ICONV */ |
| |
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
/* Should be defined in order to disable EPSG full support. */ /* #undef OMIT_EPSG */ /* Should be defined in order to disable FREEXL support. */ /* #undef OMIT_FREEXL */ /* Should be defined in order to disable GEOCALLBACKS support. */ /* #undef OMIT_GEOCALLBACKS */ /* Should be defined in order to disable GEOS support. */ /* #undef OMIT_GEOS */ /* Should be defined in order to disable ICONV support. */ /* #undef OMIT_ICONV */ |
Changes to src/headers/spatialite/spatialite_ext.h.
53 54 55 56 57 58 59 60 61 62 63 |
SPATIALITE_PRIVATE int virtualfdo_extension_init (void *db); SPATIALITE_PRIVATE int virtualbbox_extension_init (void *db, const void *p_cache); SPATIALITE_PRIVATE int mbrcache_extension_init (void *db); SPATIALITE_PRIVATE int virtual_spatialindex_extension_init (void *db); SPATIALITE_PRIVATE int virtual_elementary_extension_init (void *db); SPATIALITE_PRIVATE int virtual_knn_extension_init (void *db); SPATIALITE_PRIVATE int virtual_xpath_extension_init (void *db, const void *p_cache); SPATIALITE_PRIVATE int virtualgpkg_extension_init (void *db); SPATIALITE_PRIVATE int virtualgeojson_extension_init (void *db); |
> |
53 54 55 56 57 58 59 60 61 62 63 64 |
SPATIALITE_PRIVATE int virtualfdo_extension_init (void *db);
SPATIALITE_PRIVATE int virtualbbox_extension_init (void *db,
const void *p_cache);
SPATIALITE_PRIVATE int mbrcache_extension_init (void *db);
SPATIALITE_PRIVATE int virtual_spatialindex_extension_init (void *db);
SPATIALITE_PRIVATE int virtual_elementary_extension_init (void *db);
SPATIALITE_PRIVATE int virtual_knn_extension_init (void *db);
SPATIALITE_PRIVATE int virtual_knn2_extension_init (void *db);
SPATIALITE_PRIVATE int virtual_xpath_extension_init (void *db,
const void *p_cache);
SPATIALITE_PRIVATE int virtualgpkg_extension_init (void *db);
SPATIALITE_PRIVATE int virtualgeojson_extension_init (void *db);
|
Changes to src/headers/spatialite_private.h.
1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 |
#ifdef _WIN32 SPATIALITE_PRIVATE void splite_pause_windows (void); #else SPATIALITE_PRIVATE void splite_pause_signal (void); #endif SPATIALITE_PRIVATE void finalize_topologies (const void *p_cache); SPATIALITE_PRIVATE int create_data_licenses (sqlite3 * sqlite); SPATIALITE_PRIVATE int create_geometry_columns_time (sqlite3 * sqlite); SPATIALITE_PRIVATE int create_spatial_ref_sys_aux (sqlite3 * handle); SPATIALITE_PRIVATE int create_raster_coverages (sqlite3 * sqlite); |
| > > |
1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 |
#ifdef _WIN32 SPATIALITE_PRIVATE void splite_pause_windows (void); #else SPATIALITE_PRIVATE void splite_pause_signal (void); #endif SPATIALITE_PRIVATE void finalize_topologies (const void *p_cache); SPATIALITE_PRIVATE int create_knn2 (sqlite3 * sqlite); SPATIALITE_PRIVATE int create_data_licenses (sqlite3 * sqlite); SPATIALITE_PRIVATE int create_geometry_columns_time (sqlite3 * sqlite); SPATIALITE_PRIVATE int create_spatial_ref_sys_aux (sqlite3 * handle); SPATIALITE_PRIVATE int create_raster_coverages (sqlite3 * sqlite); |
Changes to src/md5/Makefile.in.
256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/shapefiles/Makefile.in.
257 258 259 260 261 262 263 264 265 266 267 268 269 270 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/spatialite/Makefile.am.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
virtualspatialindex.c \ virtualnetwork.c \ virtualrouting.c \ virtualshape.c \ virtualxpath.c \ virtualelementary.c \ virtualknn.c \ create_routing.c \ virtualgeojson.c libsplite_la_SOURCES = $(SPATIALITE_COMMON_SOURCES) libsplite_la_CFLAGS = -fvisibility=hidden |
> |
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
virtualspatialindex.c \
virtualnetwork.c \
virtualrouting.c \
virtualshape.c \
virtualxpath.c \
virtualelementary.c \
virtualknn.c \
virtualknn2.c \
create_routing.c \
virtualgeojson.c
libsplite_la_SOURCES = $(SPATIALITE_COMMON_SOURCES)
libsplite_la_CFLAGS = -fvisibility=hidden
|
Changes to src/spatialite/Makefile.in.
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 ... 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 ... 179 180 181 182 183 184 185 186 187 188 189 190 191 192 ... 204 205 206 207 208 209 210 211 212 213 214 215 216 217 ... 330 331 332 333 334 335 336 337 338 339 340 341 342 343 ... 411 412 413 414 415 416 417 418 419 420 421 422 423 424 ... 500 501 502 503 504 505 506 507 508 509 510 511 512 513 ... 525 526 527 528 529 530 531 532 533 534 535 536 537 538 ... 719 720 721 722 723 724 725 726 727 728 729 730 731 732 ... 894 895 896 897 898 899 900 901 902 903 904 905 906 907 .... 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 .... 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 .... 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 .... 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 |
libsplite_la-dbobj_scopes.lo libsplite_la-virtualdbf.lo \ libsplite_la-virtualXL.lo libsplite_la-virtualfdo.lo \ libsplite_la-virtualgpkg.lo libsplite_la-virtualbbox.lo \ libsplite_la-virtualspatialindex.lo \ libsplite_la-virtualnetwork.lo libsplite_la-virtualrouting.lo \ libsplite_la-virtualshape.lo libsplite_la-virtualxpath.lo \ libsplite_la-virtualelementary.lo libsplite_la-virtualknn.lo \ libsplite_la-create_routing.lo libsplite_la-virtualgeojson.lo am_libsplite_la_OBJECTS = $(am__objects_1) libsplite_la_OBJECTS = $(am_libsplite_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libsplite_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ................................................................................ splite_la-srid_aux.lo splite_la-table_cloner.lo \ splite_la-dbobj_scopes.lo splite_la-virtualdbf.lo \ splite_la-virtualXL.lo splite_la-virtualfdo.lo \ splite_la-virtualgpkg.lo splite_la-virtualbbox.lo \ splite_la-virtualspatialindex.lo splite_la-virtualnetwork.lo \ splite_la-virtualrouting.lo splite_la-virtualshape.lo \ splite_la-virtualxpath.lo splite_la-virtualelementary.lo \ splite_la-virtualknn.lo splite_la-create_routing.lo \ splite_la-virtualgeojson.lo am_splite_la_OBJECTS = $(am__objects_2) splite_la_OBJECTS = $(am_splite_la_OBJECTS) splite_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(splite_la_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(splite_la_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) ................................................................................ ./$(DEPDIR)/libsplite_la-virtualbbox.Plo \ ./$(DEPDIR)/libsplite_la-virtualdbf.Plo \ ./$(DEPDIR)/libsplite_la-virtualelementary.Plo \ ./$(DEPDIR)/libsplite_la-virtualfdo.Plo \ ./$(DEPDIR)/libsplite_la-virtualgeojson.Plo \ ./$(DEPDIR)/libsplite_la-virtualgpkg.Plo \ ./$(DEPDIR)/libsplite_la-virtualknn.Plo \ ./$(DEPDIR)/libsplite_la-virtualnetwork.Plo \ ./$(DEPDIR)/libsplite_la-virtualrouting.Plo \ ./$(DEPDIR)/libsplite_la-virtualshape.Plo \ ./$(DEPDIR)/libsplite_la-virtualspatialindex.Plo \ ./$(DEPDIR)/libsplite_la-virtualxpath.Plo \ ./$(DEPDIR)/splite_la-create_routing.Plo \ ./$(DEPDIR)/splite_la-dbobj_scopes.Plo \ ................................................................................ ./$(DEPDIR)/splite_la-virtualbbox.Plo \ ./$(DEPDIR)/splite_la-virtualdbf.Plo \ ./$(DEPDIR)/splite_la-virtualelementary.Plo \ ./$(DEPDIR)/splite_la-virtualfdo.Plo \ ./$(DEPDIR)/splite_la-virtualgeojson.Plo \ ./$(DEPDIR)/splite_la-virtualgpkg.Plo \ ./$(DEPDIR)/splite_la-virtualknn.Plo \ ./$(DEPDIR)/splite_la-virtualnetwork.Plo \ ./$(DEPDIR)/splite_la-virtualrouting.Plo \ ./$(DEPDIR)/splite_la-virtualshape.Plo \ ./$(DEPDIR)/splite_la-virtualspatialindex.Plo \ ./$(DEPDIR)/splite_la-virtualxpath.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ................................................................................ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ................................................................................ virtualspatialindex.c \ virtualnetwork.c \ virtualrouting.c \ virtualshape.c \ virtualxpath.c \ virtualelementary.c \ virtualknn.c \ create_routing.c \ virtualgeojson.c libsplite_la_SOURCES = $(SPATIALITE_COMMON_SOURCES) libsplite_la_CFLAGS = -fvisibility=hidden splite_la_SOURCES = $(SPATIALITE_COMMON_SOURCES) splite_la_CPPFLAGS = -I$(top_srcdir)/src/headers -I. @CFLAGS@ \ ................................................................................ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualbbox.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualdbf.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualelementary.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualfdo.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualgeojson.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualgpkg.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualknn.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualnetwork.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualrouting.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualshape.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualspatialindex.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualxpath.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-create_routing.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-dbobj_scopes.Plo@am__quote@ # am--include-marker ................................................................................ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualbbox.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualdbf.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualelementary.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualfdo.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualgeojson.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualgpkg.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualknn.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualnetwork.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualrouting.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualshape.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualspatialindex.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualxpath.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): ................................................................................ libsplite_la-virtualknn.lo: virtualknn.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsplite_la_CFLAGS) $(CFLAGS) -MT libsplite_la-virtualknn.lo -MD -MP -MF $(DEPDIR)/libsplite_la-virtualknn.Tpo -c -o libsplite_la-virtualknn.lo `test -f 'virtualknn.c' || echo '$(srcdir)/'`virtualknn.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libsplite_la-virtualknn.Tpo $(DEPDIR)/libsplite_la-virtualknn.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virtualknn.c' object='libsplite_la-virtualknn.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsplite_la_CFLAGS) $(CFLAGS) -c -o libsplite_la-virtualknn.lo `test -f 'virtualknn.c' || echo '$(srcdir)/'`virtualknn.c libsplite_la-create_routing.lo: create_routing.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsplite_la_CFLAGS) $(CFLAGS) -MT libsplite_la-create_routing.lo -MD -MP -MF $(DEPDIR)/libsplite_la-create_routing.Tpo -c -o libsplite_la-create_routing.lo `test -f 'create_routing.c' || echo '$(srcdir)/'`create_routing.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libsplite_la-create_routing.Tpo $(DEPDIR)/libsplite_la-create_routing.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='create_routing.c' object='libsplite_la-create_routing.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsplite_la_CFLAGS) $(CFLAGS) -c -o libsplite_la-create_routing.lo `test -f 'create_routing.c' || echo '$(srcdir)/'`create_routing.c ................................................................................ splite_la-virtualknn.lo: virtualknn.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(splite_la_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(splite_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT splite_la-virtualknn.lo -MD -MP -MF $(DEPDIR)/splite_la-virtualknn.Tpo -c -o splite_la-virtualknn.lo `test -f 'virtualknn.c' || echo '$(srcdir)/'`virtualknn.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/splite_la-virtualknn.Tpo $(DEPDIR)/splite_la-virtualknn.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virtualknn.c' object='splite_la-virtualknn.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(splite_la_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(splite_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o splite_la-virtualknn.lo `test -f 'virtualknn.c' || echo '$(srcdir)/'`virtualknn.c splite_la-create_routing.lo: create_routing.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(splite_la_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(splite_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT splite_la-create_routing.lo -MD -MP -MF $(DEPDIR)/splite_la-create_routing.Tpo -c -o splite_la-create_routing.lo `test -f 'create_routing.c' || echo '$(srcdir)/'`create_routing.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/splite_la-create_routing.Tpo $(DEPDIR)/splite_la-create_routing.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='create_routing.c' object='splite_la-create_routing.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(splite_la_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(splite_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o splite_la-create_routing.lo `test -f 'create_routing.c' || echo '$(srcdir)/'`create_routing.c ................................................................................ -rm -f ./$(DEPDIR)/libsplite_la-virtualbbox.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualdbf.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualelementary.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualfdo.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualgeojson.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualgpkg.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualknn.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualnetwork.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualrouting.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualshape.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualspatialindex.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualxpath.Plo -rm -f ./$(DEPDIR)/splite_la-create_routing.Plo -rm -f ./$(DEPDIR)/splite_la-dbobj_scopes.Plo ................................................................................ -rm -f ./$(DEPDIR)/splite_la-virtualbbox.Plo -rm -f ./$(DEPDIR)/splite_la-virtualdbf.Plo -rm -f ./$(DEPDIR)/splite_la-virtualelementary.Plo -rm -f ./$(DEPDIR)/splite_la-virtualfdo.Plo -rm -f ./$(DEPDIR)/splite_la-virtualgeojson.Plo -rm -f ./$(DEPDIR)/splite_la-virtualgpkg.Plo -rm -f ./$(DEPDIR)/splite_la-virtualknn.Plo -rm -f ./$(DEPDIR)/splite_la-virtualnetwork.Plo -rm -f ./$(DEPDIR)/splite_la-virtualrouting.Plo -rm -f ./$(DEPDIR)/splite_la-virtualshape.Plo -rm -f ./$(DEPDIR)/splite_la-virtualspatialindex.Plo -rm -f ./$(DEPDIR)/splite_la-virtualxpath.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ................................................................................ -rm -f ./$(DEPDIR)/libsplite_la-virtualbbox.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualdbf.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualelementary.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualfdo.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualgeojson.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualgpkg.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualknn.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualnetwork.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualrouting.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualshape.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualspatialindex.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualxpath.Plo -rm -f ./$(DEPDIR)/splite_la-create_routing.Plo -rm -f ./$(DEPDIR)/splite_la-dbobj_scopes.Plo ................................................................................ -rm -f ./$(DEPDIR)/splite_la-virtualbbox.Plo -rm -f ./$(DEPDIR)/splite_la-virtualdbf.Plo -rm -f ./$(DEPDIR)/splite_la-virtualelementary.Plo -rm -f ./$(DEPDIR)/splite_la-virtualfdo.Plo -rm -f ./$(DEPDIR)/splite_la-virtualgeojson.Plo -rm -f ./$(DEPDIR)/splite_la-virtualgpkg.Plo -rm -f ./$(DEPDIR)/splite_la-virtualknn.Plo -rm -f ./$(DEPDIR)/splite_la-virtualnetwork.Plo -rm -f ./$(DEPDIR)/splite_la-virtualrouting.Plo -rm -f ./$(DEPDIR)/splite_la-virtualshape.Plo -rm -f ./$(DEPDIR)/splite_la-virtualspatialindex.Plo -rm -f ./$(DEPDIR)/splite_la-virtualxpath.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic |
> | | | > > > > > > > > > > > > > > > > > > > > > > > > > |
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 ... 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 ... 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 ... 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 ... 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 ... 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 ... 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 ... 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 ... 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 ... 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 .... 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 .... 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 .... 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 .... 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 |
libsplite_la-dbobj_scopes.lo libsplite_la-virtualdbf.lo \ libsplite_la-virtualXL.lo libsplite_la-virtualfdo.lo \ libsplite_la-virtualgpkg.lo libsplite_la-virtualbbox.lo \ libsplite_la-virtualspatialindex.lo \ libsplite_la-virtualnetwork.lo libsplite_la-virtualrouting.lo \ libsplite_la-virtualshape.lo libsplite_la-virtualxpath.lo \ libsplite_la-virtualelementary.lo libsplite_la-virtualknn.lo \ libsplite_la-virtualknn2.lo libsplite_la-create_routing.lo \ libsplite_la-virtualgeojson.lo am_libsplite_la_OBJECTS = $(am__objects_1) libsplite_la_OBJECTS = $(am_libsplite_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libsplite_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ ................................................................................ splite_la-srid_aux.lo splite_la-table_cloner.lo \ splite_la-dbobj_scopes.lo splite_la-virtualdbf.lo \ splite_la-virtualXL.lo splite_la-virtualfdo.lo \ splite_la-virtualgpkg.lo splite_la-virtualbbox.lo \ splite_la-virtualspatialindex.lo splite_la-virtualnetwork.lo \ splite_la-virtualrouting.lo splite_la-virtualshape.lo \ splite_la-virtualxpath.lo splite_la-virtualelementary.lo \ splite_la-virtualknn.lo splite_la-virtualknn2.lo \ splite_la-create_routing.lo splite_la-virtualgeojson.lo am_splite_la_OBJECTS = $(am__objects_2) splite_la_OBJECTS = $(am_splite_la_OBJECTS) splite_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ $(splite_la_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ $(AM_CFLAGS) $(CFLAGS) $(splite_la_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) ................................................................................ ./$(DEPDIR)/libsplite_la-virtualbbox.Plo \ ./$(DEPDIR)/libsplite_la-virtualdbf.Plo \ ./$(DEPDIR)/libsplite_la-virtualelementary.Plo \ ./$(DEPDIR)/libsplite_la-virtualfdo.Plo \ ./$(DEPDIR)/libsplite_la-virtualgeojson.Plo \ ./$(DEPDIR)/libsplite_la-virtualgpkg.Plo \ ./$(DEPDIR)/libsplite_la-virtualknn.Plo \ ./$(DEPDIR)/libsplite_la-virtualknn2.Plo \ ./$(DEPDIR)/libsplite_la-virtualnetwork.Plo \ ./$(DEPDIR)/libsplite_la-virtualrouting.Plo \ ./$(DEPDIR)/libsplite_la-virtualshape.Plo \ ./$(DEPDIR)/libsplite_la-virtualspatialindex.Plo \ ./$(DEPDIR)/libsplite_la-virtualxpath.Plo \ ./$(DEPDIR)/splite_la-create_routing.Plo \ ./$(DEPDIR)/splite_la-dbobj_scopes.Plo \ ................................................................................ ./$(DEPDIR)/splite_la-virtualbbox.Plo \ ./$(DEPDIR)/splite_la-virtualdbf.Plo \ ./$(DEPDIR)/splite_la-virtualelementary.Plo \ ./$(DEPDIR)/splite_la-virtualfdo.Plo \ ./$(DEPDIR)/splite_la-virtualgeojson.Plo \ ./$(DEPDIR)/splite_la-virtualgpkg.Plo \ ./$(DEPDIR)/splite_la-virtualknn.Plo \ ./$(DEPDIR)/splite_la-virtualknn2.Plo \ ./$(DEPDIR)/splite_la-virtualnetwork.Plo \ ./$(DEPDIR)/splite_la-virtualrouting.Plo \ ./$(DEPDIR)/splite_la-virtualshape.Plo \ ./$(DEPDIR)/splite_la-virtualspatialindex.Plo \ ./$(DEPDIR)/splite_la-virtualxpath.Plo am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ ................................................................................ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ................................................................................ virtualspatialindex.c \ virtualnetwork.c \ virtualrouting.c \ virtualshape.c \ virtualxpath.c \ virtualelementary.c \ virtualknn.c \ virtualknn2.c \ create_routing.c \ virtualgeojson.c libsplite_la_SOURCES = $(SPATIALITE_COMMON_SOURCES) libsplite_la_CFLAGS = -fvisibility=hidden splite_la_SOURCES = $(SPATIALITE_COMMON_SOURCES) splite_la_CPPFLAGS = -I$(top_srcdir)/src/headers -I. @CFLAGS@ \ ................................................................................ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualbbox.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualdbf.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualelementary.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualfdo.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualgeojson.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualgpkg.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualknn.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualknn2.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualnetwork.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualrouting.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualshape.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualspatialindex.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libsplite_la-virtualxpath.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-create_routing.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-dbobj_scopes.Plo@am__quote@ # am--include-marker ................................................................................ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualbbox.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualdbf.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualelementary.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualfdo.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualgeojson.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualgpkg.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualknn.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualknn2.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualnetwork.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualrouting.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualshape.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualspatialindex.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splite_la-virtualxpath.Plo@am__quote@ # am--include-marker $(am__depfiles_remade): ................................................................................ libsplite_la-virtualknn.lo: virtualknn.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsplite_la_CFLAGS) $(CFLAGS) -MT libsplite_la-virtualknn.lo -MD -MP -MF $(DEPDIR)/libsplite_la-virtualknn.Tpo -c -o libsplite_la-virtualknn.lo `test -f 'virtualknn.c' || echo '$(srcdir)/'`virtualknn.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libsplite_la-virtualknn.Tpo $(DEPDIR)/libsplite_la-virtualknn.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virtualknn.c' object='libsplite_la-virtualknn.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsplite_la_CFLAGS) $(CFLAGS) -c -o libsplite_la-virtualknn.lo `test -f 'virtualknn.c' || echo '$(srcdir)/'`virtualknn.c libsplite_la-virtualknn2.lo: virtualknn2.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsplite_la_CFLAGS) $(CFLAGS) -MT libsplite_la-virtualknn2.lo -MD -MP -MF $(DEPDIR)/libsplite_la-virtualknn2.Tpo -c -o libsplite_la-virtualknn2.lo `test -f 'virtualknn2.c' || echo '$(srcdir)/'`virtualknn2.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libsplite_la-virtualknn2.Tpo $(DEPDIR)/libsplite_la-virtualknn2.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virtualknn2.c' object='libsplite_la-virtualknn2.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsplite_la_CFLAGS) $(CFLAGS) -c -o libsplite_la-virtualknn2.lo `test -f 'virtualknn2.c' || echo '$(srcdir)/'`virtualknn2.c libsplite_la-create_routing.lo: create_routing.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsplite_la_CFLAGS) $(CFLAGS) -MT libsplite_la-create_routing.lo -MD -MP -MF $(DEPDIR)/libsplite_la-create_routing.Tpo -c -o libsplite_la-create_routing.lo `test -f 'create_routing.c' || echo '$(srcdir)/'`create_routing.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libsplite_la-create_routing.Tpo $(DEPDIR)/libsplite_la-create_routing.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='create_routing.c' object='libsplite_la-create_routing.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libsplite_la_CFLAGS) $(CFLAGS) -c -o libsplite_la-create_routing.lo `test -f 'create_routing.c' || echo '$(srcdir)/'`create_routing.c ................................................................................ splite_la-virtualknn.lo: virtualknn.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(splite_la_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(splite_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT splite_la-virtualknn.lo -MD -MP -MF $(DEPDIR)/splite_la-virtualknn.Tpo -c -o splite_la-virtualknn.lo `test -f 'virtualknn.c' || echo '$(srcdir)/'`virtualknn.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/splite_la-virtualknn.Tpo $(DEPDIR)/splite_la-virtualknn.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virtualknn.c' object='splite_la-virtualknn.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(splite_la_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(splite_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o splite_la-virtualknn.lo `test -f 'virtualknn.c' || echo '$(srcdir)/'`virtualknn.c splite_la-virtualknn2.lo: virtualknn2.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(splite_la_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(splite_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT splite_la-virtualknn2.lo -MD -MP -MF $(DEPDIR)/splite_la-virtualknn2.Tpo -c -o splite_la-virtualknn2.lo `test -f 'virtualknn2.c' || echo '$(srcdir)/'`virtualknn2.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/splite_la-virtualknn2.Tpo $(DEPDIR)/splite_la-virtualknn2.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='virtualknn2.c' object='splite_la-virtualknn2.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(splite_la_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(splite_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o splite_la-virtualknn2.lo `test -f 'virtualknn2.c' || echo '$(srcdir)/'`virtualknn2.c splite_la-create_routing.lo: create_routing.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(splite_la_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(splite_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT splite_la-create_routing.lo -MD -MP -MF $(DEPDIR)/splite_la-create_routing.Tpo -c -o splite_la-create_routing.lo `test -f 'create_routing.c' || echo '$(srcdir)/'`create_routing.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/splite_la-create_routing.Tpo $(DEPDIR)/splite_la-create_routing.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='create_routing.c' object='splite_la-create_routing.lo' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(splite_la_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(splite_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o splite_la-create_routing.lo `test -f 'create_routing.c' || echo '$(srcdir)/'`create_routing.c ................................................................................ -rm -f ./$(DEPDIR)/libsplite_la-virtualbbox.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualdbf.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualelementary.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualfdo.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualgeojson.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualgpkg.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualknn.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualknn2.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualnetwork.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualrouting.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualshape.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualspatialindex.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualxpath.Plo -rm -f ./$(DEPDIR)/splite_la-create_routing.Plo -rm -f ./$(DEPDIR)/splite_la-dbobj_scopes.Plo ................................................................................ -rm -f ./$(DEPDIR)/splite_la-virtualbbox.Plo -rm -f ./$(DEPDIR)/splite_la-virtualdbf.Plo -rm -f ./$(DEPDIR)/splite_la-virtualelementary.Plo -rm -f ./$(DEPDIR)/splite_la-virtualfdo.Plo -rm -f ./$(DEPDIR)/splite_la-virtualgeojson.Plo -rm -f ./$(DEPDIR)/splite_la-virtualgpkg.Plo -rm -f ./$(DEPDIR)/splite_la-virtualknn.Plo -rm -f ./$(DEPDIR)/splite_la-virtualknn2.Plo -rm -f ./$(DEPDIR)/splite_la-virtualnetwork.Plo -rm -f ./$(DEPDIR)/splite_la-virtualrouting.Plo -rm -f ./$(DEPDIR)/splite_la-virtualshape.Plo -rm -f ./$(DEPDIR)/splite_la-virtualspatialindex.Plo -rm -f ./$(DEPDIR)/splite_la-virtualxpath.Plo -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ ................................................................................ -rm -f ./$(DEPDIR)/libsplite_la-virtualbbox.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualdbf.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualelementary.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualfdo.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualgeojson.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualgpkg.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualknn.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualknn2.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualnetwork.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualrouting.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualshape.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualspatialindex.Plo -rm -f ./$(DEPDIR)/libsplite_la-virtualxpath.Plo -rm -f ./$(DEPDIR)/splite_la-create_routing.Plo -rm -f ./$(DEPDIR)/splite_la-dbobj_scopes.Plo ................................................................................ -rm -f ./$(DEPDIR)/splite_la-virtualbbox.Plo -rm -f ./$(DEPDIR)/splite_la-virtualdbf.Plo -rm -f ./$(DEPDIR)/splite_la-virtualelementary.Plo -rm -f ./$(DEPDIR)/splite_la-virtualfdo.Plo -rm -f ./$(DEPDIR)/splite_la-virtualgeojson.Plo -rm -f ./$(DEPDIR)/splite_la-virtualgpkg.Plo -rm -f ./$(DEPDIR)/splite_la-virtualknn.Plo -rm -f ./$(DEPDIR)/splite_la-virtualknn2.Plo -rm -f ./$(DEPDIR)/splite_la-virtualnetwork.Plo -rm -f ./$(DEPDIR)/splite_la-virtualrouting.Plo -rm -f ./$(DEPDIR)/splite_la-virtualshape.Plo -rm -f ./$(DEPDIR)/splite_la-virtualspatialindex.Plo -rm -f ./$(DEPDIR)/splite_la-virtualxpath.Plo -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic |
Changes to src/spatialite/extra_tables.c.
5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 |
{"ISO_metadata_view", create_iso_metadata_view, NULL, NULL, NULL}, {"stored_procedures", NULL, NULL, NULL, gaia_stored_proc_create_tables}, {"stored_variables", NULL, NULL, NULL, gaia_stored_proc_create_tables}, {"rl2map_configurations", NULL, NULL, create_rl2map_configurations, NULL}, {"rl2map_configurations_view", create_rl2map_configurations_view, NULL, NULL, NULL}, {NULL, NULL, NULL, NULL, NULL} }; struct str_tables *p_table = tables; if (transaction) { /* starting a Transaction */ |
> |
5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 |
{"ISO_metadata_view", create_iso_metadata_view, NULL, NULL, NULL},
{"stored_procedures", NULL, NULL, NULL, gaia_stored_proc_create_tables},
{"stored_variables", NULL, NULL, NULL, gaia_stored_proc_create_tables},
{"rl2map_configurations", NULL, NULL, create_rl2map_configurations,
NULL},
{"rl2map_configurations_view", create_rl2map_configurations_view, NULL,
NULL, NULL},
{"KNN2", create_knn2, NULL, NULL, NULL},
{NULL, NULL, NULL, NULL, NULL}
};
struct str_tables *p_table = tables;
if (transaction)
{
/* starting a Transaction */
|
Changes to src/spatialite/metatables.c.
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
....
7775
7776
7777
7778
7779
7780
7781
7782
7783
7784
7785
7786
7787
7788
7789
7790
7791
7792
7793
7794
7795
7796
7797
7798
7799
7800
7801
7802
7803
7804
7805
7806
7807
7808
7809
7810
7811
7812
7813
7814
7815
7816
7817
7818
7819
7820
7821
7822
7823
7824
7825
7826
7827
7828
7829
7830
7831
7832
7833
7834
7835
7836
7837
7838
7839
7840
7841
7842
7843
7844
7845
7846
7847
7848
7849
7850
7851
7852
7853
7854
7855
7856
7857
7858
7859
7860
7861
7862
7863
7864
7865
7866
7867
7868
7869
7870
7871
7872
7873
7874
7875
7876
7877
7878
7879
7880
7881
7882
7883
7884
7885
7886
7887
7888
7889
7890
7891
7892
7893
7894
7895
7896
7897
7898
7899
7900
7901
7902
7903
7904
7905
7906
7907
7908
7909
7910
7911
7912
7913
7914
7915
7916
7917
7918
7919
7920
7921
7922
7923
7924
7925
7926
7927
7928
7929
7930
7931
7932
7933
7934
7935
7936
7937
7938
7939
7940
7941
7942
7943
7944
|
{ spatialite_e ("SQL error: %s: %s\n", sql, errMsg); sqlite3_free (errMsg); return 0; } return 1; } SPATIALITE_PRIVATE int check_layer_statistics (void *p_sqlite) { /* / checks the LAYER_STATISTICS table for validity; / if the table doesn't exist, attempts to create ................................................................................ return 0; } return 1; } else return 0; } static int rtree_bbox_callback (sqlite3_rtree_query_info * info) { /* R*Tree Query Callback function ---------------------------------------------------------- this function will evaluate all first-level R*Tree Nodes (direct children of the Root Node) so to get the Full Extent of the R*Tree as a whole. further descending in the Tree's hierarchy will be carefully avoided, so to ensure that also in the case of an R*Tree containing many million entries just few dozens of top level Nodes will require to be evaluated. */ double minx; double maxx; double miny; double maxy; struct rtree_envelope *data = (struct rtree_envelope *) (info->pContext); if (info->nCoord != 4) { /* invalid RTree; not 2D */ goto end; } /* fetching the Node's BBOX */ minx = info->aCoord[0]; maxx = info->aCoord[1]; miny = info->aCoord[2]; maxy = info->aCoord[3]; /* updating the Full Extent BBOX */ if (data->valid == 0) { /* first Node retrieved */ data->valid = 1; data->minx = minx; data->maxx = maxx; data->miny = miny; data->maxy = maxy; } else { /* any other further Node */ if (minx < data->minx) data->minx = minx; if (maxx > data->maxx) data->maxx = maxx; if (miny < data->miny) data->miny = miny; if (maxy > data->maxy) data->maxy = maxy; } end: /* setting NOT_WITHIN so to stop further descending into the tree */ info->eWithin = NOT_WITHIN; return SQLITE_OK; } SPATIALITE_DECLARE gaiaGeomCollPtr gaiaGetRTreeFullExtent (sqlite3 * db_handle, const char *db_prefix, const char *name, int srid) { /* Will attempt to retrieve the Full Extent from an R*Tree - SpatiaLite */ char *sql; int ret; char *xprefix; char *xname; gaiaGeomCollPtr envelope; gaiaPolygonPtr polyg; gaiaRingPtr rect; struct rtree_envelope data; data.valid = 0; /* registering the Geometry Query Callback SQL function */ sqlite3_rtree_query_callback (db_handle, "rtree_bbox", rtree_bbox_callback, &data, NULL); /* executing the SQL Query statement */ xprefix = gaiaDoubleQuotedSql (db_prefix); xname = gaiaDoubleQuotedSql (name); sql = sqlite3_mprintf ("SELECT pkid FROM \"%s\".\"%s\" WHERE pkid MATCH rtree_bbox(1)", xprefix, xname); free (xprefix); free (xname); ret = sqlite3_exec (db_handle, sql, NULL, NULL, NULL); sqlite3_free (sql); if (ret != SQLITE_OK) return NULL; if (data.valid == 0) return NULL; /* building the Envelope of the R*Tree */ envelope = gaiaAllocGeomColl (); envelope->Srid = srid; polyg = gaiaAddPolygonToGeomColl (envelope, 5, 0); rect = polyg->Exterior; gaiaSetPoint (rect->Coords, 0, data.minx, data.miny); /* vertex # 1 */ gaiaSetPoint (rect->Coords, 1, data.maxx, data.miny); /* vertex # 2 */ gaiaSetPoint (rect->Coords, 2, data.maxx, data.maxy); /* vertex # 3 */ gaiaSetPoint (rect->Coords, 3, data.minx, data.maxy); /* vertex # 4 */ gaiaSetPoint (rect->Coords, 4, data.minx, data.miny); /* vertex # 5 [same as vertex # 1 to close the polygon] */ return envelope; } SPATIALITE_DECLARE gaiaGeomCollPtr gaiaGetGpkgRTreeFullExtent (sqlite3 * db_handle, const char *db_prefix, const char *name, int srid) { /* Will attempt to retrieve the Full Extent from an R*Tree - GeoPacage */ char *sql; int ret; char *xprefix; char *xname; gaiaGeomCollPtr envelope; gaiaPolygonPtr polyg; gaiaRingPtr rect; struct rtree_envelope data; data.valid = 0; /* registering the Geometry Query Callback SQL function */ sqlite3_rtree_query_callback (db_handle, "rtree_bbox", rtree_bbox_callback, &data, NULL); /* executing the SQL Query statement */ xprefix = gaiaDoubleQuotedSql (db_prefix); xname = gaiaDoubleQuotedSql (name); sql = sqlite3_mprintf ("SELECT id FROM \"%s\".\"%s\" WHERE id MATCH rtree_bbox(1)", xprefix, xname); free (xprefix); free (xname); ret = sqlite3_exec (db_handle, sql, NULL, NULL, NULL); sqlite3_free (sql); if (ret != SQLITE_OK) return NULL; if (data.valid == 0) return NULL; /* building the Envelope of the R*Tree */ envelope = gaiaAllocGeomColl (); envelope->Srid = srid; polyg = gaiaAddPolygonToGeomColl (envelope, 5, 0); rect = polyg->Exterior; gaiaSetPoint (rect->Coords, 0, data.minx, data.miny); /* vertex # 1 */ gaiaSetPoint (rect->Coords, 1, data.maxx, data.miny); /* vertex # 2 */ gaiaSetPoint (rect->Coords, 2, data.maxx, data.maxy); /* vertex # 3 */ gaiaSetPoint (rect->Coords, 3, data.minx, data.maxy); /* vertex # 4 */ gaiaSetPoint (rect->Coords, 4, data.minx, data.miny); /* vertex # 5 [same as vertex # 1 to close the polygon] */ return envelope; } |
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
....
7800
7801
7802
7803
7804
7805
7806
|
{ spatialite_e ("SQL error: %s: %s\n", sql, errMsg); sqlite3_free (errMsg); return 0; } return 1; } SPATIALITE_PRIVATE int create_knn2 (sqlite3 * sqlite) { char sql[1024]; char *errMsg = NULL; int ret; if (sqlite3_db_readonly (sqlite, "MAIN") == 1) { /* ignoring a read-only database */ return 1; } /* creating the KNN2 table */ strcpy (sql, "CREATE VIRTUAL TABLE IF NOT EXISTS KNN2 USING VirtualKNN2()"); ret = sqlite3_exec (sqlite, sql, NULL, NULL, &errMsg); if (ret != SQLITE_OK) { spatialite_e ("SQL error: %s: %s\n", sql, errMsg); sqlite3_free (errMsg); return 0; } return 1; } SPATIALITE_PRIVATE int check_layer_statistics (void *p_sqlite) { /* / checks the LAYER_STATISTICS table for validity; / if the table doesn't exist, attempts to create ................................................................................ return 0; } return 1; } else return 0; } |
Changes to src/spatialite/spatialite.c.
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 ... 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 ... 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 .... 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 .... 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 .... 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 ..... 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 ..... 48609 48610 48611 48612 48613 48614 48615 48616 48617 48618 48619 48620 48621 48622 ..... 48817 48818 48819 48820 48821 48822 48823 48824 48825 48826 48827 48828 48829 48830 48831 48832 48833 ..... 50347 50348 50349 50350 50351 50352 50353 50354 50355 50356 50357 50358 50359 50360 50361 50362 50363 50364 50365 50366 50367 50368 50369 50370 50371 ..... 53671 53672 53673 53674 53675 53676 53677 53678 53679 53680 53681 53682 53683 53684 53685 53686 53687 53688 53689 53690 53691 53692 ..... 53768 53769 53770 53771 53772 53773 53774 53775 53776 53777 53778 53779 53780 53781 53782 53783 53784 53785 |
{ /* a struct used to store a dynamic chain of GeometryCollections */ int all_polygs; struct gaia_geom_chain_item *first; struct gaia_geom_chain_item *last; }; #ifndef OMIT_GEOCALLBACKS /* supporting RTree geometry callbacks */ struct gaia_rtree_mbr { /* a struct used by R*Tree GeometryCallback functions [MBR] */ double minx; double miny; double maxx; double maxy; }; #endif /* end RTree geometry callbacks */ struct stddev_str { /* a struct to implement StandardVariation and Variance aggregate functions */ int cleaned; double mean; double quot; double count; ................................................................................ static void fnct_has_geo_callbacks (sqlite3_context * context, int argc, sqlite3_value ** argv) { /* SQL function: / HasGeoCallbacks() / / return 1 if built enabling GEOCALLBACKS; otherwise 0 */ GAIA_UNUSED (); /* LCOV_EXCL_LINE */ #ifndef OMIT_GEOCALLBACKS /* GEO-CALLBACKS are supported */ sqlite3_result_int (context, 1); #else sqlite3_result_int (context, 0); #endif } static void fnct_has_freeXL (sqlite3_context * context, int argc, sqlite3_value ** argv) { /* SQL function: / HasFreeXL() ................................................................................ static void fnct_has_knn (sqlite3_context * context, int argc, sqlite3_value ** argv) { /* SQL function: / HasKNN() / / return 1 if built including KNN support; otherwise 0 */ GAIA_UNUSED (); /* LCOV_EXCL_LINE */ #ifndef OMIT_GEOS /* only if GEOS is enabled */ #ifndef OMIT_KNN /* only if KNN is enabled */ sqlite3_result_int (context, 1); #else sqlite3_result_int (context, 0); #endif #else sqlite3_result_int (context, 0); #endif } static void fnct_has_routing (sqlite3_context * context, int argc, sqlite3_value ** argv) { ................................................................................ /* creating the ElementaryGeometries VIRTUAL TABLE */ strcpy (sql, "CREATE VIRTUAL TABLE ElementaryGeometries "); strcat (sql, "USING VirtualElementary()"); ret = sqlite3_exec (sqlite, sql, NULL, NULL, &errMsg); if (ret != SQLITE_OK) goto error; #ifndef OMIT_KNN /* only if KNN is enabled */ /* creating the KNN VIRTUAL TABLE */ strcpy (sql, "CREATE VIRTUAL TABLE KNN "); strcat (sql, "USING VirtualKNN()"); ret = sqlite3_exec (sqlite, sql, NULL, NULL, &errMsg); if (ret != SQLITE_OK) goto error; #endif /* end KNN conditional */ if (transaction) { /* confirming the still pending Transaction */ ret = sqlite3_exec (sqlite, "COMMIT", NULL, NULL, &errMsg); if (ret != SQLITE_OK) goto error; ................................................................................ /* creating the ElementaryGeometries VIRTUAL TABLE */ strcpy (sql, "CREATE VIRTUAL TABLE IF NOT EXISTS ElementaryGeometries "); strcat (sql, "USING VirtualElementary()"); ret = sqlite3_exec (sqlite, sql, NULL, NULL, &errMsg); if (ret != SQLITE_OK) goto error; #ifndef OMIT_KNN /* only if KNN is enabled */ /* creating the KNN VIRTUAL TABLE */ strcpy (sql, "CREATE VIRTUAL TABLE IF NOT EXISTS KNN "); strcat (sql, "USING VirtualKNN()"); ret = sqlite3_exec (sqlite, sql, NULL, NULL, &errMsg); if (ret != SQLITE_OK) goto error; #endif /* end KNN conditional */ if (transaction) { /* confirming the still pending Transaction */ ret = sqlite3_exec (sqlite, "COMMIT", NULL, NULL, &errMsg); if (ret != SQLITE_OK) goto error; ................................................................................ sqlite3_result_null (context); else if (status > 0) sqlite3_result_int (context, 1); else sqlite3_result_int (context, 0); } static gaiaGeomCollPtr get_gpkg_spatial_index_extent (sqlite3 * sqlite, const char *db_prefix, const char *table, const char *geom) { /* attempting to get the Spatial Index Full Extent GeoPackage */ char *xprefix = NULL; char *idx_name; char *sql_statement; int ret; int srid = -1234567890; sqlite3_stmt *stmt; gaiaGeomCollPtr envelope; /* checking if the R*Tree Spatial Index is defined - Spatial Table */ xprefix = gaiaDoubleQuotedSql (db_prefix); sql_statement = sqlite3_mprintf ("SELECT srs_id FROM \"%s\".gpkg_geometry_columns " "WHERE Upper(table_name) = Upper(%Q) " "AND Upper(column_name) = Upper(%Q)", xprefix, table, geom); free (xprefix); ret = sqlite3_prepare_v2 (sqlite, sql_statement, strlen (sql_statement), &stmt, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) { spatialite_e ("GetSpatialIndexExtent SQL error: %s\n", sqlite3_errmsg (sqlite)); goto err; } while (1) { ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; if (ret == SQLITE_ROW) srid = sqlite3_column_int (stmt, 0); else { spatialite_e ("sqlite3_step() error: %s\n", sqlite3_errmsg (sqlite)); sqlite3_finalize (stmt); goto err; } } sqlite3_finalize (stmt); if (srid == -1234567890) goto err; idx_name = sqlite3_mprintf ("rtree_%s_%s", table, geom); envelope = gaiaGetGpkgRTreeFullExtent (sqlite, db_prefix, idx_name, srid); sqlite3_free (idx_name); return envelope; err: return NULL; } static gaiaGeomCollPtr get_spatial_index_extent (sqlite3 * sqlite, const char *db_prefix, const char *table, const char *geom) { /* attempting to get the Spatial Index Full Extent - SpatiaLite */ char *xprefix = NULL; char *idx_name; char *sql_statement; int ret; int srid = -1234567890; sqlite3_stmt *stmt; gaiaGeomCollPtr envelope; /* checking if the R*Tree Spatial Index is defined - Spatial Table */ xprefix = gaiaDoubleQuotedSql (db_prefix); sql_statement = sqlite3_mprintf ("SELECT srid FROM \"%s\".geometry_columns " "WHERE Upper(f_table_name) = Upper(%Q) " "AND Upper(f_geometry_column) = Upper(%Q) AND spatial_index_enabled = 1", xprefix, table, geom); free (xprefix); ret = sqlite3_prepare_v2 (sqlite, sql_statement, strlen (sql_statement), &stmt, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) { spatialite_e ("GetSpatialIndexExtent SQL error: %s\n", sqlite3_errmsg (sqlite)); goto err; } while (1) { ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; if (ret == SQLITE_ROW) srid = sqlite3_column_int (stmt, 0); else { spatialite_e ("sqlite3_step() error: %s\n", sqlite3_errmsg (sqlite)); sqlite3_finalize (stmt); goto err; } } sqlite3_finalize (stmt); if (srid != -1234567890) { idx_name = sqlite3_mprintf ("idx_%s_%s", table, geom); goto done; } /* checking if the R*Tree Spatial Index is defined - Spatial View */ xprefix = gaiaDoubleQuotedSql (db_prefix); sql_statement = sqlite3_mprintf ("SELECT g.f_table_name, g.f_geometry_column, g.srid " "FROM \"%s\".views_geometry_columns AS v " "JOIN geometry_columns AS g ON (Upper(v.f_table_name) = Upper(g.f_table_name) " "AND Upper(v.f_geometry_column) = Upper(g.f_geometry_column) " "AND g.spatial_index_enabled = 1) " "WHERE Upper(view_name) = Upper(%Q) AND Upper(view_geometry) = Upper(%Q)", xprefix, table, geom); free (xprefix); ret = sqlite3_prepare_v2 (sqlite, sql_statement, strlen (sql_statement), &stmt, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) { spatialite_e ("GetSpatialIndexExtent SQL error: %s\n", sqlite3_errmsg (sqlite)); goto err; } while (1) { ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; if (ret == SQLITE_ROW) { const char *name = (const char *) sqlite3_column_text (stmt, 0); const char *column = (const char *) sqlite3_column_text (stmt, 1); idx_name = sqlite3_mprintf ("idx_%s_%s", name, column); srid = sqlite3_column_int (stmt, 2); } else { spatialite_e ("sqlite3_step() error: %s\n", sqlite3_errmsg (sqlite)); sqlite3_finalize (stmt); goto err; } } sqlite3_finalize (stmt); if (srid == -1234567890) goto err; done: envelope = gaiaGetRTreeFullExtent (sqlite, db_prefix, idx_name, srid); sqlite3_free (idx_name); return envelope; err: return NULL; } static void fnct_GetSpatialIndexExtent (sqlite3_context * context, int argc, sqlite3_value ** argv) { /* SQL function: / GetSpatialIndexExtent(db-prefix, table, column) / / evaluates a SpatialIndex, returning: / - a Rectangle Geometry corresponding to the Spatial Index Full Extent / - NULL on invalid arguments or on not existing Spatial Index */ const char *db_prefix = "main"; const char *table; const char *column; gaiaGeomCollPtr envelope; sqlite3 *sqlite = sqlite3_context_db_handle (context); int gpkg_mode = 0; int tiny_point = 0; int gpkg_layout = 0; struct splite_internal_cache *cache = sqlite3_user_data (context); GAIA_UNUSED (); /* LCOV_EXCL_LINE */ if (cache != NULL) { gpkg_mode = cache->gpkg_mode; tiny_point = cache->tinyPointEnabled; } if (sqlite3_value_type (argv[0]) == SQLITE_NULL) ; else if (sqlite3_value_type (argv[0]) == SQLITE_TEXT) db_prefix = (const char *) sqlite3_value_text (argv[0]); else { spatialite_e ("GetSpatialIndexExtent() error: argument 1 [db-prefix] is not of the String type\n"); sqlite3_result_null (context); return; } if (sqlite3_value_type (argv[1]) != SQLITE_TEXT) { spatialite_e ("GetSpatialIndexExtent() error: argument 2 [table_name] is not of the String type\n"); sqlite3_result_null (context); return; } table = (const char *) sqlite3_value_text (argv[1]); if (sqlite3_value_type (argv[2]) != SQLITE_TEXT) { spatialite_e ("GetSpatialIndexExtent() error: argument 3 [column_name] is not of the String type\n"); sqlite3_result_null (context); return; } if (checkSpatialMetaData_ex (sqlite, db_prefix) == 4) gpkg_layout = 1; column = (const char *) sqlite3_value_text (argv[2]); if (gpkg_layout) envelope = get_gpkg_spatial_index_extent (sqlite, db_prefix, table, column); else envelope = get_spatial_index_extent (sqlite, db_prefix, table, column); if (envelope != NULL) { /* builds the BLOB geometry to be returned */ unsigned char *blob; int len; gaiaToSpatiaLiteBlobWkbEx2 (envelope, &blob, &len, gpkg_mode, tiny_point); sqlite3_result_blob (context, blob, len, free); gaiaFreeGeomColl (envelope); } else sqlite3_result_null (context); } static int recover_spatial_index (sqlite3 * sqlite, const unsigned char *table, const unsigned char *geom) { /* attempting to rebuild an R*Tree */ char *sql_statement; char *errMsg = NULL; ................................................................................ #endif /* end GEOPACKAGE: supporting GPKG geometries */ sqlite3_result_null (context); } else sqlite3_result_double (context, coord); } #ifndef OMIT_GEOCALLBACKS /* supporting RTree geometry callbacks */ static void gaia_mbr_del (void *p) { /* freeing data used by R*Tree Geometry Callback */ sqlite3_free (p); } static int fnct_RTreeIntersects (sqlite3_rtree_geometry * p, int nCoord, double *aCoord, int *pRes) { /* R*Tree Geometry callback function: / ... MATCH RTreeIntersects(double x1, double y1, double x2, double y2) */ struct gaia_rtree_mbr *mbr; double xmin; double xmax; double ymin; double ymax; float fminx; float fminy; float fmaxx; float fmaxy; double tic; double tic2; if (p->pUser == 0) { /* first call: we must check args and then initialize the MBR struct */ if (nCoord != 4) return SQLITE_ERROR; if (p->nParam != 4) return SQLITE_ERROR; mbr = (struct gaia_rtree_mbr *) (p->pUser = sqlite3_malloc (sizeof (struct gaia_rtree_mbr))); if (!mbr) return SQLITE_NOMEM; p->xDelUser = gaia_mbr_del; xmin = p->aParam[0]; ymin = p->aParam[1]; xmax = p->aParam[2]; ymax = p->aParam[3]; if (xmin > xmax) { xmin = p->aParam[2]; xmax = p->aParam[0]; } if (ymin > ymax) { ymin = p->aParam[3]; ymax = p->aParam[1]; } /* adjusting the MBR so to compensate for DOUBLE/FLOAT truncations */ fminx = (float) xmin; fminy = (float) ymin; fmaxx = (float) xmax; fmaxy = (float) ymax; tic = fabs (xmin - fminx); tic2 = fabs (ymin - fminy); if (tic2 > tic) tic = tic2; tic2 = fabs (xmax - fmaxx); if (tic2 > tic) tic = tic2; tic2 = fabs (ymax - fmaxy); if (tic2 > tic) tic = tic2; tic *= 2.0; mbr->minx = xmin - tic; mbr->miny = ymin - tic; mbr->maxx = xmax + tic; mbr->maxy = ymax + tic; } mbr = (struct gaia_rtree_mbr *) (p->pUser); xmin = aCoord[0]; xmax = aCoord[1]; ymin = aCoord[2]; ymax = aCoord[3]; *pRes = 1; /* evaluating Intersects relationship */ if (xmin > mbr->maxx) *pRes = 0; if (xmax < mbr->minx) *pRes = 0; if (ymin > mbr->maxy) *pRes = 0; if (ymax < mbr->miny) *pRes = 0; return SQLITE_OK; } static int fnct_RTreeDistWithin (sqlite3_rtree_geometry * p, int nCoord, double *aCoord, int *pRes) { /* R*Tree Geometry callback function: / ... MATCH RTreeDistWithin(double x, double y, double radius) */ struct gaia_rtree_mbr *mbr; double xmin; double xmax; double ymin; double ymax; if (p->pUser == 0) { /* first call: we must check args and then initialize the MBR struct */ if (nCoord != 4) return SQLITE_ERROR; if (p->nParam != 3) return SQLITE_ERROR; mbr = (struct gaia_rtree_mbr *) (p->pUser = sqlite3_malloc (sizeof (struct gaia_rtree_mbr))); if (!mbr) return SQLITE_NOMEM; p->xDelUser = gaia_mbr_del; mbr->minx = p->aParam[0] - p->aParam[2]; mbr->miny = p->aParam[1] - p->aParam[2]; mbr->maxx = p->aParam[0] + p->aParam[2]; mbr->maxy = p->aParam[1] + p->aParam[2]; } mbr = (struct gaia_rtree_mbr *) (p->pUser); xmin = aCoord[0]; xmax = aCoord[1]; ymin = aCoord[2]; ymax = aCoord[3]; *pRes = 1; /* evaluating Intersects relationship */ if (xmin > mbr->maxx) *pRes = 0; if (xmax < mbr->minx) *pRes = 0; if (ymin > mbr->maxy) *pRes = 0; if (ymax < mbr->miny) *pRes = 0; return SQLITE_OK; } #endif /* end RTree geometry callbacks */ static void fnct_X (sqlite3_context * context, int argc, sqlite3_value ** argv) { /* SQL function: / X(BLOB encoded POINT) / / returns the X coordinate for current POINT geometry ................................................................................ fnct_has_gcp, 0, 0, 0); sqlite3_create_function_v2 (db, "HasTopology", 0, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_has_topology, 0, 0, 0); sqlite3_create_function_v2 (db, "HasKNN", 0, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_has_knn, 0, 0, 0); sqlite3_create_function_v2 (db, "HasRouting", 0, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_has_routing, 0, 0, 0); sqlite3_create_function_v2 (db, "GeometryConstraints", 3, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_GeometryConstraints, 0, 0, 0); sqlite3_create_function_v2 (db, "GeometryConstraints", 4, ................................................................................ fnct_RecoverSpatialIndex, 0, 0, 0); sqlite3_create_function_v2 (db, "CheckSpatialIndex", 0, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_CheckSpatialIndex, 0, 0, 0); sqlite3_create_function_v2 (db, "CheckSpatialIndex", 2, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_CheckSpatialIndex, 0, 0, 0); sqlite3_create_function_v2 (db, "GetSpatialIndexExtent", 3, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_GetSpatialIndexExtent, 0, 0, 0); sqlite3_create_function_v2 (db, "CheckShadowedRowid", 1, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_CheckShadowedRowid, 0, 0, 0); sqlite3_create_function_v2 (db, "CheckWithoutRowid", 1, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_CheckWithoutRowid, 0, 0, 0); sqlite3_create_function_v2 (db, "CreateSpatialIndex", 2, ................................................................................ sqlite3_create_function_v2 (db, "ST_IsValidTrajectory", 1, SQLITE_UTF8 | SQLITE_DETERMINISTIC, cache, fnct_IsValidTrajectory, 0, 0, 0); sqlite3_create_function_v2 (db, "ST_TrajectoryInterpolatePoint", 2, SQLITE_UTF8 | SQLITE_DETERMINISTIC, cache, fnct_TrajectoryInterpolatePoint, 0, 0, 0); #ifndef OMIT_GEOCALLBACKS /* supporting RTree geometry callbacks */ sqlite3_rtree_geometry_callback (db, "RTreeWithin", fnct_RTreeIntersects, 0); sqlite3_rtree_geometry_callback (db, "RTreeContains", fnct_RTreeIntersects, 0); sqlite3_rtree_geometry_callback (db, "RTreeIntersects", fnct_RTreeIntersects, 0); sqlite3_rtree_geometry_callback (db, "RTreeDistWithin", fnct_RTreeDistWithin, 0); #endif /* end RTree geometry callbacks */ /* some BLOB/JPEG/EXIF functions */ sqlite3_create_function_v2 (db, "IsGeometryBlob", 1, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_IsGeometryBlob, 0, 0, 0); sqlite3_create_function_v2 (db, "IsCompressedGeometryBlob", 1, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_IsCompressedGeometryBlob, 0, 0, 0); ................................................................................ virtualfdo_extension_init (db); /* initializing the VirtualBBox extension */ virtualbbox_extension_init (db, p_cache); /* initializing the VirtualSpatialIndex extension */ virtual_spatialindex_extension_init (db); /* initializing the VirtualElementary extension */ virtual_elementary_extension_init (db); #ifndef OMIT_GEOS /* only if GEOS is supported */ /* initializing the VirtualRouting extension */ virtualrouting_extension_init (db); #ifndef OMIT_KNN /* only if KNN is enabled */ /* initializing the VirtualKNN extension */ virtual_knn_extension_init (db); #endif /* end KNN conditional */ #endif /* end GEOS conditional */ #ifdef ENABLE_GEOPACKAGE /* only if GeoPackage support is enabled */ /* initializing the VirtualGPKG extension */ virtualgpkg_extension_init (db); #endif /* end GEOPACKAGE conditional */ ................................................................................ spatialite_i ("\t- 'VirtualElementary'\t[ElemGeoms metahandler]\n"); #ifndef OMIT_GEOS /* only if GEOS is supported */ /* initializing the VirtualRouting extension */ spatialite_i ("\t- 'VirtualRouting'\t[Dijkstra shortest path - advanced]\n"); #ifndef OMIT_KNN /* only if KNN is enabled */ /* initializing the VirtualKNN extension */ spatialite_i ("\t- 'VirtualKNN'\t[K-Nearest Neighbors metahandler]\n"); #endif /* end KNN conditional */ #endif /* end GEOS conditional */ #ifdef ENABLE_GEOPACKAGE /* VirtualGPKG is supported */ spatialite_i ("\t- 'VirtualGPKG'\t[OGC GeoPackage interoperability]\n"); #endif #ifdef ENABLE_LIBXML2 /* VirtualXPath is supported */ |
< < < < < < < < < < < | > < < < < | > > > > > > > > > > < < < < < | | | < < | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < > > > < < < < < < < < < < < < < < > > < | | < < | > | < |
156 157 158 159 160 161 162 163 164 165 166 167 168 169 ... 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 ... 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 .... 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 .... 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 .... 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 ..... 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 ..... 48210 48211 48212 48213 48214 48215 48216 48217 48218 48219 48220 48221 48222 48223 48224 48225 48226 ..... 48421 48422 48423 48424 48425 48426 48427 48428 48429 48430 48431 48432 48433 48434 ..... 49948 49949 49950 49951 49952 49953 49954 49955 49956 49957 49958 49959 49960 49961 ..... 53261 53262 53263 53264 53265 53266 53267 53268 53269 53270 53271 53272 53273 53274 53275 53276 53277 53278 53279 53280 53281 53282 ..... 53358 53359 53360 53361 53362 53363 53364 53365 53366 53367 53368 53369 53370 53371 53372 53373 53374 |
{ /* a struct used to store a dynamic chain of GeometryCollections */ int all_polygs; struct gaia_geom_chain_item *first; struct gaia_geom_chain_item *last; }; struct stddev_str { /* a struct to implement StandardVariation and Variance aggregate functions */ int cleaned; double mean; double quot; double count; ................................................................................ static void fnct_has_geo_callbacks (sqlite3_context * context, int argc, sqlite3_value ** argv) { /* SQL function: / HasGeoCallbacks() / / always return 0 - since 5.1 GeoCallbacks have been / definitely removed from the code base */ GAIA_UNUSED (); /* LCOV_EXCL_LINE */ sqlite3_result_int (context, 0); } static void fnct_has_freeXL (sqlite3_context * context, int argc, sqlite3_value ** argv) { /* SQL function: / HasFreeXL() ................................................................................ static void fnct_has_knn (sqlite3_context * context, int argc, sqlite3_value ** argv) { /* SQL function: / HasKNN() / / since 5.1 (fake) KNN is always supported */ GAIA_UNUSED (); /* LCOV_EXCL_LINE */ sqlite3_result_int (context, 1); } static void fnct_has_knn2 (sqlite3_context * context, int argc, sqlite3_value ** argv) { /* SQL function: / HasKNN2() */ GAIA_UNUSED (); /* LCOV_EXCL_LINE */ #ifndef OMIT_GEOS /* only if GEOS is enabled */ sqlite3_result_int (context, 1); #else sqlite3_result_int (context, 0); #endif } static void fnct_has_routing (sqlite3_context * context, int argc, sqlite3_value ** argv) { ................................................................................ /* creating the ElementaryGeometries VIRTUAL TABLE */ strcpy (sql, "CREATE VIRTUAL TABLE ElementaryGeometries "); strcat (sql, "USING VirtualElementary()"); ret = sqlite3_exec (sqlite, sql, NULL, NULL, &errMsg); if (ret != SQLITE_OK) goto error; /* creating the KNN2 VIRTUAL TABLE */ strcpy (sql, "CREATE VIRTUAL TABLE KNN2 "); strcat (sql, "USING VirtualKNN2()"); ret = sqlite3_exec (sqlite, sql, NULL, NULL, &errMsg); if (ret != SQLITE_OK) goto error; if (transaction) { /* confirming the still pending Transaction */ ret = sqlite3_exec (sqlite, "COMMIT", NULL, NULL, &errMsg); if (ret != SQLITE_OK) goto error; ................................................................................ /* creating the ElementaryGeometries VIRTUAL TABLE */ strcpy (sql, "CREATE VIRTUAL TABLE IF NOT EXISTS ElementaryGeometries "); strcat (sql, "USING VirtualElementary()"); ret = sqlite3_exec (sqlite, sql, NULL, NULL, &errMsg); if (ret != SQLITE_OK) goto error; /* creating the KNN VIRTUAL TABLE */ strcpy (sql, "CREATE VIRTUAL TABLE IF NOT EXISTS KNN2 "); strcat (sql, "USING VirtualKNN2()"); ret = sqlite3_exec (sqlite, sql, NULL, NULL, &errMsg); if (ret != SQLITE_OK) goto error; if (transaction) { /* confirming the still pending Transaction */ ret = sqlite3_exec (sqlite, "COMMIT", NULL, NULL, &errMsg); if (ret != SQLITE_OK) goto error; ................................................................................ sqlite3_result_null (context); else if (status > 0) sqlite3_result_int (context, 1); else sqlite3_result_int (context, 0); } static int recover_spatial_index (sqlite3 * sqlite, const unsigned char *table, const unsigned char *geom) { /* attempting to rebuild an R*Tree */ char *sql_statement; char *errMsg = NULL; ................................................................................ #endif /* end GEOPACKAGE: supporting GPKG geometries */ sqlite3_result_null (context); } else sqlite3_result_double (context, coord); } static void fnct_X (sqlite3_context * context, int argc, sqlite3_value ** argv) { /* SQL function: / X(BLOB encoded POINT) / / returns the X coordinate for current POINT geometry ................................................................................ fnct_has_gcp, 0, 0, 0); sqlite3_create_function_v2 (db, "HasTopology", 0, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_has_topology, 0, 0, 0); sqlite3_create_function_v2 (db, "HasKNN", 0, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_has_knn, 0, 0, 0); sqlite3_create_function_v2 (db, "HasKNN2", 0, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_has_knn2, 0, 0, 0); sqlite3_create_function_v2 (db, "HasRouting", 0, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_has_routing, 0, 0, 0); sqlite3_create_function_v2 (db, "GeometryConstraints", 3, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_GeometryConstraints, 0, 0, 0); sqlite3_create_function_v2 (db, "GeometryConstraints", 4, ................................................................................ fnct_RecoverSpatialIndex, 0, 0, 0); sqlite3_create_function_v2 (db, "CheckSpatialIndex", 0, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_CheckSpatialIndex, 0, 0, 0); sqlite3_create_function_v2 (db, "CheckSpatialIndex", 2, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_CheckSpatialIndex, 0, 0, 0); sqlite3_create_function_v2 (db, "CheckShadowedRowid", 1, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_CheckShadowedRowid, 0, 0, 0); sqlite3_create_function_v2 (db, "CheckWithoutRowid", 1, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_CheckWithoutRowid, 0, 0, 0); sqlite3_create_function_v2 (db, "CreateSpatialIndex", 2, ................................................................................ sqlite3_create_function_v2 (db, "ST_IsValidTrajectory", 1, SQLITE_UTF8 | SQLITE_DETERMINISTIC, cache, fnct_IsValidTrajectory, 0, 0, 0); sqlite3_create_function_v2 (db, "ST_TrajectoryInterpolatePoint", 2, SQLITE_UTF8 | SQLITE_DETERMINISTIC, cache, fnct_TrajectoryInterpolatePoint, 0, 0, 0); /* some BLOB/JPEG/EXIF functions */ sqlite3_create_function_v2 (db, "IsGeometryBlob", 1, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_IsGeometryBlob, 0, 0, 0); sqlite3_create_function_v2 (db, "IsCompressedGeometryBlob", 1, SQLITE_UTF8 | SQLITE_DETERMINISTIC, 0, fnct_IsCompressedGeometryBlob, 0, 0, 0); ................................................................................ virtualfdo_extension_init (db); /* initializing the VirtualBBox extension */ virtualbbox_extension_init (db, p_cache); /* initializing the VirtualSpatialIndex extension */ virtual_spatialindex_extension_init (db); /* initializing the VirtualElementary extension */ virtual_elementary_extension_init (db); /* initializing the (fake) VirtualKNN extension */ virtual_knn_extension_init (db); #ifndef OMIT_GEOS /* only if GEOS is supported */ /* initializing the VirtualRouting extension */ virtualrouting_extension_init (db); /* initializing the VirtualKNN2 extension */ virtual_knn2_extension_init (db); #endif /* end GEOS conditional */ #ifdef ENABLE_GEOPACKAGE /* only if GeoPackage support is enabled */ /* initializing the VirtualGPKG extension */ virtualgpkg_extension_init (db); #endif /* end GEOPACKAGE conditional */ ................................................................................ spatialite_i ("\t- 'VirtualElementary'\t[ElemGeoms metahandler]\n"); #ifndef OMIT_GEOS /* only if GEOS is supported */ /* initializing the VirtualRouting extension */ spatialite_i ("\t- 'VirtualRouting'\t[Dijkstra shortest path - advanced]\n"); /* initializing the VirtualKNN2 extension */ spatialite_i ("\t- 'VirtualKNN2'\t[K-Nearest Neighbors metahandler]\n"); #endif /* end GEOS conditional */ #ifdef ENABLE_GEOPACKAGE /* VirtualGPKG is supported */ spatialite_i ("\t- 'VirtualGPKG'\t[OGC GeoPackage interoperability]\n"); #endif #ifdef ENABLE_LIBXML2 /* VirtualXPath is supported */ |
Changes to src/spatialite/statistics.c.
5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 |
return 1; if (strcasecmp (table, "SE_vector_styles") == 0) return 1; if (strcasecmp (table, "iso_metadata") == 0) return 1; if (strcasecmp (table, "iso_metadata_reference") == 0) return 1; if (strcasecmp (table, "KNN") == 0) return 1; if (strcasecmp (table, "SpatialIndex") == 0) return 1; return 0; } static int |
| |
5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 |
return 1;
if (strcasecmp (table, "SE_vector_styles") == 0)
return 1;
if (strcasecmp (table, "iso_metadata") == 0)
return 1;
if (strcasecmp (table, "iso_metadata_reference") == 0)
return 1;
if (strcasecmp (table, "KNN2") == 0)
return 1;
if (strcasecmp (table, "SpatialIndex") == 0)
return 1;
return 0;
}
static int
|
Changes to src/spatialite/virtualknn.c.
39 40 41 42 43 44 45 46 47 48 49 50 51 52 ... 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 ... 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 ... 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 ... 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 .... 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 |
decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL or the LGPL. If you do not delete the provisions above, a recipient may use your version of this file under the terms of any one of the MPL, the GPL or the LGPL. */ /* CREDITS: this module has been completely funded by: Regione Toscana - Settore Sistema Informativo Territoriale ed Ambientale (K-Nearest Neighbors [KNN] module) ................................................................................ #if defined(_WIN32) && !defined(__MINGW32__) #include "config-msvc.h" #else #include "config.h" #endif #ifndef OMIT_GEOS /* GEOS is supported */ #ifndef OMIT_KNN /* only if KNN is enabled */ #include <spatialite/sqlite.h> #include <spatialite/spatialite_ext.h> #include <spatialite/gaiaaux.h> #include <spatialite/gaiageo.h> #if defined(_WIN32) && !defined(__MINGW32__) #define strcasecmp _stricmp #define strncasecmp _strnicmp #endif static struct sqlite3_module my_knn_module; /****************************************************************************** / / VirtualTable structs / ******************************************************************************/ typedef struct VKnnItemStruct { /* a Feature item into the KNN sorted array */ sqlite3_int64 rowid; double dist; } VKnnItem; typedef VKnnItem *VKnnItemPtr; typedef struct VKnnContextStruct { /* current KNN context */ char *table_name; char *column_name; unsigned char *blob; int blob_size; sqlite3_stmt *stmt_dist; sqlite3_stmt *stmt_map_dist; sqlite3_stmt *stmt_rect_dist; sqlite3_stmt *stmt_pt_dist; sqlite3_stmt *stmt_buffer; sqlite3_stmt *stmt_rtree; sqlite3_stmt *stmt_rtree_count; double bbox_minx; double bbox_miny; double bbox_maxx; double bbox_maxy; double minx; double miny; double maxx; double maxy; double min_dist; double rtree_minx; double rtree_miny; double rtree_maxx; double rtree_maxy; int level; int current_level; VKnnItemPtr knn_array; int max_items; double max_dist; int curr_items; int rtree_count; } VKnnContext; typedef VKnnContext *VKnnContextPtr; typedef struct VirtualKnnStruct { /* extends the sqlite3_vtab struct */ const sqlite3_module *pModule; /* ptr to sqlite module: USED INTERNALLY BY SQLITE */ int nRef; /* # references: USED INTERNALLY BY SQLITE */ char *zErrMsg; /* error message: USE INTERNALLY BY SQLITE */ sqlite3 *db; /* the sqlite db holding the virtual table */ VKnnContextPtr knn_ctx; /* KNN context */ } VirtualKnn; typedef VirtualKnn *VirtualKnnPtr; typedef struct VirtualKnnCursorStruct { /* extends the sqlite3_vtab_cursor struct */ VirtualKnnPtr pVtab; /* Virtual table of this cursor */ int eof; /* the EOF marker */ int CurrentIndex; /* index of the current KNN item */ } VirtualKnnCursor; typedef VirtualKnnCursor *VirtualKnnCursorPtr; static void vknn_empty_context (VKnnContextPtr ctx) { /* setting an empty KNN context */ if (ctx == NULL) return; ctx->table_name = NULL; ctx->column_name = NULL; ctx->blob = NULL; ctx->blob_size = 0; ctx->stmt_dist = NULL; ctx->stmt_map_dist = NULL; ctx->stmt_rect_dist = NULL; ctx->stmt_pt_dist = NULL; ctx->stmt_buffer = NULL; ctx->stmt_rtree = NULL; ctx->stmt_rtree_count = NULL; ctx->bbox_minx = -DBL_MAX; ctx->bbox_miny = -DBL_MAX; ctx->bbox_maxx = DBL_MAX; ctx->bbox_maxy = DBL_MAX; ctx->minx = DBL_MAX; ctx->miny = DBL_MAX; ctx->maxx = -DBL_MAX; ctx->maxy = -DBL_MAX; ctx->min_dist = DBL_MAX; ctx->rtree_minx = -DBL_MAX; ctx->rtree_miny = -DBL_MAX; ctx->rtree_maxx = DBL_MAX; ctx->rtree_maxy = DBL_MAX; ctx->level = 0; ctx->current_level = 0; ctx->max_items = 0; ctx->knn_array = NULL; ctx->curr_items = 0; ctx->rtree_count = 0; ctx->max_dist = -DBL_MAX; } static VKnnContextPtr vknn_create_context (void) { /* creating an empty KNN context */ VKnnContextPtr ctx = malloc (sizeof (VKnnContext)); vknn_empty_context (ctx); return ctx; } static void vknn_reset_context (VKnnContextPtr ctx) { /* freeing a KNN context */ if (ctx == NULL) return; if (ctx->table_name != NULL) free (ctx->table_name); if (ctx->column_name != NULL) free (ctx->column_name); if (ctx->blob != NULL) free (ctx->blob); if (ctx->stmt_dist != NULL) sqlite3_finalize (ctx->stmt_dist); if (ctx->stmt_map_dist != NULL) sqlite3_finalize (ctx->stmt_map_dist); if (ctx->stmt_rect_dist != NULL) sqlite3_finalize (ctx->stmt_rect_dist); if (ctx->stmt_pt_dist != NULL) sqlite3_finalize (ctx->stmt_pt_dist); if (ctx->stmt_buffer != NULL) sqlite3_finalize (ctx->stmt_buffer); if (ctx->stmt_rtree != NULL) sqlite3_finalize (ctx->stmt_rtree); if (ctx->stmt_rtree_count != NULL) sqlite3_finalize (ctx->stmt_rtree_count); if (ctx->knn_array != NULL) free (ctx->knn_array); vknn_empty_context (ctx); } static void vknn_rtree_count (VKnnContextPtr ctx) { /* approximatively counting how many entries are into the R*Tree */ int ret; sqlite3_stmt *stmt; ctx->rtree_count = 0; if (ctx == NULL) return; stmt = ctx->stmt_rtree_count; if (stmt == NULL) return; sqlite3_reset (stmt); while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { ctx->rtree_count += 1; } else { ctx->rtree_count = 0; break; } } } static void vknn_init_context (VKnnContextPtr ctx, const char *table, const char *column, gaiaGeomCollPtr geom, int max_items, sqlite3_stmt * stmt_dist, sqlite3_stmt * stmt_map_dist, sqlite3_stmt * stmt_rect_dist, sqlite3_stmt * stmt_pt_dist, sqlite3_stmt * stmt_buffer, sqlite3_stmt * stmt_rtree, sqlite3_stmt * stmt_rtree_count) { /* initializing a KNN context */ int i; if (ctx == NULL) return; vknn_reset_context (ctx); i = strlen (table); ctx->table_name = malloc (i + 1); strcpy (ctx->table_name, table); i = strlen (column); ctx->column_name = malloc (i + 1); strcpy (ctx->column_name, column); gaiaToSpatiaLiteBlobWkb (geom, &(ctx->blob), &(ctx->blob_size)); ctx->stmt_dist = stmt_dist; ctx->stmt_map_dist = stmt_map_dist; ctx->stmt_rect_dist = stmt_rect_dist; ctx->stmt_pt_dist = stmt_pt_dist; ctx->stmt_buffer = stmt_buffer; ctx->stmt_rtree = stmt_rtree; ctx->stmt_rtree_count = stmt_rtree_count; ctx->max_items = max_items; ctx->knn_array = malloc (sizeof (VKnnItem) * max_items); for (i = 0; i < max_items; i++) { /* initializing the KNN sorted array */ VKnnItemPtr item = ctx->knn_array + i; item->rowid = 0; item->dist = DBL_MAX; } ctx->curr_items = 0; vknn_rtree_count (ctx); } static void vknn_free_context (void *p) { /* freeing a KNN context */ VKnnContextPtr ctx = (VKnnContextPtr) p; vknn_reset_context (ctx); free (ctx); } static int vknn_check_view_rtree (sqlite3 * sqlite, const char *table_name, const char *geom_column, char **real_table, char **real_geom, int *is_geographic) { /* checks if the required RTree is actually defined - SpatialView */ sqlite3_stmt *stmt; char *sql_statement; int ret; int count = 0; char *rt = NULL; char *rg = NULL; int is_longlat = 0; /* testing if views_geometry_columns exists */ sql_statement = sqlite3_mprintf ("SELECT tbl_name FROM sqlite_master " "WHERE type = 'table' AND tbl_name = 'views_geometry_columns'"); ret = sqlite3_prepare_v2 (sqlite, sql_statement, strlen (sql_statement), &stmt, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) return 0; while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) count++; } sqlite3_finalize (stmt); if (count != 1) return 0; count = 0; /* attempting to find the RTree Geometry Column */ sql_statement = sqlite3_mprintf ("SELECT a.f_table_name, a.f_geometry_column, SridIsGeographic(b.srid) " "FROM views_geometry_columns AS a " "JOIN geometry_columns AS b ON (" "Upper(a.f_table_name) = Upper(b.f_table_name) AND " "Upper(a.f_geometry_column) = Upper(b.f_geometry_column)) " "WHERE Upper(a.view_name) = Upper(%Q) " "AND Upper(a.view_geometry) = Upper(%Q) AND b.spatial_index_enabled = 1", table_name, geom_column); ret = sqlite3_prepare_v2 (sqlite, sql_statement, strlen (sql_statement), &stmt, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) return 0; while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { const char *v = (const char *) sqlite3_column_text (stmt, 0); int len = sqlite3_column_bytes (stmt, 0); if (rt) free (rt); rt = malloc (len + 1); strcpy (rt, v); v = (const char *) sqlite3_column_text (stmt, 1); len = sqlite3_column_bytes (stmt, 1); if (rg) free (rg); rg = malloc (len + 1); strcpy (rg, v); is_longlat = sqlite3_column_int (stmt, 2); count++; } } sqlite3_finalize (stmt); if (count != 1) return 0; if (!validateRowid (sqlite, rt)) { free (rt); free (rg); return 0; } *real_table = rt; *real_geom = rg; *is_geographic = is_longlat; return 1; } static int vknn_check_rtree (sqlite3 * sqlite, const char *db_prefix, const char *table_name, const char *geom_column, char **real_table, char **real_geom, int *is_geographic) { /* checks if the required RTree is actually defined */ sqlite3_stmt *stmt; char *sql_statement; int ret; int count = 0; char *rt = NULL; char *rg = NULL; int is_longlat = 0; if (db_prefix == NULL) { sql_statement = sqlite3_mprintf ("SELECT f_table_name, f_geometry_column, SridIsGeographic(srid) " "FROM main.geometry_columns WHERE Upper(f_table_name) = Upper(%Q) AND " "Upper(f_geometry_column) = Upper(%Q) AND spatial_index_enabled = 1", table_name, geom_column); } else { char *quoted_db = gaiaDoubleQuotedSql (db_prefix); sql_statement = sqlite3_mprintf ("SELECT f_table_name, f_geometry_column, SridIsGeographic(srid) " "FROM \"%s\".geometry_columns WHERE Upper(f_table_name) = Upper(%Q) AND " "Upper(f_geometry_column) = Upper(%Q) AND spatial_index_enabled = 1", quoted_db, table_name, geom_column); free (quoted_db); } ret = sqlite3_prepare_v2 (sqlite, sql_statement, strlen (sql_statement), &stmt, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) return 0; while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { const char *v = (const char *) sqlite3_column_text (stmt, 0); int len = sqlite3_column_bytes (stmt, 0); if (rt) free (rt); rt = malloc (len + 1); strcpy (rt, v); v = (const char *) sqlite3_column_text (stmt, 1); len = sqlite3_column_bytes (stmt, 1); if (rg) free (rg); rg = malloc (len + 1); strcpy (rg, v); is_longlat = sqlite3_column_int (stmt, 2); count++; } } sqlite3_finalize (stmt); if (count != 1) return vknn_check_view_rtree (sqlite, table_name, geom_column, real_table, real_geom, is_geographic); else { *real_table = rt; *real_geom = rg; *is_geographic = is_longlat; } return 1; } static int vknn_find_view_rtree (sqlite3 * sqlite, const char *db_prefix, const char *table_name, char **real_table, char **real_geom, int *is_geographic) { /* attempts to find the corresponding RTree Geometry Column - SpatialView */ sqlite3_stmt *stmt; char *sql_statement; int ret; int count = 0; char *rt = NULL; char *rg = NULL; int is_longlat = 0; /* testing if views_geometry_columns exists */ if (db_prefix == NULL) { sql_statement = sqlite3_mprintf ("SELECT tbl_name FROM main.sqlite_master " "WHERE type = 'table' AND tbl_name = 'views_geometry_columns'"); } else { char *quoted_db = gaiaDoubleQuotedSql (db_prefix); sql_statement = sqlite3_mprintf ("SELECT tbl_name FROM \"%s\".sqlite_master " "WHERE type = 'table' AND tbl_name = 'views_geometry_columns'", quoted_db); free (quoted_db); } ret = sqlite3_prepare_v2 (sqlite, sql_statement, strlen (sql_statement), &stmt, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) return 0; while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) count++; } sqlite3_finalize (stmt); if (count != 1) return 0; count = 0; /* attempting to find the RTree Geometry Column */ if (db_prefix == NULL) { sql_statement = sqlite3_mprintf ("SELECT a.f_table_name, a.f_geometry_column, SridIsGeographic(b.srid) " "FROM main.views_geometry_columns AS a " "JOIN main.geometry_columns AS b ON (" "Upper(a.f_table_name) = Upper(b.f_table_name) AND " "Upper(a.f_geometry_column) = Upper(b.f_geometry_column)) " "WHERE Upper(a.view_name) = Upper(%Q) AND b.spatial_index_enabled = 1", table_name); } else { char *quoted_db = gaiaDoubleQuotedSql (db_prefix); sql_statement = sqlite3_mprintf ("SELECT a.f_table_name, a.f_geometry_column, SridIsGeographic(b.srid) " "FROM \"%s\".views_geometry_columns AS a " "JOIN \"%s\".geometry_columns AS b ON (" "Upper(a.f_table_name) = Upper(b.f_table_name) AND " "Upper(a.f_geometry_column) = Upper(b.f_geometry_column)) " "WHERE Upper(a.view_name) = Upper(%Q) AND b.spatial_index_enabled = 1", quoted_db, quoted_db, table_name); free (quoted_db); } ret = sqlite3_prepare_v2 (sqlite, sql_statement, strlen (sql_statement), &stmt, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) return 0; while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { const char *v = (const char *) sqlite3_column_text (stmt, 0); int len = sqlite3_column_bytes (stmt, 0); if (rt) free (rt); rt = malloc (len + 1); strcpy (rt, v); v = (const char *) sqlite3_column_text (stmt, 1); len = sqlite3_column_bytes (stmt, 1); if (rg) free (rg); rg = malloc (len + 1); strcpy (rg, v); is_longlat = sqlite3_column_int (stmt, 2); count++; } } sqlite3_finalize (stmt); if (count != 1) return 0; *real_table = rt; *real_geom = rg; *is_geographic = is_longlat; return 1; } static int vknn_find_rtree (sqlite3 * sqlite, const char *db_prefix, const char *table_name, char **real_table, char **real_geom, int *is_geographic) { /* attempts to find the corresponding RTree Geometry Column */ sqlite3_stmt *stmt; char *sql_statement; int ret; int count = 0; char *rt = NULL; char *rg = NULL; int is_longlat = 0; if (db_prefix == NULL) { sql_statement = sqlite3_mprintf ("SELECT f_table_name, f_geometry_column, SridIsGeographic(srid) " " FROM main.geometry_columns WHERE Upper(f_table_name) = Upper(%Q) " "AND spatial_index_enabled = 1", table_name); } else { char *quoted_db = gaiaDoubleQuotedSql (db_prefix); sql_statement = sqlite3_mprintf ("SELECT f_table_name, f_geometry_column, SridIsGeographic(srid) " " FROM \"%s\".geometry_columns WHERE Upper(f_table_name) = Upper(%Q) " "AND spatial_index_enabled = 1", quoted_db, table_name); free (quoted_db); } ret = sqlite3_prepare_v2 (sqlite, sql_statement, strlen (sql_statement), &stmt, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) return 0; while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { const char *v = (const char *) sqlite3_column_text (stmt, 0); int len = sqlite3_column_bytes (stmt, 0); if (rt) free (rt); rt = malloc (len + 1); strcpy (rt, v); v = (const char *) sqlite3_column_text (stmt, 1); len = sqlite3_column_bytes (stmt, 1); if (rg) free (rg); rg = malloc (len + 1); strcpy (rg, v); is_longlat = sqlite3_column_int (stmt, 2); count++; } } sqlite3_finalize (stmt); if (count != 1) return vknn_find_view_rtree (sqlite, db_prefix, table_name, real_table, real_geom, is_geographic); else { *real_table = rt; *real_geom = rg; *is_geographic = is_longlat; } return 1; } static void vknn_parse_table_name (const char *tn, char **db_prefix, char **table_name) { /* attempting to extract an eventual DB prefix */ int i; int len = strlen (tn); int i_dot = -1; if (strncasecmp (tn, "DB=", 3) == 0) { int l_db; int l_tbl; for (i = 3; i < len; i++) { if (tn[i] == '.') { i_dot = i; break; } } if (i_dot > 1) { l_db = i_dot - 3; l_tbl = len - (i_dot + 1); *db_prefix = malloc (l_db + 1); memset (*db_prefix, '\0', l_db + 1); memcpy (*db_prefix, tn + 3, l_db); *table_name = malloc (l_tbl + 1); strcpy (*table_name, tn + i_dot + 1); return; } } *table_name = malloc (len + 1); strcpy (*table_name, tn); } static int vknn_create (sqlite3 * db, void *pAux, int argc, const char *const *argv, sqlite3_vtab ** ppVTab, char **pzErr) { /* creates the virtual table for R*Tree KNN metahandling */ VirtualKnnPtr p_vt; char *buf; ................................................................................ p_vt = (VirtualKnnPtr) sqlite3_malloc (sizeof (VirtualKnn)); if (!p_vt) return SQLITE_NOMEM; p_vt->db = db; p_vt->pModule = &my_knn_module; p_vt->nRef = 0; p_vt->zErrMsg = NULL; p_vt->knn_ctx = vknn_create_context (); /* preparing the COLUMNs for this VIRTUAL TABLE */ xname = gaiaDoubleQuotedSql (vtable); buf = sqlite3_mprintf ("CREATE TABLE \"%s\" (f_table_name TEXT, " "f_geometry_column TEXT, ref_geometry BLOB, max_items INTEGER, " "pos INTEGER, fid INTEGER, distance DOUBLE)", xname); free (xname); free (vtable); ................................................................................ } static int vknn_best_index (sqlite3_vtab * pVTab, sqlite3_index_info * pIdxInfo) { /* best index selection */ int i; int err = 1; int table = 0; int geom_col = 0; int ref_geom = 0; int max_items = 0; if (pVTab) pVTab = pVTab; /* unused arg warning suppression */ for (i = 0; i < pIdxInfo->nConstraint; i++) { /* verifying the constraints */ struct sqlite3_index_constraint *p = &(pIdxInfo->aConstraint[i]); if (p->usable) { if (p->iColumn == 0 && p->op == SQLITE_INDEX_CONSTRAINT_EQ) table++; else if (p->iColumn == 1 && p->op == SQLITE_INDEX_CONSTRAINT_EQ) geom_col++; else if (p->iColumn == 2 && p->op == SQLITE_INDEX_CONSTRAINT_EQ) ref_geom++; else if (p->iColumn == 3 && p->op == SQLITE_INDEX_CONSTRAINT_EQ) max_items++; } } if (table == 1 && (geom_col == 0 || geom_col == 1) && ref_geom == 1 && (max_items == 0 || max_items == 1)) { /* this one is a valid KNN query */ if (geom_col == 1) { if (max_items == 1) pIdxInfo->idxNum = 3; else pIdxInfo->idxNum = 1; } else { if (max_items == 1) pIdxInfo->idxNum = 4; else pIdxInfo->idxNum = 2; } pIdxInfo->estimatedCost = 1.0; for (i = 0; i < pIdxInfo->nConstraint; i++) { if (pIdxInfo->aConstraint[i].usable) { pIdxInfo->aConstraintUsage[i].argvIndex = i + 1; pIdxInfo->aConstraintUsage[i].omit = 1; } } err = 0; } if (err) { /* illegal query */ pIdxInfo->idxNum = 0; } return SQLITE_OK; } static int vknn_disconnect (sqlite3_vtab * pVTab) { /* disconnects the virtual table */ VirtualKnnPtr p_vt = (VirtualKnnPtr) pVTab; if (p_vt->knn_ctx != NULL) vknn_free_context (p_vt->knn_ctx); sqlite3_free (p_vt); return SQLITE_OK; } static int vknn_destroy (sqlite3_vtab * pVTab) { ................................................................................ { /* opening a new cursor */ VirtualKnnCursorPtr cursor = (VirtualKnnCursorPtr) sqlite3_malloc (sizeof (VirtualKnnCursor)); if (cursor == NULL) return SQLITE_ERROR; cursor->pVtab = (VirtualKnnPtr) pVTab; cursor->eof = 1; *ppCursor = (sqlite3_vtab_cursor *) cursor; return SQLITE_OK; } static int vknn_close (sqlite3_vtab_cursor * pCursor) { /* closing the cursor */ sqlite3_free (pCursor); return SQLITE_OK; } static void vknn_shift_items (VKnnContextPtr ctx, int index) { /* shifting down the Features sorted array */ int i; for (i = ctx->max_items - 1; i > index; i--) { VKnnItemPtr item1 = ctx->knn_array + i - 1; VKnnItemPtr item2 = ctx->knn_array + i; item2->rowid = item1->rowid; item2->dist = item1->dist; if ((i == ctx->max_items - 1) && item2->dist != DBL_MAX) ctx->max_dist = item2->dist; } } static void vknn_update_items (VKnnContextPtr ctx, sqlite3_int64 rowid, double dist) { /* updating the Features sorted array */ int i; if (ctx->curr_items == ctx->max_items) { if (dist >= ctx->max_dist) return; } for (i = 0; i < ctx->max_items; i++) { VKnnItemPtr item = ctx->knn_array + i; if (rowid == item->rowid) return; if (dist < item->dist) { vknn_shift_items (ctx, i); item->rowid = rowid; item->dist = dist; break; } } if (dist > ctx->max_dist) ctx->max_dist = dist; if (ctx->curr_items < ctx->max_items) ctx->curr_items += 1; } static int vknn_check_mbr (VKnnContextPtr ctx, double rtree_minx, double rtree_miny, double rtree_maxx, double rtree_maxy) { /* comparing two MBRs */ if (rtree_minx >= ctx->bbox_minx && rtree_maxx <= ctx->bbox_maxx && rtree_miny >= ctx->bbox_miny && rtree_maxy <= ctx->bbox_maxy) return FULLY_WITHIN; if (rtree_maxx < ctx->bbox_minx) return NOT_WITHIN; if (rtree_minx > ctx->bbox_maxx) return NOT_WITHIN; if (rtree_maxy < ctx->bbox_miny) return NOT_WITHIN; if (rtree_miny > ctx->bbox_maxy) return NOT_WITHIN; return PARTLY_WITHIN; } static double vknn_compute_distance (VKnnContextPtr ctx, sqlite3_int64 rowid) { /* computing the distance between two geometries (in meters) */ double dist = DBL_MAX; int ret; sqlite3_stmt *stmt; if (ctx == NULL) return DBL_MAX; if (ctx->blob == NULL) return DBL_MAX; if (ctx->stmt_dist == NULL) return DBL_MAX; stmt = ctx->stmt_dist; sqlite3_reset (stmt); sqlite3_clear_bindings (stmt); sqlite3_bind_blob (stmt, 1, ctx->blob, ctx->blob_size, SQLITE_STATIC); sqlite3_bind_int64 (stmt, 2, rowid); while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { if (sqlite3_column_type (stmt, 0) == SQLITE_FLOAT) dist = sqlite3_column_double (stmt, 0); } else { dist = DBL_MAX; break; } } return dist; } static double vknn_rect_distance (VKnnContextPtr ctx, double minx, double miny, double maxx, double maxy) { /* computing the distance between the geometry and an R*Tree BBOX */ double dist = DBL_MAX; int ret; sqlite3_stmt *stmt; if (ctx == NULL) return DBL_MAX; if (ctx->blob == NULL) return DBL_MAX; if (ctx->stmt_rect_dist == NULL) return DBL_MAX; stmt = ctx->stmt_rect_dist; sqlite3_reset (stmt); sqlite3_clear_bindings (stmt); sqlite3_bind_blob (stmt, 1, ctx->blob, ctx->blob_size, SQLITE_STATIC); sqlite3_bind_double (stmt, 2, minx); sqlite3_bind_double (stmt, 3, miny); sqlite3_bind_double (stmt, 4, maxx); sqlite3_bind_double (stmt, 5, maxy); while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { if (sqlite3_column_type (stmt, 0) == SQLITE_FLOAT) dist = sqlite3_column_double (stmt, 0); } else { dist = DBL_MAX; break; } } return dist; } static double vknn_pt_distance (VKnnContextPtr ctx, double x, double y) { /* computing the distance between the geometry and a point */ double dist = DBL_MAX; int ret; sqlite3_stmt *stmt; if (ctx == NULL) return DBL_MAX; if (ctx->blob == NULL) return DBL_MAX; if (ctx->stmt_pt_dist == NULL) return DBL_MAX; stmt = ctx->stmt_pt_dist; sqlite3_reset (stmt); sqlite3_clear_bindings (stmt); sqlite3_bind_blob (stmt, 1, ctx->blob, ctx->blob_size, SQLITE_STATIC); sqlite3_bind_double (stmt, 2, x); sqlite3_bind_double (stmt, 3, y); while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { if (sqlite3_column_type (stmt, 0) == SQLITE_FLOAT) dist = sqlite3_column_double (stmt, 0); } else { dist = DBL_MAX; break; } } return dist; } static int vknn_bufferize (VKnnContextPtr ctx, double radius) { /* computing the frame for an R*Tree query */ int ret; sqlite3_stmt *stmt; if (ctx == NULL) return 0; if (ctx->blob == NULL) return 0; if (ctx->stmt_buffer == NULL) return 0; stmt = ctx->stmt_buffer; sqlite3_reset (stmt); sqlite3_clear_bindings (stmt); sqlite3_bind_blob (stmt, 1, ctx->blob, ctx->blob_size, SQLITE_STATIC); sqlite3_bind_double (stmt, 2, radius); while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { if (sqlite3_column_type (stmt, 0) == SQLITE_FLOAT) ctx->rtree_minx = sqlite3_column_double (stmt, 0); if (sqlite3_column_type (stmt, 1) == SQLITE_FLOAT) ctx->rtree_miny = sqlite3_column_double (stmt, 1); if (sqlite3_column_type (stmt, 2) == SQLITE_FLOAT) ctx->rtree_maxx = sqlite3_column_double (stmt, 2); if (sqlite3_column_type (stmt, 3) == SQLITE_FLOAT) ctx->rtree_maxy = sqlite3_column_double (stmt, 3); } else { return 0; break; } } return 1; } static int vknn_rtree_query (VKnnContextPtr ctx) { /* Querying the RTree - Intersections */ int err = 0; int count = 0; int ret; sqlite3_stmt *stmt; if (ctx == NULL) return 0; if (ctx->stmt_rtree == NULL) return 0; stmt = ctx->stmt_rtree; sqlite3_reset (stmt); sqlite3_clear_bindings (stmt); sqlite3_bind_double (stmt, 1, ctx->rtree_maxx); sqlite3_bind_double (stmt, 2, ctx->rtree_minx); sqlite3_bind_double (stmt, 3, ctx->rtree_maxy); sqlite3_bind_double (stmt, 4, ctx->rtree_miny); while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { double dist; sqlite3_int64 rowid = sqlite3_column_int64 (stmt, 0); dist = vknn_compute_distance (ctx, rowid); vknn_update_items (ctx, rowid, dist); count++; } else { err = 1; break; } } if (err) return -1; return count; } static int vknn_query_callback (sqlite3_rtree_query_info * info) { /* R*Tree Query Callback function */ double rtree_minx; double rtree_maxx; double rtree_miny; double rtree_maxy; double dist; int mode; VKnnContextPtr ctx = (VKnnContextPtr) (info->pContext); if (info->nCoord != 4) { /* invalid RTree */ info->eWithin = NOT_WITHIN; return SQLITE_OK; } /* fetching the node's BBOX */ rtree_minx = info->aCoord[0]; rtree_maxx = info->aCoord[1]; rtree_miny = info->aCoord[2]; rtree_maxy = info->aCoord[3]; if (info->iLevel > ctx->current_level) { mode = vknn_check_mbr (ctx, rtree_minx, rtree_miny, rtree_maxx, rtree_maxy); if (mode == FULLY_WITHIN || mode == PARTLY_WITHIN) { /* overlaps the current reference frame; to be further expanded */ info->eWithin = FULLY_WITHIN; } else info->eWithin = NOT_WITHIN; } else { dist = vknn_rect_distance (ctx, rtree_minx, rtree_miny, rtree_maxx, rtree_maxy); if (dist < ctx->min_dist) { ctx->minx = rtree_minx; ctx->miny = rtree_miny; ctx->maxx = rtree_maxx; ctx->maxy = rtree_maxy; ctx->min_dist = dist; ctx->level = info->iLevel; } info->eWithin = NOT_WITHIN; } return SQLITE_OK; } static int vknn_filter (sqlite3_vtab_cursor * pCursor, int idxNum, const char *idxStr, int argc, sqlite3_value ** argv) { /* setting up a cursor filter */ char *db_prefix = NULL; char *table_name = NULL; char *geom_column = NULL; char *xtable = NULL; char *xgeom = NULL; char *xgeomQ; char *xtableQ; char *idx_name; char *idx_nameQ; char *sql_statement; gaiaGeomCollPtr geom = NULL; int ok_table = 0; int ok_geom = 0; int ok_max = 0; int max_items = 3; int is_geographic; const unsigned char *blob; int size; int exists; int ret; double radius; double dist; sqlite3_stmt *stmt = NULL; sqlite3_stmt *stmt_dist = NULL; sqlite3_stmt *stmt_map_dist = NULL; sqlite3_stmt *stmt_rect_dist = NULL; sqlite3_stmt *stmt_pt_dist = NULL; sqlite3_stmt *stmt_buffer = NULL; sqlite3_stmt *stmt_rtree = NULL; sqlite3_stmt *stmt_rtree_count = NULL; VirtualKnnCursorPtr cursor = (VirtualKnnCursorPtr) pCursor; VirtualKnnPtr knn = (VirtualKnnPtr) cursor->pVtab; VKnnContextPtr vknn_context = knn->knn_ctx; if (idxStr) idxStr = idxStr; /* unused arg warning suppression */ cursor->eof = 1; if (idxStr) idxStr = idxStr; /* unused arg warning suppression */ cursor->eof = 1; if (idxNum == 1 && argc == 3) { /* retrieving the Table/Column/Geometry params */ if (sqlite3_value_type (argv[0]) == SQLITE_TEXT) { char *tn = (char *) sqlite3_value_text (argv[0]); vknn_parse_table_name (tn, &db_prefix, &table_name); ok_table = 1; } if (sqlite3_value_type (argv[1]) == SQLITE_TEXT) { geom_column = (char *) sqlite3_value_text (argv[1]); ok_geom = 1; } if (sqlite3_value_type (argv[2]) == SQLITE_BLOB) { blob = sqlite3_value_blob (argv[2]); size = sqlite3_value_bytes (argv[2]); geom = gaiaFromSpatiaLiteBlobWkb (blob, size); } if (ok_table && ok_geom && geom) ; else { /* invalid args */ goto stop; } } if (idxNum == 2 && argc == 2) { /* retrieving the Table/Geometry params */ if (sqlite3_value_type (argv[0]) == SQLITE_TEXT) { char *tn = (char *) sqlite3_value_text (argv[0]); vknn_parse_table_name (tn, &db_prefix, &table_name); ok_table = 1; } if (sqlite3_value_type (argv[1]) == SQLITE_BLOB) { blob = sqlite3_value_blob (argv[1]); size = sqlite3_value_bytes (argv[1]); geom = gaiaFromSpatiaLiteBlobWkb (blob, size); } if (ok_table && geom) ; else { /* invalid args */ goto stop; } } if (idxNum == 3 && argc == 4) { /* retrieving the Table/Column/Geometry/MaxItems params */ if (sqlite3_value_type (argv[0]) == SQLITE_TEXT) { char *tn = (char *) sqlite3_value_text (argv[0]); vknn_parse_table_name (tn, &db_prefix, &table_name); ok_table = 1; } if (sqlite3_value_type (argv[1]) == SQLITE_TEXT) { geom_column = (char *) sqlite3_value_text (argv[1]); ok_geom = 1; } if (sqlite3_value_type (argv[2]) == SQLITE_BLOB) { blob = sqlite3_value_blob (argv[2]); size = sqlite3_value_bytes (argv[2]); geom = gaiaFromSpatiaLiteBlobWkb (blob, size); } if (sqlite3_value_type (argv[3]) == SQLITE_INTEGER) { max_items = sqlite3_value_int (argv[3]); if (max_items > 1024) max_items = 1024; if (max_items < 1) max_items = 1; ok_max = 1; } if (ok_table && ok_geom && geom && ok_max) ; else { /* invalid args */ goto stop; } } if (idxNum == 4 && argc == 3) { /* retrieving the Table/Geometry/MaxItems params */ if (sqlite3_value_type (argv[0]) == SQLITE_TEXT) { char *tn = (char *) sqlite3_value_text (argv[0]); vknn_parse_table_name (tn, &db_prefix, &table_name); ok_table = 1; } if (sqlite3_value_type (argv[1]) == SQLITE_BLOB) { blob = sqlite3_value_blob (argv[1]); size = sqlite3_value_bytes (argv[1]); geom = gaiaFromSpatiaLiteBlobWkb (blob, size); } if (sqlite3_value_type (argv[2]) == SQLITE_INTEGER) { max_items = sqlite3_value_int (argv[2]); if (max_items > 1024) max_items = 1024; if (max_items < 1) max_items = 1; ok_max = 1; } if (ok_table && geom && ok_max) ; else { /* invalid args */ goto stop; } } /* checking if the corresponding R*Tree exists */ if (ok_geom) exists = vknn_check_rtree (knn->db, db_prefix, table_name, geom_column, &xtable, &xgeom, &is_geographic); else exists = vknn_find_rtree (knn->db, db_prefix, table_name, &xtable, &xgeom, &is_geographic); if (!exists) goto stop; /* building the Distance query */ xgeomQ = gaiaDoubleQuotedSql (xgeom); xtableQ = gaiaDoubleQuotedSql (xtable); if (is_geographic) sql_statement = sqlite3_mprintf ("SELECT ST_Distance(?, \"%s\", 1) FROM \"%s\" WHERE rowid = ?", xgeomQ, xtableQ); else sql_statement = sqlite3_mprintf ("SELECT ST_Distance(?, \"%s\") FROM \"%s\" WHERE rowid = ?", xgeomQ, xtableQ); free (xgeomQ); free (xtableQ); ret = sqlite3_prepare_v2 (knn->db, sql_statement, strlen (sql_statement), &stmt_dist, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) goto stop; /* building the Distance query - map units */ xgeomQ = gaiaDoubleQuotedSql (xgeom); xtableQ = gaiaDoubleQuotedSql (xtable); sql_statement = sqlite3_mprintf ("SELECT ST_Distance(?, \"%s\") FROM \"%s\" WHERE rowid = ?", xgeomQ, xtableQ); free (xgeomQ); free (xtableQ); ret = sqlite3_prepare_v2 (knn->db, sql_statement, strlen (sql_statement), &stmt_map_dist, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) goto stop; /* building the Distance query - RTree MBR */ sql_statement = "SELECT ST_Distance(?, BuildMbr(?, ?, ?, ?))"; ret = sqlite3_prepare_v2 (knn->db, sql_statement, strlen (sql_statement), &stmt_rect_dist, NULL); if (ret != SQLITE_OK) goto stop; /* building the Distance query - Point */ sql_statement = "SELECT ST_Distance(?, MakePoint(?, ?))"; ret = sqlite3_prepare_v2 (knn->db, sql_statement, strlen (sql_statement), &stmt_pt_dist, NULL); if (ret != SQLITE_OK) goto stop; /* building the Buffer query */ sql_statement = "SELECT MbrMinX(x.g), MbrMinY(x.g), MbrMaxX(x.g), MbrMaxY(x.g) " "FROM (SELECT ST_Buffer(ST_Envelope(?), ?) AS g) AS x"; ret = sqlite3_prepare_v2 (knn->db, sql_statement, strlen (sql_statement), &stmt_buffer, NULL); if (ret != SQLITE_OK) goto stop; /* building the RTree query - Intersects */ idx_name = sqlite3_mprintf ("idx_%s_%s", xtable, xgeom); idx_nameQ = gaiaDoubleQuotedSql (idx_name); if (db_prefix == NULL) { sql_statement = sqlite3_mprintf ("SELECT pkid FROM main.\"%s\" WHERE xmin <= ? AND xmax >= ? AND ymin <= ? AND ymax >= ?", idx_nameQ); } else { char *quoted_db = gaiaDoubleQuotedSql (db_prefix); sql_statement = sqlite3_mprintf ("SELECT pkid FROM \"%s\".\"%s\" WHERE xmin <= ? AND xmax >= ? AND ymin <= ? AND ymax >= ?", quoted_db, idx_nameQ); free (quoted_db); } free (idx_nameQ); sqlite3_free (idx_name); ret = sqlite3_prepare_v2 (knn->db, sql_statement, strlen (sql_statement), &stmt_rtree, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) goto stop; /* building the RTree query - count items */ idx_name = sqlite3_mprintf ("idx_%s_%s", xtable, xgeom); idx_nameQ = gaiaDoubleQuotedSql (idx_name); if (db_prefix == NULL) { sql_statement = sqlite3_mprintf ("SELECT pkid FROM \"%s\" LIMIT 1024", idx_nameQ); } else { char *quoted_db = gaiaDoubleQuotedSql (db_prefix); sql_statement = sqlite3_mprintf ("SELECT pkid FROM \"%s\".\"%s\" LIMIT 1024", quoted_db, idx_nameQ); free (quoted_db); } sqlite3_free (idx_name); free (idx_nameQ); ret = sqlite3_prepare_v2 (knn->db, sql_statement, strlen (sql_statement), &stmt_rtree_count, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) goto stop; /* installing the R*Tree query callback */ gaiaMbrGeometry (geom); vknn_init_context (vknn_context, xtable, xgeom, geom, max_items, stmt_dist, stmt_map_dist, stmt_rect_dist, stmt_pt_dist, stmt_buffer, stmt_rtree, stmt_rtree_count); gaiaFreeGeomColl (geom); geom = NULL; /* releasing ownership on geom */ stmt_dist = NULL; /* releasing ownership on stmt_dist */ stmt_map_dist = NULL; /* releasing ownership on stmt_map_dist */ stmt_rect_dist = NULL; /* releasing ownership on stmt_rect */ stmt_pt_dist = NULL; /* releasing ownership on stmt_point */ stmt_buffer = NULL; /* releasing ownership on stmt_buffer */ stmt_rtree = NULL; /* releasing ownership on stmt_rtree */ stmt_rtree_count = NULL; /* releasing ownership on stmt_rtree_count */ sqlite3_rtree_query_callback (knn->db, "knn_position", vknn_query_callback, vknn_context, NULL); /* building the RTree query - callback */ idx_name = sqlite3_mprintf ("idx_%s_%s", xtable, xgeom); idx_nameQ = gaiaDoubleQuotedSql (idx_name); if (db_prefix == NULL) { sql_statement = sqlite3_mprintf ("SELECT pkid FROM main.\"%s\" WHERE pkid MATCH knn_position(1)", idx_nameQ); } else { char *quoted_db = gaiaDoubleQuotedSql (db_prefix); sql_statement = sqlite3_mprintf ("SELECT pkid FROM \"%s\".\"%s\" WHERE pkid MATCH knn_position(1)", quoted_db, idx_nameQ); free (quoted_db); } free (idx_nameQ); sqlite3_free (idx_name); ret = sqlite3_prepare_v2 (knn->db, sql_statement, strlen (sql_statement), &stmt, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) goto stop; vknn_context->bbox_minx = -DBL_MAX; vknn_context->bbox_miny = -DBL_MAX; vknn_context->bbox_maxx = DBL_MAX; vknn_context->bbox_maxy = DBL_MAX; vknn_context->current_level = 1024; while (1) { /* repeatedly querying the R*Tree until finding the nearest BBOX */ vknn_context->minx = DBL_MAX; vknn_context->miny = DBL_MAX; vknn_context->maxx = -DBL_MAX; vknn_context->maxy = -DBL_MAX; vknn_context->min_dist = DBL_MAX; sqlite3_step (stmt); vknn_context->bbox_minx = vknn_context->minx; vknn_context->bbox_miny = vknn_context->miny; vknn_context->bbox_maxx = vknn_context->maxx; vknn_context->bbox_maxy = vknn_context->maxy; if (vknn_context->level <= 1) break; vknn_context->current_level = vknn_context->level - 1; } radius = vknn_pt_distance (vknn_context, vknn_context->bbox_minx, vknn_context->bbox_miny); dist = vknn_pt_distance (vknn_context, vknn_context->bbox_minx, vknn_context->bbox_maxy); if (dist > radius) radius = dist; dist = vknn_pt_distance (vknn_context, vknn_context->bbox_maxx, vknn_context->bbox_miny); if (dist > radius) radius = dist; dist = vknn_pt_distance (vknn_context, vknn_context->bbox_maxx, vknn_context->bbox_maxy); if (dist > radius) radius = dist; while (1) { if (!vknn_bufferize (vknn_context, radius)) break; ret = vknn_rtree_query (vknn_context); if (ret <= 0 || ret >= max_items || ret >= vknn_context->rtree_count) break; radius *= 1.05; } if (vknn_context->curr_items == 0) cursor->eof = 1; else cursor->eof = 0; cursor->CurrentIndex = 0; stop: if (geom) gaiaFreeGeomColl (geom); if (xtable) free (xtable); if (xgeom) free (xgeom); if (db_prefix) free (db_prefix); if (table_name) free (table_name); if (stmt != NULL) sqlite3_finalize (stmt); if (stmt_dist != NULL) sqlite3_finalize (stmt_dist); if (stmt_map_dist != NULL) sqlite3_finalize (stmt_map_dist); if (stmt_rect_dist != NULL) sqlite3_finalize (stmt_rect_dist); if (stmt_pt_dist != NULL) sqlite3_finalize (stmt_pt_dist); if (stmt_buffer != NULL) sqlite3_finalize (stmt_buffer); if (stmt_rtree != NULL) sqlite3_finalize (stmt_rtree); if (stmt_rtree_count != NULL) sqlite3_finalize (stmt_rtree_count); return SQLITE_OK; } static int vknn_next (sqlite3_vtab_cursor * pCursor) { /* fetching a next row from cursor */ VirtualKnnCursorPtr cursor = (VirtualKnnCursorPtr) pCursor; VKnnContextPtr ctx = cursor->pVtab->knn_ctx; cursor->CurrentIndex += 1; if (cursor->CurrentIndex >= ctx->curr_items) cursor->eof = 1; return SQLITE_OK; } static int vknn_eof (sqlite3_vtab_cursor * pCursor) { /* cursor EOF */ VirtualKnnCursorPtr cursor = (VirtualKnnCursorPtr) pCursor; return cursor->eof; } static int vknn_column (sqlite3_vtab_cursor * pCursor, sqlite3_context * pContext, int column) { /* fetching value for the Nth column */ VirtualKnnCursorPtr cursor = (VirtualKnnCursorPtr) pCursor; VKnnContextPtr ctx = cursor->pVtab->knn_ctx; VKnnItemPtr item = NULL; if (cursor || column) cursor = cursor; /* unused arg warning suppression */ if (column) column = column; /* unused arg warning suppression */ if (cursor->CurrentIndex < ctx->curr_items) item = ctx->knn_array + cursor->CurrentIndex; if (column == 0) { /* the Table Name column */ sqlite3_result_text (pContext, ctx->table_name, strlen (ctx->table_name), SQLITE_STATIC); } else if (column == 1) { /* the GeometryColumn Name column */ sqlite3_result_text (pContext, ctx->column_name, strlen (ctx->column_name), SQLITE_STATIC); } else if (column == 2) { /* the Reference Geometry column */ sqlite3_result_blob (pContext, ctx->blob, ctx->blob_size, SQLITE_STATIC); } else if (column == 3) { /* the Max Items column */ sqlite3_result_int (pContext, ctx->max_items); } else if (column == 4) { /* the index column */ sqlite3_result_int (pContext, cursor->CurrentIndex + 1); } else if ((column == 5 || column == 6) && item != NULL) { if (column == 5) { /* the RowID column */ sqlite3_result_int64 (pContext, item->rowid); } else if (column == 6) { /* the Distance column */ sqlite3_result_double (pContext, item->dist); } else sqlite3_result_null (pContext); } else sqlite3_result_null (pContext); return SQLITE_OK; } static int vknn_rowid (sqlite3_vtab_cursor * pCursor, sqlite_int64 * pRowid) { /* fetching the ROWID */ VirtualKnnCursorPtr cursor = (VirtualKnnCursorPtr) pCursor; *pRowid = cursor->CurrentIndex; return SQLITE_OK; } static int vknn_update (sqlite3_vtab * pVTab, int argc, sqlite3_value ** argv, sqlite_int64 * pRowid) { ................................................................................ SPATIALITE_PRIVATE int virtual_knn_extension_init (void *xdb) { sqlite3 *db = (sqlite3 *) xdb; return spliteKnnInit (db); } #endif /* end KNN conditional */ #endif /* end GEOS conditional */ |
> > > > > > > > > > > > > > > < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | | | | | | | | | < < < < < | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < > < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < > > | > | < < < | | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | < < < < > > | < < < |
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 ... 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 ... 193 194 195 196 197 198 199 200 201 202 203 204 205 206 ... 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 ... 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 ... 420 421 422 423 424 425 426 |
decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL or the LGPL. If you do not delete the provisions above, a recipient may use your version of this file under the terms of any one of the MPL, the GPL or the LGPL. */ /* DEPRECATION: on June 2021 this module was definitely abandoned due to efficiency considerations and architectural issues. it's now fully replaced by virtualknn2 this skeletal implementation is still preserved just to avoid problems when connecting any DB-file created by previous versions containing VirtualKNN tables. */ /* CREDITS: this module has been completely funded by: Regione Toscana - Settore Sistema Informativo Territoriale ed Ambientale (K-Nearest Neighbors [KNN] module) ................................................................................ #if defined(_WIN32) && !defined(__MINGW32__) #include "config-msvc.h" #else #include "config.h" #endif #include <spatialite/sqlite.h> #include <spatialite/spatialite_ext.h> #include <spatialite/gaiaaux.h> #include <spatialite/gaiageo.h> #if defined(_WIN32) && !defined(__MINGW32__) #define strcasecmp _stricmp #define strncasecmp _strnicmp #endif static struct sqlite3_module my_knn_module; typedef struct VirtualKnnStruct { /* extends the sqlite3_vtab struct */ const sqlite3_module *pModule; /* ptr to sqlite module: USED INTERNALLY BY SQLITE */ int nRef; /* # references: USED INTERNALLY BY SQLITE */ char *zErrMsg; /* error message: USE INTERNALLY BY SQLITE */ sqlite3 *db; /* the sqlite db holding the virtual table */ } VirtualKnn; typedef VirtualKnn *VirtualKnnPtr; typedef struct VirtualKnnCursorStruct { /* extends the sqlite3_vtab_cursor struct */ VirtualKnnPtr pVtab; /* Virtual table of this cursor */ } VirtualKnnCursor; typedef VirtualKnnCursor *VirtualKnnCursorPtr; static int vknn_create (sqlite3 * db, void *pAux, int argc, const char *const *argv, sqlite3_vtab ** ppVTab, char **pzErr) { /* creates the virtual table for R*Tree KNN metahandling */ VirtualKnnPtr p_vt; char *buf; ................................................................................ p_vt = (VirtualKnnPtr) sqlite3_malloc (sizeof (VirtualKnn)); if (!p_vt) return SQLITE_NOMEM; p_vt->db = db; p_vt->pModule = &my_knn_module; p_vt->nRef = 0; p_vt->zErrMsg = NULL; /* preparing the COLUMNs for this VIRTUAL TABLE */ xname = gaiaDoubleQuotedSql (vtable); buf = sqlite3_mprintf ("CREATE TABLE \"%s\" (f_table_name TEXT, " "f_geometry_column TEXT, ref_geometry BLOB, max_items INTEGER, " "pos INTEGER, fid INTEGER, distance DOUBLE)", xname); free (xname); free (vtable); ................................................................................ } static int vknn_best_index (sqlite3_vtab * pVTab, sqlite3_index_info * pIdxInfo) { /* best index selection */ int i; if (pVTab) pVTab = pVTab; /* unused arg warning suppression */ pIdxInfo->estimatedCost = 1.0; for (i = 0; i < pIdxInfo->nConstraint; i++) { if (pIdxInfo->aConstraint[i].usable) { pIdxInfo->aConstraintUsage[i].argvIndex = i + 1; pIdxInfo->aConstraintUsage[i].omit = 1; } } pIdxInfo->idxNum = 0; return SQLITE_OK; } static int vknn_disconnect (sqlite3_vtab * pVTab) { /* disconnects the virtual table */ VirtualKnnPtr p_vt = (VirtualKnnPtr) pVTab; sqlite3_free (p_vt); return SQLITE_OK; } static int vknn_destroy (sqlite3_vtab * pVTab) { ................................................................................ { /* opening a new cursor */ VirtualKnnCursorPtr cursor = (VirtualKnnCursorPtr) sqlite3_malloc (sizeof (VirtualKnnCursor)); if (cursor == NULL) return SQLITE_ERROR; cursor->pVtab = (VirtualKnnPtr) pVTab; *ppCursor = (sqlite3_vtab_cursor *) cursor; return SQLITE_OK; } static int vknn_close (sqlite3_vtab_cursor * pCursor) { /* closing the cursor */ sqlite3_free (pCursor); return SQLITE_OK; } static int vknn_filter (sqlite3_vtab_cursor * pCursor, int idxNum, const char *idxStr, int argc, sqlite3_value ** argv) { /* setting up a cursor filter */ if (pCursor || idxStr || idxNum || argc || argv) idxStr = idxStr; /* unused arg warning suppression */ return SQLITE_OK; } static int vknn_next (sqlite3_vtab_cursor * pCursor) { /* fetching a next row from cursor */ if (pCursor) pCursor = pCursor; /* unused arg warning suppression */ return SQLITE_OK; } static int vknn_eof (sqlite3_vtab_cursor * pCursor) { /* cursor EOF */ if (pCursor) pCursor = pCursor; /* unused arg warning suppression */ return 1; } static int vknn_column (sqlite3_vtab_cursor * pCursor, sqlite3_context * pContext, int column) { /* fetching value for the Nth column */ if (pCursor || column) pCursor = pCursor; /* unused arg warning suppression */ sqlite3_result_null (pContext); return SQLITE_OK; } static int vknn_rowid (sqlite3_vtab_cursor * pCursor, sqlite_int64 * pRowid) { /* fetching the ROWID */ if (pCursor) pCursor = pCursor; /* unused arg warning suppression */ *pRowid = 0; return SQLITE_OK; } static int vknn_update (sqlite3_vtab * pVTab, int argc, sqlite3_value ** argv, sqlite_int64 * pRowid) { ................................................................................ SPATIALITE_PRIVATE int virtual_knn_extension_init (void *xdb) { sqlite3 *db = (sqlite3 *) xdb; return spliteKnnInit (db); } |
Added src/spatialite/virtualknn2.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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 |
/* virtualknn2.c -- SQLite3 extension [VIRTUAL TABLE KNN metahandler] version 5.1, 2021 June 14 Author: Sandro Furieri a.furieri@lqt.it ----------------------------------------------------------------------------- Version: MPL 1.1/GPL 2.0/LGPL 2.1 The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is the SpatiaLite library The Initial Developer of the Original Code is Alessandro Furieri Portions created by the Initial Developer are Copyright (C) 2015-2021 the Initial Developer. All Rights Reserved. Contributor(s): Alternatively, the contents of this file may be used under the terms of either the GNU General Public License Version 2 or later (the "GPL"), or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), in which case the provisions of the GPL or the LGPL are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of either the GPL or the LGPL, and not to allow others to use your version of this file under the terms of the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL or the LGPL. If you do not delete the provisions above, a recipient may use your version of this file under the terms of any one of the MPL, the GPL or the LGPL. */ /* IMPORTANT NOTICE: a similar module (VirtualKNN) was supported by previos versions. this is a full replacement based on a completerly different algorithm and presenting a substantially different interface. now a MaxDistance Radius is absolutely required and the algorithm has the capability to automatically expand it when required. */ #include <sys/types.h> #include <stdlib.h> #include <stdio.h> #include <string.h> #include <math.h> #include <float.h> #if defined(_WIN32) && !defined(__MINGW32__) #include "config-msvc.h" #else #include "config.h" #endif #ifndef OMIT_GEOS /* GEOS is supported */ #include <spatialite/sqlite.h> #include <spatialite/spatialite_ext.h> #include <spatialite/gaiaaux.h> #include <spatialite/gaiageo.h> #if defined(_WIN32) && !defined(__MINGW32__) #define strcasecmp _stricmp #define strncasecmp _strnicmp #endif static struct sqlite3_module my_knn2_module; /****************************************************************************** / / VirtualTable structs / ******************************************************************************/ typedef struct VKnn2ItemStruct { /* a Feature item into the KNN2 array */ int ok; sqlite3_int64 rowid; double radius; double dist_crs; double dist_m; } VKnn2Item; typedef VKnn2Item *VKnn2ItemPtr; typedef struct VKnn2ContextStruct { /* current KNN2 context */ int valid; char *db_prefix; char *table_name; char *column_name; int is_geographic; unsigned char *blob; int blob_size; double point_x; double point_y; double radius; int expand; VKnn2ItemPtr knn2_array; int max_items; int next_item; } VKnn2Context; typedef VKnn2Context *VKnn2ContextPtr; typedef struct VirtualKnn2Struct { /* extends the sqlite3_vtab struct */ const sqlite3_module *pModule; /* ptr to sqlite module: USED INTERNALLY BY SQLITE */ int nRef; /* # references: USED INTERNALLY BY SQLITE */ char *zErrMsg; /* error message: USED INTERNALLY BY SQLITE */ sqlite3 *db; /* the sqlite db holding the virtual table */ VKnn2ContextPtr knn2_ctx; /* KNN2 context */ } VirtualKnn2; typedef VirtualKnn2 *VirtualKnn2Ptr; typedef struct VirtualKnn2CursorStruct { /* extends the sqlite3_vtab_cursor struct */ VirtualKnn2Ptr pVtab; /* Virtual table of this cursor */ int eof; /* the EOF marker */ int CurrentIndex; /* index of the current KNN2 item */ } VirtualKnn2Cursor; typedef VirtualKnn2Cursor *VirtualKnn2CursorPtr; static void vknn2_empty_context (VKnn2ContextPtr ctx) { /* setting an empty KNN2 context */ if (ctx == NULL) return; ctx->valid = 0; ctx->db_prefix = NULL; ctx->table_name = NULL; ctx->column_name = NULL; ctx->is_geographic = 0; ctx->blob = NULL; ctx->blob_size = 0; ctx->point_x = 0.0; ctx->point_y = 0.0; ctx->radius = 0.0; ctx->expand = 0; ctx->max_items = 0; ctx->knn2_array = NULL; ctx->next_item = 0; } static VKnn2ContextPtr vknn2_create_context (void) { /* creating an empty KNN2 context */ VKnn2ContextPtr ctx = malloc (sizeof (VKnn2Context)); vknn2_empty_context (ctx); return ctx; } static void vknn2_reset_context (VKnn2ContextPtr ctx) { /* freeing a KNN2 context */ if (ctx == NULL) return; if (ctx->db_prefix != NULL) free (ctx->db_prefix); if (ctx->table_name != NULL) free (ctx->table_name); if (ctx->column_name != NULL) free (ctx->column_name); if (ctx->blob != NULL) free (ctx->blob); if (ctx->knn2_array != NULL) free (ctx->knn2_array); vknn2_empty_context (ctx); } static void vknn2_clear_context (VKnn2ContextPtr ctx) { /* clearing a KNN2 context */ int i; ctx->next_item = 0; for (i = 0; i < ctx->max_items; i++) { /* initializing the KNN2 array */ VKnn2ItemPtr item = ctx->knn2_array + i; item->ok = 0; item->rowid = 0; item->radius = DBL_MAX; item->dist_crs = DBL_MAX; item->dist_m = DBL_MAX; } } static void vknn2_init_context (VKnn2ContextPtr ctx, const char *db_prefix, char *table, char *column, int is_geographic, gaiaGeomCollPtr geom, double point_x, double point_y, double radius, int max_items, int expand) { /* initializing a KNN2 context */ int i; if (ctx == NULL) return; vknn2_reset_context (ctx); if (db_prefix == NULL) db_prefix = "MAIN"; i = strlen (db_prefix); ctx->db_prefix = malloc (i + 1); strcpy (ctx->db_prefix, db_prefix); ctx->table_name = table; ctx->column_name = column; ctx->is_geographic = is_geographic; gaiaToSpatiaLiteBlobWkb (geom, &(ctx->blob), &(ctx->blob_size)); ctx->point_x = point_x; ctx->point_y = point_y; ctx->radius = radius; ctx->max_items = max_items; ctx->expand = expand; ctx->knn2_array = malloc (sizeof (VKnn2Item) * max_items); for (i = 0; i < max_items; i++) { /* initializing the KNN2 array */ VKnn2ItemPtr item = ctx->knn2_array + i; item->ok = 0; item->rowid = 0; item->radius = DBL_MAX; item->dist_crs = DBL_MAX; item->dist_m = DBL_MAX; } ctx->next_item = 0; ctx->valid = 1; } static void vknn2_free_context (void *p) { /* freeing a KNN2 context */ VKnn2ContextPtr ctx = (VKnn2ContextPtr) p; vknn2_reset_context (ctx); free (ctx); } static int vknn2_check_view (sqlite3 * sqlite, const char *db_prefix, const char *table_name, const char *geom_column, char **real_table, char **real_geom, int *is_geographic) { /* checks if the required Spatial View is actually defined */ sqlite3_stmt *stmt; char *sql_statement; int ret; int count = 0; char *rt = NULL; char *rg = NULL; int is_longlat = 0; /* testing if views_geometry_columns exists */ if (db_prefix == NULL) { sql_statement = sqlite3_mprintf ("SELECT tbl_name FROM main.sqlite_master " "WHERE type = 'table' AND tbl_name = 'views_geometry_columns'"); } else { char *quoted_db = gaiaDoubleQuotedSql (db_prefix); sql_statement = sqlite3_mprintf ("SELECT tbl_name FROM \"%s\".sqlite_master " "WHERE type = 'table' AND tbl_name = 'views_geometry_columns'", quoted_db); free (quoted_db); } ret = sqlite3_prepare_v2 (sqlite, sql_statement, strlen (sql_statement), &stmt, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) return 0; while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) count++; } sqlite3_finalize (stmt); if (count != 1) return 0; count = 0; /* attempting to find the RTree Geometry Column */ if (db_prefix == NULL) { sql_statement = sqlite3_mprintf ("SELECT a.f_table_name, a.f_geometry_column, SridIsGeographic(b.srid) " "FROM main.views_geometry_columns AS a " "JOIN main.geometry_columns AS b ON (" "Upper(a.f_table_name) = Upper(b.f_table_name) AND " "Upper(a.f_geometry_column) = Upper(b.f_geometry_column)) " "WHERE Upper(a.view_name) = Upper(%Q) " "AND Upper(a.f_geometry_column) = Upper(%Q) " "AND b.spatial_index_enabled = 1", table_name, geom_column); } else { char *quoted_db = gaiaDoubleQuotedSql (db_prefix); sql_statement = sqlite3_mprintf ("SELECT a.f_table_name, a.f_geometry_column, SridIsGeographic(b.srid) " "FROM \"%s\".views_geometry_columns AS a " "JOIN \"%s\".geometry_columns AS b ON (" "Upper(a.f_table_name) = Upper(b.f_table_name) AND " "Upper(a.f_geometry_column) = Upper(b.f_geometry_column)) " "WHERE Upper(a.view_name) = Upper(%Q) " "AND Upper(a.f_geometry_column) = Upper(%Q) " "AND b.spatial_index_enabled = 1", quoted_db, quoted_db, table_name, geom_column); free (quoted_db); } ret = sqlite3_prepare_v2 (sqlite, sql_statement, strlen (sql_statement), &stmt, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) return 0; while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { const char *v = (const char *) sqlite3_column_text (stmt, 0); int len = sqlite3_column_bytes (stmt, 0); if (rt) free (rt); rt = malloc (len + 1); strcpy (rt, v); v = (const char *) sqlite3_column_text (stmt, 1); len = sqlite3_column_bytes (stmt, 1); if (rg) free (rg); rg = malloc (len + 1); strcpy (rg, v); is_longlat = sqlite3_column_int (stmt, 2); count++; } } sqlite3_finalize (stmt); if (count != 1) return 0; if (!validateRowid (sqlite, rt)) { free (rt); free (rg); return 0; } *real_table = rt; *real_geom = rg; *is_geographic = is_longlat; return 1; } static int vknn2_check_table (sqlite3 * sqlite, const char *db_prefix, const char *table_name, const char *geom_column, char **real_table, char **real_geom, int *is_geographic) { /* checks if the required Spatial Table is actually defined */ sqlite3_stmt *stmt; char *sql_statement; int ret; int count = 0; char *rt = NULL; char *rg = NULL; int is_longlat = 0; if (db_prefix == NULL) { sql_statement = sqlite3_mprintf ("SELECT f_table_name, f_geometry_column, SridIsGeographic(srid) " "FROM main.geometry_columns WHERE Upper(f_table_name) = Upper(%Q) AND " "Upper(f_geometry_column) = Upper(%Q) AND spatial_index_enabled = 1", table_name, geom_column); } else { char *quoted_db = gaiaDoubleQuotedSql (db_prefix); sql_statement = sqlite3_mprintf ("SELECT f_table_name, f_geometry_column, SridIsGeographic(srid) " "FROM \"%s\".geometry_columns WHERE Upper(f_table_name) = Upper(%Q) AND " "Upper(f_geometry_column) = Upper(%Q) AND spatial_index_enabled = 1", quoted_db, table_name, geom_column); free (quoted_db); } ret = sqlite3_prepare_v2 (sqlite, sql_statement, strlen (sql_statement), &stmt, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) return 0; while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { const char *v = (const char *) sqlite3_column_text (stmt, 0); int len = sqlite3_column_bytes (stmt, 0); if (rt) free (rt); rt = malloc (len + 1); strcpy (rt, v); v = (const char *) sqlite3_column_text (stmt, 1); len = sqlite3_column_bytes (stmt, 1); if (rg) free (rg); rg = malloc (len + 1); strcpy (rg, v); is_longlat = sqlite3_column_int (stmt, 2); count++; } } sqlite3_finalize (stmt); if (count != 1) return vknn2_check_view (sqlite, db_prefix, table_name, geom_column, real_table, real_geom, is_geographic); else { *real_table = rt; *real_geom = rg; *is_geographic = is_longlat; } return 1; } static int vknn2_find_view_rtree (sqlite3 * sqlite, const char *db_prefix, const char *table_name, char **real_table, char **real_geom, int *is_geographic) { /* attempts to find the corresponding Spatial View Geometry Column */ sqlite3_stmt *stmt; char *sql_statement; int ret; int count = 0; char *rt = NULL; char *rg = NULL; int is_longlat = 0; /* testing if views_geometry_columns exists */ if (db_prefix == NULL) { sql_statement = sqlite3_mprintf ("SELECT tbl_name FROM main.sqlite_master " "WHERE type = 'table' AND tbl_name = 'views_geometry_columns'"); } else { char *quoted_db = gaiaDoubleQuotedSql (db_prefix); sql_statement = sqlite3_mprintf ("SELECT tbl_name FROM \"%s\".sqlite_master " "WHERE type = 'table' AND tbl_name = 'views_geometry_columns'", quoted_db); free (quoted_db); } ret = sqlite3_prepare_v2 (sqlite, sql_statement, strlen (sql_statement), &stmt, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) return 0; while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) count++; } sqlite3_finalize (stmt); if (count != 1) return 0; count = 0; /* attempting to find the RTree Geometry Column */ if (db_prefix == NULL) { sql_statement = sqlite3_mprintf ("SELECT a.f_table_name, a.f_geometry_column, SridIsGeographic(b.srid) " "FROM main.views_geometry_columns AS a " "JOIN main.geometry_columns AS b ON (" "Upper(a.f_table_name) = Upper(b.f_table_name) AND " "Upper(a.f_geometry_column) = Upper(b.f_geometry_column)) " "WHERE Upper(a.view_name) = Upper(%Q) AND b.spatial_index_enabled = 1", table_name); } else { char *quoted_db = gaiaDoubleQuotedSql (db_prefix); sql_statement = sqlite3_mprintf ("SELECT a.f_table_name, a.f_geometry_column, SridIsGeographic(b.srid) " "FROM \"%s\".views_geometry_columns AS a " "JOIN \"%s\".geometry_columns AS b ON (" "Upper(a.f_table_name) = Upper(b.f_table_name) AND " "Upper(a.f_geometry_column) = Upper(b.f_geometry_column)) " "WHERE Upper(a.view_name) = Upper(%Q) AND b.spatial_index_enabled = 1", quoted_db, quoted_db, table_name); free (quoted_db); } ret = sqlite3_prepare_v2 (sqlite, sql_statement, strlen (sql_statement), &stmt, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) return 0; while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { const char *v = (const char *) sqlite3_column_text (stmt, 0); int len = sqlite3_column_bytes (stmt, 0); if (rt) free (rt); rt = malloc (len + 1); strcpy (rt, v); v = (const char *) sqlite3_column_text (stmt, 1); len = sqlite3_column_bytes (stmt, 1); if (rg) free (rg); rg = malloc (len + 1); strcpy (rg, v); is_longlat = sqlite3_column_int (stmt, 2); count++; } } sqlite3_finalize (stmt); if (count != 1) return 0; *real_table = rt; *real_geom = rg; *is_geographic = is_longlat; return 1; } static int vknn2_find_table (sqlite3 * sqlite, const char *db_prefix, const char *table_name, char **real_table, char **real_geom, int *is_geographic) { /* attempts to find the corresponding Spatial Table Geometry Column */ sqlite3_stmt *stmt; char *sql_statement; int ret; int count = 0; char *rt = NULL; char *rg = NULL; int is_longlat = 0; if (db_prefix == NULL) { sql_statement = sqlite3_mprintf ("SELECT f_table_name, f_geometry_column, SridIsGeographic(srid) " " FROM main.geometry_columns WHERE Upper(f_table_name) = Upper(%Q) " "AND spatial_index_enabled = 1", table_name); } else { char *quoted_db = gaiaDoubleQuotedSql (db_prefix); sql_statement = sqlite3_mprintf ("SELECT f_table_name, f_geometry_column, SridIsGeographic(srid) " " FROM \"%s\".geometry_columns WHERE Upper(f_table_name) = Upper(%Q) " "AND spatial_index_enabled = 1", quoted_db, table_name); free (quoted_db); } ret = sqlite3_prepare_v2 (sqlite, sql_statement, strlen (sql_statement), &stmt, NULL); sqlite3_free (sql_statement); if (ret != SQLITE_OK) return 0; while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { const char *v = (const char *) sqlite3_column_text (stmt, 0); int len = sqlite3_column_bytes (stmt, 0); if (rt) free (rt); rt = malloc (len + 1); strcpy (rt, v); v = (const char *) sqlite3_column_text (stmt, 1); len = sqlite3_column_bytes (stmt, 1); if (rg) free (rg); rg = malloc (len + 1); strcpy (rg, v); is_longlat = sqlite3_column_int (stmt, 2); count++; } } sqlite3_finalize (stmt); if (count != 1) return vknn2_find_view_rtree (sqlite, db_prefix, table_name, real_table, real_geom, is_geographic); else { *real_table = rt; *real_geom = rg; *is_geographic = is_longlat; } return 1; } static int do_knn2_query (sqlite3_vtab_cursor * pCursor) { /* performing a KNN2 query */ VirtualKnn2CursorPtr cursor = (VirtualKnn2CursorPtr) pCursor; VirtualKnn2Ptr knn2 = (VirtualKnn2Ptr) cursor->pVtab; VKnn2ContextPtr ctx = knn2->knn2_ctx; double radius; double x_radius; char *sql; char *xdb_prefix; char *xtable; char *xcolumn; char *idxtable; int ret; sqlite3_stmt *stmt = NULL; int iterations = 0; if (ctx->valid == 0) return 0; radius = ctx->radius; /* preparing the SQL query */ xdb_prefix = gaiaDoubleQuotedSql (ctx->db_prefix); xtable = gaiaDoubleQuotedSql (ctx->table_name); xcolumn = gaiaDoubleQuotedSql (ctx->column_name); idxtable = sqlite3_mprintf ("DB=%s.%s", xdb_prefix, xtable); if (ctx->is_geographic) { /* geographic CRS: measuring the distance in METERS via geodesic formulas */ sql = sqlite3_mprintf ("SELECT rowid, ST_Distance(?, \"%s\"), ST_Distance(?, \"%s\", 1) " "FROM \"%s\".\"%s\" WHERE rowid IN (SELECT ROWID FROM SpatialIndex " "WHERE f_table_name = %Q AND f_geometry_column = %Q AND " "search_frame = BuildCircleMbr(?, ?, ?)) " "ORDER BY 3 ASC LIMIT %d", xcolumn, xcolumn, xdb_prefix, xtable, idxtable, ctx->column_name, ctx->max_items); } else { /* planar CRS: measuring the distance in map units */ sql = sqlite3_mprintf ("SELECT rowid, ST_Distance(?, \"%s\"), ST_Distance(?, \"%s\") " "FROM \"%s\".\"%s\" WHERE rowid IN (SELECT ROWID FROM SpatialIndex " "WHERE f_table_name = %Q AND f_geometry_column = %Q AND " "search_frame = BuildCircleMbr(?, ?, ?)) " "ORDER BY 3 ASC LIMIT %d", xcolumn, xcolumn, xdb_prefix, xtable, idxtable, ctx->column_name, ctx->max_items); } sqlite3_free (idxtable); free (xdb_prefix); free (xtable); free (xcolumn); ret = sqlite3_prepare_v2 (knn2->db, sql, strlen (sql), &stmt, NULL); sqlite3_free (sql); if (ret != SQLITE_OK) goto error; while (1) { /* iterating on KNN2 queries */ x_radius = radius; sqlite3_reset (stmt); sqlite3_clear_bindings (stmt); sqlite3_bind_blob (stmt, 1, ctx->blob, ctx->blob_size, SQLITE_STATIC); sqlite3_bind_blob (stmt, 2, ctx->blob, ctx->blob_size, SQLITE_STATIC); sqlite3_bind_double (stmt, 3, ctx->point_x); sqlite3_bind_double (stmt, 4, ctx->point_y); sqlite3_bind_double (stmt, 5, x_radius); while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { VKnn2ItemPtr item = ctx->knn2_array + ctx->next_item; sqlite3_int64 rowid = sqlite3_column_int64 (stmt, 0); double dist_crs = sqlite3_column_double (stmt, 1); double dist_m = sqlite3_column_double (stmt, 2); item->rowid = rowid; item->dist_crs = dist_crs; item->dist_m = dist_m; item->radius = radius; item->ok = 1; ctx->next_item += 1; if (ctx->next_item >= ctx->max_items) break; } else break; } if (ctx->next_item >= ctx->max_items) break; if (ctx->expand == 0) break; radius *= 2.0; /* next iteration; doubling the Radius */ iterations++; if (iterations > 16) break; /* precaution against infinive loops */ vknn2_clear_context (ctx); } sqlite3_finalize (stmt); return 1; error: if (stmt != NULL) sqlite3_finalize (stmt); return 0; } static int vknn2_create (sqlite3 * db, void *pAux, int argc, const char *const *argv, sqlite3_vtab ** ppVTab, char **pzErr) { /* creates the virtual table for KNN2 metahandling */ VirtualKnn2Ptr p_vt; char *buf; char *vtable; char *xname; if (pAux) pAux = pAux; /* unused arg warning suppression */ if (argc == 3) { vtable = gaiaDequotedSql ((char *) argv[2]); } else { *pzErr = sqlite3_mprintf ("[VirtualKNN2 module] CREATE VIRTUAL: illegal arg list {void}\n"); return SQLITE_ERROR; } p_vt = (VirtualKnn2Ptr) sqlite3_malloc (sizeof (VirtualKnn2)); if (!p_vt) return SQLITE_NOMEM; p_vt->db = db; p_vt->pModule = &my_knn2_module; p_vt->nRef = 0; p_vt->zErrMsg = NULL; p_vt->knn2_ctx = vknn2_create_context (); /* preparing the COLUMNs for this VIRTUAL TABLE */ xname = gaiaDoubleQuotedSql (vtable); buf = sqlite3_mprintf ("CREATE TABLE \"%s\" (db_prefix TEXT, f_table_name TEXT, " "f_geometry_column TEXT, ref_geometry BLOB, radius DOUBLE, " "max_items INTEGER, expand INTEGER, pos INTEGER, fid INTEGER, " "distance_crs DOUBLE, distance_m DOUBLE)", xname); free (xname); free (vtable); if (sqlite3_declare_vtab (db, buf) != SQLITE_OK) { sqlite3_free (buf); *pzErr = sqlite3_mprintf ("[VirtualKNN2 module] CREATE VIRTUAL: invalid SQL statement \"%s\"", buf); return SQLITE_ERROR; } sqlite3_free (buf); *ppVTab = (sqlite3_vtab *) p_vt; return SQLITE_OK; } static int vknn2_connect (sqlite3 * db, void *pAux, int argc, const char *const *argv, sqlite3_vtab ** ppVTab, char **pzErr) { /* connects the virtual table - simply aliases vknn2_create() */ return vknn2_create (db, pAux, argc, argv, ppVTab, pzErr); } static int vknn2_best_index (sqlite3_vtab * pVTab, sqlite3_index_info * pIdxInfo) { /* best index selection */ int i; int err = 1; int db_prefix = 0; int table = 0; int geom_col = 0; int ref_geom = 0; int radius = 0; int max_items = 0; int expand = 0; if (pVTab) pVTab = pVTab; /* unused arg warning suppression */ for (i = 0; i < pIdxInfo->nConstraint; i++) { /* verifying the constraints */ struct sqlite3_index_constraint *p = &(pIdxInfo->aConstraint[i]); if (p->usable) { if (p->iColumn == 0 && p->op == SQLITE_INDEX_CONSTRAINT_EQ) db_prefix++; else if (p->iColumn == 1 && p->op == SQLITE_INDEX_CONSTRAINT_EQ) table++; else if (p->iColumn == 2 && p->op == SQLITE_INDEX_CONSTRAINT_EQ) geom_col++; else if (p->iColumn == 3 && p->op == SQLITE_INDEX_CONSTRAINT_EQ) ref_geom++; else if (p->iColumn == 4 && p->op == SQLITE_INDEX_CONSTRAINT_EQ) radius++; else if (p->iColumn == 5 && p->op == SQLITE_INDEX_CONSTRAINT_EQ) max_items++; else if (p->iColumn == 6 && p->op == SQLITE_INDEX_CONSTRAINT_EQ) expand++; } } if ((db_prefix == 0 || db_prefix == 1) && table == 1 && (geom_col == 0 || geom_col == 1) && ref_geom == 1 && radius == 1 && (max_items == 0 || max_items == 1) && (expand == 0 || expand == 1)) { /* this one is a valid KNN2 query */ int idx_num = 0x01; if (db_prefix == 1) idx_num |= 0x0100; if (geom_col == 1) idx_num |= 0x08; if (max_items == 1) idx_num |= 0x04; if (expand == 1) idx_num |= 0x02; pIdxInfo->idxNum = idx_num; pIdxInfo->estimatedCost = 1.0; for (i = 0; i < pIdxInfo->nConstraint; i++) { if (pIdxInfo->aConstraint[i].usable) { pIdxInfo->aConstraintUsage[i].argvIndex = i + 1; pIdxInfo->aConstraintUsage[i].omit = 1; } } err = 0; } if (err) { /* illegal query */ pIdxInfo->idxNum = 0; } return SQLITE_OK; } static int vknn2_disconnect (sqlite3_vtab * pVTab) { /* disconnects the virtual table */ VirtualKnn2Ptr p_vt = (VirtualKnn2Ptr) pVTab; if (p_vt->knn2_ctx != NULL) vknn2_free_context (p_vt->knn2_ctx); sqlite3_free (p_vt); return SQLITE_OK; } static int vknn2_destroy (sqlite3_vtab * pVTab) { /* destroys the virtual table - simply aliases vknn2_disconnect() */ return vknn2_disconnect (pVTab); } static int vknn2_open (sqlite3_vtab * pVTab, sqlite3_vtab_cursor ** ppCursor) { /* opening a new cursor */ VirtualKnn2CursorPtr cursor = (VirtualKnn2CursorPtr) sqlite3_malloc (sizeof (VirtualKnn2Cursor)); if (cursor == NULL) return SQLITE_ERROR; cursor->pVtab = (VirtualKnn2Ptr) pVTab; cursor->eof = 1; *ppCursor = (sqlite3_vtab_cursor *) cursor; return SQLITE_OK; } static int vknn2_close (sqlite3_vtab_cursor * pCursor) { /* closing the cursor */ sqlite3_free (pCursor); return SQLITE_OK; } static int vknn2_get_point (gaiaGeomCollPtr geom, double *point_x, double *point_y) { /* checking for a valid Point Geometry */ if (geom->FirstLinestring != NULL) return 0; if (geom->FirstPolygon != NULL) return 0; if (geom->FirstPoint == NULL) return 0; if (geom->FirstPoint != geom->LastPoint) return 0; *point_x = geom->FirstPoint->X; *point_y = geom->FirstPoint->Y; return 1; } static int vknn2_filter (sqlite3_vtab_cursor * pCursor, int idxNum, const char *idxStr, int argc, sqlite3_value ** argv) { /* setting up a cursor filter */ const char *db_prefix = NULL; const char *table = NULL; const char *geom_column = NULL; char *xtable = NULL; char *xgeom = NULL; int is_geographic = 0; int exists; int next_arg; gaiaGeomCollPtr geom = NULL; double point_x = 0.0; double point_y = 0.0; double radius = 0.0; int max_items = 3; int expand = 0; int has_db_prefix = 0; int has_geom_col = 0; int has_max_items = 0; int has_expand = 0; int ok_db_prefix = 0; int ok_table = 0; int ok_geom_col = 0; int ok_geom = 0; int ok_radius = 0; int ok_max_items = 0; int ok_expand = 0; VirtualKnn2CursorPtr cursor = (VirtualKnn2CursorPtr) pCursor; VirtualKnn2Ptr knn2 = (VirtualKnn2Ptr) cursor->pVtab; VKnn2ContextPtr vknn2_context = knn2->knn2_ctx; if (idxStr) idxStr = idxStr; /* unused arg warning suppression */ cursor->eof = 1; if (idxNum == 0x00) goto stop; if ((idxNum & 0x0100) == 0x0100) has_db_prefix = 1; if ((idxNum & 0x08) == 0x08) has_geom_col = 1; if ((idxNum & 0x04) == 0x04) has_max_items = 1; if ((idxNum & 0x02) == 0x02) has_expand = 1; if (has_db_prefix) { if (argc >= 1) { /* retrieving the DB Prefix param */ if (sqlite3_value_type (argv[0]) == SQLITE_NULL) { db_prefix = NULL; ok_db_prefix = 1; } if (sqlite3_value_type (argv[0]) == SQLITE_TEXT) { db_prefix = (const char *) sqlite3_value_text (argv[0]); ok_db_prefix = 1; } } next_arg = 1; } else { ok_db_prefix = 1; next_arg = 0; } if (argc > next_arg) { /* retrieving the Table param */ if (sqlite3_value_type (argv[next_arg]) == SQLITE_TEXT) { table = (const char *) sqlite3_value_text (argv[next_arg]); ok_table = 1; } next_arg++; } if (has_geom_col) { if (argc > next_arg) { /* retrieving the Geometry Column param */ if (sqlite3_value_type (argv[next_arg]) == SQLITE_NULL) { geom_column = NULL; ok_geom_col = 1; } if (sqlite3_value_type (argv[next_arg]) == SQLITE_TEXT) { geom_column = (const char *) sqlite3_value_text (argv[next_arg]); ok_geom_col = 1; } } next_arg++; } else ok_geom_col = 1; if (argc > next_arg) { /* retrieving the Point Geometry param */ if (sqlite3_value_type (argv[next_arg]) == SQLITE_BLOB) { const unsigned char *blob; int size; blob = sqlite3_value_blob (argv[next_arg]); size = sqlite3_value_bytes (argv[next_arg]); geom = gaiaFromSpatiaLiteBlobWkb (blob, size); ok_geom = vknn2_get_point (geom, &point_x, &point_y); } next_arg++; } if (argc > next_arg) { /* retrieving the Radius param */ if (sqlite3_value_type (argv[next_arg]) == SQLITE_INTEGER) { int r = sqlite3_value_int (argv[next_arg]); radius = r; ok_radius = 1; } if (sqlite3_value_type (argv[next_arg]) == SQLITE_FLOAT) { radius = sqlite3_value_double (argv[next_arg]); if (radius > 0.0) ok_radius = 1; } next_arg++; } if (has_max_items) { if (argc > next_arg) { /* retrieving the MaxItems param */ if (sqlite3_value_type (argv[next_arg]) == SQLITE_INTEGER) { max_items = sqlite3_value_int (argv[next_arg]); if (max_items > 1024) max_items = 1024; if (max_items < 1) max_items = 1; ok_max_items = 1; } next_arg++; } } else { max_items = 3; ok_max_items = 1; } if (has_expand) { if (argc > next_arg) { /* retrieving the Expand param */ if (sqlite3_value_type (argv[next_arg]) == SQLITE_INTEGER) { expand = sqlite3_value_int (argv[next_arg]); ok_expand = 1; } next_arg++; } } else { expand = 0; ok_expand = 1; } /* checking params for validity */ if (ok_db_prefix && ok_table && ok_geom_col && ok_geom && ok_radius && ok_max_items && ok_expand) ; else goto stop; if (geom_column == NULL) { /* attempting to automatically detect the geometry_column */ exists = vknn2_find_table (knn2->db, db_prefix, table, &xtable, &xgeom, &is_geographic); } else { /* attempting to verify table_name and geometry_column */ exists = vknn2_check_table (knn2->db, db_prefix, table, geom_column, &xtable, &xgeom, &is_geographic); } if (!exists) goto stop; vknn2_init_context (vknn2_context, db_prefix, xtable, xgeom, is_geographic, geom, point_x, point_y, radius, max_items, expand); /* performing a KNN2 query */ if (!do_knn2_query (pCursor)) goto stop; if (vknn2_context->next_item == 0) cursor->eof = 1; else cursor->eof = 0; cursor->CurrentIndex = 0; stop: if (geom != NULL) gaiaFreeGeomColl (geom); return SQLITE_OK; } static int vknn2_next (sqlite3_vtab_cursor * pCursor) { /* fetching a next row from cursor */ VirtualKnn2CursorPtr cursor = (VirtualKnn2CursorPtr) pCursor; VKnn2ContextPtr ctx = cursor->pVtab->knn2_ctx; cursor->CurrentIndex += 1; if (cursor->CurrentIndex >= ctx->next_item) cursor->eof = 1; return SQLITE_OK; } static int vknn2_eof (sqlite3_vtab_cursor * pCursor) { /* cursor EOF */ VirtualKnn2CursorPtr cursor = (VirtualKnn2CursorPtr) pCursor; return cursor->eof; } static int vknn2_column (sqlite3_vtab_cursor * pCursor, sqlite3_context * pContext, int column) { /* fetching value for the Nth column */ VirtualKnn2CursorPtr cursor = (VirtualKnn2CursorPtr) pCursor; VKnn2ContextPtr ctx = cursor->pVtab->knn2_ctx; VKnn2ItemPtr item = NULL; if (cursor || column) cursor = cursor; /* unused arg warning suppression */ if (column) column = column; /* unused arg warning suppression */ if (cursor->CurrentIndex < ctx->next_item) item = ctx->knn2_array + cursor->CurrentIndex; if (column == 0) { /* the DB Prefix column */ sqlite3_result_text (pContext, ctx->db_prefix, strlen (ctx->db_prefix), SQLITE_STATIC); } else if (column == 1) { /* the Table Name column */ sqlite3_result_text (pContext, ctx->table_name, strlen (ctx->table_name), SQLITE_STATIC); } else if (column == 2) { /* the GeometryColumn Name column */ sqlite3_result_text (pContext, ctx->column_name, strlen (ctx->column_name), SQLITE_STATIC); } else if (column == 3) { /* the Reference Geometry column */ sqlite3_result_blob (pContext, ctx->blob, ctx->blob_size, SQLITE_STATIC); } else if (column == 4) { /* the Radius column */ sqlite3_result_double (pContext, item->radius); } else if (column == 5) { /* the Max Items column */ sqlite3_result_int (pContext, ctx->max_items); } else if (column == 6) { /* the Expand column */ sqlite3_result_int (pContext, ctx->expand); } else if (column == 7) { /* the index column */ sqlite3_result_int (pContext, cursor->CurrentIndex + 1); } else if ((column == 8 || column == 9 || column == 10) && item != NULL) { if (column == 8) { /* the RowID column */ sqlite3_result_int64 (pContext, item->rowid); } else if (column == 9) { /* the Distance (CRS units) column */ sqlite3_result_double (pContext, item->dist_crs); } else if (column == 10) { /* the Distance (meters) column */ sqlite3_result_double (pContext, item->dist_m); } else sqlite3_result_null (pContext); } else sqlite3_result_null (pContext); return SQLITE_OK; } static int vknn2_rowid (sqlite3_vtab_cursor * pCursor, sqlite_int64 * pRowid) { /* fetching the ROWID */ VirtualKnn2CursorPtr cursor = (VirtualKnn2CursorPtr) pCursor; *pRowid = cursor->CurrentIndex; return SQLITE_OK; } static int vknn2_update (sqlite3_vtab * pVTab, int argc, sqlite3_value ** argv, sqlite_int64 * pRowid) { /* generic update [INSERT / UPDATE / DELETE */ if (pRowid || argc || argv || pVTab) pRowid = pRowid; /* unused arg warning suppression */ /* read only datasource */ return SQLITE_READONLY; } static int vknn2_begin (sqlite3_vtab * pVTab) { /* BEGIN TRANSACTION */ if (pVTab) pVTab = pVTab; /* unused arg warning suppression */ return SQLITE_OK; } static int vknn2_sync (sqlite3_vtab * pVTab) { /* BEGIN TRANSACTION */ if (pVTab) pVTab = pVTab; /* unused arg warning suppression */ return SQLITE_OK; } static int vknn2_commit (sqlite3_vtab * pVTab) { /* BEGIN TRANSACTION */ if (pVTab) pVTab = pVTab; /* unused arg warning suppression */ return SQLITE_OK; } static int vknn2_rollback (sqlite3_vtab * pVTab) { /* BEGIN TRANSACTION */ if (pVTab) pVTab = pVTab; /* unused arg warning suppression */ return SQLITE_OK; } static int vknn2_rename (sqlite3_vtab * pVTab, const char *zNew) { /* BEGIN TRANSACTION */ if (pVTab) pVTab = pVTab; /* unused arg warning suppression */ if (zNew) zNew = zNew; /* unused arg warning suppression */ return SQLITE_ERROR; } static int spliteKnn2Init (sqlite3 * db) { int rc = SQLITE_OK; my_knn2_module.iVersion = 1; my_knn2_module.xCreate = &vknn2_create; my_knn2_module.xConnect = &vknn2_connect; my_knn2_module.xBestIndex = &vknn2_best_index; my_knn2_module.xDisconnect = &vknn2_disconnect; my_knn2_module.xDestroy = &vknn2_destroy; my_knn2_module.xOpen = &vknn2_open; my_knn2_module.xClose = &vknn2_close; my_knn2_module.xFilter = &vknn2_filter; my_knn2_module.xNext = &vknn2_next; my_knn2_module.xEof = &vknn2_eof; my_knn2_module.xColumn = &vknn2_column; my_knn2_module.xRowid = &vknn2_rowid; my_knn2_module.xUpdate = &vknn2_update; my_knn2_module.xBegin = &vknn2_begin; my_knn2_module.xSync = &vknn2_sync; my_knn2_module.xCommit = &vknn2_commit; my_knn2_module.xRollback = &vknn2_rollback; my_knn2_module.xFindFunction = NULL; my_knn2_module.xRename = &vknn2_rename; sqlite3_create_module_v2 (db, "VirtualKNN2", &my_knn2_module, NULL, 0); return rc; } SPATIALITE_PRIVATE int virtual_knn2_extension_init (void *xdb) { sqlite3 *db = (sqlite3 *) xdb; return spliteKnn2Init (db); } #endif /* end GEOS conditional */ |
Changes to src/srsinit/Makefile.in.
526 527 528 529 530 531 532 533 534 535 536 537 538 539 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/srsinit/epsg_update/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/stored_procedures/Makefile.in.
258 259 260 261 262 263 264 265 266 267 268 269 270 271 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/stored_procedures/stored_procedures.c.
2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 |
if (ret != SQLITE_OK) { spatialite_e ("SqlProcExec: sqlite3_open_v2 error: %s\n", sqlite3_errmsg (handle)); sqlite3_close (handle); return NULL; } sqlite3_enable_load_extension (handle, 1); spatialite_internal_init (handle, cache); return handle; } static int do_attach_all (sqlite3 * origin, sqlite3 * handle) { |
> > |
2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 |
if (ret != SQLITE_OK) { spatialite_e ("SqlProcExec: sqlite3_open_v2 error: %s\n", sqlite3_errmsg (handle)); sqlite3_close (handle); return NULL; } #ifndef LOADABLE_EXTENSION sqlite3_enable_load_extension (handle, 1); #endif spatialite_internal_init (handle, cache); return handle; } static int do_attach_all (sqlite3 * origin, sqlite3 * handle) { |
Changes to src/topology/Makefile.in.
280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/virtualtext/Makefile.in.
254 255 256 257 258 259 260 261 262 263 264 265 266 267 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to src/wfs/Makefile.in.
253 254 255 256 257 258 259 260 261 262 263 264 265 266 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/Makefile.am.
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
check_topology3d \ check_toponoface2d \ check_topoplus \ check_toposnap \ check_network2d \ check_network3d \ check_network_log \ check_virtualknn \ check_sequence \ check_stored_proc \ check_wms \ check_drop_rename \ routing_test \ geojson_test \ check_zipshp |
| |
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 |
check_topology3d \
check_toponoface2d \
check_topoplus \
check_toposnap \
check_network2d \
check_network3d \
check_network_log \
check_virtualknn2 \
check_sequence \
check_stored_proc \
check_wms \
check_drop_rename \
routing_test \
geojson_test \
check_zipshp
|
Changes to test/Makefile.in.
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 ... 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 ... 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 ... 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 ... 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 .... 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 .... 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 .... 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 .... 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 .... 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 .... 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 |
check_wfsin$(EXEEXT) check_dxf$(EXEEXT) \ check_metacatalog$(EXEEXT) check_virtualelem$(EXEEXT) \ check_srid_fncts$(EXEEXT) check_control_points$(EXEEXT) \ check_cutter$(EXEEXT) check_topology2d$(EXEEXT) \ check_topology3d$(EXEEXT) check_toponoface2d$(EXEEXT) \ check_topoplus$(EXEEXT) check_toposnap$(EXEEXT) \ check_network2d$(EXEEXT) check_network3d$(EXEEXT) \ check_network_log$(EXEEXT) check_virtualknn$(EXEEXT) \ check_sequence$(EXEEXT) check_stored_proc$(EXEEXT) \ check_wms$(EXEEXT) check_drop_rename$(EXEEXT) \ routing_test$(EXEEXT) geojson_test$(EXEEXT) \ check_zipshp$(EXEEXT) $(am__EXEEXT_1) @ENABLE_GEOPACKAGE_TRUE@am__append_1 = \ @ENABLE_GEOPACKAGE_TRUE@ check_createBaseTables \ @ENABLE_GEOPACKAGE_TRUE@ check_gpkgCreateTilesTable \ ................................................................................ check_virtual_ovflw_LDADD = $(LDADD) check_virtualbbox_SOURCES = check_virtualbbox.c check_virtualbbox_OBJECTS = check_virtualbbox.$(OBJEXT) check_virtualbbox_LDADD = $(LDADD) check_virtualelem_SOURCES = check_virtualelem.c check_virtualelem_OBJECTS = check_virtualelem.$(OBJEXT) check_virtualelem_LDADD = $(LDADD) check_virtualknn_SOURCES = check_virtualknn.c check_virtualknn_OBJECTS = check_virtualknn.$(OBJEXT) check_virtualknn_LDADD = $(LDADD) check_virtualtable1_SOURCES = check_virtualtable1.c check_virtualtable1_OBJECTS = check_virtualtable1.$(OBJEXT) check_virtualtable1_LDADD = $(LDADD) check_virtualtable2_SOURCES = check_virtualtable2.c check_virtualtable2_OBJECTS = check_virtualtable2.$(OBJEXT) check_virtualtable2_LDADD = $(LDADD) check_virtualtable3_SOURCES = check_virtualtable3.c ................................................................................ ./$(DEPDIR)/check_topology3d.Po \ ./$(DEPDIR)/check_toponoface2d.Po \ ./$(DEPDIR)/check_topoplus.Po ./$(DEPDIR)/check_toposnap.Po \ ./$(DEPDIR)/check_version.Po \ ./$(DEPDIR)/check_virtual_ovflw.Po \ ./$(DEPDIR)/check_virtualbbox.Po \ ./$(DEPDIR)/check_virtualelem.Po \ ./$(DEPDIR)/check_virtualknn.Po \ ./$(DEPDIR)/check_virtualtable1.Po \ ./$(DEPDIR)/check_virtualtable2.Po \ ./$(DEPDIR)/check_virtualtable3.Po \ ./$(DEPDIR)/check_virtualtable4.Po \ ./$(DEPDIR)/check_virtualtable5.Po \ ./$(DEPDIR)/check_virtualtable6.Po \ ./$(DEPDIR)/check_virtualxpath.Po ./$(DEPDIR)/check_wfsin.Po \ ................................................................................ check_shp_load.c check_shp_load_3d.c check_spatialindex.c \ check_sql_stmt.c check_sql_stmt_extension.c \ check_sql_stmt_legacy.c check_sql_stmt_tiny.c \ check_srid_fncts.c check_stored_proc.c check_styling.c \ check_tempgeom.c check_topology2d.c check_topology3d.c \ check_toponoface2d.c check_topoplus.c check_toposnap.c \ check_version.c check_virtual_ovflw.c check_virtualbbox.c \ check_virtualelem.c check_virtualknn.c check_virtualtable1.c \ check_virtualtable2.c check_virtualtable3.c \ check_virtualtable4.c check_virtualtable5.c \ check_virtualtable6.c check_virtualxpath.c check_wfsin.c \ check_wms.c check_xls_load.c check_zipshp.c geojson_test.c \ routing_test.c shape_3d.c shape_cp1252.c shape_primitives.c \ shape_utf8_1.c shape_utf8_1ex.c shape_utf8_2.c DIST_SOURCES = check_add_tile_triggers.c \ ................................................................................ check_shp_load.c check_shp_load_3d.c check_spatialindex.c \ check_sql_stmt.c check_sql_stmt_extension.c \ check_sql_stmt_legacy.c check_sql_stmt_tiny.c \ check_srid_fncts.c check_stored_proc.c check_styling.c \ check_tempgeom.c check_topology2d.c check_topology3d.c \ check_toponoface2d.c check_topoplus.c check_toposnap.c \ check_version.c check_virtual_ovflw.c check_virtualbbox.c \ check_virtualelem.c check_virtualknn.c check_virtualtable1.c \ check_virtualtable2.c check_virtualtable3.c \ check_virtualtable4.c check_virtualtable5.c \ check_virtualtable6.c check_virtualxpath.c check_wfsin.c \ check_wms.c check_xls_load.c check_zipshp.c geojson_test.c \ routing_test.c shape_3d.c shape_cp1252.c shape_primitives.c \ shape_utf8_1.c shape_utf8_1ex.c shape_utf8_2.c RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ................................................................................ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ................................................................................ @rm -f check_virtualbbox$(EXEEXT) $(AM_V_CCLD)$(LINK) $(check_virtualbbox_OBJECTS) $(check_virtualbbox_LDADD) $(LIBS) check_virtualelem$(EXEEXT): $(check_virtualelem_OBJECTS) $(check_virtualelem_DEPENDENCIES) $(EXTRA_check_virtualelem_DEPENDENCIES) @rm -f check_virtualelem$(EXEEXT) $(AM_V_CCLD)$(LINK) $(check_virtualelem_OBJECTS) $(check_virtualelem_LDADD) $(LIBS) check_virtualknn$(EXEEXT): $(check_virtualknn_OBJECTS) $(check_virtualknn_DEPENDENCIES) $(EXTRA_check_virtualknn_DEPENDENCIES) @rm -f check_virtualknn$(EXEEXT) $(AM_V_CCLD)$(LINK) $(check_virtualknn_OBJECTS) $(check_virtualknn_LDADD) $(LIBS) check_virtualtable1$(EXEEXT): $(check_virtualtable1_OBJECTS) $(check_virtualtable1_DEPENDENCIES) $(EXTRA_check_virtualtable1_DEPENDENCIES) @rm -f check_virtualtable1$(EXEEXT) $(AM_V_CCLD)$(LINK) $(check_virtualtable1_OBJECTS) $(check_virtualtable1_LDADD) $(LIBS) check_virtualtable2$(EXEEXT): $(check_virtualtable2_OBJECTS) $(check_virtualtable2_DEPENDENCIES) $(EXTRA_check_virtualtable2_DEPENDENCIES) @rm -f check_virtualtable2$(EXEEXT) ................................................................................ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_toponoface2d.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_topoplus.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_toposnap.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_version.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtual_ovflw.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualbbox.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualelem.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualknn.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualtable1.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualtable2.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualtable3.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualtable4.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualtable5.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualtable6.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualxpath.Po@am__quote@ # am--include-marker ................................................................................ check_network_log.log: check_network_log$(EXEEXT) @p='check_network_log$(EXEEXT)'; \ b='check_network_log'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) check_virtualknn.log: check_virtualknn$(EXEEXT) @p='check_virtualknn$(EXEEXT)'; \ b='check_virtualknn'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) check_sequence.log: check_sequence$(EXEEXT) @p='check_sequence$(EXEEXT)'; \ b='check_sequence'; \ ................................................................................ -rm -f ./$(DEPDIR)/check_toponoface2d.Po -rm -f ./$(DEPDIR)/check_topoplus.Po -rm -f ./$(DEPDIR)/check_toposnap.Po -rm -f ./$(DEPDIR)/check_version.Po -rm -f ./$(DEPDIR)/check_virtual_ovflw.Po -rm -f ./$(DEPDIR)/check_virtualbbox.Po -rm -f ./$(DEPDIR)/check_virtualelem.Po -rm -f ./$(DEPDIR)/check_virtualknn.Po -rm -f ./$(DEPDIR)/check_virtualtable1.Po -rm -f ./$(DEPDIR)/check_virtualtable2.Po -rm -f ./$(DEPDIR)/check_virtualtable3.Po -rm -f ./$(DEPDIR)/check_virtualtable4.Po -rm -f ./$(DEPDIR)/check_virtualtable5.Po -rm -f ./$(DEPDIR)/check_virtualtable6.Po -rm -f ./$(DEPDIR)/check_virtualxpath.Po ................................................................................ -rm -f ./$(DEPDIR)/check_toponoface2d.Po -rm -f ./$(DEPDIR)/check_topoplus.Po -rm -f ./$(DEPDIR)/check_toposnap.Po -rm -f ./$(DEPDIR)/check_version.Po -rm -f ./$(DEPDIR)/check_virtual_ovflw.Po -rm -f ./$(DEPDIR)/check_virtualbbox.Po -rm -f ./$(DEPDIR)/check_virtualelem.Po -rm -f ./$(DEPDIR)/check_virtualknn.Po -rm -f ./$(DEPDIR)/check_virtualtable1.Po -rm -f ./$(DEPDIR)/check_virtualtable2.Po -rm -f ./$(DEPDIR)/check_virtualtable3.Po -rm -f ./$(DEPDIR)/check_virtualtable4.Po -rm -f ./$(DEPDIR)/check_virtualtable5.Po -rm -f ./$(DEPDIR)/check_virtualtable6.Po -rm -f ./$(DEPDIR)/check_virtualxpath.Po |
| | | | | | | > > | | | | | | | | | |
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 ... 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 ... 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 ... 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 ... 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 .... 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 .... 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 .... 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 .... 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 .... 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 .... 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 |
check_wfsin$(EXEEXT) check_dxf$(EXEEXT) \ check_metacatalog$(EXEEXT) check_virtualelem$(EXEEXT) \ check_srid_fncts$(EXEEXT) check_control_points$(EXEEXT) \ check_cutter$(EXEEXT) check_topology2d$(EXEEXT) \ check_topology3d$(EXEEXT) check_toponoface2d$(EXEEXT) \ check_topoplus$(EXEEXT) check_toposnap$(EXEEXT) \ check_network2d$(EXEEXT) check_network3d$(EXEEXT) \ check_network_log$(EXEEXT) check_virtualknn2$(EXEEXT) \ check_sequence$(EXEEXT) check_stored_proc$(EXEEXT) \ check_wms$(EXEEXT) check_drop_rename$(EXEEXT) \ routing_test$(EXEEXT) geojson_test$(EXEEXT) \ check_zipshp$(EXEEXT) $(am__EXEEXT_1) @ENABLE_GEOPACKAGE_TRUE@am__append_1 = \ @ENABLE_GEOPACKAGE_TRUE@ check_createBaseTables \ @ENABLE_GEOPACKAGE_TRUE@ check_gpkgCreateTilesTable \ ................................................................................ check_virtual_ovflw_LDADD = $(LDADD) check_virtualbbox_SOURCES = check_virtualbbox.c check_virtualbbox_OBJECTS = check_virtualbbox.$(OBJEXT) check_virtualbbox_LDADD = $(LDADD) check_virtualelem_SOURCES = check_virtualelem.c check_virtualelem_OBJECTS = check_virtualelem.$(OBJEXT) check_virtualelem_LDADD = $(LDADD) check_virtualknn2_SOURCES = check_virtualknn2.c check_virtualknn2_OBJECTS = check_virtualknn2.$(OBJEXT) check_virtualknn2_LDADD = $(LDADD) check_virtualtable1_SOURCES = check_virtualtable1.c check_virtualtable1_OBJECTS = check_virtualtable1.$(OBJEXT) check_virtualtable1_LDADD = $(LDADD) check_virtualtable2_SOURCES = check_virtualtable2.c check_virtualtable2_OBJECTS = check_virtualtable2.$(OBJEXT) check_virtualtable2_LDADD = $(LDADD) check_virtualtable3_SOURCES = check_virtualtable3.c ................................................................................ ./$(DEPDIR)/check_topology3d.Po \ ./$(DEPDIR)/check_toponoface2d.Po \ ./$(DEPDIR)/check_topoplus.Po ./$(DEPDIR)/check_toposnap.Po \ ./$(DEPDIR)/check_version.Po \ ./$(DEPDIR)/check_virtual_ovflw.Po \ ./$(DEPDIR)/check_virtualbbox.Po \ ./$(DEPDIR)/check_virtualelem.Po \ ./$(DEPDIR)/check_virtualknn2.Po \ ./$(DEPDIR)/check_virtualtable1.Po \ ./$(DEPDIR)/check_virtualtable2.Po \ ./$(DEPDIR)/check_virtualtable3.Po \ ./$(DEPDIR)/check_virtualtable4.Po \ ./$(DEPDIR)/check_virtualtable5.Po \ ./$(DEPDIR)/check_virtualtable6.Po \ ./$(DEPDIR)/check_virtualxpath.Po ./$(DEPDIR)/check_wfsin.Po \ ................................................................................ check_shp_load.c check_shp_load_3d.c check_spatialindex.c \ check_sql_stmt.c check_sql_stmt_extension.c \ check_sql_stmt_legacy.c check_sql_stmt_tiny.c \ check_srid_fncts.c check_stored_proc.c check_styling.c \ check_tempgeom.c check_topology2d.c check_topology3d.c \ check_toponoface2d.c check_topoplus.c check_toposnap.c \ check_version.c check_virtual_ovflw.c check_virtualbbox.c \ check_virtualelem.c check_virtualknn2.c check_virtualtable1.c \ check_virtualtable2.c check_virtualtable3.c \ check_virtualtable4.c check_virtualtable5.c \ check_virtualtable6.c check_virtualxpath.c check_wfsin.c \ check_wms.c check_xls_load.c check_zipshp.c geojson_test.c \ routing_test.c shape_3d.c shape_cp1252.c shape_primitives.c \ shape_utf8_1.c shape_utf8_1ex.c shape_utf8_2.c DIST_SOURCES = check_add_tile_triggers.c \ ................................................................................ check_shp_load.c check_shp_load_3d.c check_spatialindex.c \ check_sql_stmt.c check_sql_stmt_extension.c \ check_sql_stmt_legacy.c check_sql_stmt_tiny.c \ check_srid_fncts.c check_stored_proc.c check_styling.c \ check_tempgeom.c check_topology2d.c check_topology3d.c \ check_toponoface2d.c check_topoplus.c check_toposnap.c \ check_version.c check_virtual_ovflw.c check_virtualbbox.c \ check_virtualelem.c check_virtualknn2.c check_virtualtable1.c \ check_virtualtable2.c check_virtualtable3.c \ check_virtualtable4.c check_virtualtable5.c \ check_virtualtable6.c check_virtualxpath.c check_wfsin.c \ check_wms.c check_xls_load.c check_zipshp.c geojson_test.c \ routing_test.c shape_3d.c shape_cp1252.c shape_primitives.c \ shape_utf8_1.c shape_utf8_1ex.c shape_utf8_2.c RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ................................................................................ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ................................................................................ @rm -f check_virtualbbox$(EXEEXT) $(AM_V_CCLD)$(LINK) $(check_virtualbbox_OBJECTS) $(check_virtualbbox_LDADD) $(LIBS) check_virtualelem$(EXEEXT): $(check_virtualelem_OBJECTS) $(check_virtualelem_DEPENDENCIES) $(EXTRA_check_virtualelem_DEPENDENCIES) @rm -f check_virtualelem$(EXEEXT) $(AM_V_CCLD)$(LINK) $(check_virtualelem_OBJECTS) $(check_virtualelem_LDADD) $(LIBS) check_virtualknn2$(EXEEXT): $(check_virtualknn2_OBJECTS) $(check_virtualknn2_DEPENDENCIES) $(EXTRA_check_virtualknn2_DEPENDENCIES) @rm -f check_virtualknn2$(EXEEXT) $(AM_V_CCLD)$(LINK) $(check_virtualknn2_OBJECTS) $(check_virtualknn2_LDADD) $(LIBS) check_virtualtable1$(EXEEXT): $(check_virtualtable1_OBJECTS) $(check_virtualtable1_DEPENDENCIES) $(EXTRA_check_virtualtable1_DEPENDENCIES) @rm -f check_virtualtable1$(EXEEXT) $(AM_V_CCLD)$(LINK) $(check_virtualtable1_OBJECTS) $(check_virtualtable1_LDADD) $(LIBS) check_virtualtable2$(EXEEXT): $(check_virtualtable2_OBJECTS) $(check_virtualtable2_DEPENDENCIES) $(EXTRA_check_virtualtable2_DEPENDENCIES) @rm -f check_virtualtable2$(EXEEXT) ................................................................................ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_toponoface2d.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_topoplus.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_toposnap.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_version.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtual_ovflw.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualbbox.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualelem.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualknn2.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualtable1.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualtable2.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualtable3.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualtable4.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualtable5.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualtable6.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/check_virtualxpath.Po@am__quote@ # am--include-marker ................................................................................ check_network_log.log: check_network_log$(EXEEXT) @p='check_network_log$(EXEEXT)'; \ b='check_network_log'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) check_virtualknn2.log: check_virtualknn2$(EXEEXT) @p='check_virtualknn2$(EXEEXT)'; \ b='check_virtualknn2'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) check_sequence.log: check_sequence$(EXEEXT) @p='check_sequence$(EXEEXT)'; \ b='check_sequence'; \ ................................................................................ -rm -f ./$(DEPDIR)/check_toponoface2d.Po -rm -f ./$(DEPDIR)/check_topoplus.Po -rm -f ./$(DEPDIR)/check_toposnap.Po -rm -f ./$(DEPDIR)/check_version.Po -rm -f ./$(DEPDIR)/check_virtual_ovflw.Po -rm -f ./$(DEPDIR)/check_virtualbbox.Po -rm -f ./$(DEPDIR)/check_virtualelem.Po -rm -f ./$(DEPDIR)/check_virtualknn2.Po -rm -f ./$(DEPDIR)/check_virtualtable1.Po -rm -f ./$(DEPDIR)/check_virtualtable2.Po -rm -f ./$(DEPDIR)/check_virtualtable3.Po -rm -f ./$(DEPDIR)/check_virtualtable4.Po -rm -f ./$(DEPDIR)/check_virtualtable5.Po -rm -f ./$(DEPDIR)/check_virtualtable6.Po -rm -f ./$(DEPDIR)/check_virtualxpath.Po ................................................................................ -rm -f ./$(DEPDIR)/check_toponoface2d.Po -rm -f ./$(DEPDIR)/check_topoplus.Po -rm -f ./$(DEPDIR)/check_toposnap.Po -rm -f ./$(DEPDIR)/check_version.Po -rm -f ./$(DEPDIR)/check_virtual_ovflw.Po -rm -f ./$(DEPDIR)/check_virtualbbox.Po -rm -f ./$(DEPDIR)/check_virtualelem.Po -rm -f ./$(DEPDIR)/check_virtualknn2.Po -rm -f ./$(DEPDIR)/check_virtualtable1.Po -rm -f ./$(DEPDIR)/check_virtualtable2.Po -rm -f ./$(DEPDIR)/check_virtualtable3.Po -rm -f ./$(DEPDIR)/check_virtualtable4.Po -rm -f ./$(DEPDIR)/check_virtualtable5.Po -rm -f ./$(DEPDIR)/check_virtualtable6.Po -rm -f ./$(DEPDIR)/check_virtualxpath.Po |
Changes to test/check_drop_rename.c.
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
...
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
|
spatialite_cleanup_ex (cache);
return -21;
}
sqlite3_free (err_msg);
/* attempting to rename a Virtual Table*/
ret =
sqlite3_exec (handle, "SELECT RenameTable(NULL, 'knn', 'new_knn')",
NULL, NULL, &err_msg);
if (ret == SQLITE_OK)
{
fprintf (stderr, "RenameTable \"knn\" unexpected success\n");
sqlite3_close (handle);
spatialite_cleanup_ex (cache);
return -22;
}
ret =
strcmp (err_msg,
"RenameTable exception - forbidden: SpatiaLite internal Table [main.knn].");
if (ret != 0)
{
fprintf (stderr, "RenameTable \"knn\" error: %s\n", err_msg);
sqlite3_free (err_msg);
sqlite3_close (handle);
spatialite_cleanup_ex (cache);
return -23;
}
sqlite3_free (err_msg);
................................................................................
return -23;
}
sqlite3_free (err_msg);
/* attempting to rename a Virtual Table */
ret =
sqlite3_exec (handle,
"SELECT RenameColumn(NULL, 'knn', 'f_table_name', 'table_name')",
NULL, NULL, &err_msg);
if (ret == SQLITE_OK)
{
fprintf (stderr, "RenameColumn \"knn\" unexpected success\n");
sqlite3_close (handle);
spatialite_cleanup_ex (cache);
return -24;
}
ret =
strcmp (err_msg,
"RenameColumn exception - forbidden: SpatiaLite internal Table [main.knn].");
if (ret != 0)
{
fprintf (stderr, "RenameColumn \"knn\" error: %s\n", err_msg);
sqlite3_free (err_msg);
sqlite3_close (handle);
spatialite_cleanup_ex (cache);
return -25;
}
sqlite3_free (err_msg);
|
|
|
|
|
|
|
|
|
|
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
...
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
|
spatialite_cleanup_ex (cache); return -21; } sqlite3_free (err_msg); /* attempting to rename a Virtual Table*/ ret = sqlite3_exec (handle, "SELECT RenameTable(NULL, 'knn2', 'new_knn2')", NULL, NULL, &err_msg); if (ret == SQLITE_OK) { fprintf (stderr, "RenameTable \"knn2\" unexpected success\n"); sqlite3_close (handle); spatialite_cleanup_ex (cache); return -22; } ret = strcmp (err_msg, "RenameTable exception - forbidden: SpatiaLite internal Table [main.knn2]."); if (ret != 0) { fprintf (stderr, "RenameTable \"knn2\" error: %s\n", err_msg); sqlite3_free (err_msg); sqlite3_close (handle); spatialite_cleanup_ex (cache); return -23; } sqlite3_free (err_msg); ................................................................................ return -23; } sqlite3_free (err_msg); /* attempting to rename a Virtual Table */ ret = sqlite3_exec (handle, "SELECT RenameColumn(NULL, 'knn2', 'f_table_name', 'table_name')", NULL, NULL, &err_msg); if (ret == SQLITE_OK) { fprintf (stderr, "RenameColumn \"knn2\" unexpected success\n"); sqlite3_close (handle); spatialite_cleanup_ex (cache); return -24; } ret = strcmp (err_msg, "RenameColumn exception - forbidden: SpatiaLite internal Table [main.knn2]."); if (ret != 0) { fprintf (stderr, "RenameColumn \"knn2\" error: %s\n", err_msg); sqlite3_free (err_msg); sqlite3_close (handle); spatialite_cleanup_ex (cache); return -25; } sqlite3_free (err_msg); |
Deleted test/check_virtualknn.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 |
/* check_virtualknn.c -- SpatiaLite Test Case Author: Sandro Furieri <a.furieri@lqt.it> ------------------------------------------------------------------------------ Version: MPL 1.1/GPL 2.0/LGPL 2.1 The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is the SpatiaLite library The Initial Developer of the Original Code is Alessandro Furieri Portions created by the Initial Developer are Copyright (C) 2015 the Initial Developer. All Rights Reserved. Contributor(s): Alternatively, the contents of this file may be used under the terms of either the GNU General Public License Version 2 or later (the "GPL"), or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), in which case the provisions of the GPL or the LGPL are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of either the GPL or the LGPL, and not to allow others to use your version of this file under the terms of the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL or the LGPL. If you do not delete the provisions above, a recipient may use your version of this file under the terms of any one of the MPL, the GPL or the LGPL. */ #define _GNU_SOURCE #include <stdlib.h> #include <stdio.h> #include <string.h> #include <spatialite/gaiaconfig.h> #include "sqlite3.h" #include "spatialite.h" #ifndef OMIT_GEOS /* GEOS is supported */ #ifndef OMIT_KNN /* only if KNN is enabled */ static int create_table (sqlite3 * sqlite) { /* creating a test table */ int ret; char *err_msg = NULL; const char *sql; sql = "CREATE TABLE points (id INTEGER PRIMARY KEY AUTOINCREMENT)"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "CREATE TABLE \"points\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } sql = "SELECT AddGeometryColumn('points', 'geom', 32632, 'POINT', 'XY')"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "AddGeometryColumn \"points.geom\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } sql = "SELECT CreateSpatialIndex('points', 'geom')"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "CreateSpatialIndex \"points.geom\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } return 1; } static int populate_table (sqlite3 * sqlite) { /* creating a test table */ int ret; char *err_msg = NULL; const char *sql; sqlite3_stmt *stmt; double x; double y; sql = "INSERT INTO points VALUES (NULL, MakePoint(?, ?, 32632))"; ret = sqlite3_prepare_v2 (sqlite, sql, strlen (sql), &stmt, NULL); if (ret != SQLITE_OK) return 0; ret = sqlite3_exec (sqlite, "BEGIN", NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "BEGIN TRANSACTION error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } for (y = 4000000.0; y < 4001000.0; y += 20.0) { for (x = 100000.0; x < 101000.0; x += 20.0) { sqlite3_reset (stmt); sqlite3_clear_bindings (stmt); sqlite3_bind_double (stmt, 1, x); sqlite3_bind_double (stmt, 2, y); ret = sqlite3_step (stmt); if (ret == SQLITE_DONE || ret == SQLITE_ROW) ; else { fprintf (stderr, "INSERT error: %s\n", sqlite3_errmsg (sqlite)); goto end; } } } for (y = 4000501.0; y < 4001000.0; y += 10.0) { for (x = 100501.0; x < 101000.0; x += 10.0) { sqlite3_reset (stmt); sqlite3_clear_bindings (stmt); sqlite3_bind_double (stmt, 1, x); sqlite3_bind_double (stmt, 2, y); ret = sqlite3_step (stmt); if (ret == SQLITE_DONE || ret == SQLITE_ROW) ; else { fprintf (stderr, "INSERT error: %s\n", sqlite3_errmsg (sqlite)); goto end; } } } for (y = 4000750.5; y < 4001000.0; y += 5.0) { for (x = 100750.5; x < 101000.0; x += 5.0) { sqlite3_reset (stmt); sqlite3_clear_bindings (stmt); sqlite3_bind_double (stmt, 1, x); sqlite3_bind_double (stmt, 2, y); ret = sqlite3_step (stmt); if (ret == SQLITE_DONE || ret == SQLITE_ROW) ; else { fprintf (stderr, "INSERT error: %s\n", sqlite3_errmsg (sqlite)); goto end; } } } ret = sqlite3_exec (sqlite, "COMMIT", NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "COMMIT TRANSACTION error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } end: sqlite3_finalize (stmt); return 1; } static int add_second_geom (sqlite3 * sqlite) { /* adding a second geometry column */ int ret; char *err_msg = NULL; const char *sql; sql = "SELECT AddGeometryColumn('points', 'geometry', 4326, 'POINT', 'XY')"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "AddGeometryColumn \"points.geometry\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } sql = "UPDATE points SET geometry = ST_Transform(geom, 4326)"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "UPDATE \"knn\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } return 1; } static int add_second_rtree (sqlite3 * sqlite) { /* adding a second geometry Spatial Index */ int ret; char *err_msg = NULL; const char *sql; sql = "SELECT CreateSpatialIndex('points', 'geometry')"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "CreateSpatialIndex \"points.geometry\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } return 1; } static int create_knn (sqlite3 * sqlite) { /* creating a test table */ int ret; char *err_msg = NULL; const char *sql; sql = "CREATE VIRTUAL TABLE knn USING VirtualKNN ()"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "CREATE VIRTUAL TABLE \"knn\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } return 1; } static int create_spatial_view_1 (sqlite3 * sqlite) { /* creating the first Spatial View */ int ret; char *err_msg = NULL; const char *sql; sql = "CREATE VIEW view_1 AS SELECT id AS rowid, geom AS geom FROM points"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "CREATE VIEW \"view_1\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } sql = "INSERT INTO views_geometry_columns VALUES('view_1', 'geom', 'rowid', 'points', 'geom', 1)"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "Register SpatialView \"view_1\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } return 1; } static int create_spatial_view_2 (sqlite3 * sqlite) { /* creating the second Spatial View */ int ret; char *err_msg = NULL; const char *sql; sql = "CREATE VIEW view_2 AS SELECT id AS rowid, geometry AS geom FROM points"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "CREATE VIEW \"view_2\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } sql = "INSERT INTO views_geometry_columns VALUES('view_2', 'geom', 'rowid', 'points', 'geometry', 1)"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "Register SpatialView \"view_2\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } return 1; } static int test_knn (sqlite3 * sqlite, int mode) { /* testing a resultset */ int ret; const char *sql; sqlite3_stmt *stmt = NULL; double x; double y; int rows = 0; switch (mode) { case 0: sql = "SELECT * FROM knn WHERE f_table_name = 'DB=main.points' AND ref_geometry = MakePoint(?, ?)"; break; case 1: sql = "SELECT * FROM knn WHERE f_table_name = 'points' AND f_geometry_column = 'geom' " "AND ref_geometry = MakePoint(?, ?) AND max_items = 32632"; break; case 2: sql = "SELECT * FROM knn WHERE f_table_name = 'points' AND f_geometry_column = 'geomx' " "AND ref_geometry = MakePoint(?, ?)"; break; case 3: sql = "SELECT * FROM knn WHERE f_table_name = 'pointsx' AND ref_geometry = MakePoint(?, ?)"; break; case 4: sql = "SELECT * FROM knn WHERE f_table_name = 'points' AND f_geometry_column = 'geometry' " "AND ref_geometry = ST_Transform(MakePoint(?, ?, 32632), 4326) AND max_items = -10"; break; case 5: sql = "SELECT * FROM knn WHERE f_table_name = 'view_1' AND ref_geometry = MakePoint(?, ?)"; break; case 6: sql = "SELECT * FROM knn WHERE f_table_name = 'view_2' AND f_geometry_column = 'geom' " "AND ref_geometry = ST_Transform(MakePoint(?, ?, 32632), 4326)"; break; case 7: sql = "SELECT * FROM knn WHERE f_table_name = 'points' AND ref_geometry = MakePoint(?, ?) " "AND max_items = 10"; break; }; ret = sqlite3_prepare_v2 (sqlite, sql, strlen (sql), &stmt, NULL); if (ret != SQLITE_OK) { fprintf (stderr, "SELECT FROM \"knn\": \"%s\"\n", sqlite3_errmsg (sqlite)); return 0; } for (y = 3800000.25; y < 4002000.0; y += 12345.12345) { for (x = 80000.25; x < 102000.0; x += 12345.12345) { sqlite3_reset (stmt); sqlite3_clear_bindings (stmt); sqlite3_bind_double (stmt, 1, x); sqlite3_bind_double (stmt, 2, y); while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { if (sqlite3_column_type (stmt, 0) == SQLITE_TEXT && sqlite3_column_type (stmt, 1) == SQLITE_TEXT && sqlite3_column_type (stmt, 2) == SQLITE_BLOB && sqlite3_column_type (stmt, 3) == SQLITE_INTEGER && sqlite3_column_type (stmt, 4) == SQLITE_INTEGER && sqlite3_column_type (stmt, 5) == SQLITE_INTEGER && sqlite3_column_type (stmt, 6) == SQLITE_FLOAT) ; else goto error; rows++; } else goto error; } } } if (!rows) goto error; sqlite3_finalize (stmt); return 1; error: if (stmt != NULL) sqlite3_finalize (stmt); return 0; } #endif #endif int main (int argc, char *argv[]) { sqlite3 *db_handle = NULL; int ret; char *err_msg = NULL; void *cache = spatialite_alloc_connection (); if (argc > 1 || argv[0] == NULL) argc = 1; /* silencing stupid compiler warnings */ ret = sqlite3_open_v2 (":memory:", &db_handle, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL); if (ret != SQLITE_OK) { fprintf (stderr, "cannot open in-memory db: %s\n", sqlite3_errmsg (db_handle)); sqlite3_close (db_handle); db_handle = NULL; return -1; } spatialite_init_ex (db_handle, cache, 0); #ifndef OMIT_GEOS /* GEOS is supported */ #ifndef OMIT_KNN /* only if KNN is enabled */ ret = sqlite3_exec (db_handle, "SELECT InitSpatialMetadataFull(1)", NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "InitSpatialMetadataFull() error: %s\n", err_msg); sqlite3_free (err_msg); sqlite3_close (db_handle); return -2; } /* Creating and populating the test table */ ret = create_table (db_handle); if (!ret) { sqlite3_close (db_handle); return -3; } ret = populate_table (db_handle); if (!ret) { sqlite3_close (db_handle); return -4; } /* adding a second geometry column */ ret = add_second_geom (db_handle); if (!ret) { fprintf (stderr, "Add Second Geometry: unexpected failure !!!\n"); sqlite3_close (db_handle); return -5; } /* Creating the VirtualKNN table */ ret = create_knn (db_handle); if (ret) { fprintf (stderr, "CREATE VIRTUAL TABLE knn: expected failure !!!\n"); sqlite3_close (db_handle); return -6; } /* Testing KNN - #1 */ ret = test_knn (db_handle, 0); if (!ret) { fprintf (stderr, "Check KNN #1: unexpected failure\n"); sqlite3_close (db_handle); return -7; } /* Testing KNN - #2 */ ret = test_knn (db_handle, 1); if (!ret) { fprintf (stderr, "Check KNN #2: unexpected failure\n"); sqlite3_close (db_handle); return -8; } /* Testing KNN - #3 */ ret = test_knn (db_handle, 2); if (ret) { fprintf (stderr, "Check KNN #3: unexpected success\n"); sqlite3_close (db_handle); return -9; } /* creating a first SpatialView */ ret = create_spatial_view_1 (db_handle); if (!ret) { fprintf (stderr, "Create Spatial View #1: unexpected failure !!!\n"); sqlite3_close (db_handle); return -10; } /* Testing KNN - #4 */ ret = test_knn (db_handle, 5); if (!ret) { fprintf (stderr, "Check KNN #4: unexpected failure\n"); sqlite3_close (db_handle); return -11; } /* Testing KNN - #5 */ ret = test_knn (db_handle, 7); if (!ret) { fprintf (stderr, "Check KNN #5: unexpected failure\n"); sqlite3_close (db_handle); return -12; } /* Testing KNN - #6 */ ret = test_knn (db_handle, 3); if (ret) { fprintf (stderr, "Check KNN #6: unexpected success\n"); sqlite3_close (db_handle); return -13; } /* Testing KNN - #7 */ ret = test_knn (db_handle, 1); if (!ret) { fprintf (stderr, "Check KNN #7: unexpected failure\n"); sqlite3_close (db_handle); return -14; } /* Testing KNN - #8 */ ret = test_knn (db_handle, 4); if (ret) { fprintf (stderr, "Check KNN #8: unexpected success\n"); sqlite3_close (db_handle); return -15; } /* creating a second SpatialIndex */ ret = add_second_rtree (db_handle); if (!ret) { fprintf (stderr, "Add Second Spatial Index: unexpected failure !!!\n"); sqlite3_close (db_handle); return -16; } /* Testing KNN - #9 */ ret = test_knn (db_handle, 4); if (!ret) { fprintf (stderr, "Check KNN #9: unexpected failure\n"); sqlite3_close (db_handle); return -17; } /* creating a second SpatialView */ ret = create_spatial_view_2 (db_handle); if (!ret) { fprintf (stderr, "Create Spatial View #2: unexpected failure !!!\n"); sqlite3_close (db_handle); return -18; } /* Testing KNN - #10 */ ret = test_knn (db_handle, 6); if (!ret) { fprintf (stderr, "Check KNN #10: unexpected failure\n"); sqlite3_close (db_handle); return -19; } #endif /* end KNN conditional */ #endif /* end GEOS conditional */ sqlite3_close (db_handle); spatialite_cleanup_ex (cache); spatialite_shutdown (); return 0; } |
< < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < |
Added test/check_virtualknn2.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 |
/* check_virtualknn2.c -- SpatiaLite Test Case Author: Sandro Furieri <a.furieri@lqt.it> ------------------------------------------------------------------------------ Version: MPL 1.1/GPL 2.0/LGPL 2.1 The contents of this file are subject to the Mozilla Public License Version 1.1 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.mozilla.org/MPL/ Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is the SpatiaLite library The Initial Developer of the Original Code is Alessandro Furieri Portions created by the Initial Developer are Copyright (C) 2021 the Initial Developer. All Rights Reserved. Contributor(s): Alternatively, the contents of this file may be used under the terms of either the GNU General Public License Version 2 or later (the "GPL"), or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), in which case the provisions of the GPL or the LGPL are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of either the GPL or the LGPL, and not to allow others to use your version of this file under the terms of the MPL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the GPL or the LGPL. If you do not delete the provisions above, a recipient may use your version of this file under the terms of any one of the MPL, the GPL or the LGPL. */ #define _GNU_SOURCE #include <stdlib.h> #include <stdio.h> #include <string.h> #include <spatialite/gaiaconfig.h> #include "sqlite3.h" #include "spatialite.h" #ifndef OMIT_GEOS /* GEOS is supported */ static int create_table (sqlite3 * sqlite) { /* creating a test table */ int ret; char *err_msg = NULL; const char *sql; sql = "CREATE TABLE points (id INTEGER PRIMARY KEY AUTOINCREMENT)"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "CREATE TABLE \"points\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } sql = "SELECT AddGeometryColumn('points', 'geom', 32632, 'POINT', 'XY')"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "AddGeometryColumn \"points.geom\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } sql = "SELECT CreateSpatialIndex('points', 'geom')"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "CreateSpatialIndex \"points.geom\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } return 1; } static int populate_table (sqlite3 * sqlite) { /* creating a test table */ int ret; char *err_msg = NULL; const char *sql; sqlite3_stmt *stmt; double x; double y; sql = "INSERT INTO points VALUES (NULL, MakePoint(?, ?, 32632))"; ret = sqlite3_prepare_v2 (sqlite, sql, strlen (sql), &stmt, NULL); if (ret != SQLITE_OK) return 0; ret = sqlite3_exec (sqlite, "BEGIN", NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "BEGIN TRANSACTION error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } for (y = 4000000.0; y < 4001000.0; y += 20.0) { for (x = 100000.0; x < 101000.0; x += 20.0) { sqlite3_reset (stmt); sqlite3_clear_bindings (stmt); sqlite3_bind_double (stmt, 1, x); sqlite3_bind_double (stmt, 2, y); ret = sqlite3_step (stmt); if (ret == SQLITE_DONE || ret == SQLITE_ROW) ; else { fprintf (stderr, "INSERT error: %s\n", sqlite3_errmsg (sqlite)); goto end; } } } for (y = 4000501.0; y < 4001000.0; y += 10.0) { for (x = 100501.0; x < 101000.0; x += 10.0) { sqlite3_reset (stmt); sqlite3_clear_bindings (stmt); sqlite3_bind_double (stmt, 1, x); sqlite3_bind_double (stmt, 2, y); ret = sqlite3_step (stmt); if (ret == SQLITE_DONE || ret == SQLITE_ROW) ; else { fprintf (stderr, "INSERT error: %s\n", sqlite3_errmsg (sqlite)); goto end; } } } for (y = 4000750.5; y < 4001000.0; y += 5.0) { for (x = 100750.5; x < 101000.0; x += 5.0) { sqlite3_reset (stmt); sqlite3_clear_bindings (stmt); sqlite3_bind_double (stmt, 1, x); sqlite3_bind_double (stmt, 2, y); ret = sqlite3_step (stmt); if (ret == SQLITE_DONE || ret == SQLITE_ROW) ; else { fprintf (stderr, "INSERT error: %s\n", sqlite3_errmsg (sqlite)); goto end; } } } ret = sqlite3_exec (sqlite, "COMMIT", NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "COMMIT TRANSACTION error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } end: sqlite3_finalize (stmt); return 1; } static int add_second_geom (sqlite3 * sqlite) { /* adding a second geometry column */ int ret; char *err_msg = NULL; const char *sql; sql = "SELECT AddGeometryColumn('points', 'geometry', 4326, 'POINT', 'XY')"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "AddGeometryColumn \"points.geometry\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } sql = "UPDATE points SET geometry = ST_Transform(geom, 4326)"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "UPDATE \"knn2\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } return 1; } static int add_second_rtree (sqlite3 * sqlite) { /* adding a second geometry Spatial Index */ int ret; char *err_msg = NULL; const char *sql; sql = "SELECT CreateSpatialIndex('points', 'geometry')"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "CreateSpatialIndex \"points.geometry\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } return 1; } static int create_knn2 (sqlite3 * sqlite) { /* creating a test table */ int ret; char *err_msg = NULL; const char *sql; sql = "CREATE VIRTUAL TABLE knn2 USING VirtualKNN2 ()"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "CREATE VIRTUAL TABLE \"knn2\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } return 1; } static int create_spatial_view_1 (sqlite3 * sqlite) { /* creating the first Spatial View */ int ret; char *err_msg = NULL; const char *sql; sql = "CREATE VIEW view_1 AS SELECT id AS rowid, geom AS geom FROM points"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "CREATE VIEW \"view_1\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } sql = "INSERT INTO views_geometry_columns VALUES('view_1', 'geom', 'rowid', 'points', 'geom', 1)"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "Register SpatialView \"view_1\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } return 1; } static int create_spatial_view_2 (sqlite3 * sqlite) { /* creating the second Spatial View */ int ret; char *err_msg = NULL; const char *sql; sql = "CREATE VIEW view_2 AS SELECT id AS rowid, geometry AS geom FROM points"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "CREATE VIEW \"view_2\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } sql = "INSERT INTO views_geometry_columns VALUES('view_2', 'geom', 'rowid', 'points', 'geometry', 1)"; ret = sqlite3_exec (sqlite, sql, NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "Register SpatialView \"view_2\" error: %s\n", err_msg); sqlite3_free (err_msg); return 0; } return 1; } static int test_knn2 (sqlite3 * sqlite, int mode) { /* testing a resultset */ int ret; const char *sql; sqlite3_stmt *stmt = NULL; double x; double y; double minx; double maxx; double miny; double maxy; switch (mode) { case 0: sql = "SELECT * FROM knn2 WHERE f_table_name = 'points' AND ref_geometry = MakePoint(?, ?) AND radius = 100.0"; break; case 1: sql = "SELECT * FROM knn2 WHERE f_table_name = 'points' AND f_geometry_column = 'geom' " "AND ref_geometry = MakePoint(?, ?) AND radius = 100 AND max_items = 32632"; break; case 2: sql = "SELECT * FROM knn2 WHERE f_table_name = 'points' AND f_geometry_column = 'geomx' " "AND ref_geometry = MakePoint(?, ?) AND radius = 100"; break; case 3: sql = "SELECT * FROM knn2 WHERE f_table_name = 'pointsx' AND ref_geometry = MakePoint(?, ?)"; break; case 4: sql = "SELECT * FROM knn2 WHERE f_table_name = 'points' AND f_geometry_column = 'geometry' " "AND ref_geometry = ST_Transform(MakePoint(?, ?, 32632), 4326) AND radius = 0.0001 AND max_items = -10"; break; case 5: sql = "SELECT * FROM knn2 WHERE f_table_name = 'view_1' AND ref_geometry = MakePoint(?, ?) AND radius = 100"; break; case 6: sql = "SELECT * FROM knn2 WHERE f_table_name = 'view_2' AND f_geometry_column = 'geometry' " "AND ref_geometry = ST_Transform(MakePoint(?, ?, 32632), 4326) AND radius = 0.0001"; break; case 7: sql = "SELECT * FROM knn2 WHERE f_table_name = 'points' AND ref_geometry = MakePoint(?, ?) " "AND radius = 100.0 AND max_items = 10"; break; case 8: sql = "SELECT * FROM knn2 WHERE db_prefix = 'main' AND f_table_name = 'points' AND f_geometry_column = 'geometry' " "AND ref_geometry = ST_Transform(MakePoint(?, ?, 32632), 4326) AND radius = 0.00001 AND max_items = 10 AND expand = 1"; break; case 9: sql = "SELECT * FROM knn2 WHERE db_prefix = 'MAIN' AND f_table_name = 'view_2' AND f_geometry_column = 'geometry' " "AND ref_geometry = ST_Transform(MakePoint(?, ?, 32632), 4326) AND radius = 0.00001 AND expand = 1"; break; }; ret = sqlite3_prepare_v2 (sqlite, sql, strlen (sql), &stmt, NULL); if (ret != SQLITE_OK) { fprintf (stderr, "SELECT FROM \"knn2\": \"%s\"\n", sqlite3_errmsg (sqlite)); return 0; } if (mode == 8 || mode == 9) { minx = 100500.5; maxx = 101000.0; miny = 4000500.5; maxy = 4001000.0; } else { minx = 100750.5; maxx = 101000.0; miny = 4000750.5; maxy = 4001000.0; } for (y = miny; y < maxy; y += 100.0) { for (x = minx; x < maxx; x += 100.0) { int rows = 0; sqlite3_reset (stmt); sqlite3_clear_bindings (stmt); sqlite3_bind_double (stmt, 1, x); sqlite3_bind_double (stmt, 2, y); while (1) { /* scrolling the result set rows */ ret = sqlite3_step (stmt); if (ret == SQLITE_DONE) break; /* end of result set */ if (ret == SQLITE_ROW) { if (sqlite3_column_type (stmt, 0) == SQLITE_TEXT && sqlite3_column_type (stmt, 1) == SQLITE_TEXT && sqlite3_column_type (stmt, 2) == SQLITE_TEXT && sqlite3_column_type (stmt, 3) == SQLITE_BLOB && sqlite3_column_type (stmt, 4) == SQLITE_FLOAT && sqlite3_column_type (stmt, 5) == SQLITE_INTEGER && sqlite3_column_type (stmt, 6) == SQLITE_INTEGER && sqlite3_column_type (stmt, 7) == SQLITE_INTEGER && sqlite3_column_type (stmt, 8) == SQLITE_INTEGER && sqlite3_column_type (stmt, 9) == SQLITE_FLOAT) ; else goto error; rows++; } else goto error; } if (!rows) goto error; } } sqlite3_finalize (stmt); return 1; error: if (stmt != NULL) sqlite3_finalize (stmt); return 0; } #endif int main (int argc, char *argv[]) { sqlite3 *db_handle = NULL; int ret; char *err_msg = NULL; void *cache = spatialite_alloc_connection (); if (argc > 1 || argv[0] == NULL) argc = 1; /* silencing stupid compiler warnings */ ret = sqlite3_open_v2 (":memory:", &db_handle, SQLITE_OPEN_READWRITE | SQLITE_OPEN_CREATE, NULL); if (ret != SQLITE_OK) { fprintf (stderr, "cannot open in-memory db: %s\n", sqlite3_errmsg (db_handle)); sqlite3_close (db_handle); db_handle = NULL; return -1; } spatialite_init_ex (db_handle, cache, 0); #ifndef OMIT_GEOS /* GEOS is supported */ ret = sqlite3_exec (db_handle, "SELECT InitSpatialMetadataFull(1)", NULL, NULL, &err_msg); if (ret != SQLITE_OK) { fprintf (stderr, "InitSpatialMetadataFull() error: %s\n", err_msg); sqlite3_free (err_msg); sqlite3_close (db_handle); return -2; } /* Creating and populating the test table */ ret = create_table (db_handle); if (!ret) { sqlite3_close (db_handle); return -3; } ret = populate_table (db_handle); if (!ret) { sqlite3_close (db_handle); return -4; } /* adding a second geometry column */ ret = add_second_geom (db_handle); if (!ret) { fprintf (stderr, "Add Second Geometry: unexpected failure !!!\n"); sqlite3_close (db_handle); return -5; } /* Creating the VirtualKNN2 table */ ret = create_knn2 (db_handle); if (ret) { fprintf (stderr, "CREATE VIRTUAL TABLE knn: expected failure !!!\n"); sqlite3_close (db_handle); return -6; } /* Testing KNN2 - #1 */ ret = test_knn2 (db_handle, 0); if (!ret) { fprintf (stderr, "Check KNN2 #1: unexpected failure\n"); sqlite3_close (db_handle); return -7; } /* Testing KNN2 - #2 */ ret = test_knn2 (db_handle, 1); if (!ret) { fprintf (stderr, "Check KNN2 #2: unexpected failure\n"); sqlite3_close (db_handle); return -8; } /* Testing KNN2 - #3 */ ret = test_knn2 (db_handle, 2); if (ret) { fprintf (stderr, "Check KNN2 #3: unexpected success\n"); sqlite3_close (db_handle); return -9; } /* creating a first SpatialView */ ret = create_spatial_view_1 (db_handle); if (!ret) { fprintf (stderr, "Create Spatial View #1: unexpected failure !!!\n"); sqlite3_close (db_handle); return -10; } /* Testing KNN2 - #4 */ ret = test_knn2 (db_handle, 5); if (!ret) { fprintf (stderr, "Check KNN2 #4: unexpected failure\n"); sqlite3_close (db_handle); return -11; } /* Testing KNN2 - #5 */ ret = test_knn2 (db_handle, 7); if (!ret) { fprintf (stderr, "Check KNN2 #5: unexpected failure\n"); sqlite3_close (db_handle); return -12; } /* Testing KNN2 - #6 */ ret = test_knn2 (db_handle, 3); if (ret) { fprintf (stderr, "Check KNN2 #6: unexpected success\n"); sqlite3_close (db_handle); return -13; } /* Testing KNN2 - #7 */ ret = test_knn2 (db_handle, 1); if (!ret) { fprintf (stderr, "Check KNN2 #7: unexpected failure\n"); sqlite3_close (db_handle); return -14; } /* Testing KNN2 - #8 */ ret = test_knn2 (db_handle, 4); if (ret) { fprintf (stderr, "Check KNN2 #8: unexpected success\n"); sqlite3_close (db_handle); return -15; } /* creating a second SpatialIndex */ ret = add_second_rtree (db_handle); if (!ret) { fprintf (stderr, "Add Second Spatial Index: unexpected failure !!!\n"); sqlite3_close (db_handle); return -16; } /* Testing KNN2 - #9 */ ret = test_knn2 (db_handle, 4); if (!ret) { fprintf (stderr, "Check KNN2 #9: unexpected failure\n"); sqlite3_close (db_handle); return -17; } /* creating a second SpatialView */ ret = create_spatial_view_2 (db_handle); if (!ret) { fprintf (stderr, "Create Spatial View #2: unexpected failure !!!\n"); sqlite3_close (db_handle); return -18; } /* Testing KNN2 - #10 */ ret = test_knn2 (db_handle, 6); if (!ret) { fprintf (stderr, "Check KNN2 #10: unexpected failure\n"); sqlite3_close (db_handle); return -19; } /* Testing KNN2 - #11 */ ret = test_knn2 (db_handle, 8); if (!ret) { fprintf (stderr, "Check KNN2 #11: unexpected failure\n"); sqlite3_close (db_handle); return -20; } /* Testing KNN2 - #12 */ ret = test_knn2 (db_handle, 9); if (!ret) { fprintf (stderr, "Check KNN2 #12: unexpected failure\n"); sqlite3_close (db_handle); return -21; } #endif /* end GEOS conditional */ sqlite3_close (db_handle); spatialite_cleanup_ex (cache); spatialite_shutdown (); return 0; } |
Changes to test/sql_stmt_bufoptsnew_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_bufoptsold_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_cache_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_freexl_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_geopackage_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_geos370_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_geos_380/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_geos_390/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_geos_391/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_geos_non380/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_geos_non390/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_geos_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_geosadvanced_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_gpkg_epsg492_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_gpkg_epsg493_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_gpkg_epsg600_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_gpkgcache_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_gpkgnocache_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_iconv_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_libxml2_rttopo_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_libxml2_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_logfile_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_mathsql_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_minizip/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_nocache_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_point_geom/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_postgres_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_proc_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_proj492_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_proj493_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_proj600_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_proj600security_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_proj720_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_proj_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_renamenew_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_renameold_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_routing_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_rtgeom_390/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_rtgeom_non390/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_rtgeom_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_rttopo_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_security_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_sequence_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_tests/Makefile.
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 ... 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 ... 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 .... 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 |
AS = as AUTOCONF = autoconf AUTOHEADER = autoheader AUTOMAKE = automake-1.16 AWK = gawk CC = gcc CCDEPMODE = depmode=gcc3 CFLAGS = -g -O2 -fprofile-arcs -ftest-coverage -g CPP = gcc -E CPPFLAGS = CXX = g++ CXXCPP = g++ -E CXXDEPMODE = depmode=gcc3 CXXFLAGS = -g -O2 CYGPATH_W = echo ................................................................................ INSTALL_DATA = ${INSTALL} -m 644 INSTALL_PROGRAM = ${INSTALL} INSTALL_SCRIPT = ${INSTALL} INSTALL_STRIP_PROGRAM = $(install_sh) -c -s LD = /usr/bin/ld -m elf_x86_64 LDFLAGS = LIBOBJS = LIBS = -lminizip -lrttopo -lfreexl -lproj -lsqlite3 -lz -lsqlite3 -L/usr/lib64 -lgeos_c LIBTOOL = $(SHELL) $(top_builddir)/libtool LIBXML2_CFLAGS = -I/usr/include/libxml2 LIBXML2_LIBS = -lxml2 LIPO = LN_S = ln -s LTLIBOBJS = MAINT = # ................................................................................ PACKAGE_STRING = libspatialite 5.1.0-devel PACKAGE_TARNAME = libspatialite PACKAGE_URL = PACKAGE_VERSION = 5.1.0-devel PATH_SEPARATOR = : PKG_CONFIG = /usr/bin/pkg-config PKG_CONFIG_LIBDIR = PKG_CONFIG_PATH = RANLIB = ranlib SED = /usr/bin/sed SET_MAKE = SHELL = /bin/sh STRIP = strip VERSION = 5.1.0-devel abs_builddir = /home/sandro/fossil/libspatialite/test/sql_stmt_tests abs_srcdir = /home/sandro/fossil/libspatialite/test/sql_stmt_tests abs_top_builddir = /home/sandro/fossil/libspatialite abs_top_srcdir = /home/sandro/fossil/libspatialite ac_ct_AR = ar ................................................................................ shiftlongitude4.testcase \ shiftlongitude5.testcase \ shiftlongitude6.testcase \ shiftlongitude7.testcase \ shiftlongitude8.testcase \ shiftlongitude9.testcase \ spatialindex.testcase \ spatialindexextent1.testcase \ spatialindexextent2.testcase \ spatialindexextent3.testcase \ spatialindexextent4.testcase \ spatialindexextent5.testcase \ spatialindexextent6.testcase \ spatialindexextent7.testcase \ spatialindexextent8.testcase \ spatialindexextent9.testcase \ spatialindexextent10.testcase \ spatialindexextent11.testcase \ spatialindexextent12.testcase \ spatialindexextent13.testcase \ spatialindexextent14.testcase \ spatialindexextent15.testcase \ srid10.testcase \ srid11.testcase \ srid1.testcase \ srid2.testcase \ srid3.testcase \ srid4.testcase \ srid5.testcase \ |
| | | > > < < < < < < < < < < < < < < < |
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 ... 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 ... 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 .... 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 |
AS = as AUTOCONF = autoconf AUTOHEADER = autoheader AUTOMAKE = automake-1.16 AWK = gawk CC = gcc CCDEPMODE = depmode=gcc3 CFLAGS = -Wall -Wextra -Wunused -pedantic -g -O0 -fprofile-arcs -ftest-coverage -g CPP = gcc -E CPPFLAGS = CXX = g++ CXXCPP = g++ -E CXXDEPMODE = depmode=gcc3 CXXFLAGS = -g -O2 CYGPATH_W = echo ................................................................................ INSTALL_DATA = ${INSTALL} -m 644 INSTALL_PROGRAM = ${INSTALL} INSTALL_SCRIPT = ${INSTALL} INSTALL_STRIP_PROGRAM = $(install_sh) -c -s LD = /usr/bin/ld -m elf_x86_64 LDFLAGS = LIBOBJS = LIBS = -lminizip -lrttopo -lfreexl -lproj -lz -L/usr/lib64 -lgeos_c LIBTOOL = $(SHELL) $(top_builddir)/libtool LIBXML2_CFLAGS = -I/usr/include/libxml2 LIBXML2_LIBS = -lxml2 LIPO = LN_S = ln -s LTLIBOBJS = MAINT = # ................................................................................ PACKAGE_STRING = libspatialite 5.1.0-devel PACKAGE_TARNAME = libspatialite PACKAGE_URL = PACKAGE_VERSION = 5.1.0-devel PATH_SEPARATOR = : PKG_CONFIG = /usr/bin/pkg-config PKG_CONFIG_LIBDIR = PKG_CONFIG_PATH = /usr/local/lib/pkgconfig RANLIB = ranlib SED = /usr/bin/sed SET_MAKE = SHELL = /bin/sh SQLITE3_CFLAGS = SQLITE3_LIBS = -lsqlite3 STRIP = strip VERSION = 5.1.0-devel abs_builddir = /home/sandro/fossil/libspatialite/test/sql_stmt_tests abs_srcdir = /home/sandro/fossil/libspatialite/test/sql_stmt_tests abs_top_builddir = /home/sandro/fossil/libspatialite abs_top_srcdir = /home/sandro/fossil/libspatialite ac_ct_AR = ar ................................................................................ shiftlongitude4.testcase \ shiftlongitude5.testcase \ shiftlongitude6.testcase \ shiftlongitude7.testcase \ shiftlongitude8.testcase \ shiftlongitude9.testcase \ spatialindex.testcase \ srid10.testcase \ srid11.testcase \ srid1.testcase \ srid2.testcase \ srid3.testcase \ srid4.testcase \ srid5.testcase \ |
Changes to test/sql_stmt_tests/Makefile.am.
2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 |
shiftlongitude4.testcase \ shiftlongitude5.testcase \ shiftlongitude6.testcase \ shiftlongitude7.testcase \ shiftlongitude8.testcase \ shiftlongitude9.testcase \ spatialindex.testcase \ spatialindexextent1.testcase \ spatialindexextent2.testcase \ spatialindexextent3.testcase \ spatialindexextent4.testcase \ spatialindexextent5.testcase \ spatialindexextent6.testcase \ spatialindexextent7.testcase \ spatialindexextent8.testcase \ spatialindexextent9.testcase \ spatialindexextent10.testcase \ spatialindexextent11.testcase \ spatialindexextent12.testcase \ spatialindexextent13.testcase \ spatialindexextent14.testcase \ spatialindexextent15.testcase \ srid10.testcase \ srid11.testcase \ srid1.testcase \ srid2.testcase \ srid3.testcase \ srid4.testcase \ srid5.testcase \ |
< < < < < < < < < < < < < < < |
2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 |
shiftlongitude4.testcase \ shiftlongitude5.testcase \ shiftlongitude6.testcase \ shiftlongitude7.testcase \ shiftlongitude8.testcase \ shiftlongitude9.testcase \ spatialindex.testcase \ srid10.testcase \ srid11.testcase \ srid1.testcase \ srid2.testcase \ srid3.testcase \ srid4.testcase \ srid5.testcase \ |
Changes to test/sql_stmt_tests/Makefile.in.
196
197
198
199
200
201
202
203
204
205
206
207
208
209
....
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
|
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ................................................................................ shiftlongitude4.testcase \ shiftlongitude5.testcase \ shiftlongitude6.testcase \ shiftlongitude7.testcase \ shiftlongitude8.testcase \ shiftlongitude9.testcase \ spatialindex.testcase \ spatialindexextent1.testcase \ spatialindexextent2.testcase \ spatialindexextent3.testcase \ spatialindexextent4.testcase \ spatialindexextent5.testcase \ spatialindexextent6.testcase \ spatialindexextent7.testcase \ spatialindexextent8.testcase \ spatialindexextent9.testcase \ spatialindexextent10.testcase \ spatialindexextent11.testcase \ spatialindexextent12.testcase \ spatialindexextent13.testcase \ spatialindexextent14.testcase \ spatialindexextent15.testcase \ srid10.testcase \ srid11.testcase \ srid1.testcase \ srid2.testcase \ srid3.testcase \ srid4.testcase \ srid5.testcase \ |
>
>
<
<
<
<
<
<
<
<
<
<
<
<
<
<
<
|
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
....
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
|
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ................................................................................ shiftlongitude4.testcase \ shiftlongitude5.testcase \ shiftlongitude6.testcase \ shiftlongitude7.testcase \ shiftlongitude8.testcase \ shiftlongitude9.testcase \ spatialindex.testcase \ srid10.testcase \ srid11.testcase \ srid1.testcase \ srid2.testcase \ srid3.testcase \ srid4.testcase \ srid5.testcase \ |
Deleted test/sql_stmt_tests/spatialindexextent1.testcase.
1 2 3 4 5 6 7 |
GetSpatialIndexExtent - INT prefix :memory: #use in-memory database SELECT GetSpatialIndexExtent(1, 'table', 'geom'); 1 # rows (not including the header row) 1 # columns GetSpatialIndexExtent(1, 'table', 'geom') (NULL) |
< < < < < < < |
Deleted test/sql_stmt_tests/spatialindexextent10.testcase.
1 2 3 4 5 6 7 |
GetSpatialIndexExtent - NULL geometry :memory: #use in-memory database SELECT GetSpatialIndexExtent(NULL, 'table', NULL); 1 # rows (not including the header row) 1 # columns GetSpatialIndexExtent(NULL, 'table', NULL) (NULL) |
< < < < < < < |
Deleted test/sql_stmt_tests/spatialindexextent11.testcase.
1 2 3 4 5 6 7 |
GetSpatialIndexExtent - INT geometry :memory: #use in-memory database SELECT GetSpatialIndexExtent(NULL, 'table', 1); 1 # rows (not including the header row) 1 # columns GetSpatialIndexExtent(NULL, 'table', 1) (NULL) |
< < < < < < < |
Deleted test/sql_stmt_tests/spatialindexextent12.testcase.
1 2 3 4 5 6 7 |
GetSpatialIndexExtent - DOUBLE geometry :memory: #use in-memory database SELECT GetSpatialIndexExtent(NULL, 'table', 1.1); 1 # rows (not including the header row) 1 # columns GetSpatialIndexExtent(NULL, 'table', 1.1) (NULL) |
< < < < < < < |
Deleted test/sql_stmt_tests/spatialindexextent13.testcase.
1 2 3 4 5 6 7 |
GetSpatialIndexExtent - DOUBLE geometry :memory: #use in-memory database SELECT GetSpatialIndexExtent(NULL, 'table', 1.1); 1 # rows (not including the header row) 1 # columns GetSpatialIndexExtent(NULL, 'table', 1.1) (NULL) |
< < < < < < < |
Deleted test/sql_stmt_tests/spatialindexextent14.testcase.
1 2 3 4 5 6 7 |
GetSpatialIndexExtent - BLOB geometry :memory: #use in-memory database SELECT GetSpatialIndexExtent(NULL, 'table', zeroblob(4)); 1 # rows (not including the header row) 1 # columns GetSpatialIndexExtent(NULL, 'table', zeroblob(4)) (NULL) |
< < < < < < < |
Deleted test/sql_stmt_tests/spatialindexextent15.testcase.
1 2 3 4 5 6 7 |
GetSpatialIndexExtent - TEXT geometry :memory: #use in-memory database SELECT GetSpatialIndexExtent(NULL, 'table', 'geom'); 1 # rows (not including the header row) 1 # columns GetSpatialIndexExtent(NULL, 'table', 'geom') (NULL) |
< < < < < < < |
Deleted test/sql_stmt_tests/spatialindexextent2.testcase.
1 2 3 4 5 6 7 |
GetSpatialIndexExtent - DOUBLE prefix :memory: #use in-memory database SELECT GetSpatialIndexExtent(1.5, 'table', 'geom'); 1 # rows (not including the header row) 1 # columns GetSpatialIndexExtent(1.5, 'table', 'geom') (NULL) |
< < < < < < < |
Deleted test/sql_stmt_tests/spatialindexextent3.testcase.
1 2 3 4 5 6 7 |
GetSpatialIndexExtent - BLOB prefix :memory: #use in-memory database SELECT GetSpatialIndexExtent(zeroblob(4), 'table', 'geom'); 1 # rows (not including the header row) 1 # columns GetSpatialIndexExtent(zeroblob(4), 'table', 'geom') (NULL) |
< < < < < < < |
Deleted test/sql_stmt_tests/spatialindexextent4.testcase.
1 2 3 4 5 6 7 |
GetSpatialIndexExtent - TEXT prefix :memory: #use in-memory database SELECT GetSpatialIndexExtent('MAIN', 'table', 'geom'); 1 # rows (not including the header row) 1 # columns GetSpatialIndexExtent('MAIN', 'table', 'geom') (NULL) |
< < < < < < < |
Deleted test/sql_stmt_tests/spatialindexextent5.testcase.
1 2 3 4 5 6 7 |
GetSpatialIndexExtent - NULL prefix :memory: #use in-memory database SELECT GetSpatialIndexExtent(NULL, 'table', 'geom'); 1 # rows (not including the header row) 1 # columns GetSpatialIndexExtent(NULL, 'table', 'geom') (NULL) |
< < < < < < < |
Deleted test/sql_stmt_tests/spatialindexextent6.testcase.
1 2 3 4 5 6 7 |
GetSpatialIndexExtent - NULL table :memory: #use in-memory database SELECT GetSpatialIndexExtent(NULL, NULL, 'geom'); 1 # rows (not including the header row) 1 # columns GetSpatialIndexExtent(NULL, NULL, 'geom') (NULL) |
< < < < < < < |
Deleted test/sql_stmt_tests/spatialindexextent7.testcase.
1 2 3 4 5 6 7 |
GetSpatialIndexExtent - INT table :memory: #use in-memory database SELECT GetSpatialIndexExtent(NULL, 1, 'geom'); 1 # rows (not including the header row) 1 # columns GetSpatialIndexExtent(NULL, 1, 'geom') (NULL) |
< < < < < < < |
Deleted test/sql_stmt_tests/spatialindexextent8.testcase.
1 2 3 4 5 6 7 |
GetSpatialIndexExtent - DOUBLE table :memory: #use in-memory database SELECT GetSpatialIndexExtent(NULL, 1.5, 'geom'); 1 # rows (not including the header row) 1 # columns GetSpatialIndexExtent(NULL, 1.5, 'geom') (NULL) |
< < < < < < < |
Deleted test/sql_stmt_tests/spatialindexextent9.testcase.
1 2 3 4 5 6 7 |
GetSpatialIndexExtent - BLOB table :memory: #use in-memory database SELECT GetSpatialIndexExtent(NULL, zeroblob(4), 'geom'); 1 # rows (not including the header row) 1 # columns GetSpatialIndexExtent(NULL, zeroblob(4), 'geom') (NULL) |
< < < < < < < |
Changes to test/sql_stmt_tiny_point/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_voronoj1_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_voronoj2_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_voronoj_390/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_voronoj_non390/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_xmlsec_tests/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
Changes to test/sql_stmt_zip_proj6/Makefile.in.
196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |
> > |
196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 |
PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SQLITE3_CFLAGS = @SQLITE3_CFLAGS@ SQLITE3_LIBS = @SQLITE3_LIBS@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ |