blob: 6ba3631b41645edf4b052e0f82b219a4d003cadf [file] [log] [blame]
drh29c636b2006-01-09 23:40:25 +00001/*
2** 2006 January 09
3**
4** The author disclaims copyright to this source code. In place of
5** a legal notice, here is a blessing:
6**
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.
10**
11*************************************************************************
12** Code for testing the client/server version of the SQLite library.
13** Derived from test4.c.
drh29c636b2006-01-09 23:40:25 +000014*/
15#include "sqliteInt.h"
16#include "tcl.h"
drh29c636b2006-01-09 23:40:25 +000017
18/*
drhd677b3d2007-08-20 22:48:41 +000019** This test only works on UNIX with a SQLITE_THREADSAFE build that includes
drh29c636b2006-01-09 23:40:25 +000020** the SQLITE_SERVER option.
21*/
danielk197720e987a2007-10-05 15:04:12 +000022#if defined(SQLITE_SERVER) && !defined(SQLITE_OMIT_SHARED_CACHE) && \
shaneh3a2d29f2011-04-04 21:48:01 +000023 SQLITE_OS_UNIX && SQLITE_THREADSAFE
drh29c636b2006-01-09 23:40:25 +000024
25#include <stdlib.h>
26#include <string.h>
27#include <pthread.h>
28#include <sched.h>
29#include <ctype.h>
30
31/*
32** Interfaces defined in server.c
33*/
34int sqlite3_client_open(const char*, sqlite3**);
35int sqlite3_client_prepare(sqlite3*,const char*,int,
36 sqlite3_stmt**,const char**);
37int sqlite3_client_step(sqlite3_stmt*);
38int sqlite3_client_reset(sqlite3_stmt*);
39int sqlite3_client_finalize(sqlite3_stmt*);
40int sqlite3_client_close(sqlite3*);
41int sqlite3_server_start(void);
42int sqlite3_server_stop(void);
dancfe111b2013-10-15 15:35:27 +000043void sqlite3_server_start2(int *pnDecr);
drh29c636b2006-01-09 23:40:25 +000044
45/*
46** Each thread is controlled by an instance of the following
47** structure.
48*/
49typedef struct Thread Thread;
50struct Thread {
51 /* The first group of fields are writable by the supervisor thread
52 ** and read-only to the client threads
53 */
54 char *zFilename; /* Name of database file */
55 void (*xOp)(Thread*); /* next operation to do */
56 char *zArg; /* argument usable by xOp */
57 volatile int opnum; /* Operation number */
58 volatile int busy; /* True if this thread is in use */
59
60 /* The next group of fields are writable by the client threads
61 ** but read-only to the superviser thread.
62 */
63 volatile int completed; /* Number of operations completed */
64 sqlite3 *db; /* Open database */
65 sqlite3_stmt *pStmt; /* Pending operation */
66 char *zErr; /* operation error */
67 char *zStaticErr; /* Static error message */
68 int rc; /* operation return code */
69 int argc; /* number of columns in result */
70 const char *argv[100]; /* result columns */
71 const char *colv[100]; /* result column names */
dancfe111b2013-10-15 15:35:27 +000072
73 /* Initialized to 1 by the supervisor thread when the client is
74 ** created, and then deemed read-only to the supervisor thread.
75 ** Is set to 0 by the server thread belonging to this client
76 ** just before it exits.
77 */
78 int nServer; /* Number of server threads running */
drh29c636b2006-01-09 23:40:25 +000079};
80
81/*
82** There can be as many as 26 threads running at once. Each is named
83** by a capital letter: A, B, C, ..., Y, Z.
84*/
85#define N_THREAD 26
86static Thread threadset[N_THREAD];
87
88/*
89** The main loop for a thread. Threads use busy waiting.
90*/
91static void *client_main(void *pArg){
92 Thread *p = (Thread*)pArg;
93 if( p->db ){
94 sqlite3_client_close(p->db);
95 }
96 sqlite3_client_open(p->zFilename, &p->db);
97 if( SQLITE_OK!=sqlite3_errcode(p->db) ){
98 p->zErr = strdup(sqlite3_errmsg(p->db));
99 sqlite3_client_close(p->db);
100 p->db = 0;
101 }
102 p->pStmt = 0;
103 p->completed = 1;
104 while( p->opnum<=p->completed ) sched_yield();
105 while( p->xOp ){
106 if( p->zErr && p->zErr!=p->zStaticErr ){
107 sqlite3_free(p->zErr);
108 p->zErr = 0;
109 }
110 (*p->xOp)(p);
111 p->completed++;
112 while( p->opnum<=p->completed ) sched_yield();
113 }
114 if( p->pStmt ){
115 sqlite3_client_finalize(p->pStmt);
116 p->pStmt = 0;
117 }
118 if( p->db ){
119 sqlite3_client_close(p->db);
120 p->db = 0;
121 }
122 if( p->zErr && p->zErr!=p->zStaticErr ){
123 sqlite3_free(p->zErr);
124 p->zErr = 0;
125 }
126 p->completed++;
shaneeec556d2008-10-12 00:27:53 +0000127#ifndef SQLITE_OMIT_DEPRECATED
drhb4bc7052006-01-11 23:40:33 +0000128 sqlite3_thread_cleanup();
shaneeec556d2008-10-12 00:27:53 +0000129#endif
drh29c636b2006-01-09 23:40:25 +0000130 return 0;
131}
132
133/*
134** Get a thread ID which is an upper case letter. Return the index.
135** If the argument is not a valid thread ID put an error message in
136** the interpreter and return -1.
137*/
138static int parse_client_id(Tcl_Interp *interp, const char *zArg){
139 if( zArg==0 || zArg[0]==0 || zArg[1]!=0 || !isupper((unsigned char)zArg[0]) ){
140 Tcl_AppendResult(interp, "thread ID must be an upper case letter", 0);
141 return -1;
142 }
143 return zArg[0] - 'A';
144}
145
146/*
147** Usage: client_create NAME FILENAME
148**
149** NAME should be an upper case letter. Start the thread running with
150** an open connection to the given database.
151*/
152static int tcl_client_create(
153 void *NotUsed,
154 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
155 int argc, /* Number of arguments */
156 const char **argv /* Text of each argument */
157){
158 int i;
159 pthread_t x;
160 int rc;
161
162 if( argc!=3 ){
163 Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
164 " ID FILENAME", 0);
165 return TCL_ERROR;
166 }
167 i = parse_client_id(interp, argv[1]);
168 if( i<0 ) return TCL_ERROR;
169 if( threadset[i].busy ){
170 Tcl_AppendResult(interp, "thread ", argv[1], " is already running", 0);
171 return TCL_ERROR;
172 }
173 threadset[i].busy = 1;
drhcab5ed72007-08-22 11:41:18 +0000174 sqlite3_free(threadset[i].zFilename);
drhb9755982010-07-24 16:34:37 +0000175 threadset[i].zFilename = sqlite3_mprintf("%s", argv[2]);
drh29c636b2006-01-09 23:40:25 +0000176 threadset[i].opnum = 1;
177 threadset[i].completed = 0;
178 rc = pthread_create(&x, 0, client_main, &threadset[i]);
179 if( rc ){
180 Tcl_AppendResult(interp, "failed to create the thread", 0);
drhcab5ed72007-08-22 11:41:18 +0000181 sqlite3_free(threadset[i].zFilename);
drh29c636b2006-01-09 23:40:25 +0000182 threadset[i].busy = 0;
183 return TCL_ERROR;
184 }
185 pthread_detach(x);
dancfe111b2013-10-15 15:35:27 +0000186 if( threadset[i].nServer==0 ){
187 threadset[i].nServer = 1;
188 sqlite3_server_start2(&threadset[i].nServer);
189 }
drh29c636b2006-01-09 23:40:25 +0000190 return TCL_OK;
191}
192
193/*
194** Wait for a thread to reach its idle state.
195*/
196static void client_wait(Thread *p){
197 while( p->opnum>p->completed ) sched_yield();
198}
199
200/*
201** Usage: client_wait ID
202**
203** Wait on thread ID to reach its idle state.
204*/
205static int tcl_client_wait(
206 void *NotUsed,
207 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
208 int argc, /* Number of arguments */
209 const char **argv /* Text of each argument */
210){
211 int i;
212
213 if( argc!=2 ){
214 Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
215 " ID", 0);
216 return TCL_ERROR;
217 }
218 i = parse_client_id(interp, argv[1]);
219 if( i<0 ) return TCL_ERROR;
220 if( !threadset[i].busy ){
221 Tcl_AppendResult(interp, "no such thread", 0);
222 return TCL_ERROR;
223 }
224 client_wait(&threadset[i]);
225 return TCL_OK;
226}
227
228/*
229** Stop a thread.
230*/
231static void stop_thread(Thread *p){
232 client_wait(p);
233 p->xOp = 0;
234 p->opnum++;
235 client_wait(p);
drhcab5ed72007-08-22 11:41:18 +0000236 sqlite3_free(p->zArg);
drh29c636b2006-01-09 23:40:25 +0000237 p->zArg = 0;
drhcab5ed72007-08-22 11:41:18 +0000238 sqlite3_free(p->zFilename);
drh29c636b2006-01-09 23:40:25 +0000239 p->zFilename = 0;
240 p->busy = 0;
241}
242
243/*
244** Usage: client_halt ID
245**
246** Cause a client thread to shut itself down. Wait for the shutdown to be
247** completed. If ID is "*" then stop all client threads.
248*/
249static int tcl_client_halt(
250 void *NotUsed,
251 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
252 int argc, /* Number of arguments */
253 const char **argv /* Text of each argument */
254){
255 int i;
256
257 if( argc!=2 ){
258 Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
259 " ID", 0);
260 return TCL_ERROR;
261 }
262 if( argv[1][0]=='*' && argv[1][1]==0 ){
263 for(i=0; i<N_THREAD; i++){
264 if( threadset[i].busy ){
265 stop_thread(&threadset[i]);
266 }
267 }
268 }else{
269 i = parse_client_id(interp, argv[1]);
270 if( i<0 ) return TCL_ERROR;
271 if( !threadset[i].busy ){
272 Tcl_AppendResult(interp, "no such thread", 0);
273 return TCL_ERROR;
274 }
275 stop_thread(&threadset[i]);
276 }
277
278 /* If no client threads are still running, also stop the server */
279 for(i=0; i<N_THREAD && threadset[i].busy==0; i++){}
280 if( i>=N_THREAD ){
281 sqlite3_server_stop();
dancfe111b2013-10-15 15:35:27 +0000282 while( 1 ){
283 for(i=0; i<N_THREAD && threadset[i].nServer==0; i++);
284 if( i==N_THREAD ) break;
285 sched_yield();
286 }
drh29c636b2006-01-09 23:40:25 +0000287 }
288 return TCL_OK;
289}
290
291/*
292** Usage: client_argc ID
293**
294** Wait on the most recent client_step to complete, then return the
295** number of columns in the result set.
296*/
297static int tcl_client_argc(
298 void *NotUsed,
299 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
300 int argc, /* Number of arguments */
301 const char **argv /* Text of each argument */
302){
303 int i;
304 char zBuf[100];
305
306 if( argc!=2 ){
307 Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
308 " ID", 0);
309 return TCL_ERROR;
310 }
311 i = parse_client_id(interp, argv[1]);
312 if( i<0 ) return TCL_ERROR;
313 if( !threadset[i].busy ){
314 Tcl_AppendResult(interp, "no such thread", 0);
315 return TCL_ERROR;
316 }
317 client_wait(&threadset[i]);
drh65545b52015-01-19 00:35:53 +0000318 sqlite3_snprintf(sizeof(zBuf), zBuf, "%d", threadset[i].argc);
drh29c636b2006-01-09 23:40:25 +0000319 Tcl_AppendResult(interp, zBuf, 0);
320 return TCL_OK;
321}
322
323/*
324** Usage: client_argv ID N
325**
326** Wait on the most recent client_step to complete, then return the
327** value of the N-th columns in the result set.
328*/
329static int tcl_client_argv(
330 void *NotUsed,
331 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
332 int argc, /* Number of arguments */
333 const char **argv /* Text of each argument */
334){
335 int i;
336 int n;
337
338 if( argc!=3 ){
339 Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
340 " ID N", 0);
341 return TCL_ERROR;
342 }
343 i = parse_client_id(interp, argv[1]);
344 if( i<0 ) return TCL_ERROR;
345 if( !threadset[i].busy ){
346 Tcl_AppendResult(interp, "no such thread", 0);
347 return TCL_ERROR;
348 }
349 if( Tcl_GetInt(interp, argv[2], &n) ) return TCL_ERROR;
350 client_wait(&threadset[i]);
351 if( n<0 || n>=threadset[i].argc ){
352 Tcl_AppendResult(interp, "column number out of range", 0);
353 return TCL_ERROR;
354 }
355 Tcl_AppendResult(interp, threadset[i].argv[n], 0);
356 return TCL_OK;
357}
358
359/*
360** Usage: client_colname ID N
361**
362** Wait on the most recent client_step to complete, then return the
363** name of the N-th columns in the result set.
364*/
365static int tcl_client_colname(
366 void *NotUsed,
367 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
368 int argc, /* Number of arguments */
369 const char **argv /* Text of each argument */
370){
371 int i;
372 int n;
373
374 if( argc!=3 ){
375 Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
376 " ID N", 0);
377 return TCL_ERROR;
378 }
379 i = parse_client_id(interp, argv[1]);
380 if( i<0 ) return TCL_ERROR;
381 if( !threadset[i].busy ){
382 Tcl_AppendResult(interp, "no such thread", 0);
383 return TCL_ERROR;
384 }
385 if( Tcl_GetInt(interp, argv[2], &n) ) return TCL_ERROR;
386 client_wait(&threadset[i]);
387 if( n<0 || n>=threadset[i].argc ){
388 Tcl_AppendResult(interp, "column number out of range", 0);
389 return TCL_ERROR;
390 }
391 Tcl_AppendResult(interp, threadset[i].colv[n], 0);
392 return TCL_OK;
393}
394
mistachkine84d8d32013-04-29 03:09:10 +0000395extern const char *sqlite3ErrName(int);
drhd040e762013-04-10 23:48:37 +0000396
drh29c636b2006-01-09 23:40:25 +0000397/*
398** Usage: client_result ID
399**
400** Wait on the most recent operation to complete, then return the
401** result code from that operation.
402*/
403static int tcl_client_result(
404 void *NotUsed,
405 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
406 int argc, /* Number of arguments */
407 const char **argv /* Text of each argument */
408){
409 int i;
410 const char *zName;
411
412 if( argc!=2 ){
413 Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
414 " ID", 0);
415 return TCL_ERROR;
416 }
417 i = parse_client_id(interp, argv[1]);
418 if( i<0 ) return TCL_ERROR;
419 if( !threadset[i].busy ){
420 Tcl_AppendResult(interp, "no such thread", 0);
421 return TCL_ERROR;
422 }
423 client_wait(&threadset[i]);
mistachkine84d8d32013-04-29 03:09:10 +0000424 zName = sqlite3ErrName(threadset[i].rc);
drh29c636b2006-01-09 23:40:25 +0000425 Tcl_AppendResult(interp, zName, 0);
426 return TCL_OK;
427}
428
429/*
430** Usage: client_error ID
431**
432** Wait on the most recent operation to complete, then return the
433** error string.
434*/
435static int tcl_client_error(
436 void *NotUsed,
437 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
438 int argc, /* Number of arguments */
439 const char **argv /* Text of each argument */
440){
441 int i;
442
443 if( argc!=2 ){
444 Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
445 " ID", 0);
446 return TCL_ERROR;
447 }
448 i = parse_client_id(interp, argv[1]);
449 if( i<0 ) return TCL_ERROR;
450 if( !threadset[i].busy ){
451 Tcl_AppendResult(interp, "no such thread", 0);
452 return TCL_ERROR;
453 }
454 client_wait(&threadset[i]);
455 Tcl_AppendResult(interp, threadset[i].zErr, 0);
456 return TCL_OK;
457}
458
459/*
460** This procedure runs in the thread to compile an SQL statement.
461*/
462static void do_compile(Thread *p){
463 if( p->db==0 ){
464 p->zErr = p->zStaticErr = "no database is open";
465 p->rc = SQLITE_ERROR;
466 return;
467 }
468 if( p->pStmt ){
469 sqlite3_client_finalize(p->pStmt);
470 p->pStmt = 0;
471 }
472 p->rc = sqlite3_client_prepare(p->db, p->zArg, -1, &p->pStmt, 0);
473}
474
475/*
476** Usage: client_compile ID SQL
477**
478** Compile a new virtual machine.
479*/
480static int tcl_client_compile(
481 void *NotUsed,
482 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
483 int argc, /* Number of arguments */
484 const char **argv /* Text of each argument */
485){
486 int i;
487 if( argc!=3 ){
488 Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
489 " ID SQL", 0);
490 return TCL_ERROR;
491 }
492 i = parse_client_id(interp, argv[1]);
493 if( i<0 ) return TCL_ERROR;
494 if( !threadset[i].busy ){
495 Tcl_AppendResult(interp, "no such thread", 0);
496 return TCL_ERROR;
497 }
498 client_wait(&threadset[i]);
499 threadset[i].xOp = do_compile;
drhcab5ed72007-08-22 11:41:18 +0000500 sqlite3_free(threadset[i].zArg);
drhb9755982010-07-24 16:34:37 +0000501 threadset[i].zArg = sqlite3_mprintf("%s", argv[2]);
drh29c636b2006-01-09 23:40:25 +0000502 threadset[i].opnum++;
503 return TCL_OK;
504}
505
506/*
507** This procedure runs in the thread to step the virtual machine.
508*/
509static void do_step(Thread *p){
510 int i;
511 if( p->pStmt==0 ){
512 p->zErr = p->zStaticErr = "no virtual machine available";
513 p->rc = SQLITE_ERROR;
514 return;
515 }
516 p->rc = sqlite3_client_step(p->pStmt);
517 if( p->rc==SQLITE_ROW ){
518 p->argc = sqlite3_column_count(p->pStmt);
519 for(i=0; i<sqlite3_data_count(p->pStmt); i++){
drh24bd82c2006-01-20 17:56:32 +0000520 p->argv[i] = (char*)sqlite3_column_text(p->pStmt, i);
drh29c636b2006-01-09 23:40:25 +0000521 }
522 for(i=0; i<p->argc; i++){
523 p->colv[i] = sqlite3_column_name(p->pStmt, i);
524 }
525 }
526}
527
528/*
529** Usage: client_step ID
530**
531** Advance the virtual machine by one step
532*/
533static int tcl_client_step(
534 void *NotUsed,
535 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
536 int argc, /* Number of arguments */
537 const char **argv /* Text of each argument */
538){
539 int i;
540 if( argc!=2 ){
541 Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
542 " IDL", 0);
543 return TCL_ERROR;
544 }
545 i = parse_client_id(interp, argv[1]);
546 if( i<0 ) return TCL_ERROR;
547 if( !threadset[i].busy ){
548 Tcl_AppendResult(interp, "no such thread", 0);
549 return TCL_ERROR;
550 }
551 client_wait(&threadset[i]);
552 threadset[i].xOp = do_step;
553 threadset[i].opnum++;
554 return TCL_OK;
555}
556
557/*
558** This procedure runs in the thread to finalize a virtual machine.
559*/
560static void do_finalize(Thread *p){
561 if( p->pStmt==0 ){
562 p->zErr = p->zStaticErr = "no virtual machine available";
563 p->rc = SQLITE_ERROR;
564 return;
565 }
566 p->rc = sqlite3_client_finalize(p->pStmt);
567 p->pStmt = 0;
568}
569
570/*
571** Usage: client_finalize ID
572**
573** Finalize the virtual machine.
574*/
575static int tcl_client_finalize(
576 void *NotUsed,
577 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
578 int argc, /* Number of arguments */
579 const char **argv /* Text of each argument */
580){
581 int i;
582 if( argc!=2 ){
583 Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
584 " IDL", 0);
585 return TCL_ERROR;
586 }
587 i = parse_client_id(interp, argv[1]);
588 if( i<0 ) return TCL_ERROR;
589 if( !threadset[i].busy ){
590 Tcl_AppendResult(interp, "no such thread", 0);
591 return TCL_ERROR;
592 }
593 client_wait(&threadset[i]);
594 threadset[i].xOp = do_finalize;
drhcab5ed72007-08-22 11:41:18 +0000595 sqlite3_free(threadset[i].zArg);
drh29c636b2006-01-09 23:40:25 +0000596 threadset[i].zArg = 0;
597 threadset[i].opnum++;
598 return TCL_OK;
599}
600
601/*
602** This procedure runs in the thread to reset a virtual machine.
603*/
604static void do_reset(Thread *p){
605 if( p->pStmt==0 ){
606 p->zErr = p->zStaticErr = "no virtual machine available";
607 p->rc = SQLITE_ERROR;
608 return;
609 }
610 p->rc = sqlite3_client_reset(p->pStmt);
611 p->pStmt = 0;
612}
613
614/*
615** Usage: client_reset ID
616**
617** Finalize the virtual machine.
618*/
619static int tcl_client_reset(
620 void *NotUsed,
621 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
622 int argc, /* Number of arguments */
623 const char **argv /* Text of each argument */
624){
625 int i;
626 if( argc!=2 ){
627 Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
628 " IDL", 0);
629 return TCL_ERROR;
630 }
631 i = parse_client_id(interp, argv[1]);
632 if( i<0 ) return TCL_ERROR;
633 if( !threadset[i].busy ){
634 Tcl_AppendResult(interp, "no such thread", 0);
635 return TCL_ERROR;
636 }
637 client_wait(&threadset[i]);
638 threadset[i].xOp = do_reset;
drhcab5ed72007-08-22 11:41:18 +0000639 sqlite3_free(threadset[i].zArg);
drh29c636b2006-01-09 23:40:25 +0000640 threadset[i].zArg = 0;
641 threadset[i].opnum++;
642 return TCL_OK;
643}
644
645/*
646** Usage: client_swap ID ID
647**
648** Interchange the sqlite* pointer between two threads.
649*/
650static int tcl_client_swap(
651 void *NotUsed,
652 Tcl_Interp *interp, /* The TCL interpreter that invoked this command */
653 int argc, /* Number of arguments */
654 const char **argv /* Text of each argument */
655){
656 int i, j;
657 sqlite3 *temp;
658 if( argc!=3 ){
659 Tcl_AppendResult(interp, "wrong # args: should be \"", argv[0],
660 " ID1 ID2", 0);
661 return TCL_ERROR;
662 }
663 i = parse_client_id(interp, argv[1]);
664 if( i<0 ) return TCL_ERROR;
665 if( !threadset[i].busy ){
666 Tcl_AppendResult(interp, "no such thread", 0);
667 return TCL_ERROR;
668 }
669 client_wait(&threadset[i]);
670 j = parse_client_id(interp, argv[2]);
671 if( j<0 ) return TCL_ERROR;
672 if( !threadset[j].busy ){
673 Tcl_AppendResult(interp, "no such thread", 0);
674 return TCL_ERROR;
675 }
676 client_wait(&threadset[j]);
677 temp = threadset[i].db;
678 threadset[i].db = threadset[j].db;
679 threadset[j].db = temp;
680 return TCL_OK;
681}
682
683/*
684** Register commands with the TCL interpreter.
685*/
686int Sqlitetest7_Init(Tcl_Interp *interp){
687 static struct {
688 char *zName;
689 Tcl_CmdProc *xProc;
690 } aCmd[] = {
691 { "client_create", (Tcl_CmdProc*)tcl_client_create },
692 { "client_wait", (Tcl_CmdProc*)tcl_client_wait },
693 { "client_halt", (Tcl_CmdProc*)tcl_client_halt },
694 { "client_argc", (Tcl_CmdProc*)tcl_client_argc },
695 { "client_argv", (Tcl_CmdProc*)tcl_client_argv },
696 { "client_colname", (Tcl_CmdProc*)tcl_client_colname },
697 { "client_result", (Tcl_CmdProc*)tcl_client_result },
698 { "client_error", (Tcl_CmdProc*)tcl_client_error },
699 { "client_compile", (Tcl_CmdProc*)tcl_client_compile },
700 { "client_step", (Tcl_CmdProc*)tcl_client_step },
701 { "client_reset", (Tcl_CmdProc*)tcl_client_reset },
702 { "client_finalize", (Tcl_CmdProc*)tcl_client_finalize },
703 { "client_swap", (Tcl_CmdProc*)tcl_client_swap },
704 };
705 int i;
706
707 for(i=0; i<sizeof(aCmd)/sizeof(aCmd[0]); i++){
708 Tcl_CreateCommand(interp, aCmd[i].zName, aCmd[i].xProc, 0, 0);
709 }
710 return TCL_OK;
711}
712#else
713int Sqlitetest7_Init(Tcl_Interp *interp){ return TCL_OK; }
danielk197729bafea2008-06-26 10:41:19 +0000714#endif /* SQLITE_OS_UNIX */