os/persistentdata/persistentstorage/sqlite3api/SQLite/shell.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
** 2001 September 15
sl@0
     3
**
sl@0
     4
** The author disclaims copyright to this source code.  In place of
sl@0
     5
** a legal notice, here is a blessing:
sl@0
     6
**
sl@0
     7
**    May you do good and not evil.
sl@0
     8
**    May you find forgiveness for yourself and forgive others.
sl@0
     9
**    May you share freely, never taking more than you give.
sl@0
    10
**
sl@0
    11
*************************************************************************
sl@0
    12
** This file contains code to implement the "sqlite" command line
sl@0
    13
** utility for accessing SQLite databases.
sl@0
    14
**
sl@0
    15
** $Id: shell.c,v 1.185 2008/08/11 19:12:35 drh Exp $
sl@0
    16
*/
sl@0
    17
#include <stdlib.h>
sl@0
    18
#include <string.h>
sl@0
    19
#include <stdio.h>
sl@0
    20
#include <assert.h>
sl@0
    21
#include "sqlite3.h"
sl@0
    22
#include <ctype.h>
sl@0
    23
#include <stdarg.h>
sl@0
    24
sl@0
    25
#if !defined(_WIN32) && !defined(WIN32) && !defined(__OS2__)
sl@0
    26
# include <signal.h>
sl@0
    27
# include <pwd.h>
sl@0
    28
# include <unistd.h>
sl@0
    29
# include <sys/types.h>
sl@0
    30
#endif
sl@0
    31
sl@0
    32
#ifdef __OS2__
sl@0
    33
# include <unistd.h>
sl@0
    34
#endif
sl@0
    35
sl@0
    36
#if defined(HAVE_READLINE) && HAVE_READLINE==1
sl@0
    37
# include <readline/readline.h>
sl@0
    38
# include <readline/history.h>
sl@0
    39
#else
sl@0
    40
# define readline(p) local_getline(p,stdin)
sl@0
    41
# define add_history(X)
sl@0
    42
# define read_history(X)
sl@0
    43
# define write_history(X)
sl@0
    44
# define stifle_history(X)
sl@0
    45
#endif
sl@0
    46
sl@0
    47
#if defined(_WIN32) || defined(WIN32)
sl@0
    48
# include <io.h>
sl@0
    49
#else
sl@0
    50
/* Make sure isatty() has a prototype.
sl@0
    51
*/
sl@0
    52
extern int isatty();
sl@0
    53
#endif
sl@0
    54
sl@0
    55
#if defined(_WIN32_WCE)
sl@0
    56
/* Windows CE (arm-wince-mingw32ce-gcc) does not provide isatty()
sl@0
    57
 * thus we always assume that we have a console. That can be
sl@0
    58
 * overridden with the -batch command line option.
sl@0
    59
 */
sl@0
    60
#define isatty(x) 1
sl@0
    61
#endif
sl@0
    62
sl@0
    63
#if !defined(_WIN32) && !defined(WIN32) && !defined(__OS2__)
sl@0
    64
#include <sys/time.h>
sl@0
    65
#include <sys/resource.h>
sl@0
    66
sl@0
    67
/* Saved resource information for the beginning of an operation */
sl@0
    68
static struct rusage sBegin;
sl@0
    69
sl@0
    70
/* True if the timer is enabled */
sl@0
    71
static int enableTimer = 0;
sl@0
    72
sl@0
    73
/*
sl@0
    74
** Begin timing an operation
sl@0
    75
*/
sl@0
    76
static void beginTimer(void){
sl@0
    77
  if( enableTimer ){
sl@0
    78
    getrusage(RUSAGE_SELF, &sBegin);
sl@0
    79
  }
sl@0
    80
}
sl@0
    81
sl@0
    82
/* Return the difference of two time_structs in seconds */
sl@0
    83
static double timeDiff(struct timeval *pStart, struct timeval *pEnd){
sl@0
    84
  return (pEnd->tv_usec - pStart->tv_usec)*0.000001 + 
sl@0
    85
         (double)(pEnd->tv_sec - pStart->tv_sec);
sl@0
    86
}
sl@0
    87
sl@0
    88
/*
sl@0
    89
** Print the timing results.
sl@0
    90
*/
sl@0
    91
static void endTimer(void){
sl@0
    92
  if( enableTimer ){
sl@0
    93
    struct rusage sEnd;
sl@0
    94
    getrusage(RUSAGE_SELF, &sEnd);
sl@0
    95
    printf("CPU Time: user %f sys %f\n",
sl@0
    96
       timeDiff(&sBegin.ru_utime, &sEnd.ru_utime),
sl@0
    97
       timeDiff(&sBegin.ru_stime, &sEnd.ru_stime));
sl@0
    98
  }
sl@0
    99
}
sl@0
   100
#define BEGIN_TIMER beginTimer()
sl@0
   101
#define END_TIMER endTimer()
sl@0
   102
#define HAS_TIMER 1
sl@0
   103
#else
sl@0
   104
#define BEGIN_TIMER 
sl@0
   105
#define END_TIMER
sl@0
   106
#define HAS_TIMER 0
sl@0
   107
#endif
sl@0
   108
sl@0
   109
sl@0
   110
/*
sl@0
   111
** If the following flag is set, then command execution stops
sl@0
   112
** at an error if we are not interactive.
sl@0
   113
*/
sl@0
   114
static int bail_on_error = 0;
sl@0
   115
sl@0
   116
/*
sl@0
   117
** Threat stdin as an interactive input if the following variable
sl@0
   118
** is true.  Otherwise, assume stdin is connected to a file or pipe.
sl@0
   119
*/
sl@0
   120
static int stdin_is_interactive = 1;
sl@0
   121
sl@0
   122
/*
sl@0
   123
** The following is the open SQLite database.  We make a pointer
sl@0
   124
** to this database a static variable so that it can be accessed
sl@0
   125
** by the SIGINT handler to interrupt database processing.
sl@0
   126
*/
sl@0
   127
static sqlite3 *db = 0;
sl@0
   128
sl@0
   129
/*
sl@0
   130
** True if an interrupt (Control-C) has been received.
sl@0
   131
*/
sl@0
   132
static volatile int seenInterrupt = 0;
sl@0
   133
sl@0
   134
/*
sl@0
   135
** This is the name of our program. It is set in main(), used
sl@0
   136
** in a number of other places, mostly for error messages.
sl@0
   137
*/
sl@0
   138
static char *Argv0;
sl@0
   139
sl@0
   140
/*
sl@0
   141
** Prompt strings. Initialized in main. Settable with
sl@0
   142
**   .prompt main continue
sl@0
   143
*/
sl@0
   144
static char mainPrompt[20];     /* First line prompt. default: "sqlite> "*/
sl@0
   145
static char continuePrompt[20]; /* Continuation prompt. default: "   ...> " */
sl@0
   146
sl@0
   147
/*
sl@0
   148
** Write I/O traces to the following stream.
sl@0
   149
*/
sl@0
   150
#ifdef SQLITE_ENABLE_IOTRACE
sl@0
   151
static FILE *iotrace = 0;
sl@0
   152
#endif
sl@0
   153
sl@0
   154
/*
sl@0
   155
** This routine works like printf in that its first argument is a
sl@0
   156
** format string and subsequent arguments are values to be substituted
sl@0
   157
** in place of % fields.  The result of formatting this string
sl@0
   158
** is written to iotrace.
sl@0
   159
*/
sl@0
   160
#ifdef SQLITE_ENABLE_IOTRACE
sl@0
   161
static void iotracePrintf(const char *zFormat, ...){
sl@0
   162
  va_list ap;
sl@0
   163
  char *z;
sl@0
   164
  if( iotrace==0 ) return;
sl@0
   165
  va_start(ap, zFormat);
sl@0
   166
  z = sqlite3_vmprintf(zFormat, ap);
sl@0
   167
  va_end(ap);
sl@0
   168
  fprintf(iotrace, "%s", z);
sl@0
   169
  sqlite3_free(z);
sl@0
   170
}
sl@0
   171
#endif
sl@0
   172
sl@0
   173
sl@0
   174
/*
sl@0
   175
** Determines if a string is a number of not.
sl@0
   176
*/
sl@0
   177
static int isNumber(const char *z, int *realnum){
sl@0
   178
  if( *z=='-' || *z=='+' ) z++;
sl@0
   179
  if( !isdigit(*z) ){
sl@0
   180
    return 0;
sl@0
   181
  }
sl@0
   182
  z++;
sl@0
   183
  if( realnum ) *realnum = 0;
sl@0
   184
  while( isdigit(*z) ){ z++; }
sl@0
   185
  if( *z=='.' ){
sl@0
   186
    z++;
sl@0
   187
    if( !isdigit(*z) ) return 0;
sl@0
   188
    while( isdigit(*z) ){ z++; }
sl@0
   189
    if( realnum ) *realnum = 1;
sl@0
   190
  }
sl@0
   191
  if( *z=='e' || *z=='E' ){
sl@0
   192
    z++;
sl@0
   193
    if( *z=='+' || *z=='-' ) z++;
sl@0
   194
    if( !isdigit(*z) ) return 0;
sl@0
   195
    while( isdigit(*z) ){ z++; }
sl@0
   196
    if( realnum ) *realnum = 1;
sl@0
   197
  }
sl@0
   198
  return *z==0;
sl@0
   199
}
sl@0
   200
sl@0
   201
/*
sl@0
   202
** A global char* and an SQL function to access its current value 
sl@0
   203
** from within an SQL statement. This program used to use the 
sl@0
   204
** sqlite_exec_printf() API to substitue a string into an SQL statement.
sl@0
   205
** The correct way to do this with sqlite3 is to use the bind API, but
sl@0
   206
** since the shell is built around the callback paradigm it would be a lot
sl@0
   207
** of work. Instead just use this hack, which is quite harmless.
sl@0
   208
*/
sl@0
   209
static const char *zShellStatic = 0;
sl@0
   210
static void shellstaticFunc(
sl@0
   211
  sqlite3_context *context,
sl@0
   212
  int argc,
sl@0
   213
  sqlite3_value **argv
sl@0
   214
){
sl@0
   215
  assert( 0==argc );
sl@0
   216
  assert( zShellStatic );
sl@0
   217
  sqlite3_result_text(context, zShellStatic, -1, SQLITE_STATIC);
sl@0
   218
}
sl@0
   219
sl@0
   220
sl@0
   221
/*
sl@0
   222
** This routine reads a line of text from FILE in, stores
sl@0
   223
** the text in memory obtained from malloc() and returns a pointer
sl@0
   224
** to the text.  NULL is returned at end of file, or if malloc()
sl@0
   225
** fails.
sl@0
   226
**
sl@0
   227
** The interface is like "readline" but no command-line editing
sl@0
   228
** is done.
sl@0
   229
*/
sl@0
   230
static char *local_getline(char *zPrompt, FILE *in){
sl@0
   231
  char *zLine;
sl@0
   232
  int nLine;
sl@0
   233
  int n;
sl@0
   234
  int eol;
sl@0
   235
sl@0
   236
  if( zPrompt && *zPrompt ){
sl@0
   237
    printf("%s",zPrompt);
sl@0
   238
    fflush(stdout);
sl@0
   239
  }
sl@0
   240
  nLine = 100;
sl@0
   241
  zLine = malloc( nLine );
sl@0
   242
  if( zLine==0 ) return 0;
sl@0
   243
  n = 0;
sl@0
   244
  eol = 0;
sl@0
   245
  while( !eol ){
sl@0
   246
    if( n+100>nLine ){
sl@0
   247
      nLine = nLine*2 + 100;
sl@0
   248
      zLine = realloc(zLine, nLine);
sl@0
   249
      if( zLine==0 ) return 0;
sl@0
   250
    }
sl@0
   251
    if( fgets(&zLine[n], nLine - n, in)==0 ){
sl@0
   252
      if( n==0 ){
sl@0
   253
        free(zLine);
sl@0
   254
        return 0;
sl@0
   255
      }
sl@0
   256
      zLine[n] = 0;
sl@0
   257
      eol = 1;
sl@0
   258
      break;
sl@0
   259
    }
sl@0
   260
    while( zLine[n] ){ n++; }
sl@0
   261
    if( n>0 && zLine[n-1]=='\n' ){
sl@0
   262
      n--;
sl@0
   263
      zLine[n] = 0;
sl@0
   264
      eol = 1;
sl@0
   265
    }
sl@0
   266
  }
sl@0
   267
  zLine = realloc( zLine, n+1 );
sl@0
   268
  return zLine;
sl@0
   269
}
sl@0
   270
sl@0
   271
/*
sl@0
   272
** Retrieve a single line of input text.
sl@0
   273
**
sl@0
   274
** zPrior is a string of prior text retrieved.  If not the empty
sl@0
   275
** string, then issue a continuation prompt.
sl@0
   276
*/
sl@0
   277
static char *one_input_line(const char *zPrior, FILE *in){
sl@0
   278
  char *zPrompt;
sl@0
   279
  char *zResult;
sl@0
   280
  if( in!=0 ){
sl@0
   281
    return local_getline(0, in);
sl@0
   282
  }
sl@0
   283
  if( zPrior && zPrior[0] ){
sl@0
   284
    zPrompt = continuePrompt;
sl@0
   285
  }else{
sl@0
   286
    zPrompt = mainPrompt;
sl@0
   287
  }
sl@0
   288
  zResult = readline(zPrompt);
sl@0
   289
#if defined(HAVE_READLINE) && HAVE_READLINE==1
sl@0
   290
  if( zResult && *zResult ) add_history(zResult);
sl@0
   291
#endif
sl@0
   292
  return zResult;
sl@0
   293
}
sl@0
   294
sl@0
   295
struct previous_mode_data {
sl@0
   296
  int valid;        /* Is there legit data in here? */
sl@0
   297
  int mode;
sl@0
   298
  int showHeader;
sl@0
   299
  int colWidth[100];
sl@0
   300
};
sl@0
   301
sl@0
   302
/*
sl@0
   303
** An pointer to an instance of this structure is passed from
sl@0
   304
** the main program to the callback.  This is used to communicate
sl@0
   305
** state and mode information.
sl@0
   306
*/
sl@0
   307
