Update contrib.
4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give.
11 *************************************************************************
12 ** Test extension for testing the sqlite3_load_extension() function.
14 ** $Id: test_loadext.c,v 1.3 2008/08/02 03:50:39 drh Exp $
17 #include "sqlite3ext.h"
18 SQLITE_EXTENSION_INIT1
21 ** The half() SQL function returns half of its input value.
24 sqlite3_context *context,
28 sqlite3_result_double(context, 0.5*sqlite3_value_double(argv[0]));
32 ** SQL functions to call the sqlite3_status function and return results.
34 static void statusFunc(
35 sqlite3_context *context,
39 int op, mx, cur, resetFlag, rc;
40 if( sqlite3_value_type(argv[0])==SQLITE_INTEGER ){
41 op = sqlite3_value_int(argv[0]);
42 }else if( sqlite3_value_type(argv[0])==SQLITE_TEXT ){
49 { "MEMORY_USED", SQLITE_STATUS_MEMORY_USED },
50 { "PAGECACHE_USED", SQLITE_STATUS_PAGECACHE_USED },
51 { "PAGECACHE_OVERFLOW", SQLITE_STATUS_PAGECACHE_OVERFLOW },
52 { "SCRATCH_USED", SQLITE_STATUS_SCRATCH_USED },
53 { "SCRATCH_OVERFLOW", SQLITE_STATUS_SCRATCH_OVERFLOW },
54 { "MALLOC_SIZE", SQLITE_STATUS_MALLOC_SIZE },
56 int nOp = sizeof(aOp)/sizeof(aOp[0]);
57 zName = (const char*)sqlite3_value_text(argv[0]);
59 if( strcmp(aOp[i].zName, zName)==0 ){
65 char *zMsg = sqlite3_mprintf("unknown status property: %s", zName);
66 sqlite3_result_error(context, zMsg, -1);
71 sqlite3_result_error(context, "unknown status type", -1);
75 resetFlag = sqlite3_value_int(argv[1]);
79 rc = sqlite3_status(op, &cur, &mx, resetFlag);
81 char *zMsg = sqlite3_mprintf("sqlite3_status(%d,...) returns %d", op, rc);
82 sqlite3_result_error(context, zMsg, -1);
87 sqlite3_result_int(context, mx);
89 sqlite3_result_int(context, cur);
94 ** Extension load function.
99 const sqlite3_api_routines *pApi
102 SQLITE_EXTENSION_INIT2(pApi);
103 nErr |= sqlite3_create_function(db, "half", 1, SQLITE_ANY, 0, halfFunc, 0, 0);
104 nErr |= sqlite3_create_function(db, "sqlite3_status", 1, SQLITE_ANY, 0,
106 nErr |= sqlite3_create_function(db, "sqlite3_status", 2, SQLITE_ANY, 0,
108 return nErr ? SQLITE_ERROR : SQLITE_OK;
112 ** Another extension entry point. This one always fails.
114 int testbrokenext_init(
117 const sqlite3_api_routines *pApi
120 SQLITE_EXTENSION_INIT2(pApi);
121 zErr = sqlite3_mprintf("broken!");