sl@0: /* sl@0: ** 2008 March 19 sl@0: ** sl@0: ** The author disclaims copyright to this source code. In place of sl@0: ** a legal notice, here is a blessing: sl@0: ** sl@0: ** May you do good and not evil. sl@0: ** May you find forgiveness for yourself and forgive others. sl@0: ** May you share freely, never taking more than you give. sl@0: ** sl@0: ************************************************************************* sl@0: ** Code for testing all sorts of SQLite interfaces. This code sl@0: ** implements new SQL functions used by the test scripts. sl@0: ** sl@0: ** $Id: test_func.c,v 1.13 2008/08/28 02:26:07 drh Exp $ sl@0: */ sl@0: #include "sqlite3.h" sl@0: #include "tcl.h" sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: sl@0: /* sl@0: ** Allocate nByte bytes of space using sqlite3_malloc(). If the sl@0: ** allocation fails, call sqlite3_result_error_nomem() to notify sl@0: ** the database handle that malloc() has failed. sl@0: */ sl@0: static void *testContextMalloc(sqlite3_context *context, int nByte){ sl@0: char *z = sqlite3_malloc(nByte); sl@0: if( !z && nByte>0 ){ sl@0: sqlite3_result_error_nomem(context); sl@0: } sl@0: return z; sl@0: } sl@0: sl@0: /* sl@0: ** This function generates a string of random characters. Used for sl@0: ** generating test data. sl@0: */ sl@0: static void randStr(sqlite3_context *context, int argc, sqlite3_value **argv){ sl@0: static const unsigned char zSrc[] = sl@0: "abcdefghijklmnopqrstuvwxyz" sl@0: "ABCDEFGHIJKLMNOPQRSTUVWXYZ" sl@0: "0123456789" sl@0: ".-!,:*^+=_|?/<> "; sl@0: int iMin, iMax, n, r, i; sl@0: unsigned char zBuf[1000]; sl@0: sl@0: /* It used to be possible to call randstr() with any number of arguments, sl@0: ** but now it is registered with SQLite as requiring exactly 2. sl@0: */ sl@0: assert(argc==2); sl@0: sl@0: iMin = sqlite3_value_int(argv[0]); sl@0: if( iMin<0 ) iMin = 0; sl@0: if( iMin>=sizeof(zBuf) ) iMin = sizeof(zBuf)-1; sl@0: iMax = sqlite3_value_int(argv[1]); sl@0: if( iMax=sizeof(zBuf) ) iMax = sizeof(zBuf)-1; sl@0: n = iMin; sl@0: if( iMax>iMin ){ sl@0: sqlite3_randomness(sizeof(r), &r); sl@0: r &= 0x7fffffff; sl@0: n += r%(iMax + 1 - iMin); sl@0: } sl@0: assert( n