struct callback_data {
sl@0
   308
  sqlite3 *db;            /* The database */
sl@0
   309
  int echoOn;            /* True to echo input commands */
sl@0
   310
  int cnt;               /* Number of records displayed so far */
sl@0
   311
  FILE *out;             /* Write results here */
sl@0
   312
  int mode;              /* An output mode setting */
sl@0
   313
  int writableSchema;    /* True if PRAGMA writable_schema=ON */
sl@0
   314
  int showHeader;        /* True to show column names in List or Column mode */
sl@0
   315
  char *zDestTable;      /* Name of destination table when MODE_Insert */
sl@0
   316
  char separator[20];    /* Separator character for MODE_List */
sl@0
   317
  int colWidth[100];     /* Requested width of each column when in column mode*/
sl@0
   318
  int actualWidth[100];  /* Actual width of each column */
sl@0
   319
  char nullvalue[20];    /* The text to print when a NULL comes back from
sl@0
   320
                         ** the database */
sl@0
   321
  struct previous_mode_data explainPrev;
sl@0
   322
                         /* Holds the mode information just before
sl@0
   323
                         ** .explain ON */
sl@0
   324
  char outfile[FILENAME_MAX]; /* Filename for *out */
sl@0
   325
  const char *zDbFilename;    /* name of the database file */
sl@0
   326
};
sl@0
   327
sl@0
   328
/*
sl@0
   329
** These are the allowed modes.
sl@0
   330
*/
sl@0
   331
#define MODE_Line     0  /* One column per line.  Blank line between records */
sl@0
   332
#define MODE_Column   1  /* One record per line in neat columns */
sl@0
   333
#define MODE_List     2  /* One record per line with a separator */
sl@0
   334
#define MODE_Semi     3  /* Same as MODE_List but append ";" to each line */
sl@0
   335
#define MODE_Html     4  /* Generate an XHTML table */
sl@0
   336
#define MODE_Insert   5  /* Generate SQL "insert" statements */
sl@0
   337
#define MODE_Tcl      6  /* Generate ANSI-C or TCL quoted elements */
sl@0
   338
#define MODE_Csv      7  /* Quote strings, numbers are plain */
sl@0
   339
#define MODE_Explain  8  /* Like MODE_Column, but do not truncate data */
sl@0
   340
sl@0
   341
static const char *modeDescr[] = {
sl@0
   342
  "line",
sl@0
   343
  "column",
sl@0
   344
  "list",
sl@0
   345
  "semi",
sl@0
   346
  "html",
sl@0
   347
  "insert",
sl@0
   348
  "tcl",
sl@0
   349
  "csv",
sl@0
   350
  "explain",
sl@0
   351
};
sl@0
   352
sl@0
   353
/*
sl@0
   354
** Number of elements in an array
sl@0
   355
*/
sl@0
   356
#define ArraySize(X)  (sizeof(X)/sizeof(X[0]))
sl@0
   357
sl@0
   358
/*
sl@0
   359
** Output the given string as a quoted string using SQL quoting conventions.
sl@0
   360
*/
sl@0
   361
static void output_quoted_string(FILE *out, const char *z){
sl@0
   362
  int i;
sl@0
   363
  int nSingle = 0;
sl@0
   364
  for(i=0; z[i]; i++){
sl@0
   365
    if( z[i]=='\'' ) nSingle++;
sl@0
   366
  }
sl@0
   367
  if( nSingle==0 ){
sl@0
   368
    fprintf(out,"'%s'",z);
sl@0
   369
  }else{
sl@0
   370
    fprintf(out,"'");
sl@0
   371
    while( *z ){
sl@0
   372
      for(i=0; z[i] && z[i]!='\''; i++){}
sl@0
   373
      if( i==0 ){
sl@0
   374
        fprintf(out,"''");
sl@0
   375
        z++;
sl@0
   376
      }else if( z[i]=='\'' ){
sl@0
   377
        fprintf(out,"%.*s''",i,z);
sl@0
   378
        z += i+1;
sl@0
   379
      }else{
sl@0
   380
        fprintf(out,"%s",z);
sl@0
   381
        break;
sl@0
   382
      }
sl@0
   383
    }
sl@0
   384
    fprintf(out,"'");
sl@0
   385
  }
sl@0
   386
}
sl@0
   387
sl@0
   388
/*
sl@0
   389
** Output the given string as a quoted according to C or TCL quoting rules.
sl@0
   390
*/
sl@0
   391
static void output_c_string(FILE *out, const char *z){
sl@0
   392
  unsigned int c;
sl@0
   393
  fputc('"', out);
sl@0
   394
  while( (c = *(z++))!=0 ){
sl@0
   395
    if( c=='\\' ){
sl@0
   396
      fputc(c, out);
sl@0
   397
      fputc(c, out);
sl@0
   398
    }else if( c=='\t' ){
sl@0
   399
      fputc('\\', out);
sl@0
   400
      fputc('t', out);
sl@0
   401
    }else if( c=='\n' ){
sl@0
   402
      fputc('\\', out);
sl@0
   403
      fputc('n', out);
sl@0
   404
    }else if( c=='\r' ){
sl@0
   405
      fputc('\\', out);
sl@0
   406
      fputc('r', out);
sl@0
   407
    }else if( !isprint(c) ){
sl@0
   408
      fprintf(out, "\\%03o", c&0xff);
sl@0
   409
    }else{
sl@0
   410
      fputc(c, out);
sl@0
   411
    }
sl@0
   412
  }
sl@0
   413
  fputc('"', out);
sl@0
   414
}
sl@0
   415
sl@0
   416
/*
sl@0
   417
** Output the given string with characters that are special to
sl@0
   418
** HTML escaped.
sl@0
   419
*/
sl@0
   420
static void output_html_string(FILE *out, const char *z){
sl@0
   421
  int i;
sl@0
   422
  while( *z ){
sl@0
   423
    for(i=0; z[i] && z[i]!='<' && z[i]!='&'; i++){}
sl@0
   424
    if( i>0 ){
sl@0
   425
      fprintf(out,"%.*s",i,z);
sl@0
   426
    }
sl@0
   427
    if( z[i]=='<' ){
sl@0
   428
      fprintf(out,"&lt;");
sl@0
   429
    }else if( z[i]=='&' ){
sl@0
   430
      fprintf(out,"&amp;");
sl@0
   431
    }else{
sl@0
   432
      break;
sl@0
   433
    }
sl@0
   434
    z += i + 1;
sl@0
   435
  }
sl@0
   436
}
sl@0
   437
sl@0
   438
/*
sl@0
   439
** If a field contains any character identified by a 1 in the following
sl@0
   440
** array, then the string must be quoted for CSV.
sl@0
   441
*/
sl@0
   442
static const char needCsvQuote[] = {
sl@0
   443
  1, 1, 1, 1, 1, 1, 1, 1,   1, 1, 1, 1, 1, 1, 1, 1,   
sl@0
   444
  1, 1, 1, 1, 1, 1, 1, 1,   1, 1, 1, 1, 1, 1, 1, 1,   
sl@0
   445
  1, 0, 1, 0, 0, 0, 0, 1,   0, 0, 0, 0, 0, 0, 0, 0, 
sl@0
   446
  0, 0, 0, 0, 0, 0, 0, 0,   0, 0, 0, 0, 0, 0, 0, 0, 
sl@0
   447
  0, 0, 0, 0, 0, 0, 0, 0,   0, 0, 0, 0, 0, 0, 0, 0, 
sl@0
   448
  0, 0, 0, 0, 0, 0, 0, 0,   0, 0, 0, 0, 0, 0, 0, 0, 
sl@0
   449
  0, 0, 0, 0, 0, 0, 0, 0,   0, 0, 0, 0, 0, 0, 0, 0, 
sl@0
   450
  0, 0, 0, 0, 0, 0, 0, 0,   0, 0, 0, 0, 0, 0, 0, 1, 
sl@0
   451
  1, 1, 1, 1, 1, 1, 1, 1,   1, 1, 1, 1, 1, 1, 1, 1,   
sl@0
   452
  1, 1, 1, 1, 1, 1, 1, 1,   1, 1, 1, 1, 1, 1, 1, 1,   
sl@0
   453
  1, 1, 1, 1, 1, 1, 1, 1,   1, 1, 1, 1, 1, 1, 1, 1,   
sl@0
   454
  1, 1, 1, 1, 1, 1, 1, 1,   1, 1, 1, 1, 1, 1, 1, 1,   
sl@0
   455
  1, 1, 1, 1, 1, 1, 1, 1,   1, 1, 1, 1, 1, 1, 1, 1,   
sl@0
   456
  1, 1, 1, 1, 1, 1, 1, 1,   1, 1, 1, 1, 1, 1, 1, 1,   
sl@0
   457
  1, 1, 1, 1, 1, 1, 1, 1,   1, 1, 1, 1, 1, 1, 1, 1,   
sl@0
   458
  1, 1, 1, 1, 1, 1, 1, 1,   1, 1, 1, 1, 1, 1, 1, 1,   
sl@0
   459
};
sl@0
   460
sl@0
   461
/*
sl@0
   462
** Output a single term of CSV.  Actually, p->separator is used for
sl@0
   463
** the separator, which may or may not be a comma.  p->nullvalue is
sl@0
   464
** the null value.  Strings are quoted using ANSI-C rules.  Numbers
sl@0
   465
** appear outside of quotes.
sl@0
   466
*/
sl@0
   467
static void output_csv(struct callback_data *p, const char *z, int bSep){
sl@0
   468
  FILE *out = p->out;
sl@0
   469
  if( z==0 ){
sl@0
   470
    fprintf(out,"%s",p->nullvalue);
sl@0
   471
  }else{
sl@0
   472
    int i;
sl@0
   473
    int nSep = strlen(p->separator);
sl@0
   474
    for(i=0; z[i]; i++){
sl@0
   475
      if( needCsvQuote[((unsigned char*)z)[i]] 
sl@0
   476
         || (z[i]==p->separator[0] && 
sl@0
   477
             (nSep==1 || memcmp(z, p->separator, nSep)==0)) ){
sl@0
   478
        i = 0;
sl@0
   479
        break;
sl@0
   480
      }
sl@0
   481
    }
sl@0
   482
    if( i==0 ){
sl@0
   483
      putc('"', out);
sl@0
   484
      for(i=0; z[i]; i++){
sl@0
   485
        if( z[i]=='"' ) putc('"', out);
sl@0
   486
        putc(z[i], out);
sl@0
   487
      }
sl@0
   488
      putc('"', out);
sl@0
   489
    }else{
sl@0
   490
      fprintf(out, "%s", z);
sl@0
   491
    }
sl@0
   492
  }
sl@0
   493
  if( bSep ){
sl@0
   494
    fprintf(p->out, "%s", p->separator);
sl@0
   495
  }
sl@0
   496
}
sl@0
   497
sl@0
   498
#ifdef SIGINT
sl@0
   499
/*
sl@0
   500
** This routine runs when the user presses Ctrl-C
sl@0
   501
*/
sl@0
   502
static void interrupt_handler(int NotUsed){
sl@0
   503
  seenInterrupt = 1;
sl@0
   504
  if( db ) sqlite3_interrupt(db);
sl@0
   505
}
sl@0
   506
#endif
sl@0
   507
sl@0
   508
/*
sl@0
   509
** This is the callback routine that the SQLite library
sl@0
   510
** invokes for each row of a query result.
sl@0
   511
*/
sl@0
   512
