os/persistentdata/persistentstorage/sqlite3api/SQLite/table.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 the sqlite3_get_table() and sqlite3_free_table()
sl@0
    13
** interface routines.  These are just wrappers around the main
sl@0
    14
** interface routine of sqlite3_exec().
sl@0
    15
**
sl@0
    16
** These routines are in a separate files so that they will not be linked
sl@0
    17
** if they are not used.
sl@0
    18
**
sl@0
    19
** $Id: table.c,v 1.36 2008/07/08 22:28:49 shane Exp $
sl@0
    20
*/
sl@0
    21
#include "sqliteInt.h"
sl@0
    22
#include <stdlib.h>
sl@0
    23
#include <string.h>
sl@0
    24
sl@0
    25
#ifndef SQLITE_OMIT_GET_TABLE
sl@0
    26
sl@0
    27
/*
sl@0
    28
** This structure is used to pass data from sqlite3_get_table() through
sl@0
    29
** to the callback function is uses to build the result.
sl@0
    30
*/
sl@0
    31
typedef struct TabResult {
sl@0
    32
  char **azResult;
sl@0
    33
  char *zErrMsg;
sl@0
    34
  int nResult;
sl@0
    35
  int nAlloc;
sl@0
    36
  int nRow;
sl@0
    37
  int nColumn;
sl@0
    38
  int nData;
sl@0
    39
  int rc;
sl@0
    40
} TabResult;
sl@0
    41
sl@0
    42
/*
sl@0
    43
** This routine is called once for each row in the result table.  Its job
sl@0
    44
** is to fill in the TabResult structure appropriately, allocating new
sl@0
    45
** memory as necessary.
sl@0
    46
*/
sl@0
    47
static int sqlite3_get_table_cb(void *pArg, int nCol, char **argv, char **colv){
sl@0
    48
  TabResult *p = (TabResult*)pArg;
sl@0
    49
  int need;
sl@0
    50
  int i;
sl@0
    51
  char *z;
sl@0
    52
sl@0
    53
  /* Make sure there is enough space in p->azResult to hold everything
sl@0
    54
  ** we need to remember from this invocation of the callback.
sl@0
    55
  */
sl@0
    56
  if( p->nRow==0 && argv!=0 ){
sl@0
    57
    need = nCol*2;
sl@0
    58
  }else{
sl@0
    59
    need = nCol;
sl@0
    60
  }
sl@0
    61
  if( p->nData + need >= p->nAlloc ){
sl@0
    62
    char **azNew;
sl@0
    63
    p->nAlloc = p->nAlloc*2 + need + 1;
sl@0
    64
    azNew = sqlite3_realloc( p->azResult, sizeof(char*)*p->nAlloc );
sl@0
    65
    if( azNew==0 ) goto malloc_failed;
sl@0
    66
    p->azResult = azNew;
sl@0
    67
  }
sl@0
    68
sl@0
    69
  /* If this is the first row, then generate an extra row containing
sl@0
    70
  ** the names of all columns.
sl@0
    71
  */
sl@0
    72
  if( p->nRow==0 ){
sl@0
    73
    p->nColumn = nCol;
sl@0
    74
    for(i=0; i<nCol; i++){
sl@0
    75
      z = sqlite3_mprintf("%s", colv[i]);
sl@0
    76
      if( z==0 ) goto malloc_failed;
sl@0
    77
      p->azResult[p->nData++] = z;
sl@0
    78
    }
sl@0
    79
  }else if( p->nColumn!=nCol ){
sl@0
    80
    sqlite3_free(p->zErrMsg);
sl@0
    81
    p->zErrMsg = sqlite3_mprintf(
sl@0
    82
       "sqlite3_get_table() called with two or more incompatible queries"
sl@0
    83
    );
sl@0
    84
    p->rc = SQLITE_ERROR;
sl@0
    85
    return 1;
sl@0
    86
  }
sl@0
    87
sl@0
    88
  /* Copy over the row data
sl@0
    89
  */
sl@0
    90
  if( argv!=0 ){
sl@0
    91
    for(i=0; i<nCol; i++){
sl@0
    92
      if( argv[i]==0 ){
sl@0
    93
        z = 0;
sl@0
    94
      }else{
sl@0
    95
        int n = strlen(argv[i])+1;
sl@0
    96
        z = sqlite3_malloc( n );
sl@0
    97
        if( z==0 ) goto malloc_failed;
sl@0
    98
        memcpy(z, argv[i], n);
sl@0
    99
      }
sl@0
   100
      p->azResult[p->nData++] = z;
sl@0
   101
    }
sl@0
   102
    p->nRow++;
sl@0
   103
  }
sl@0
   104
  return 0;
sl@0
   105
sl@0
   106
malloc_failed:
sl@0
   107
  p->rc = SQLITE_NOMEM;
sl@0
   108
  return 1;
sl@0
   109
}
sl@0
   110
sl@0
   111
