X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fsrc%2Flookups%2Fsqlite.c;h=c0fc891fbd4624381bb1a6e38a3293c514bd0c2d;hb=3634fc257bd0667daef14d72005cd87c735bbb24;hp=654c5c64d2ae02ed8b1251439f6b1b38aac807ca;hpb=0a49a7a4f1090b6f1ce1d0f9d969804c9226b53e;p=exim.git diff --git a/src/src/lookups/sqlite.c b/src/src/lookups/sqlite.c index 654c5c64d..c0fc891fb 100644 --- a/src/src/lookups/sqlite.c +++ b/src/src/lookups/sqlite.c @@ -1,5 +1,3 @@ -/* $Cambridge: exim/src/src/lookups/sqlite.c,v 1.5 2009/11/16 19:50:38 nm4 Exp $ */ - /************************************************* * Exim - an Internet mail transport agent * *************************************************/ @@ -9,11 +7,7 @@ #include "../exim.h" #include "lf_functions.h" -#include "sqlite.h" -#ifndef LOOKUP_SQLITE -static void dummy(int x) { dummy(x-1); } -#else #include @@ -23,7 +17,7 @@ static void dummy(int x) { dummy(x-1); } /* See local README for interface description. */ -void * +static void * sqlite_open(uschar *filename, uschar **errmsg) { sqlite3 *db = NULL; @@ -85,7 +79,7 @@ return 0; } -int +static int sqlite_find(void *handle, uschar *filename, uschar *query, int length, uschar **result, uschar **errmsg, BOOL *do_cache) { @@ -113,7 +107,7 @@ return OK; /* See local README for interface description. */ -void sqlite_close(void *handle) +static void sqlite_close(void *handle) { sqlite3_close(handle); } @@ -134,7 +128,7 @@ Arguments: Returns: the processed string or NULL for a bad option */ -uschar * +static uschar * sqlite_quote(uschar *s, uschar *opt) { register int c; @@ -159,6 +153,44 @@ while ((c = *s++) != 0) return quoted; } -#endif /* LOOKUP_SQLITE */ + + +/************************************************* +* Version reporting entry point * +*************************************************/ + +/* See local README for interface description. */ + +#include "../version.h" + +void +sqlite_version_report(FILE *f) +{ +fprintf(f, "Library version: SQLite: Compile: %s\n" + " Runtime: %s\n", + SQLITE_VERSION, sqlite3_libversion()); +#ifdef DYNLOOKUP +fprintf(f, " Exim version %s\n", EXIM_VERSION_STR); +#endif +} + +static lookup_info _lookup_info = { + US"sqlite", /* lookup name */ + lookup_absfilequery, /* query-style lookup, starts with file name */ + sqlite_open, /* open function */ + NULL, /* no check function */ + sqlite_find, /* find function */ + sqlite_close, /* close function */ + NULL, /* no tidy function */ + sqlite_quote, /* quoting function */ + sqlite_version_report /* version reporting */ +}; + +#ifdef DYNLOOKUP +#define sqlite_lookup_module_info _lookup_module_info +#endif + +static lookup_info *_lookup_list[] = { &_lookup_info }; +lookup_module_info sqlite_lookup_module_info = { LOOKUP_MODULE_INFO_MAGIC, _lookup_list, 1 }; /* End of lookups/sqlite.c */