static int callback(void *pArg, int nArg, char **azArg, char **azCol){
sl@0
   513
  int i;
sl@0
   514
  struct callback_data *p = (struct callback_data*)pArg;
sl@0
   515
  switch( p->mode ){
sl@0
   516
    case MODE_Line: {
sl@0
   517
      int w = 5;
sl@0
   518
      if( azArg==0 ) break;
sl@0
   519
      for(i=0; i<nArg; i++){
sl@0
   520
        int len = strlen(azCol[i] ? azCol[i] : "");
sl@0
   521
        if( len>w ) w = len;
sl@0
   522
      }
sl@0
   523
      if( p->cnt++>0 ) fprintf(p->out,"\n");
sl@0
   524
      for(i=0; i<nArg; i++){
sl@0
   525
        fprintf(p->out,"%*s = %s\n", w, azCol[i],
sl@0
   526
                azArg[i] ? azArg[i] : p->nullvalue);
sl@0
   527
      }
sl@0
   528
      break;
sl@0
   529
    }
sl@0
   530
    case MODE_Explain:
sl@0
   531
    case MODE_Column: {
sl@0
   532
      if( p->cnt++==0 ){
sl@0
   533
        for(i=0; i<nArg; i++){
sl@0
   534
          int w, n;
sl@0
   535
          if( i<ArraySize(p->colWidth) ){
sl@0
   536
            w = p->colWidth[i];
sl@0
   537
          }else{
sl@0
   538
            w = 0;
sl@0
   539
          }
sl@0
   540
          if( w<=0 ){
sl@0
   541
            w = strlen(azCol[i] ? azCol[i] : "");
sl@0
   542
            if( w<10 ) w = 10;
sl@0
   543
            n = strlen(azArg && azArg[i] ? azArg[i] : p->nullvalue);
sl@0
   544
            if( w<n ) w = n;
sl@0
   545
          }
sl@0
   546
          if( i<ArraySize(p->actualWidth) ){
sl@0
   547
            p->actualWidth[i] = w;
sl@0
   548
          }
sl@0
   549
          if( p->showHeader ){
sl@0
   550
            fprintf(p->out,"%-*.*s%s",w,w,azCol[i], i==nArg-1 ? "\n": "  ");
sl@0
   551
          }
sl@0
   552
        }
sl@0
   553
        if( p->showHeader ){
sl@0
   554
          for(i=0; i<nArg; i++){
sl@0
   555
            int w;
sl@0
   556
            if( i<ArraySize(p->actualWidth) ){
sl@0
   557
               w = p->actualWidth[i];
sl@0
   558
            }else{
sl@0
   559
               w = 10;
sl@0
   560
            }
sl@0
   561
            fprintf(p->out,"%-*.*s%s",w,w,"-----------------------------------"
sl@0
   562
                   "----------------------------------------------------------",
sl@0
   563
                    i==nArg-1 ? "\n": "  ");
sl@0
   564
          }
sl@0
   565
        }
sl@0
   566
      }
sl@0
   567
      if( azArg==0 ) break;
sl@0
   568
      for(i=0; i<nArg; i++){
sl@0
   569
        int w;
sl@0
   570
        if( i<ArraySize(p->actualWidth) ){
sl@0
   571
           w = p->actualWidth[i];
sl@0
   572
        }else{
sl@0
   573
           w = 10;
sl@0
   574
        }
sl@0
   575
        if( p->mode==MODE_Explain && azArg[i] && strlen(azArg[i])>w ){
sl@0
   576
          w = strlen(azArg[i]);
sl@0
   577
        }
sl@0
   578
        fprintf(p->out,"%-*.*s%s",w,w,
sl@0
   579
            azArg[i] ? azArg[i] : p->nullvalue, i==nArg-1 ? "\n": "  ");
sl@0
   580
      }
sl@0
   581
      break;
sl@0
   582
    }
sl@0
   583
    case MODE_Semi:
sl@0
   584
    case MODE_List: {
sl@0
   585
      if( p->cnt++==0 && p->showHeader ){
sl@0
   586
        for(i=0; i<nArg; i++){
sl@0
   587
          fprintf(p->out,"%s%s",azCol[i], i==nArg-1 ? "\n" : p->separator);
sl@0
   588
        }
sl@0
   589
      }
sl@0
   590
      if( azArg==0 ) break;
sl@0
   591
      for(i=0; i<nArg; i++){
sl@0
   592
        char *z = azArg[i];
sl@0
   593
        if( z==0 ) z = p->nullvalue;
sl@0
   594
        fprintf(p->out, "%s", z);
sl@0
   595
        if( i<nArg-1 ){
sl@0
   596
          fprintf(p->out, "%s", p->separator);
sl@0
   597
        }else if( p->mode==MODE_Semi ){
sl@0
   598
          fprintf(p->out, ";\n");
sl@0
   599
        }else{
sl@0
   600
          fprintf(p->out, "\n");
sl@0
   601
        }
sl@0
   602
      }
sl@0
   603
      break;
sl@0
   604
    }
sl@0
   605
    case MODE_Html: {
sl@0
   606
      if( p->cnt++==0 && p->showHeader ){
sl@0
   607
        fprintf(p->out,"<TR>");
sl@0
   608
        for(i=0; i<nArg; i++){
sl@0
   609
          fprintf(p->out,"<TH>%s</TH>",azCol[i]);
sl@0
   610
        }
sl@0
   611
        fprintf(p->out,"</TR>\n");
sl@0
   612
      }
sl@0
   613
      if( azArg==0 ) break;
sl@0
   614
      fprintf(p->out,"<TR>");
sl@0
   615
      for(i=0; i<nArg; i++){
sl@0
   616
        fprintf(p->out,"<TD>");
sl@0
   617
        output_html_string(p->out, azArg[i] ? azArg[i] : p->nullvalue);
sl@0
   618
        fprintf(p->out,"</TD>\n");
sl@0
   619
      }
sl@0
   620
      fprintf(p->out,"</TR>\n");
sl@0
   621
      break;
sl@0
   622
    }
sl@0
   623
    case MODE_Tcl: {
sl@0
   624
      if( p->cnt++==0 && p->showHeader ){
sl@0
   625
        for(i=0; i<nArg; i++){
sl@0
   626
          output_c_string(p->out,azCol[i] ? azCol[i] : "");
sl@0
   627
          fprintf(p->out, "%s", p->separator);
sl@0
   628
        }
sl@0
   629
        fprintf(p->out,"\n");
sl@0
   630
      }
sl@0
   631
      if( azArg==0 ) break;
sl@0
   632
      for(i=0; i<nArg; i++){
sl@0
   633
        output_c_string(p->out, azArg[i] ? azArg[i] : p->nullvalue);
sl@0
   634
        fprintf(p->out, "%s", p->separator);
sl@0
   635
      }
sl@0
   636
      fprintf(p->out,"\n");
sl@0
   637
      break;
sl@0
   638
    }
sl@0
   639
    case MODE_Csv: {
sl@0
   640
      if( p->cnt++==0 && p->showHeader ){
sl@0
   641
        for(i=0; i<nArg; i++){
sl@0
   642
          output_csv(p, azCol[i] ? azCol[i] : "", i<nArg-1);
sl@0
   643
        }
sl@0
   644
        fprintf(p->out,"\n");
sl@0
   645
      }
sl@0
   646
      if( azArg==0 ) break;
sl@0
   647
      for(i=0; i<nArg; i++){
sl@0
   648
        output_csv(p, azArg[i], i<nArg-1);
sl@0
   649
      }
sl@0
   650
      fprintf(p->out,"\n");
sl@0
   651
      break;
sl@0
   652
    }
sl@0
   653
    case MODE_Insert: {
sl@0
   654
      if( azArg==0 ) break;
sl@0
   655
      fprintf(p->out,"INSERT INTO %s VALUES(",p->zDestTable);
sl@0
   656
      for(i=0; i<nArg; i++){
sl@0
   657
        char *zSep = i>0 ? ",": "";
sl@0
   658
        if( azArg[i]==0 ){
sl@0
   659
          fprintf(p->out,"%sNULL",zSep);
sl@0
   660
        }else if( isNumber(azArg[i], 0) ){
sl@0
   661
          fprintf(p->out,"%s%s",zSep, azArg[i]);
sl@0
   662
        }else{
sl@0
   663
          if( zSep[0] ) fprintf(p->out,"%s",zSep);
sl@0
   664
          output_quoted_string(p->out, azArg[i]);
sl@0
   665
        }
sl@0
   666
      }
sl@0
   667
      fprintf(p->out,");\n");
sl@0
   668
      break;
sl@0
   669
    }
sl@0
   670
  }
sl@0
   671
  return 0;
sl@0
   672
}
sl@0
   673
sl@0
   674
/*
sl@0
   675
** Set the destination table field of the callback_data structure to
sl@0
   676
** the name of the table given.  Escape any quote characters in the
sl@0
   677
** table name.
sl@0
   678
*/
sl@0
   679
static void set_table_name(struct callback_data *p, const char *zName){
sl@0
   680
  int i, n;
sl@0
   681
  int needQuote;
sl@0
   682
  char *z;
sl@0
   683
sl@0
   684
  if( p->zDestTable ){
sl@0
   685
    free(p->zDestTable);
sl@0
   686
    p->zDestTable = 0;
sl@0
   687
  }
sl@0
   688
  if( zName==0 ) return;
sl@0
   689
  needQuote = !isalpha((unsigned char)*zName) && *zName!='_';
sl@0
   690
  for(i=n=0; zName[i]; i++, n++){
sl@0
   691
    if( !isalnum((unsigned char)zName[i]) && zName[i]!='_' ){
sl@0
   692
      needQuote = 1;
sl@0
   693
      if( zName[i]=='\'' ) n++;
sl@0
   694
    }
sl@0
   695
  }
sl@0
   696
  if( needQuote ) n += 2;
sl@0
   697
  z = p->zDestTable = malloc( n+1 );
sl@0
   698
  if( z==0 ){
sl@0
   699
    fprintf(stderr,"Out of memory!\n");
sl@0
   700
    exit(1);
sl@0
   701
  }
sl@0
   702
  n = 0;
sl@0
   703
  if( needQuote ) z[n++] = '\'';
sl@0
   704
  for(i=0; zName[i]; i++){
sl@0
   705
    z[n++] = zName[i];
sl@0
   706
    if( zName[i]=='\'' ) z[n++] = '\'';
sl@0
   707
  }
sl@0
   708
  if( needQuote ) z[n++] = '\'';
sl@0
   709
  z[n] = 0;
sl@0
   710
}
sl@0
   711
sl@0
   712
/* zIn is either a pointer to a NULL-terminated string in memory obtained
sl@0
   713
** from malloc(), or a NULL pointer. The string pointed to by zAppend is
sl@0
   714
** added to zIn, and the result returned in memory obtained from malloc().
sl@0
   715
** zIn, if it was not NULL, is freed.
sl@0
   716
**
sl@0
   717
** If the third argument, quote, is not '\0', then it is used as a 
sl@0
   718
** quote character for zAppend.
sl@0
   719
*/
sl@0
   720
static char *appendText(char *zIn, char const *zAppend, char quote){
sl@0
   721
  int len;
sl@0
   722
  int i;
sl@0
   723
  int nAppend = strlen(zAppend);
sl@0
   724
  int nIn = (zIn?strlen(zIn):0);
sl@0
   725
sl@0
   726
  len = nAppend+nIn+1;
sl@0
   727
  if( quote ){
sl@0
   728
    len += 2;
sl@0
   729
    for(i=0; i<nAppend; i++){
sl@0
   730
      if( zAppend[i]==quote ) len++;
sl@0
   731
    }
sl@0
   732
  }
sl@0
   733
sl@0
   734
  zIn = (char *)realloc(zIn, len);
sl@0
   735
  if( !zIn ){
sl@0
   736
    return 0;
sl@0
   737
  }
sl@0
   738
sl@0
   739
  if( quote ){
sl@0
   740
    char *zCsr = &zIn[nIn];
sl@0
   741
    *zCsr++ = quote;
sl@0
   742
    for(i=0; i<nAppend; i++){
sl@0
   743
      *zCsr++ = zAppend[i];
sl@0
   744
      if( zAppend[i]==quote ) *zCsr++ = quote;
sl@0
   745
    }
sl@0
   746
    *zCsr++ = quote;
sl@0
   747
    *zCsr++ = '\0';
sl@0
   748
    assert( (zCsr-zIn)==len );
sl@0
   749
  }else{
sl@0
   750
    memcpy(&zIn[nIn], zAppend, nAppend);
sl@0
   751
    zIn[len-1] = '\0';
sl@0
   752
  }
sl@0
   753
sl@0
   754
  return zIn;
sl@0
   755
}
sl@0
   756
sl@0
   757
sl@0
   758
/*
sl@0
   759
** Execute a query statement that has a single result column.  Print
sl@0
   760
** that result column on a line by itself with a semicolon terminator.
sl@0
   761
**
sl@0
   762
** This is used, for example, to show the schema of the database by
sl@0
   763
** querying the SQLITE_MASTER table.
sl@0
   764
*/
sl@0
   765
static int run_table_dump_query(FILE *out, sqlite3 *db, const char *zSelect){
sl@0
   766
  sqlite3_stmt *pSelect;
sl@0
   767
  int rc;
sl@0
   768
  rc = sqlite3_prepare(db, zSelect, -1, &pSelect, 0);
sl@0
   769
  if( rc!=SQLITE_OK || !pSelect ){
sl@0
   770
    return rc;
sl@0
   771
  }
sl@0
   772
  rc = sqlite3_step(pSelect);
sl@0
   773
  while( rc==SQLITE_ROW ){
sl@0
   774
    fprintf(out, "%s;\n", sqlite3_column_text(pSelect, 0));
sl@0
   775
    rc = sqlite3_step(pSelect);
sl@0
   776
  }
sl@0
   777
  return sqlite3_finalize(pSelect);
sl@0
   778
}
sl@0
   779
sl@0
   780
sl@0
   781
/*
sl@0
   782
** This is a different callback routine used for dumping the database.
sl@0
   783
** Each row received by this callback consists of a table name,
sl@0
   784
** the table type ("index" or "table") and SQL to create the table.
sl@0
   785
** This routine should print text sufficient to recreate the table.
sl@0
   786
*/
sl@0
   787
static int dump_callback(void *pArg, int nArg, char **azArg, char **azCol){
sl@0
   788
  int rc;
sl@0
   789
  const char *zTable;
sl@0
   790
  const char *zType;
sl@0
   791
  const char *zSql;
sl@0
   792
  struct callback_data *p = (struct callback_data *)pArg;
sl@0
   793
sl@0
   794
  if( nArg!=3 ) return 1;
sl@0
   795
  zTable = azArg[0];
sl@0
   796
  zType = azArg[1];
sl@0
   797
  zSql = azArg[2];
sl@0
   798
  
sl@0
   799
  if( strcmp(zTable, "sqlite_sequence")==0 ){
sl@0
   800
    fprintf(p->out, "DELETE FROM sqlite_sequence;\n");
sl@0
   801
  }else if( strcmp(zTable, "sqlite_stat1")==0 ){
sl@0
   802
    fprintf(p->out, "ANALYZE sqlite_master;\n");
sl@0
   803
  }else if( strncmp(zTable, "sqlite_", 7)==0 ){
sl@0
   804
    return 0;
sl@0
   805
  }else if( strncmp(zSql, "CREATE VIRTUAL TABLE", 20)==0 ){
sl@0
   806
    char *zIns;
sl@0
   807
    if( !p->writableSchema ){
sl@0
   808
      fprintf(p->out, "PRAGMA writable_schema=ON;\n");
sl@0
   809
      p->writableSchema = 1;
sl@0
   810
    }
sl@0
   811
    zIns = sqlite3_mprintf(
sl@0
   812
       "INSERT INTO sqlite_master(type,name,tbl_name,rootpage,sql)"
sl@0
   813
       "VALUES('table','%q','%q',0,'%q');",
sl@0
   814
       zTable, zTable, zSql);
sl@0
   815
    fprintf(p->out, "%s\n", zIns);
sl@0
   816
    sqlite3_free(zIns);
sl@0
   817
    return 0;
sl@0
   818
  }else{
sl@0
   819
    fprintf(p->out, "%s;\n", zSql);
sl@0
   820
  }
sl@0
   821
sl@0
   822
  if( strcmp(zType, "table")==0 ){
sl@0
   823
    sqlite3_stmt *pTableInfo = 0;
sl@0
   824
    char *zSelect = 0;
sl@0
   825
    char *zTableInfo = 0;
sl@0
   826
    char *zTmp = 0;
sl@0
   827
   
sl@0
   828
    zTableInfo = appendText(zTableInfo, "PRAGMA table_info(", 0);
sl@0
   829
    zTableInfo = appendText(zTableInfo, zTable, '"');
sl@0
   830
    zTableInfo = appendText(zTableInfo, ");", 0);
sl@0
   831
sl@0
   832
    rc = sqlite3_prepare(p->db, zTableInfo, -1, &pTableInfo, 0);
sl@0
   833
    if( zTableInfo ) free(zTableInfo);
sl@0
   834
    if( rc!=SQLITE_OK || !pTableInfo ){
sl@0
   835
      return 1;
sl@0
   836
    }
sl@0
   837
sl@0
   838
    zSelect = appendText(zSelect, "SELECT 'INSERT INTO ' || ", 0);
sl@0
   839
    zTmp = appendText(zTmp, zTable, '"');
sl@0
   840
    if( zTmp ){
sl@0
   841
      zSelect = appendText(zSelect, zTmp, '\'');
sl@0
   842
    }
sl@0
   843
    zSelect = appendText(zSelect, " || ' VALUES(' || ", 0);
sl@0
   844
    rc = sqlite3_step(pTableInfo);
sl@0
   845
    while( rc==SQLITE_ROW ){
sl@0
   846
      const char *zText = (const char *)sqlite3_column_text(pTableInfo, 1);
sl@0
   847
      zSelect = appendText(zSelect, "quote(", 0);
sl@0
   848
      zSelect = appendText(zSelect, zText, '"');
sl@0
   849
      rc = sqlite3_step(pTableInfo);
sl@0
   850
      if( rc==SQLITE_ROW ){
sl@0
   851
        zSelect = appendText(zSelect, ") || ',' || ", 0);
sl@0
   852
      }else{
sl@0
   853
        zSelect = appendText(zSelect, ") ", 0);
sl@0
   854
      }
sl@0
   855
    }
sl@0
   856
    rc = sqlite3_finalize(pTableInfo);
sl@0
   857
    if( rc!=SQLITE_OK ){
sl@0
   858
      if( zSelect ) free(zSelect);
sl@0
   859
      return 1;
sl@0
   860
    }
sl@0
   861
    zSelect = appendText(zSelect, "|| ')' FROM  ", 0);
sl@0
   862
    zSelect = appendText(zSelect, zTable, '"');
sl@0
   863
sl@0
   864
    rc = run_table_dump_query(p->out, p->db, zSelect);
sl@0
   865
    if( rc==SQLITE_CORRUPT ){
sl@0
   866
      zSelect = appendText(zSelect, " ORDER BY rowid DESC", 0);
sl@0
   867
      rc = run_table_dump_query(p->out, p->db, zSelect);
sl@0
   868
    }
sl@0
   869
    if( zSelect ) free(zSelect);
sl@0
   870
  }
sl@0
   871
  return 0;
sl@0
   872
}
sl@0
   873