/*
sl@0
   112
** Query the database.  But instead of invoking a callback for each row,
sl@0
   113
** malloc() for space to hold the result and return the entire results
sl@0
   114
** at the conclusion of the call.
sl@0
   115
**
sl@0
   116
** The result that is written to ***pazResult is held in memory obtained
sl@0
   117
** from malloc().  But the caller cannot free this memory directly.  
sl@0
   118
** Instead, the entire table should be passed to sqlite3_free_table() when
sl@0
   119
** the calling procedure is finished using it.
sl@0
   120
*/
sl@0
   121
SQLITE_EXPORT int sqlite3_get_table(
sl@0
   122
  sqlite3 *db,                /* The database on which the SQL executes */
sl@0
   123
  const char *zSql,           /* The SQL to be executed */
sl@0
   124
  char ***pazResult,          /* Write the result table here */
sl@0
   125
  int *pnRow,                 /* Write the number of rows in the result here */
sl@0
   126
  int *pnColumn,              /* Write the number of columns of result here */
sl@0
   127
  char **pzErrMsg             /* Write error messages here */
sl@0
   128
){
sl@0
   129
  int rc;
sl@0
   130
  TabResult res;
sl@0
   131
sl@0
   132
  *pazResult = 0;
sl@0
   133
  if( pnColumn ) *pnColumn = 0;
sl@0
   134
  if( pnRow ) *pnRow = 0;
sl@0
   135
  res.zErrMsg = 0;
sl@0
   136
  res.nResult = 0;
sl@0
   137
  res.nRow = 0;
sl@0
   138
  res.nColumn = 0;
sl@0
   139
  res.nData = 1;
sl@0
   140
  res.nAlloc = 20;
sl@0
   141
  res.rc = SQLITE_OK;
sl@0
   142
  res.azResult = sqlite3_malloc(sizeof(char*)*res.nAlloc );
sl@0
   143
  if( res.azResult==0 ){
sl@0
   144
     db->errCode = SQLITE_NOMEM;
sl@0
   145
     return SQLITE_NOMEM;
sl@0
   146
  }
sl@0
   147
  res.azResult[0] = 0;
sl@0
   148
  rc = sqlite3_exec(db, zSql, sqlite3_get_table_cb, &res, pzErrMsg);
sl@0
   149
  assert( sizeof(res.azResult[0])>= sizeof(res.nData) );
sl@0
   150
  res.azResult[0] = SQLITE_INT_TO_PTR(res.nData);
sl@0
   151
  if( (rc&0xff)==SQLITE_ABORT ){
sl@0
   152
    sqlite3_free_table(&res.azResult[1]);
sl@0
   153
    if( res.zErrMsg ){
sl@0
   154
      if( pzErrMsg ){
sl@0
   155
        sqlite3_free(*pzErrMsg);
sl@0
   156
        *pzErrMsg = sqlite3_mprintf("%s",res.zErrMsg);
sl@0
   157
      }
sl@0
   158
      sqlite3_free(res.zErrMsg);
sl@0
   159
    }
sl@0
   160
    db->errCode = res.rc;  /* Assume 32-bit assignment is atomic */
sl@0
   161
    return res.rc;
sl@0
   162
  }
sl@0
   163
  sqlite3_free(res.zErrMsg);
sl@0
   164
  if( rc!=SQLITE_OK ){
sl@0
   165
    sqlite3_free_table(&res.azResult[1]);
sl@0
   166
    return rc;
sl@0
   167
  }
sl@0
   168
  if( res.nAlloc>res.nData ){
sl@0
   169
    char **azNew;
sl@0
   170
    azNew = sqlite3_realloc( res.azResult, sizeof(char*)*(res.nData+1) );
sl@0
   171
    if( azNew==0 ){
sl@0
   172
      sqlite3_free_table(&res.azResult[1]);
sl@0
   173
      db->errCode = SQLITE_NOMEM;
sl@0
   174
      return SQLITE_NOMEM;
sl@0
   175
    }
sl@0
   176
    res.nAlloc = res.nData+1;
sl@0
   177
    res.azResult = azNew;
sl@0
   178
  }
sl@0
   179
  *pazResult = &res.azResult[1];
sl@0
   180
  if( pnColumn ) *pnColumn = res.nColumn;
sl@0
   181
  if( pnRow ) *pnRow = res.nRow;
sl@0
   182
  return rc;
sl@0
   183
}
sl@0
   184
sl@0
   185
/*
sl@0
   186
** This routine frees the space the sqlite3_get_table() malloced.
sl@0
   187
*/
sl@0
   188
SQLITE_EXPORT void sqlite3_free_table(
sl@0
   189
  char **azResult            /* Result returned from from sqlite3_get_table() */
sl@0
   190
){
sl@0
   191
  if( azResult ){
sl@0
   192
    int i, n;
sl@0
   193
    azResult--;
sl@0
   194
    assert( azResult!=0 );
sl@0
   195
    n = SQLITE_PTR_TO_INT(azResult[0]);
sl@0
   196
    for(i=1; i<n; i++){ if( azResult[i] ) sqlite3_free(azResult[i]); }
sl@0
   197
    sqlite3_free(azResult);
sl@0
   198
  }
sl@0
   199
}
sl@0
   200
sl@0
   201
#endif /* SQLITE_OMIT_GET_TABLE */