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
|
/******************************************************************************
*
* Project: OpenGIS Simple Features Reference Implementation
* Purpose: Test dynamic loading of SQLite Virtual Table module using OGR
*layers Author: Even Rouault, even dot rouault at spatialys.com
*
******************************************************************************
* Copyright (c) 2012, Even Rouault <even dot rouault at spatialys.com>
*
* SPDX-License-Identifier: MIT
****************************************************************************/
#ifdef HAVE_SPATIALITE
#ifdef SPATIALITE_AMALGAMATION
/*
/ using an AMALGAMATED version of SpatiaLite
/ a private internal copy of SQLite is included:
/ so we are required including the SpatiaLite's
/ own header
/
/ IMPORTANT NOTICE: using AMALAGATION is only
/ useful on Windows (to skip DLL hell related oddities)
*/
#include <spatialite/sqlite3.h>
#else
/*
/ You MUST NOT use AMALGAMATION on Linux or any
/ other "sane" operating system !!!!
*/
#include "sqlite3.h"
#endif
#else
#include "sqlite3.h"
#endif
#include <stdio.h>
#include <stdlib.h>
#undef NDEBUG
#include <assert.h>
#ifndef _MSC_VER
#include <unistd.h>
#endif
#if _MSC_VER
#define snprintf _snprintf
#endif
int main(int argc, char *argv[])
{
sqlite3 *db = NULL;
char *pszErrMsg = NULL;
char **papszResult = NULL;
int nRowCount = 0, nColCount = 0;
int rc;
char szBuffer[256];
if (argc < 2 || argc > 4)
{
fprintf(stderr, "Usage: test_load_virtual_ogr libgdal.so|gdalXX.dll "
"[datasource_name] [layer_name]\n");
exit(1);
}
sqlite3_open("tmp.db", &db);
if (db == NULL)
{
fprintf(stderr, "cannot open DB.\n");
exit(1);
}
rc = sqlite3_enable_load_extension(db, 1);
if (rc != SQLITE_OK)
{
fprintf(stderr, "sqlite3_enable_load_extension() failed\n");
sqlite3_close(db);
unlink("tmp.db");
exit(1);
}
rc = sqlite3_load_extension(db, argv[1], NULL, &pszErrMsg);
if (rc != SQLITE_OK)
{
fprintf(stderr, "sqlite3_load_extension(%s) failed: %s\n", argv[1],
pszErrMsg);
sqlite3_free(pszErrMsg);
sqlite3_close(db);
unlink("tmp.db");
exit(1);
}
rc = sqlite3_get_table(db, "SELECT ogr_version()", &papszResult, &nRowCount,
&nColCount, &pszErrMsg);
if (rc == SQLITE_OK && nRowCount == 1 && nColCount == 1)
{
printf("SELECT ogr_version() returned : %s\n", papszResult[1]);
}
else
{
fprintf(stderr, "SELECT ogr_version() failed: %s\n", pszErrMsg);
sqlite3_free(pszErrMsg);
sqlite3_close(db);
unlink("tmp.db");
exit(1);
}
sqlite3_free_table(papszResult);
if (argc >= 3)
{
if (argc == 3)
{
snprintf(szBuffer, sizeof(szBuffer),
"CREATE VIRTUAL TABLE foo USING VirtualOGR('%s')",
argv[2]);
}
else
{
snprintf(
szBuffer, sizeof(szBuffer),
"CREATE VIRTUAL TABLE foo USING VirtualOGR('%s', 0, '%s', 1)",
argv[2], argv[3]);
}
rc = sqlite3_exec(db, szBuffer, NULL, NULL, &pszErrMsg);
if (rc != SQLITE_OK)
{
fprintf(stderr, "%s failed: %s\n", szBuffer, pszErrMsg);
sqlite3_free(pszErrMsg);
sqlite3_close(db);
unlink("tmp.db");
exit(1);
}
else
{
if (argc == 3)
printf("Managed to open '%s'\n", argv[2]);
else
printf("Managed to open '%s':'%s'\n", argv[2], argv[3]);
assert(SQLITE_OK ==
sqlite3_exec(db,
"CREATE TABLE spy_table (spy_content VARCHAR)",
NULL, NULL, NULL));
assert(SQLITE_OK ==
sqlite3_exec(db, "CREATE TABLE regular_table (bar VARCHAR)",
NULL, NULL, NULL));
assert(
SQLITE_OK ==
sqlite3_exec(
db,
"CREATE TRIGGER spy_trigger INSERT ON regular_table BEGIN "
"INSERT OR REPLACE INTO spy_table (spy_content) "
"SELECT OGR_STYLE FROM foo; END;",
NULL, NULL, NULL));
sqlite3_close(db);
db = NULL;
sqlite3_open("tmp.db", &db);
if (db == NULL)
{
fprintf(stderr, "cannot reopen DB.\n");
unlink("tmp.db");
exit(1);
}
assert(SQLITE_OK == sqlite3_enable_load_extension(db, 1));
assert(SQLITE_OK ==
sqlite3_load_extension(db, argv[1], NULL, NULL));
pszErrMsg = NULL;
assert(SQLITE_OK !=
sqlite3_exec(
db, "INSERT INTO regular_table (bar) VALUES ('bar')",
NULL, NULL, &pszErrMsg));
fprintf(stderr, "Expected error. We got : %s\n", pszErrMsg);
sqlite3_free(pszErrMsg);
}
}
sqlite3_close(db);
unlink("tmp.db");
return 0;
}
|