sl@0
   874
/*
sl@0
   875
** Run zQuery.  Use dump_callback() as the callback routine so that
sl@0
   876
** the contents of the query are output as SQL statements.
sl@0
   877
**
sl@0
   878
** If we get a SQLITE_CORRUPT error, rerun the query after appending
sl@0
   879
** "ORDER BY rowid DESC" to the end.
sl@0
   880
*/
sl@0
   881
static int run_schema_dump_query(
sl@0
   882
  struct callback_data *p, 
sl@0
   883
  const char *zQuery,
sl@0
   884
  char **pzErrMsg
sl@0
   885
){
sl@0
   886
  int rc;
sl@0
   887
  rc = sqlite3_exec(p->db, zQuery, dump_callback, p, pzErrMsg);
sl@0
   888
  if( rc==SQLITE_CORRUPT ){
sl@0
   889
    char *zQ2;
sl@0
   890
    int len = strlen(zQuery);
sl@0
   891
    if( pzErrMsg ) sqlite3_free(*pzErrMsg);
sl@0
   892
    zQ2 = malloc( len+100 );
sl@0
   893
    if( zQ2==0 ) return rc;
sl@0
   894
    sqlite3_snprintf(sizeof(zQ2), zQ2, "%s ORDER BY rowid DESC", zQuery);
sl@0
   895
    rc = sqlite3_exec(p->db, zQ2, dump_callback, p, pzErrMsg);
sl@0
   896
    free(zQ2);
sl@0
   897
  }
sl@0
   898
  return rc;
sl@0
   899
}
sl@0
   900
sl@0
   901
/*
sl@0
   902
** Text of a help message
sl@0
   903
*/
sl@0
   904
static char zHelp[] =
sl@0
   905
  ".bail ON|OFF           Stop after hitting an error.  Default OFF\n"
sl@0
   906
  ".databases             List names and files of attached databases\n"
sl@0
   907
  ".dump ?TABLE? ...      Dump the database in an SQL text format\n"
sl@0
   908
  ".echo ON|OFF           Turn command echo on or off\n"
sl@0
   909
  ".exit                  Exit this program\n"
sl@0
   910
  ".explain ON|OFF        Turn output mode suitable for EXPLAIN on or off.\n"
sl@0
   911
  ".header(s) ON|OFF      Turn display of headers on or off\n"
sl@0
   912
  ".help                  Show this message\n"
sl@0
   913
  ".import FILE TABLE     Import data from FILE into TABLE\n"
sl@0
   914
  ".indices TABLE         Show names of all indices on TABLE\n"
sl@0
   915
#ifdef SQLITE_ENABLE_IOTRACE
sl@0
   916
  ".iotrace FILE          Enable I/O diagnostic logging to FILE\n"
sl@0
   917
#endif
sl@0
   918
#ifndef SQLITE_OMIT_LOAD_EXTENSION
sl@0
   919
  ".load FILE ?ENTRY?     Load an extension library\n"
sl@0
   920
#endif
sl@0
   921
  ".mode MODE ?TABLE?     Set output mode where MODE is one of:\n"
sl@0
   922
  "                         csv      Comma-separated values\n"
sl@0
   923
  "                         column   Left-aligned columns.  (See .width)\n"
sl@0
   924
  "                         html     HTML <table> code\n"
sl@0
   925
  "                         insert   SQL insert statements for TABLE\n"
sl@0
   926
  "                         line     One value per line\n"
sl@0
   927
  "                         list     Values delimited by .separator string\n"
sl@0
   928
  "                         tabs     Tab-separated values\n"
sl@0
   929
  "                         tcl      TCL list elements\n"
sl@0
   930
  ".nullvalue STRING      Print STRING in place of NULL values\n"
sl@0
   931
  ".output FILENAME       Send output to FILENAME\n"
sl@0
   932
  ".output stdout         Send output to the screen\n"
sl@0
   933
  ".prompt MAIN CONTINUE  Replace the standard prompts\n"
sl@0
   934
  ".quit                  Exit this program\n"
sl@0
   935
  ".read FILENAME         Execute SQL in FILENAME\n"
sl@0
   936
  ".schema ?TABLE?        Show the CREATE statements\n"
sl@0
   937
  ".separator STRING      Change separator used by output mode and .import\n"
sl@0
   938
  ".show                  Show the current values for various settings\n"
sl@0
   939
  ".tables ?PATTERN?      List names of tables matching a LIKE pattern\n"
sl@0
   940
  ".timeout MS            Try opening locked tables for MS milliseconds\n"
sl@0
   941
#if HAS_TIMER
sl@0
   942
  ".timer ON|OFF          Turn the CPU timer measurement on or off\n"
sl@0
   943
#endif
sl@0
   944
  ".width NUM NUM ...     Set column widths for \"column\" mode\n"
sl@0
   945
;
sl@0
   946
sl@0
   947
/* Forward reference */
sl@0
   948
static int process_input(struct callback_data *p, FILE *in);
sl@0
   949
sl@0
   950
/*
sl@0
   951
** Make sure the database is open.  If it is not, then open it.  If
sl@0
   952
** the database fails to open, print an error message and exit.
sl@0
   953
*/
sl@0
   954
static void open_db(struct callback_data *p){
sl@0
   955
  if( p->db==0 ){
sl@0
   956
    sqlite3_open(p->zDbFilename, &p->db);
sl@0
   957
    db = p->db;
sl@0
   958
    if( db && sqlite3_errcode(db)==SQLITE_OK ){
sl@0
   959
      sqlite3_create_function(db, "shellstatic", 0, SQLITE_UTF8, 0,
sl@0
   960
          shellstaticFunc, 0, 0);
sl@0
   961
    }
sl@0
   962
    if( db==0 || SQLITE_OK!=sqlite3_errcode(db) ){
sl@0
   963
      fprintf(stderr,"Unable to open database \"%s\": %s\n", 
sl@0
   964
          p->zDbFilename, sqlite3_errmsg(db));
sl@0
   965
      exit(1);
sl@0
   966
    }
sl@0
   967
#ifndef SQLITE_OMIT_LOAD_EXTENSION
sl@0
   968
    sqlite3_enable_load_extension(p->db, 1);
sl@0
   969
#endif
sl@0
   970
  }
sl@0
   971
}
sl@0
   972
sl@0
   973
/*
sl@0
   974
** Do C-language style dequoting.
sl@0
   975
**
sl@0
   976
**    \t    -> tab
sl@0
   977
**    \n    -> newline
sl@0
   978
**    \r    -> carriage return
sl@0
   979
**    \NNN  -> ascii character NNN in octal
sl@0
   980
**    \\    -> backslash
sl@0
   981
*/
sl@0
   982
static void resolve_backslashes(char *z){
sl@0
   983
  int i, j, c;
sl@0
   984
  for(i=j=0; (c = z[i])!=0; i++, j++){
sl@0
   985
    if( c=='\\' ){
sl@0
   986
      c = z[++i];
sl@0
   987
      if( c=='n' ){
sl@0
   988
        c = '\n';
sl@0
   989
      }else if( c=='t' ){
sl@0
   990
        c = '\t';
sl@0
   991
      }else if( c=='r' ){
sl@0
   992
        c = '\r';
sl@0
   993
      }else if( c>='0' && c<='7' ){
sl@0
   994
        c -= '0';
sl@0
   995
        if( z[i+1]>='0' && z[i+1]<='7' ){
sl@0
   996
          i++;
sl@0
   997
          c = (c<<3) + z[i] - '0';
sl@0
   998
          if( z[i+1]>='0' && z[i+1]<='7' ){
sl@0
   999
            i++;
sl@0
  1000
            c = (c<<3) + z[i] - '0';
sl@0
  1001
          }
sl@0
  1002
        }
sl@0
  1003
      }
sl@0
  1004
    }
sl@0
  1005
    z[j] = c;
sl@0
  1006
  }
sl@0
  1007
  z[j] = 0;
sl@0
  1008
}
sl@0
  1009
sl@0
  1010
/*
sl@0
  1011
** Interpret zArg as a boolean value.  Return either 0 or 1.
sl@0
  1012
*/
sl@0
  1013
static int booleanValue(char *zArg){
sl@0
  1014
  int val = atoi(zArg);
sl@0
  1015
  int j;
sl@0
  1016
  for(j=0; zArg[j]; j++){
sl@0
  1017
    zArg[j] = tolower(zArg[j]);
sl@0
  1018
  }
sl@0
  1019
  if( strcmp(zArg,"on")==0 ){
sl@0
  1020
    val = 1;
sl@0
  1021
  }else if( strcmp(zArg,"yes")==0 ){
sl@0
  1022
    val = 1;
sl@0
  1023
  }
sl@0
  1024
  return val;
sl@0
  1025
}
sl@0
  1026
sl@0
  1027
/*
sl@0
  1028
** If an input line begins with "." then invoke this routine to
sl@0
  1029
** process that line.
sl@0
  1030
**
sl@0
  1031
** Return 1 on error, 2 to exit, and 0 otherwise.
sl@0
  1032
*/
sl@0
  1033
static int do_meta_command(char *zLine, struct callback_data *p){
sl@0
  1034
  int i = 1;
sl@0
  1035
  int nArg = 0;
sl@0
  1036
  int n, c;
sl@0
  1037
  int rc = 0;
sl@0
  1038
  char *azArg[50];
sl@0
  1039
sl@0
  1040
  /* Parse the input line into tokens.
sl@0
  1041
  */
sl@0
  1042
  while( zLine[i] && nArg<ArraySize(azArg) ){
sl@0
  1043
    while( isspace((unsigned char)zLine[i]) ){ i++; }
sl@0
  1044
    if( zLine[i]==0 ) break;
sl@0
  1045
    if( zLine[i]=='\'' || zLine[i]=='"' ){
sl@0
  1046
      int delim = zLine[i++];
sl@0
  1047
      azArg[nArg++] = &zLine[i];
sl@0
  1048
      while( zLine[i] && zLine[i]!=delim ){ i++; }
sl@0
  1049
      if( zLine[i]==delim ){
sl@0
  1050
        zLine[i++] = 0;
sl@0
  1051
      }
sl@0
  1052
      if( delim=='"' ) resolve_backslashes(azArg[nArg-1]);
sl@0
  1053
    }else{
sl@0
  1054
      azArg[nArg++] = &zLine[i];
sl@0
  1055
      while( zLine[i] && !isspace((unsigned char)zLine[i]) ){ i++; }
sl@0
  1056
      if( zLine[i] ) zLine[i++] = 0;
sl@0
  1057
      resolve_backslashes(azArg[nArg-1]);
sl@0
  1058
    }
sl@0
  1059
  }
sl@0
  1060
sl@0
  1061
  /* Process the input line.
sl@0
  1062
  */
sl@0
  1063
  if( nArg==0 ) return rc;
sl@0
  1064
  n = strlen(azArg[0]);
sl@0
  1065
  c = azArg[0][0];
sl@0
  1066
  if( c=='b' && n>1 && strncmp(azArg[0], "bail", n)==0 && nArg>1 ){
sl@0
  1067
    bail_on_error = booleanValue(azArg[1]);
sl@0
  1068
  }else
sl@0
  1069
sl@0
  1070
  if( c=='d' && n>1 && strncmp(azArg[0], "databases", n)==0 ){
sl@0
  1071
    struct callback_data data;
sl@0
  1072
    char *zErrMsg = 0;
sl@0
  1073
    open_db(p);
sl@0
  1074
    memcpy(&data, p, sizeof(data));
sl@0
  1075
    data.showHeader = 1;
sl@0
  1076
    data.mode = MODE_Column;
sl@0
  1077
    data.colWidth[0] = 3;
sl@0
  1078
    data.colWidth[1] = 15;
sl@0
  1079
    data.colWidth[2] = 58;
sl@0
  1080
    data.cnt = 0;
sl@0
  1081
    sqlite3_exec(p->db, "PRAGMA database_list; ", callback, &data, &zErrMsg);
sl@0
  1082
    if( zErrMsg ){
sl@0
  1083
      fprintf(stderr,"Error: %s\n", zErrMsg);
sl@0
  1084
      sqlite3_free(zErrMsg);
sl@0
  1085
    }
sl@0
  1086
  }else
sl@0
  1087
sl@0
  1088
  if( c=='d' && strncmp(azArg[0], "dump", n)==0 ){
sl@0
  1089
    char *zErrMsg = 0;
sl@0
  1090
    open_db(p);
sl@0
  1091
    fprintf(p->out, "BEGIN TRANSACTION;\n");
sl@0
  1092
    p->writableSchema = 0;
sl@0
  1093
    sqlite3_exec(p->db, "PRAGMA writable_schema=ON", 0, 0, 0);
sl@0
  1094
    if( nArg==1 ){
sl@0
  1095
      run_schema_dump_query(p, 
sl@0
  1096
        "SELECT name, type, sql FROM sqlite_master "
sl@0
  1097
        "WHERE sql NOT NULL AND type=='table'", 0
sl@0
  1098
      );
sl@0
  1099
      run_table_dump_query(p->out, p->db,
sl@0
  1100
        "SELECT sql FROM sqlite_master "
sl@0
  1101
        "WHERE sql NOT NULL AND type IN ('index','trigger','view')"
sl@0
  1102
      );
sl@0
  1103
    }else{
sl@0
  1104
      int i;
sl@0
  1105
      for(i=1; i<nArg; i++){
sl@0
  1106
        zShellStatic = azArg[i];
sl@0
  1107
        run_schema_dump_query(p,
sl@0
  1108
          "SELECT name, type, sql FROM sqlite_master "
sl@0
  1109
          "WHERE tbl_name LIKE shellstatic() AND type=='table'"
sl@0
  1110
          "  AND sql NOT NULL", 0);
sl@0
  1111
        run_table_dump_query(p->out, p->db,
sl@0
  1112
          "SELECT sql FROM sqlite_master "
sl@0
  1113
          "WHERE sql NOT NULL"
sl@0
  1114
          "  AND type IN ('index','trigger','view')"
sl@0
  1115
          "  AND tbl_name LIKE shellstatic()"
sl@0
  1116
        );
sl@0
  1117
        zShellStatic = 0;
sl@0
  1118
      }
sl@0
  1119
    }
sl@0
  1120
    if( p->writableSchema ){
sl@0
  1121
      fprintf(p->out, "PRAGMA writable_schema=OFF;\n");
sl@0
  1122
      p->writableSchema = 0;
sl@0
  1123
    }
sl@0
  1124
    sqlite3_exec(p->db, "PRAGMA writable_schema=OFF", 0, 0, 0);
sl@0
  1125
    if( zErrMsg ){
sl@0
  1126
      fprintf(stderr,"Error: %s\n", zErrMsg);
sl@0
  1127
      sqlite3_free(zErrMsg);
sl@0
  1128
    }else{
sl@0
  1129
      fprintf(p->out, "COMMIT;\n");
sl@0
  1130
    }
sl@0
  1131
  }else
sl@0
  1132
sl@0
  1133
  if( c=='e' && strncmp(azArg[0], "echo", n)==0 && nArg>1 ){
sl@0
  1134
    p->echoOn = booleanValue(azArg[1]);
sl@0
  1135
  }else
sl@0
  1136
sl@0
  1137
  if( c=='e' && strncmp(azArg[0], "exit", n)==0 ){
sl@0
  1138
    rc = 2;
sl@0
  1139
  }else
sl@0
  1140
sl@0
  1141
  if( c=='e' && strncmp(azArg[0], "explain", n)==0 ){
sl@0
  1142
    int val = nArg>=2 ? booleanValue(azArg[1]) : 1;
sl@0
  1143
    if(val == 1) {
sl@0
  1144
      if(!p->explainPrev.valid) {
sl@0
  1145
        p->explainPrev.valid = 1;
sl@0
  1146
        p->explainPrev.mode = p->mode;
sl@0
  1147
        p->explainPrev.showHeader = p->showHeader;
sl@0
  1148
        memcpy(p->explainPrev.colWidth,p->colWidth,sizeof(p->colWidth));
sl@0
  1149
      }
sl@0
  1150
      /* We could put this code under the !p->explainValid
sl@0
  1151
      ** condition so that it does not execute if we are already in
sl@0
  1152
      ** explain mode. However, always executing it allows us an easy
sl@0
  1153
      ** was to reset to explain mode in case the user previously
sl@0
  1154
      ** did an .explain followed by a .width, .mode or .header
sl@0
  1155
      ** command.
sl@0
  1156
      */
sl@0
  1157
      p->mode = MODE_Explain;
sl@0
  1158
      p->showHeader = 1;
sl@0
  1159
      memset(p->colWidth,0,ArraySize(p->colWidth));
sl@0
  1160
      p->colWidth[0] = 4;                  /* addr */
sl@0
  1161
      p->colWidth[1] = 13;                 /* opcode */
sl@0
  1162
      p->colWidth[2] = 4;                  /* P1 */
sl@0
  1163
      p->colWidth[3] = 4;                  /* P2 */
sl@0
  1164
      p->colWidth[4] = 4;                  /* P3 */
sl@0
  1165
      p->colWidth[5] = 13;                 /* P4 */
sl@0
  1166
      p->colWidth[6] = 2;                  /* P5 */
sl@0
  1167
      p->colWidth[7] = 13;                  /* Comment */
sl@0
  1168
    }else if (p->explainPrev.valid) {
sl@0
  1169
      p->explainPrev.valid = 0;
sl@0
  1170
      p->mode = p->explainPrev.mode;
sl@0
  1171
      p->showHeader = p->explainPrev.showHeader;
sl@0
  1172
      memcpy(p->colWidth,p->explainPrev.colWidth,sizeof(p->colWidth));
sl@0
  1173
    }
sl@0
  1174
  }else
sl@0
  1175
sl@0
  1176
  if( c=='h' && (strncmp(azArg[0], "header", n)==0 ||
sl@0
  1177
                 strncmp(azArg[0], "headers", n)==0 )&& nArg>1 ){
sl@0
  1178
    p->showHeader = booleanValue(azArg[1]);
sl@0
  1179
  }else
sl@0
  1180
sl@0
  1181
  if( c=='h' && strncmp(azArg[0], "help", n)==0 ){
sl@0
  1182
    fprintf(stderr,zHelp);
sl@0
  1183
  }else
sl@0
  1184
sl@0
  1185
  if( c=='i' && strncmp(azArg[0], "import", n)==0 && nArg>=3 ){
sl@0
  1186
    char *zTable = azArg[2];    /* Insert data into this table */
sl@0
  1187
    char *zFile = azArg[1];     /* The file from which to extract data */
sl@0
  1188
    sqlite3_stmt *pStmt;        /* A statement */
sl@0
  1189
    int rc;                     /* Result code */
sl@0
  1190
    int nCol;                   /* Number of columns in the table */
sl@0
  1191
    int nByte;                  /* Number of bytes in an SQL string */
sl@0
  1192
    int i, j;                   /* Loop counters */
sl@0
  1193
    int nSep;                   /* Number of bytes in p->separator[] */
sl@0
  1194
    char *zSql;                 /* An SQL statement */
sl@0
  1195
    char *zLine;                /* A single line of input from the file */
sl@0
  1196
    char **azCol;               /* zLine[] broken up into columns */
sl@0
  1197
    char *zCommit;              /* How to commit changes */   
sl@0
  1198
    FILE *in;                   /* The input file */
sl@0
  1199
    int lineno = 0;             /* Line number of input file */
sl@0
  1200
sl@0
  1201
    open_db(p);
sl@0
  1202
    nSep = strlen(p->separator);
sl@0
  1203
    if( nSep==0 ){
sl@0
  1204
      fprintf(stderr, "non-null separator required for import\n");
sl@0
  1205
      return 0;
sl@0
  1206
    }
sl@0
  1207
    zSql = sqlite3_mprintf("SELECT * FROM '%q'", zTable);
sl@0
  1208
    if( zSql==0 ) return 0;
sl@0
  1209
    nByte = strlen(zSql);
sl@0
  1210
    rc = sqlite3_prepare(p->db, zSql, -1, &pStmt, 0);
sl@0
  1211
    sqlite3_free(zSql);
sl@0
  1212
    if( rc ){
sl@0
  1213
      fprintf(stderr,"Error: %s\n", sqlite3_errmsg(db));
sl@0
  1214
      nCol = 0;
sl@0
  1215
      rc = 1;
sl@0
  1216
    }else{
sl@0
  1217
      nCol = sqlite3_column_count(pStmt);
sl@0
  1218
    }
sl@0
  1219
    sqlite3_finalize(pStmt);
sl@0
  1220
    if( nCol==0 ) return 0;
sl@0
  1221
    zSql = malloc( nByte + 20 + nCol*2 );
sl@0
  1222
    if( zSql==0 ) return 0;
sl@0
  1223
    sqlite3_snprintf(nByte+20, zSql, "INSERT INTO '%q' VALUES(?", zTable);
sl@0
  1224
    j = strlen(zSql);
sl@0
  1225
    for(i=1; i<nCol; i++){
sl@0
  1226
      zSql[j++] = ',';
sl@0
  1227
      zSql[j++] = '?';
sl@0
  1228
    }
sl@0
  1229
    zSql[j++] = ')';
sl@0
  1230
    zSql[j] = 0;
sl@0
  1231
    rc = sqlite3_prepare(p->db, zSql, -1, &pStmt, 0);
sl@0
  1232
    free(zSql);
sl@0
  1233
    if( rc ){
sl@0
  1234
      fprintf(stderr, "Error: %s\n", sqlite3_errmsg(db));
sl@0
  1235
      sqlite3_finalize(pStmt);
sl@0
  1236
      return 1;
sl@0
  1237
    }
sl@0
  1238
    in = fopen(zFile, "rb");
sl@0
  1239
    if( in==0 ){
sl@0
  1240
      fprintf(stderr, "cannot open file: %s\n", zFile);
sl@0
  1241
      sqlite3_finalize(pStmt);
sl@0
  1242
      return 0;
sl@0
  1243
    }
sl@0
  1244
    azCol = malloc( sizeof(azCol[0])*(nCol+1) );
sl@0
  1245
    if( azCol==0 ){
sl@0
  1246
      fclose(in);
sl@0
  1247
      return 0;
sl@0
  1248
    }
sl@0
  1249
    sqlite3_exec(p->db, "BEGIN", 0, 0, 0);
sl@0
  1250
    zCommit = "COMMIT";
sl@0
  1251
    while( (zLine = local_getline(0, in))!=0 ){
sl@0
  1252
      char *z;
sl@0
  1253
      i = 0;
sl@0
  1254
      lineno++;
sl@0
  1255
      azCol[0] = zLine;
sl@0
  1256
      for(i=0, z=zLine; *z && *z!='\n' && *z!='\r'; z++){
sl@0
  1257
        if( *z==p->separator[0] && strncmp(z, p->separator, nSep)==0 ){
sl@0
  1258
          *z = 0;
sl@0
  1259
          i++;
sl@0
  1260
          if( i<nCol ){
sl@0
  1261
            azCol[i] = &z[nSep];
sl@0
  1262
            z += nSep-1;
sl@0
  1263
          }
sl@0
  1264
        }
sl@0
  1265
      }
sl@0
  1266
      *z = 0;
sl@0
  1267
      if( i+1!=nCol ){
sl@0
  1268
        fprintf(stderr,"%s line %d: expected %d columns of data but found %d\n",
sl@0
  1269
           zFile, lineno, nCol, i+1);
sl@0
  1270
        zCommit = "ROLLBACK";
sl@0
  1271
        break;
sl@0
  1272
      }
sl@0
  1273
      for(i=0; i<nCol; i++){
sl@0
  1274
        sqlite3_bind_text(pStmt, i+1, azCol[i], -1, SQLITE_STATIC);
sl@0
  1275
      }
sl@0
  1276
      sqlite3_step(pStmt);
sl@0
  1277
      rc = sqlite3_reset(pStmt);
sl@0
  1278
      free(zLine);
sl@0
  1279
      if( rc!=SQLITE_OK ){
sl@0
  1280
        fprintf(stderr,"Error: %s\n", sqlite3_errmsg(db));
sl@0
  1281
        zCommit = "ROLLBACK";
sl@0
  1282
        rc = 1;
sl@0
  1283
        break;
sl@0
  1284
      }
sl@0
  1285
    }
sl@0
  1286
    free(azCol);
sl@0
  1287
    fclose(in);
sl@0
  1288
    sqlite3_finalize(pStmt);
sl@0
  1289
    sqlite3_exec(p->db, zCommit, 0, 0, 0);
sl@0
  1290
  }else
sl@0
  1291
sl@0
  1292
  if( c=='i' && strncmp(azArg[0], "indices", n)==0 && nArg>1 ){
sl@0
  1293
    struct callback_data data;
sl@0
  1294
    char *zErrMsg = 0;
sl@0
  1295
    open_db(p);
sl@0
  1296
    memcpy(&data, p, sizeof(data));
sl@0
  1297
    data.showHeader = 0;
sl@0
  1298
    data.mode = MODE_List;
sl@0
  1299
    zShellStatic = azArg[1];
sl@0
  1300
    sqlite3_exec(p->db,
sl@0
  1301
      "SELECT name FROM sqlite_master "
sl@0
  1302
      "WHERE type='index' AND tbl_name LIKE shellstatic() "
sl@0
  1303
      "UNION ALL "
sl@0
  1304
      "SELECT name FROM sqlite_temp_master "
sl@0
  1305
      "WHERE type='index' AND tbl_name LIKE shellstatic() "
sl@0
  1306
      "ORDER BY 1",
sl@0
  1307
      callback, &data, &zErrMsg
sl@0
  1308
    );
sl@0
  1309
    zShellStatic = 0;
sl@0
  1310
    if( zErrMsg ){
sl@0
  1311
      fprintf(stderr,"Error: %s\n", zErrMsg);
sl@0
  1312
      sqlite3_free(zErrMsg);
sl@0
  1313
    }
sl@0
  1314
  }else
sl@0
  1315
sl@0
  1316
#ifdef SQLITE_ENABLE_IOTRACE
sl@0
  1317
  if( c=='i' && strncmp(azArg[0], "iotrace", n)==0 ){
sl@0
  1318
    extern void (*sqlite3IoTrace)(const char*, ...);
sl@0
  1319
    if( iotrace && iotrace!=stdout ) fclose(iotrace);
sl@0
  1320
    iotrace = 0;
sl@0
  1321
    if( nArg<2 ){
sl@0
  1322
      sqlite3IoTrace = 0;
sl@0
  1323
    }else if( strcmp(azArg[1], "-")==0 ){
sl@0
  1324
      sqlite3IoTrace = iotracePrintf;
sl@0
  1325
      iotrace = stdout;
sl@0
  1326
    }else{
sl@0
  1327
      iotrace = fopen(azArg[1], "w");
sl@0
  1328
      if( iotrace==0 ){
sl@0
  1329
        fprintf(stderr, "cannot open \"%s\"\n", azArg[1]);
sl@0
  1330
        sqlite3IoTrace = 0;
sl@0
  1331
      }else{
sl@0
  1332
        sqlite3IoTrace = iotracePrintf;
sl@0
  1333
      }
sl@0
  1334
    }
sl@0
  1335
  }else
sl@0
  1336
#endif
sl@0
  1337
sl@0
  1338
#ifndef SQLITE_OMIT_LOAD_EXTENSION
sl@0
  1339
  if( c=='l' && strncmp(azArg[0], "load", n)==0 && nArg>=2 ){
sl@0
  1340
    const char *zFile, *zProc;
sl@0
  1341
    char *zErrMsg = 0;
sl@0
  1342
    int rc;
sl@0
  1343
    zFile = azArg[1];
sl@0
  1344
    zProc = nArg>=3 ? azArg[2] : 0;
sl@0
  1345
    open_db(p);
sl@0
  1346
    rc = sqlite3_load_extension(p->db, zFile, zProc, &zErrMsg);
sl@0
  1347
    if( rc!=SQLITE_OK ){
sl@0
  1348
      fprintf(stderr, "%s\n", zErrMsg);
sl@0
  1349
      sqlite3_free(zErrMsg);
sl@0
  1350
      rc = 1;
sl@0
  1351
    }
sl@0
  1352
  }else
sl@0
  1353
#endif
sl@0
  1354
sl@0
  1355
  if( c=='m' && strncmp(azArg[0], "mode", n)==0 && nArg>=2 ){
sl@0
  1356
    int n2 = strlen(azArg[1]);
sl@0
  1357
    if( strncmp(azArg[1],"line",n2)==0
sl@0
  1358
        ||
sl@0
  1359
        strncmp(azArg[1],"lines",n2)==0 ){
sl@0
  1360
      p->mode = MODE_Line;
sl@0
  1361
    }else if( strncmp(azArg[1],"column",n2)==0
sl@0
  1362
              ||
sl@0
  1363
              strncmp(azArg[1],"columns",n2)==0 ){
sl@0
  1364
      p->mode = MODE_Column;
sl@0
  1365
    }else if( strncmp(azArg[1],"list",n2)==0 ){
sl@0
  1366
      p->mode = MODE_List;
sl@0
  1367
    }else if( strncmp(azArg[1],"html",n2)==0 ){
sl@0
  1368
      p->mode = MODE_Html;
sl@0
  1369
    }else if( strncmp(azArg[1],"tcl",n2)==0 ){
sl@0
  1370
      p->mode = MODE_Tcl;
sl@0
  1371
    }else if( strncmp(azArg[1],"csv",n2)==0 ){
sl@0
  1372
      p->mode = MODE_Csv;
sl@0
  1373
      sqlite3_snprintf(sizeof(p->separator), p->separator, ",");
sl@0
  1374
    }else if( strncmp(azArg[1],"tabs",n2)==0 ){
sl@0
  1375
      p->mode = MODE_List;
sl@0
  1376
      sqlite3_snprintf(sizeof(p->separator), p->separator, "\t");
sl@0
  1377
    }else if( strncmp(azArg[1],"insert",n2)==0 ){
sl@0
  1378
      p->mode = MODE_Insert;
sl@0
  1379
      if( nArg>=3 ){
sl@0
  1380
        set_table_name(p, azArg[2]);
sl@0
  1381
      }else{
sl@0
  1382
        set_table_name(p, "table");
sl@0
  1383
      }
sl@0
  1384
    }else {
sl@0
  1385
      fprintf(stderr,"mode should be one of: "
sl@0
  1386
         "column csv html insert line list tabs tcl\n");
sl@0
  1387
    }
sl@0
  1388
  }else
sl@0
  1389
sl@0
  1390
  if( c=='n' && strncmp(azArg[0], "nullvalue", n)==0 && nArg==2 ) {
sl@0
  1391
    sqlite3_snprintf(sizeof(p->nullvalue), p->nullvalue,
sl@0
  1392
                     "%.*s", (int)ArraySize(p->nullvalue)-1, azArg[1]);
sl@0
  1393
  }else
sl@0
  1394
sl@0
  1395
  if( c=='o' && strncmp(azArg[0], "output", n)==0 && nArg==2 ){
sl@0
  1396
    if( p->out!=stdout ){
sl@0
  1397
      fclose(p->out);
sl@0
  1398
    }
sl@0
  1399
    if( strcmp(azArg[1],"stdout")==0 ){
sl@0
  1400
      p->out = stdout;
sl@0
  1401
      sqlite3_snprintf(sizeof(p->outfile), p->outfile, "stdout");
sl@0
  1402
    }else{
sl@0
  1403
      p->out = fopen(azArg[1], "wb");
sl@0
  1404
      if( p->out==0 ){
sl@0
  1405
        fprintf(stderr,"can't write to \"%s\"\n", azArg[1]);
sl@0
  1406
        p->out = stdout;
sl@0
  1407
      } else {
sl@0
  1408
         sqlite3_snprintf(sizeof(p->outfile), p->outfile, "%s", azArg[1]);
sl@0
  1409
      }
sl@0
  1410
    }
sl@0
  1411
  }else
sl@0
  1412
sl@0
  1413
  if( c=='p' && strncmp(azArg[0], "prompt", n)==0 && (nArg==2 || nArg==3)){
sl@0
  1414
    if( nArg >= 2) {
sl@0
  1415
      strncpy(mainPrompt,azArg[1],(int)ArraySize(mainPrompt)-1);
sl@0
  1416
    }
sl@0
  1417
    if( nArg >= 3) {
sl@0
  1418
      strncpy(continuePrompt,azArg[2],(int)ArraySize(continuePrompt)-1);
sl@0
  1419
    }
sl@0
  1420
  }else
sl@0
  1421
sl@0
  1422
  if( c=='q' && strncmp(azArg[0], "quit", n)==0 ){
sl@0
  1423
    rc = 2;
sl@0
  1424
  }else
sl@0
  1425
sl@0
  1426
  if( c=='r' && strncmp(azArg[0], "read", n)==0 && nArg==2 ){
sl@0
  1427
    FILE *alt = fopen(azArg[1], "rb");
sl@0
  1428
    if( alt==0 ){
sl@0
  1429
      fprintf(stderr,"can't open \"%s\"\n", azArg[1]);
sl@0
  1430
    }else{
sl@0
  1431
      process_input(p, alt);
sl@0
  1432
      fclose(alt);
sl@0
  1433
    }
sl@0
  1434
  }else
sl@0
  1435
sl@0
  1436
  if( c=='s' && strncmp(azArg[0], "schema", n)==0 ){
sl@0
  1437
    struct callback_data data;
sl@0
  1438
    char *zErrMsg = 0;
sl@0
  1439
    open_db(p);
sl@0
  1440
    memcpy(&data, p, sizeof(data));
sl@0
  1441
    data.showHeader = 0;
sl@0
  1442
    data.mode = MODE_Semi;
sl@0
  1443
    if( nArg>1 ){
sl@0
  1444
      int i;
sl@0
  1445
      for(i=0; azArg[1][i]; i++) azArg[1][i] = tolower(azArg[1][i]);
sl@0
  1446
      if( strcmp(azArg[1],"sqlite_master")==0 ){
sl@0
  1447
        char *new_argv[2], *new_colv[2];
sl@0
  1448
        new_argv[0] = "CREATE TABLE sqlite_master (\n"
sl@0
  1449
                      "  type text,\n"
sl@0
  1450
                      "  name text,\n"
sl@0
  1451
                      "  tbl_name text,\n"
sl@0
  1452
                      "  rootpage integer,\n"
sl@0
  1453
                      "  sql text\n"
sl@0
  1454
                      ")";
sl@0
  1455
        new_argv[1] = 0;
sl@0
  1456
        new_colv[0] = "sql";
sl@0
  1457
        new_colv[1] = 0;
sl@0
  1458
        callback(&data, 1, new_argv, new_colv);
sl@0
  1459
      }else if( strcmp(azArg[1],"sqlite_temp_master")==0 ){
sl@0
  1460
        char *new_argv[2], *new_colv[2];
sl@0
  1461
        new_argv[0] = "CREATE TEMP TABLE sqlite_temp_master (\n"
sl@0
  1462
                      "  type text,\n"
sl@0
  1463
                      "  name text,\n"
sl@0
  1464
                      "  tbl_name text,\n"
sl@0
  1465
                      "  rootpage integer,\n"
sl@0
  1466
                      "  sql text\n"
sl@0
  1467
                      ")";
sl@0
  1468
        new_argv[1] = 0;
sl@0
  1469
        new_colv[0] = "sql";
sl@0
  1470
        new_colv[1] = 0;
sl@0
  1471
        callback(&data, 1, new_argv, new_colv);
sl@0
  1472
      }else{
sl@0
  1473
        zShellStatic = azArg[1];
sl@0
  1474
        sqlite3_exec(p->db,
sl@0
  1475
          "SELECT sql FROM "
sl@0
  1476
          "  (SELECT * FROM sqlite_master UNION ALL"
sl@0
  1477
          "   SELECT * FROM sqlite_temp_master) "
sl@0
  1478
          "WHERE tbl_name LIKE shellstatic() AND type!='meta' AND sql NOTNULL "
sl@0
  1479
          "ORDER BY substr(type,2,1), name",
sl@0
  1480
          callback, &data, &zErrMsg);
sl@0
  1481
        zShellStatic = 0;
sl@0
  1482
      }
sl@0
  1483
    }else{
sl@0
  1484
      sqlite3_exec(p->db,
sl@0
  1485
         "SELECT sql FROM "
sl@0
  1486
         "  (SELECT * FROM sqlite_master UNION ALL"
sl@0
  1487
         "   SELECT * FROM sqlite_temp_master) "
sl@0
  1488
         "WHERE type!='meta' AND sql NOTNULL AND name NOT LIKE 'sqlite_%'"
sl@0
  1489
         "ORDER BY substr(type,2,1), name",
sl@0
  1490
         callback, &data, &zErrMsg
sl@0
  1491
      );
sl@0
  1492
    }
sl@0
  1493
    if( zErrMsg ){
sl@0
  1494
      fprintf(stderr,"Error: %s\n", zErrMsg);
sl@0
  1495
      sqlite3_free(zErrMsg);
sl@0
  1496
    }
sl@0
  1497
  }else
sl@0
  1498
sl@0
  1499
  if( c=='s' && strncmp(azArg[0], "separator", n)==0 && nArg==2 ){
sl@0
  1500
    sqlite3_snprintf(sizeof(p->separator), p->separator,
sl@0
  1501
                     "%.*s", (int)sizeof(p->separator)-1, azArg[1]);
sl@0
  1502
  }else
sl@0
  1503
sl@0
  1504
  if( c=='s' && strncmp(azArg[0], "show", n)==0){
sl@0
  1505
    int i;
sl@0
  1506
    fprintf(p->out,"%9.9s: %s\n","echo", p->echoOn ? "on" : "off");
sl@0
  1507
    fprintf(p->out,"%9.9s: %s\n","explain", p->explainPrev.valid ? "on" :"off");
sl@0
  1508
    fprintf(p->out,"%9.9s: %s\n","headers", p->showHeader ? "on" : "off");
sl@0
  1509
    fprintf(p->out,"%9.9s: %s\n","mode", modeDescr[p->mode]);
sl@0
  1510
    fprintf(p->out,"%9.9s: ", "nullvalue");
sl@0
  1511
      output_c_string(p->out, p->nullvalue);
sl@0
  1512
      fprintf(p->out, "\n");
sl@0
  1513
    fprintf(p->out,"%9.9s: %s\n","output",
sl@0
  1514
                                 strlen(p->outfile) ? p->outfile : "stdout");
sl@0
  1515
    fprintf(p->out,"%9.9s: ", "separator");
sl@0
  1516
      output_c_string(p->out, p->separator);
sl@0
  1517
      fprintf(p->out, "\n");
sl@0
  1518
    fprintf(p->out,"%9.9s: ","width");
sl@0
  1519
    for (i=0;i<(int)ArraySize(p->colWidth) && p->colWidth[i] != 0;i++) {
sl@0
  1520
      fprintf(p->out,"%d ",p->colWidth[i]);
sl@0
  1521
    }
sl@0
  1522
    fprintf(p->out,"\n");
sl@0
  1523
  }else
sl@0
  1524
sl@0
  1525
  if( c=='t' && n>1 && strncmp(azArg[0], "tables", n)==0 ){
sl@0
  1526
    char **azResult;
sl@0
  1527
    int nRow, rc;
sl@0
  1528
    char *zErrMsg;
sl@0
  1529
    open_db(p);
sl@0
  1530
    if( nArg==1 ){
sl@0
  1531
      rc = sqlite3_get_table(p->db,
sl@0
  1532
        "SELECT name FROM sqlite_master "
sl@0
  1533
        "WHERE type IN ('table','view') AND name NOT LIKE 'sqlite_%'"
sl@0
  1534
        "UNION ALL "
sl@0
  1535
        "SELECT name FROM sqlite_temp_master "
sl@0
  1536
        "WHERE type IN ('table','view') "
sl@0
  1537
        "ORDER BY 1",
sl@0
  1538
        &azResult, &nRow, 0, &zErrMsg
sl@0
  1539
      );
sl@0
  1540
    }else{
sl@0
  1541
      zShellStatic = azArg[1];
sl@0
  1542
      rc = sqlite3_get_table(p->db,
sl@0
  1543
        "SELECT name FROM sqlite_master "
sl@0
  1544
        "WHERE type IN ('table','view') AND name LIKE '%'||shellstatic()||'%' "
sl@0
  1545
        "UNION ALL "
sl@0
  1546
        "SELECT name FROM sqlite_temp_master "
sl@0
  1547
        "WHERE type IN ('table','view') AND name LIKE '%'||shellstatic()||'%' "
sl@0
  1548
        "ORDER BY 1",
sl@0
  1549
        &azResult, &nRow, 0, &zErrMsg
sl@0
  1550
      );
sl@0
  1551
      zShellStatic = 0;
sl@0
  1552
    }
sl@0
  1553
    if( zErrMsg ){
sl@0
  1554
      fprintf(stderr,"Error: %s\n", zErrMsg);
sl@0
  1555
      sqlite3_free(zErrMsg);
sl@0
  1556
    }
sl@0
  1557
    if( rc==SQLITE_OK ){
sl@0
  1558
      int len, maxlen = 0;
sl@0
  1559
      int i, j;
sl@0
  1560
      int nPrintCol, nPrintRow;
sl@0
  1561
      for(i=1; i<=nRow; i++){
sl@0
  1562
        if( azResult[i]==0 ) continue;
sl@0
  1563
        len = strlen(azResult[i]);
sl@0
  1564
        if( len>maxlen ) maxlen = len;
sl@0
  1565
      }
sl@0
  1566
      nPrintCol = 80/(maxlen+2);
sl@0
  1567
      if( nPrintCol<1 ) nPrintCol = 1;
sl@0
  1568
      nPrintRow = (nRow + nPrintCol - 1)/nPrintCol;
sl@0
  1569
      for(i=0; i<nPrintRow; i++){
sl@0
  1570
        for(j=i+1; j<=nRow; j+=nPrintRow){
sl@0
  1571
          char *zSp = j<=nPrintRow ? "" : "  ";
sl@0
  1572
          printf("%s%-*s", zSp, maxlen, azResult[j] ? azResult[j] : "");
sl@0
  1573
        }
sl@0
  1574
        printf("\n");
sl@0
  1575
      }
sl@0
  1576
    }else{
sl@0
  1577
      rc = 1;
sl@0
  1578
    }
sl@0
  1579
    sqlite3_free_table(azResult);
sl@0
  1580
  }else
sl@0
  1581
sl@0
  1582
  if( c=='t' && n>4 && strncmp(azArg[0], "timeout", n)==0 && nArg>=2 ){
sl@0
  1583
    open_db(p);
sl@0
  1584
    sqlite3_busy_timeout(p->db, atoi(azArg[1]));
sl@0
  1585
  }else
sl@0
  1586
  
sl@0
  1587
#if HAS_TIMER  
sl@0
  1588
  if( c=='t' && n>=5 && strncmp(azArg[0], "timer", n)==0 && nArg>1 ){
sl@0
  1589
    enableTimer = booleanValue(azArg[1]);
sl@0
  1590
  }else
sl@0
  1591
#endif
sl@0
  1592
sl@0
  1593
  if( c=='w' && strncmp(azArg[0], "width", n)==0 ){
sl@0
  1594
    int j;
sl@0
  1595
    assert( nArg<=ArraySize(azArg) );
sl@0
  1596
    for(j=1; j<nArg && j<ArraySize(p->colWidth); j++){
sl@0
  1597
      p->colWidth[j-1] = atoi(azArg[j]);
sl@0
  1598
    }
sl@0
  1599
  }else
sl@0
  1600
sl@0
  1601
sl@0
  1602
  {
sl@0
  1603
    fprintf(stderr, "unknown command or invalid arguments: "
sl@0
  1604
      " \"%s\". Enter \".help\" for help\n", azArg[0]);
sl@0
  1605
  }
sl@0
  1606
sl@0
  1607
  return rc;
sl@0
  1608
}
sl@0
  1609
sl@0
  1610
/*
sl@0
  1611
** Return TRUE if a semicolon occurs anywhere in the first N characters
sl@0
  1612
** of string z[].
sl@0
  1613
*/
sl@0
  1614
static int _contains_semicolon(const char *z, int N){
sl@0
  1615
  int i;
sl@0
  1616
  for(i=0; i<N; i++){  if( z[i]==';' ) return 1; }
sl@0
  1617
  return 0;
sl@0
  1618
}
sl@0
  1619
sl@0
  1620
/*
sl@0
  1621
** Test to see if a line consists entirely of whitespace.
sl@0
  1622
*/
sl@0
  1623
static int _all_whitespace(const char *z){
sl@0
  1624
  for(; *z; z++){
sl@0
  1625
    if( isspace(*(unsigned char*)z) ) continue;
sl@0
  1626
    if( *z=='/' && z[1]=='*' ){
sl@0
  1627
      z += 2;
sl@0
  1628
      while( *z && (*z!='*' || z[1]!='/') ){ z++; }
sl@0
  1629
      if( *z==0 ) return 0;
sl@0
  1630
      z++;
sl@0
  1631
      continue;
sl@0
  1632
    }
sl@0
  1633
    if( *z=='-' && z[1]=='-' ){
sl@0
  1634
      z += 2;
sl@0
  1635
      while( *z && *z!='\n' ){ z++; }
sl@0
  1636
      if( *z==0 ) return 1;
sl@0
  1637
      continue;
sl@0
  1638
    }
sl@0
  1639
    return 0;
sl@0
  1640
  }
sl@0
  1641
  return 1;
sl@0
  1642
}
sl@0
  1643
sl@0
  1644
/*
sl@0
  1645
** Return TRUE if the line typed in is an SQL command terminator other
sl@0
  1646
** than a semi-colon.  The SQL Server style "go" command is understood
sl@0
  1647
** as is the Oracle "/".
sl@0
  1648
*/
sl@0
  1649
static int _is_command_terminator(const char *zLine){
sl@0
  1650
  while( isspace(*(unsigned char*)zLine) ){ zLine++; };
sl@0
  1651
  if( zLine[0]=='/' && _all_whitespace(&zLine[1]) ) return 1;  /* Oracle */
sl@0
  1652
  if( tolower(zLine[0])=='g' && tolower(zLine[1])=='o'
sl@0
  1653
         && _all_whitespace(&zLine[2]) ){
sl@0
  1654
    return 1;  /* SQL Server */
sl@0
  1655
  }
sl@0
  1656
  return 0;
sl@0
  1657
}
sl@0
  1658
sl@0
  1659
/*
sl@0
  1660
** Read input from *in and process it.  If *in==0 then input
sl@0
  1661
** is interactive - the user is typing it it.  Otherwise, input
sl@0
  1662
** is coming from a file or device.  A prompt is issued and history
sl@0
  1663
** is saved only if input is interactive.  An interrupt signal will
sl@0
  1664
** cause this routine to exit immediately, unless input is interactive.
sl@0
  1665
**
sl@0
  1666
** Return the number of errors.
sl@0
  1667
*/
sl@0
  1668
static int process_input(struct callback_data *p, FILE *in){
sl@0
  1669
  char *zLine = 0;
sl@0
  1670
  char *zSql = 0;
sl@0
  1671
  int nSql = 0;
sl@0
  1672
  int nSqlPrior = 0;
sl@0
  1673
  char *zErrMsg;
sl@0
  1674
  int rc;
sl@0
  1675
  int errCnt = 0;
sl@0
  1676
  int lineno = 0;
sl@0
  1677
  int startline = 0;
sl@0
  1678
sl@0
  1679
  while( errCnt==0 || !bail_on_error || (in==0 && stdin_is_interactive) ){
sl@0
  1680
    fflush(p->out);
sl@0
  1681
    free(zLine);
sl@0
  1682
    zLine = one_input_line(zSql, in);
sl@0
  1683
    if( zLine==0 ){
sl@0
  1684
      break;  /* We have reached EOF */
sl@0
  1685
    }
sl@0
  1686
    if( seenInterrupt ){
sl@0
  1687
      if( in!=0 ) break;
sl@0
  1688
      seenInterrupt = 0;
sl@0
  1689
    }
sl@0
  1690
    lineno++;
sl@0
  1691
    if( p->echoOn ) printf("%s\n", zLine);
sl@0
  1692
    if( (zSql==0 || zSql[0]==0) && _all_whitespace(zLine) ) continue;
sl@0
  1693
    if( zLine && zLine[0]=='.' && nSql==0 ){
sl@0
  1694
      rc = do_meta_command(zLine, p);
sl@0
  1695
      if( rc==2 ){
sl@0
  1696
        break;
sl@0
  1697
      }else if( rc ){
sl@0
  1698
        errCnt++;
sl@0
  1699
      }
sl@0
  1700
      continue;
sl@0
  1701
    }
sl@0
  1702
    if( _is_command_terminator(zLine) ){
sl@0
  1703
      memcpy(zLine,";",2);
sl@0
  1704
    }
sl@0
  1705
    nSqlPrior = nSql;
sl@0
  1706
    if( zSql==0 ){
sl@0
  1707
      int i;
sl@0
  1708
      for(i=0; zLine[i] && isspace((unsigned char)zLine[i]); i++){}
sl@0
  1709
      if( zLine[i]!=0 ){
sl@0
  1710
        nSql = strlen(zLine);
sl@0
  1711
        zSql = malloc( nSql+1 );
sl@0
  1712
        if( zSql==0 ){
sl@0
  1713
          fprintf(stderr, "out of memory\n");
sl@0
  1714
          exit(1);
sl@0
  1715
        }
sl@0
  1716
        memcpy(zSql, zLine, nSql+1);
sl@0
  1717
        startline = lineno;
sl@0
  1718
      }
sl@0
  1719
    }else{
sl@0
  1720
      int len = strlen(zLine);
sl@0
  1721
      zSql = realloc( zSql, nSql + len + 2 );
sl@0
  1722
      if( zSql==0 ){
sl@0
  1723
        fprintf(stderr,"%s: out of memory!\n", Argv0);
sl@0
  1724
        exit(1);
sl@0
  1725
      }
sl@0
  1726
      zSql[nSql++] = '\n';
sl@0
  1727
      memcpy(&zSql[nSql], zLine, len+1);
sl@0
  1728
      nSql += len;
sl@0
  1729
    }
sl@0
  1730
    if( zSql && _contains_semicolon(&zSql[nSqlPrior], nSql-nSqlPrior)
sl@0
  1731
                && sqlite3_complete(zSql) ){
sl@0
  1732
      p->cnt = 0;
sl@0
  1733
      open_db(p);
sl@0
  1734
      BEGIN_TIMER;
sl@0
  1735
      rc = sqlite3_exec(p->db, zSql, callback, p, &zErrMsg);
sl@0
  1736
      END_TIMER;
sl@0
  1737
      if( rc || zErrMsg ){
sl@0
  1738
        char zPrefix[100];
sl@0
  1739
        if( in!=0 || !stdin_is_interactive ){
sl@0
  1740
          sqlite3_snprintf(sizeof(zPrefix), zPrefix, 
sl@0
  1741
                           "SQL error near line %d:", startline);
sl@0
  1742
        }else{
sl@0
  1743
          sqlite3_snprintf(sizeof(zPrefix), zPrefix, "SQL error:");
sl@0
  1744
        }
sl@0
  1745
        if( zErrMsg!=0 ){
sl@0
  1746
          printf("%s %s\n", zPrefix, zErrMsg);
sl@0
  1747
          sqlite3_free(zErrMsg);
sl@0
  1748
          zErrMsg = 0;
sl@0
  1749
        }else{
sl@0
  1750
          printf("%s %s\n", zPrefix, sqlite3_errmsg(p->db));
sl@0
  1751
        }
sl@0
  1752
        errCnt++;
sl@0
  1753
      }
sl@0
  1754
      free(zSql);
sl@0
  1755
      zSql = 0;
sl@0
  1756
      nSql = 0;
sl@0
  1757
    }
sl@0
  1758
  }
sl@0
  1759
  if( zSql ){
sl@0
  1760
    if( !_all_whitespace(zSql) ) printf("Incomplete SQL: %s\n", zSql);
sl@0
  1761
    free(zSql);
sl@0
  1762
  }
sl@0
  1763
  free(zLine);
sl@0
  1764
  return errCnt;
sl@0
  1765
}
sl@0
  1766
sl@0
  1767
/*
sl@0
  1768
** Return a pathname which is the user's home directory.  A
sl@0
  1769
** 0 return indicates an error of some kind.  Space to hold the
sl@0
  1770
** resulting string is obtained from malloc().  The calling
sl@0
  1771
** function should free the result.
sl@0
  1772
*/
sl@0
  1773
static char *find_home_dir(void){
sl@0
  1774
  char *home_dir = NULL;
sl@0
  1775
sl@0
  1776
#if !defined(_WIN32) && !defined(WIN32) && !defined(__OS2__) && !defined(_WIN32_WCE)
sl@0
  1777
  struct passwd *pwent;
sl@0
  1778
  uid_t uid = getuid();
sl@0
  1779
  if( (pwent=getpwuid(uid)) != NULL) {
sl@0
  1780
    home_dir = pwent->pw_dir;
sl@0
  1781
  }
sl@0
  1782
#endif
sl@0
  1783
sl@0
  1784
#if defined(_WIN32_WCE)
sl@0
  1785
  /* Windows CE (arm-wince-mingw32ce-gcc) does not provide getenv()
sl@0
  1786
   */
sl@0
  1787
  home_dir = strdup("/");
sl@0
  1788
#else
sl@0
  1789
sl@0
  1790
#if defined(_WIN32) || defined(WIN32) || defined(__OS2__)
sl@0
  1791
  if (!home_dir) {
sl@0
  1792
    home_dir = getenv("USERPROFILE");
sl@0
  1793
  }
sl@0
  1794
#endif
sl@0
  1795
sl@0
  1796
  if (!home_dir) {
sl@0
  1797
    home_dir = getenv("HOME");
sl@0
  1798
  }
sl@0
  1799
sl@0
  1800
#if defined(_WIN32) || defined(WIN32) || defined(__OS2__)
sl@0
  1801
  if (!home_dir) {
sl@0
  1802
    char *zDrive, *zPath;
sl@0
  1803
    int n;
sl@0
  1804
    zDrive = getenv("HOMEDRIVE");
sl@0
  1805
    zPath = getenv("HOMEPATH");
sl@0
  1806
    if( zDrive && zPath ){
sl@0
  1807
      n = strlen(zDrive) + strlen(zPath) + 1;
sl@0
  1808
      home_dir = malloc( n );
sl@0
  1809
      if( home_dir==0 ) return 0;
sl@0
  1810
      sqlite3_snprintf(n, home_dir, "%s%s", zDrive, zPath);
sl@0
  1811
      return home_dir;
sl@0
  1812
    }
sl@0
  1813
    home_dir = "c:\\";
sl@0
  1814
  }
sl@0
  1815
#endif
sl@0
  1816
sl@0
  1817
#endif /* !_WIN32_WCE */
sl@0
  1818
sl@0
  1819
  if( home_dir ){
sl@0
  1820
    int n = strlen(home_dir) + 1;
sl@0
  1821
    char *z = malloc( n );
sl@0
  1822
    if( z ) memcpy(z, home_dir, n);
sl@0
  1823
    home_dir = z;
sl@0
  1824
  }
sl@0
  1825
sl@0
  1826
  return home_dir;
sl@0
  1827
}
sl@0
  1828
sl@0
  1829
/*
sl@0
  1830
** Read input from the file given by sqliterc_override.  Or if that
sl@0
  1831
** parameter is NULL, take input from ~/.sqliterc
sl@0
  1832
*/
sl@0
  1833
static void process_sqliterc(
sl@0
  1834
  struct callback_data *p,        /* Configuration data */
sl@0
  1835
  const char *sqliterc_override   /* Name of config file. NULL to use default */
sl@0
  1836
){
sl@0
  1837
  char *home_dir = NULL;
sl@0
  1838
  const char *sqliterc = sqliterc_override;
sl@0
  1839
  char *zBuf = 0;
sl@0
  1840
  FILE *in = NULL;
sl@0
  1841
  int nBuf;
sl@0
  1842
sl@0
  1843
  if (sqliterc == NULL) {
sl@0
  1844
    home_dir = find_home_dir();
sl@0
  1845
    if( home_dir==0 ){
sl@0
  1846
      fprintf(stderr,"%s: cannot locate your home directory!\n", Argv0);
sl@0
  1847
      return;
sl@0
  1848
    }
sl@0
  1849
    nBuf = strlen(home_dir) + 16;
sl@0
  1850
    zBuf = malloc( nBuf );
sl@0
  1851
    if( zBuf==0 ){
sl@0
  1852
      fprintf(stderr,"%s: out of memory!\n", Argv0);
sl@0
  1853
      exit(1);
sl@0
  1854
    }
sl@0
  1855
    sqlite3_snprintf(nBuf, zBuf,"%s/.sqliterc",home_dir);
sl@0
  1856
    free(home_dir);
sl@0
  1857
    sqliterc = (const char*)zBuf;
sl@0
  1858
  }
sl@0
  1859
  in = fopen(sqliterc,"rb");
sl@0
  1860
  if( in ){
sl@0
  1861
    if( stdin_is_interactive ){
sl@0
  1862
      printf("-- Loading resources from %s\n",sqliterc);
sl@0
  1863
    }
sl@0
  1864
    process_input(p,in);
sl@0
  1865
    fclose(in);
sl@0
  1866
  }
sl@0
  1867
  free(zBuf);
sl@0
  1868
  return;
sl@0
  1869
}
sl@0
  1870
sl@0
  1871
/*
sl@0
  1872
** Show available command line options
sl@0
  1873
*/
sl@0
  1874
static const char zOptions[] = 
sl@0
  1875
  "   -init filename       read/process named file\n"
sl@0
  1876
  "   -echo                print commands before execution\n"
sl@0
  1877
  "   -[no]header          turn headers on or off\n"
sl@0
  1878
  "   -bail                stop after hitting an error\n"
sl@0
  1879
  "   -interactive         force interactive I/O\n"
sl@0
  1880
  "   -batch               force batch I/O\n"
sl@0
  1881
  "   -column              set output mode to 'column'\n"
sl@0
  1882
  "   -csv                 set output mode to 'csv'\n"
sl@0
  1883
  "   -html                set output mode to HTML\n"
sl@0
  1884
  "   -line                set output mode to 'line'\n"
sl@0
  1885
  "   -list                set output mode to 'list'\n"
sl@0
  1886
  "   -separator 'x'       set output field separator (|)\n"
sl@0
  1887
  "   -nullvalue 'text'    set text string for NULL values\n"
sl@0
  1888
  "   -version             show SQLite version\n"
sl@0
  1889
;
sl@0
  1890
static void usage(int showDetail){
sl@0
  1891
  fprintf(stderr,
sl@0
  1892
      "Usage: %s [OPTIONS] FILENAME [SQL]\n"  
sl@0
  1893
      "FILENAME is the name of an SQLite database. A new database is created\n"
sl@0
  1894
      "if the file does not previously exist.\n", Argv0);
sl@0
  1895
  if( showDetail ){
sl@0
  1896
    fprintf(stderr, "OPTIONS include:\n%s", zOptions);
sl@0
  1897
  }else{
sl@0
  1898
    fprintf(stderr, "Use the -help option for additional information\n");
sl@0
  1899
  }
sl@0
  1900
  exit(1);
sl@0
  1901
}
sl@0
  1902
sl@0
  1903
/*
sl@0
  1904
** Initialize the state information in data
sl@0
  1905
*/
sl@0
  1906
static void main_init(struct callback_data *data) {
sl@0
  1907
  memset(data, 0, sizeof(*data));
sl@0
  1908
  data->mode = MODE_List;
sl@0
  1909
  memcpy(data->separator,"|", 2);
sl@0
  1910
  data->showHeader = 0;
sl@0
  1911
  sqlite3_snprintf(sizeof(mainPrompt), mainPrompt,"sqlite> ");
sl@0
  1912
  sqlite3_snprintf(sizeof(continuePrompt), continuePrompt,"   ...> ");
sl@0
  1913
}
sl@0
  1914
sl@0
  1915
int main(int argc, char **argv){
sl@0
  1916
  char *zErrMsg = 0;
sl@0
  1917
  struct callback_data data;
sl@0
  1918
  const char *zInitFile = 0;
sl@0
  1919
  char *zFirstCmd = 0;
sl@0
  1920
  int i;
sl@0
  1921
  int rc = 0;
sl@0
  1922
sl@0
  1923
  Argv0 = argv[0];
sl@0
  1924
  main_init(&data);
sl@0
  1925
  stdin_is_interactive = isatty(0);
sl@0
  1926
sl@0
  1927
  /* Make sure we have a valid signal handler early, before anything
sl@0
  1928
  ** else is done.
sl@0
  1929
  */
sl@0
  1930
#ifdef SIGINT
sl@0
  1931
  signal(SIGINT, interrupt_handler);
sl@0
  1932
#endif
sl@0
  1933
sl@0
  1934
  /* Do an initial pass through the command-line argument to locate
sl@0
  1935
  ** the name of the database file, the name of the initialization file,
sl@0
  1936
  ** and the first command to execute.
sl@0
  1937
  */
sl@0
  1938
  for(i=1; i<argc-1; i++){
sl@0
  1939
    char *z;
sl@0
  1940
    if( argv[i][0]!='-' ) break;
sl@0
  1941
    z = argv[i];
sl@0
  1942
    if( z[0]=='-' && z[1]=='-' ) z++;
sl@0
  1943
    if( strcmp(argv[i],"-separator")==0 || strcmp(argv[i],"-nullvalue")==0 ){
sl@0
  1944
      i++;
sl@0
  1945
    }else if( strcmp(argv[i],"-init")==0 ){
sl@0
  1946
      i++;
sl@0
  1947
      zInitFile = argv[i];
sl@0
  1948
    }
sl@0
  1949
  }
sl@0
  1950
  if( i<argc ){
sl@0
  1951
#if defined(SQLITE_OS_OS2) && SQLITE_OS_OS2
sl@0
  1952
    data.zDbFilename = (const char *)convertCpPathToUtf8( argv[i++] );
sl@0
  1953
#else
sl@0
  1954
    data.zDbFilename = argv[i++];
sl@0
  1955
#endif
sl@0
  1956
  }else{
sl@0
  1957
#ifndef SQLITE_OMIT_MEMORYDB
sl@0
  1958
    data.zDbFilename = ":memory:";
sl@0
  1959
#else
sl@0
  1960
    data.zDbFilename = 0;
sl@0
  1961
#endif
sl@0
  1962
  }
sl@0
  1963
  if( i<argc ){
sl@0
  1964
    zFirstCmd = argv[i++];
sl@0
  1965
  }
sl@0
  1966
  data.out = stdout;
sl@0
  1967
sl@0
  1968
#ifdef SQLITE_OMIT_MEMORYDB
sl@0
  1969
  if( data.zDbFilename==0 ){
sl@0
  1970
    fprintf(stderr,"%s: no database filename specified\n", argv[0]);
sl@0
  1971
    exit(1);
sl@0
  1972
  }
sl@0
  1973
#endif
sl@0
  1974
sl@0
  1975
  /* Go ahead and open the database file if it already exists.  If the
sl@0
  1976
  ** file does not exist, delay opening it.  This prevents empty database
sl@0
  1977
  ** files from being created if a user mistypes the database name argument
sl@0
  1978
  ** to the sqlite command-line tool.
sl@0
  1979
  */
sl@0
  1980
  if( access(data.zDbFilename, 0)==0 ){
sl@0
  1981
    open_db(&data);
sl@0
  1982
  }
sl@0
  1983
sl@0
  1984
  /* Process the initialization file if there is one.  If no -init option
sl@0
  1985
  ** is given on the command line, look for a file named ~/.sqliterc and
sl@0
  1986
  ** try to process it.
sl@0
  1987
  */
sl@0
  1988
  process_sqliterc(&data,zInitFile);
sl@0
  1989
sl@0
  1990
  /* Make a second pass through the command-line argument and set
sl@0
  1991
  ** options.  This second pass is delayed until after the initialization
sl@0
  1992
  ** file is processed so that the command-line arguments will override
sl@0
  1993
  ** settings in the initialization file.
sl@0
  1994
  */
sl@0
  1995
  for(i=1; i<argc && argv[i][0]=='-'; i++){
sl@0
  1996
    char *z = argv[i];
sl@0
  1997
    if( z[1]=='-' ){ z++; }
sl@0
  1998
    if( strcmp(z,"-init")==0 ){
sl@0
  1999
      i++;
sl@0
  2000
    }else if( strcmp(z,"-html")==0 ){
sl@0
  2001
      data.mode = MODE_Html;
sl@0
  2002
    }else if( strcmp(z,"-list")==0 ){
sl@0
  2003
      data.mode = MODE_List;
sl@0
  2004
    }else if( strcmp(z,"-line")==0 ){
sl@0
  2005
      data.mode = MODE_Line;
sl@0
  2006
    }else if( strcmp(z,"-column")==0 ){
sl@0
  2007
      data.mode = MODE_Column;
sl@0
  2008
    }else if( strcmp(z,"-csv")==0 ){
sl@0
  2009
      data.mode = MODE_Csv;
sl@0
  2010
      memcpy(data.separator,",",2);
sl@0
  2011
    }else if( strcmp(z,"-separator")==0 ){
sl@0
  2012
      i++;
sl@0
  2013
      sqlite3_snprintf(sizeof(data.separator), data.separator,
sl@0
  2014
                       "%.*s",(int)sizeof(data.separator)-1,argv[i]);
sl@0
  2015
    }else if( strcmp(z,"-nullvalue")==0 ){
sl@0
  2016
      i++;
sl@0
  2017
      sqlite3_snprintf(sizeof(data.nullvalue), data.nullvalue,
sl@0
  2018
                       "%.*s",(int)sizeof(data.nullvalue)-1,argv[i]);
sl@0
  2019
    }else if( strcmp(z,"-header")==0 ){
sl@0
  2020
      data.showHeader = 1;
sl@0
  2021
    }else if( strcmp(z,"-noheader")==0 ){
sl@0
  2022
      data.showHeader = 0;
sl@0
  2023
    }else if( strcmp(z,"-echo")==0 ){
sl@0
  2024
      data.echoOn = 1;
sl@0
  2025
    }else if( strcmp(z,"-bail")==0 ){
sl@0
  2026
      bail_on_error = 1;
sl@0
  2027
    }else if( strcmp(z,"-version")==0 ){
sl@0
  2028
      printf("%s\n", sqlite3_libversion());
sl@0
  2029
      return 0;
sl@0
  2030
    }else if( strcmp(z,"-interactive")==0 ){
sl@0
  2031
      stdin_is_interactive = 1;
sl@0
  2032
    }else if( strcmp(z,"-batch")==0 ){
sl@0
  2033
      stdin_is_interactive = 0;
sl@0
  2034
    }else if( strcmp(z,"-help")==0 || strcmp(z, "--help")==0 ){
sl@0
  2035
      usage(1);
sl@0
  2036
    }else{
sl@0
  2037
      fprintf(stderr,"%s: unknown option: %s\n", Argv0, z);
sl@0
  2038
      fprintf(stderr,"Use -help for a list of options.\n");
sl@0
  2039
      return 1;
sl@0
  2040
    }
sl@0
  2041
  }
sl@0
  2042
sl@0
  2043
  if( zFirstCmd ){
sl@0
  2044
    /* Run just the command that follows the database name
sl@0
  2045
    */
sl@0
  2046
    if( zFirstCmd[0]=='.' ){
sl@0
  2047
      do_meta_command(zFirstCmd, &data);
sl@0
  2048
      exit(0);
sl@0
  2049
    }else{
sl@0
  2050
      int rc;
sl@0
  2051
      open_db(&data);
sl@0
  2052
      rc = sqlite3_exec(data.db, zFirstCmd, callback, &data, &zErrMsg);
sl@0
  2053
      if( rc!=0 && zErrMsg!=0 ){
sl@0
  2054
        fprintf(stderr,"SQL error: %s\n", zErrMsg);
sl@0
  2055
        exit(1);
sl@0
  2056
      }
sl@0
  2057
    }
sl@0
  2058
  }else{
sl@0
  2059
    /* Run commands received from standard input
sl@0
  2060
    */
sl@0
  2061
    if( stdin_is_interactive ){
sl@0
  2062
      char *zHome;
sl@0
  2063
      char *zHistory = 0;
sl@0
  2064
      int nHistory;
sl@0
  2065
      printf(
sl@0
  2066
        "SQLite version %s\n"
sl@0
  2067
        "Enter \".help\" for instructions\n"
sl@0
  2068
        "Enter SQL statements terminated with a \";\"\n",
sl@0
  2069
        sqlite3_libversion()
sl@0
  2070
      );
sl@0
  2071
      zHome = find_home_dir();
sl@0
  2072
      if( zHome && (zHistory = malloc(nHistory = strlen(zHome)+20))!=0 ){
sl@0
  2073
        sqlite3_snprintf(nHistory, zHistory,"%s/.sqlite_history", zHome);
sl@0
  2074
      }
sl@0
  2075
#if defined(HAVE_READLINE) && HAVE_READLINE==1
sl@0
  2076
      if( zHistory ) read_history(zHistory);
sl@0
  2077
#endif
sl@0
  2078
      rc = process_input(&data, 0);
sl@0
  2079
      if( zHistory ){
sl@0
  2080
        stifle_history(100);
sl@0
  2081
        write_history(zHistory);
sl@0
  2082
        free(zHistory);
sl@0
  2083
      }
sl@0
  2084
      free(zHome);
sl@0
  2085
    }else{
sl@0
  2086
      rc = process_input(&data, stdin);
sl@0
  2087
    }
sl@0
  2088
  }
sl@0
  2089
  set_table_name(&data, 0);
sl@0
  2090
  if( db ){
sl@0
  2091
    if( sqlite3_close(db)!=SQLITE_OK ){
sl@0
  2092
      fprintf(stderr,"error closing database: %s\n", sqlite3_errmsg(db));
sl@0
  2093
    }
sl@0
  2094
  }
sl@0
  2095
  return rc;
sl@0
  2096
}