2014-09-02 23:59:40 +04:00
|
|
|
/*
|
|
|
|
** 2014 August 30
|
|
|
|
**
|
|
|
|
** The author disclaims copyright to this source code. In place of
|
|
|
|
** a legal notice, here is a blessing:
|
|
|
|
**
|
|
|
|
** May you do good and not evil.
|
|
|
|
** May you find forgiveness for yourself and forgive others.
|
|
|
|
** May you share freely, never taking more than you give.
|
|
|
|
**
|
|
|
|
*************************************************************************
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
2014-09-03 23:30:32 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
2014-09-02 23:59:40 +04:00
|
|
|
|
|
|
|
#include "sqlite3.h"
|
|
|
|
#include "sqlite3ota.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
** The ota_state table is used to save the state of a partially applied
|
|
|
|
** update so that it can be resumed later. The table contains at most a
|
|
|
|
** single row:
|
|
|
|
**
|
|
|
|
** "tbl" -> Table currently being written (target database names).
|
|
|
|
**
|
|
|
|
** "idx" -> Index currently being written (target database names).
|
|
|
|
** Or, if the main table is being written, a NULL value.
|
|
|
|
**
|
2014-09-05 23:31:15 +04:00
|
|
|
** "row" -> Number of rows for this object already processed
|
2014-09-02 23:59:40 +04:00
|
|
|
**
|
|
|
|
** "progress" -> total number of key/value b-tree operations performed
|
|
|
|
** so far as part of this ota update.
|
|
|
|
*/
|
2014-09-05 23:52:42 +04:00
|
|
|
#define OTA_CREATE_STATE "CREATE TABLE IF NOT EXISTS ota.ota_state" \
|
2014-09-03 23:30:32 +04:00
|
|
|
"(tbl, idx, row, progress)"
|
2014-09-02 23:59:40 +04:00
|
|
|
|
2014-09-03 23:30:32 +04:00
|
|
|
typedef struct OtaState OtaState;
|
2014-09-05 23:31:15 +04:00
|
|
|
typedef struct OtaObjIter OtaObjIter;
|
|
|
|
typedef unsigned char u8;
|
2014-09-02 23:59:40 +04:00
|
|
|
|
|
|
|
/*
|
2014-09-05 23:31:15 +04:00
|
|
|
** A structure to store values read from the ota_state table in memory.
|
2014-09-02 23:59:40 +04:00
|
|
|
*/
|
2014-09-05 23:31:15 +04:00
|
|
|
struct OtaState {
|
|
|
|
char *zTbl;
|
|
|
|
char *zIdx;
|
|
|
|
int nRow;
|
2014-09-18 18:48:38 +04:00
|
|
|
sqlite3_int64 nProgress;
|
2014-09-02 23:59:40 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
2014-09-05 23:31:15 +04:00
|
|
|
** An iterator of this type is used to iterate through all objects in
|
|
|
|
** the target database that require updating. For each such table, the
|
|
|
|
** iterator visits, in order:
|
2014-09-02 23:59:40 +04:00
|
|
|
**
|
2014-09-05 23:31:15 +04:00
|
|
|
** * the table itself,
|
|
|
|
** * each index of the table (zero or more points to visit), and
|
|
|
|
** * a special "cleanup table" point.
|
2014-09-02 23:59:40 +04:00
|
|
|
*/
|
2014-09-05 23:31:15 +04:00
|
|
|
struct OtaObjIter {
|
|
|
|
sqlite3_stmt *pTblIter; /* Iterate through tables */
|
|
|
|
sqlite3_stmt *pIdxIter; /* Index iterator */
|
|
|
|
int nTblCol; /* Size of azTblCol[] array */
|
|
|
|
char **azTblCol; /* Array of quoted column names */
|
|
|
|
u8 *abTblPk; /* Array of flags - true for PK columns */
|
|
|
|
|
|
|
|
/* Output variables. zTbl==0 implies EOF. */
|
|
|
|
int bCleanup; /* True in "cleanup" state */
|
|
|
|
const char *zTbl; /* Name of target db table */
|
|
|
|
const char *zIdx; /* Name of target db index (or null) */
|
|
|
|
int iVisit; /* Number of points visited, incl. current */
|
|
|
|
|
|
|
|
/* Statements created by otaObjIterPrepareAll() */
|
|
|
|
int nCol; /* Number of columns in current object */
|
|
|
|
sqlite3_stmt *pSelect; /* Source data */
|
|
|
|
sqlite3_stmt *pInsert; /* Statement for INSERT operations */
|
2014-09-07 00:19:38 +04:00
|
|
|
sqlite3_stmt *pDelete; /* Statement for DELETE ops */
|
2014-09-08 21:50:35 +04:00
|
|
|
|
|
|
|
/* Last UPDATE used (for PK b-tree updates only), or NULL. */
|
|
|
|
char *zMask; /* Copy of update mask used with pUpdate */
|
|
|
|
sqlite3_stmt *pUpdate; /* Last update statement (or NULL) */
|
2014-09-03 23:30:32 +04:00
|
|
|
};
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
/*
|
|
|
|
** OTA handle.
|
|
|
|
*/
|
2014-09-02 23:59:40 +04:00
|
|
|
struct sqlite3ota {
|
2014-09-05 23:52:42 +04:00
|
|
|
sqlite3 *db; /* "main" -> target db, "ota" -> ota db */
|
2014-09-03 23:30:32 +04:00
|
|
|
char *zTarget; /* Path to target db */
|
2014-09-02 23:59:40 +04:00
|
|
|
int rc; /* Value returned by last ota_step() call */
|
|
|
|
char *zErrmsg; /* Error message if rc!=SQLITE_OK */
|
2014-09-05 23:31:15 +04:00
|
|
|
int nStep; /* Rows processed for current object */
|
2014-09-18 18:48:38 +04:00
|
|
|
int nProgress; /* Rows processed for all objects */
|
2014-09-05 23:31:15 +04:00
|
|
|
OtaObjIter objiter;
|
2014-09-02 23:59:40 +04:00
|
|
|
};
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
/*
|
|
|
|
** Prepare the SQL statement in buffer zSql against database handle db.
|
|
|
|
** If successful, set *ppStmt to point to the new statement and return
|
|
|
|
** SQLITE_OK.
|
|
|
|
**
|
|
|
|
** Otherwise, if an error does occur, set *ppStmt to NULL and return
|
|
|
|
** an SQLite error code. Additionally, set output variable *pzErrmsg to
|
|
|
|
** point to a buffer containing an error message. It is the responsibility
|
|
|
|
** of the caller to (eventually) free this buffer using sqlite3_free().
|
|
|
|
*/
|
2014-09-02 23:59:40 +04:00
|
|
|
static int prepareAndCollectError(
|
|
|
|
sqlite3 *db,
|
|
|
|
sqlite3_stmt **ppStmt,
|
2014-09-05 23:31:15 +04:00
|
|
|
char **pzErrmsg,
|
|
|
|
const char *zSql
|
2014-09-02 23:59:40 +04:00
|
|
|
){
|
|
|
|
int rc = sqlite3_prepare_v2(db, zSql, -1, ppStmt, 0);
|
|
|
|
if( rc!=SQLITE_OK ){
|
|
|
|
*pzErrmsg = sqlite3_mprintf("%s", sqlite3_errmsg(db));
|
|
|
|
*ppStmt = 0;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
/*
|
|
|
|
** Reset the SQL statement passed as the first argument. Return a copy
|
|
|
|
** of the value returned by sqlite3_reset().
|
|
|
|
**
|
|
|
|
** If an error has occurred, then set *pzErrmsg to point to a buffer
|
|
|
|
** containing an error message. It is the responsibility of the caller
|
|
|
|
** to eventually free this buffer using sqlite3_free().
|
|
|
|
*/
|
|
|
|
static int resetAndCollectError(sqlite3_stmt *pStmt, char **pzErrmsg){
|
|
|
|
int rc = sqlite3_reset(pStmt);
|
|
|
|
if( rc!=SQLITE_OK ){
|
|
|
|
*pzErrmsg = sqlite3_mprintf("%s", sqlite3_errmsg(sqlite3_db_handle(pStmt)));
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2014-09-02 23:59:40 +04:00
|
|
|
/*
|
|
|
|
** Unless it is NULL, argument zSql points to a buffer allocated using
|
|
|
|
** sqlite3_malloc containing an SQL statement. This function prepares the SQL
|
|
|
|
** statement against database db and frees the buffer. If statement
|
|
|
|
** compilation is successful, *ppStmt is set to point to the new statement
|
|
|
|
** handle and SQLITE_OK is returned.
|
|
|
|
**
|
|
|
|
** Otherwise, if an error occurs, *ppStmt is set to NULL and an error code
|
|
|
|
** returned. In this case, *pzErrmsg may also be set to point to an error
|
|
|
|
** message. It is the responsibility of the caller to free this error message
|
|
|
|
** buffer using sqlite3_free().
|
|
|
|
**
|
|
|
|
** If argument zSql is NULL, this function assumes that an OOM has occurred.
|
|
|
|
** In this case SQLITE_NOMEM is returned and *ppStmt set to NULL.
|
|
|
|
*/
|
|
|
|
static int prepareFreeAndCollectError(
|
|
|
|
sqlite3 *db,
|
|
|
|
sqlite3_stmt **ppStmt,
|
2014-09-05 23:31:15 +04:00
|
|
|
char **pzErrmsg,
|
|
|
|
char *zSql
|
2014-09-02 23:59:40 +04:00
|
|
|
){
|
|
|
|
int rc;
|
|
|
|
assert( *pzErrmsg==0 );
|
|
|
|
if( zSql==0 ){
|
|
|
|
rc = SQLITE_NOMEM;
|
|
|
|
*ppStmt = 0;
|
|
|
|
}else{
|
2014-09-05 23:31:15 +04:00
|
|
|
rc = prepareAndCollectError(db, ppStmt, pzErrmsg, zSql);
|
2014-09-02 23:59:40 +04:00
|
|
|
sqlite3_free(zSql);
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
/*
|
|
|
|
** Free the OtaObjIter.azTblCol[] and OtaObjIter.abTblPk[] arrays allocated
|
|
|
|
** by an earlier call to otaObjIterGetCols().
|
|
|
|
*/
|
|
|
|
static void otaObjIterFreeCols(OtaObjIter *pIter){
|
|
|
|
int i;
|
|
|
|
for(i=0; i<pIter->nTblCol; i++){
|
|
|
|
sqlite3_free(pIter->azTblCol[i]);
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
2014-09-05 23:31:15 +04:00
|
|
|
sqlite3_free(pIter->azTblCol);
|
|
|
|
sqlite3_free(pIter->abTblPk);
|
|
|
|
pIter->azTblCol = 0;
|
|
|
|
pIter->abTblPk = 0;
|
|
|
|
pIter->nTblCol = 0;
|
2014-09-08 21:50:35 +04:00
|
|
|
sqlite3_free(pIter->zMask);
|
|
|
|
pIter->zMask = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Finalize all statements and free all allocations that are specific to
|
|
|
|
** the current object (table/index pair).
|
|
|
|
*/
|
|
|
|
static void otaObjIterClearStatements(OtaObjIter *pIter){
|
|
|
|
sqlite3_finalize(pIter->pSelect);
|
|
|
|
sqlite3_finalize(pIter->pInsert);
|
|
|
|
sqlite3_finalize(pIter->pDelete);
|
|
|
|
sqlite3_finalize(pIter->pUpdate);
|
|
|
|
pIter->pSelect = 0;
|
|
|
|
pIter->pInsert = 0;
|
|
|
|
pIter->pDelete = 0;
|
|
|
|
pIter->pUpdate = 0;
|
|
|
|
pIter->nCol = 0;
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
/*
|
|
|
|
** Clean up any resources allocated as part of the iterator object passed
|
|
|
|
** as the only argument.
|
|
|
|
*/
|
|
|
|
static void otaObjIterFinalize(OtaObjIter *pIter){
|
2014-09-08 21:50:35 +04:00
|
|
|
otaObjIterClearStatements(pIter);
|
2014-09-05 23:31:15 +04:00
|
|
|
sqlite3_finalize(pIter->pTblIter);
|
|
|
|
sqlite3_finalize(pIter->pIdxIter);
|
|
|
|
otaObjIterFreeCols(pIter);
|
|
|
|
memset(pIter, 0, sizeof(OtaObjIter));
|
|
|
|
}
|
2014-09-02 23:59:40 +04:00
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
/*
|
|
|
|
** Advance the iterator to the next position.
|
|
|
|
**
|
|
|
|
** If no error occurs, SQLITE_OK is returned and the iterator is left
|
|
|
|
** pointing to the next entry. Otherwise, an error code and message is
|
|
|
|
** left in the OTA handle passed as the first argument. A copy of the
|
|
|
|
** error code is returned.
|
|
|
|
*/
|
|
|
|
static int otaObjIterNext(sqlite3ota *p, OtaObjIter *pIter){
|
|
|
|
int rc = p->rc;
|
2014-09-02 23:59:40 +04:00
|
|
|
if( rc==SQLITE_OK ){
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
/* Free any SQLite statements used while processing the previous object */
|
2014-09-08 21:50:35 +04:00
|
|
|
otaObjIterClearStatements(pIter);
|
2014-09-05 23:31:15 +04:00
|
|
|
|
|
|
|
if( pIter->bCleanup ){
|
|
|
|
otaObjIterFreeCols(pIter);
|
|
|
|
pIter->bCleanup = 0;
|
|
|
|
rc = sqlite3_step(pIter->pTblIter);
|
|
|
|
if( rc!=SQLITE_ROW ){
|
|
|
|
rc = sqlite3_reset(pIter->pTblIter);
|
|
|
|
pIter->zTbl = 0;
|
|
|
|
}else{
|
|
|
|
pIter->zTbl = (const char*)sqlite3_column_text(pIter->pTblIter, 0);
|
|
|
|
rc = SQLITE_OK;
|
|
|
|
}
|
2014-09-02 23:59:40 +04:00
|
|
|
}else{
|
2014-09-05 23:31:15 +04:00
|
|
|
if( pIter->zIdx==0 ){
|
|
|
|
sqlite3_bind_text(pIter->pIdxIter, 1, pIter->zTbl, -1, SQLITE_STATIC);
|
|
|
|
}
|
|
|
|
rc = sqlite3_step(pIter->pIdxIter);
|
|
|
|
if( rc!=SQLITE_ROW ){
|
|
|
|
rc = sqlite3_reset(pIter->pIdxIter);
|
|
|
|
pIter->bCleanup = 1;
|
|
|
|
pIter->zIdx = 0;
|
|
|
|
}else{
|
|
|
|
pIter->zIdx = (const char*)sqlite3_column_text(pIter->pIdxIter, 0);
|
|
|
|
rc = SQLITE_OK;
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
if( rc!=SQLITE_OK ){
|
|
|
|
otaObjIterFinalize(pIter);
|
|
|
|
p->rc = rc;
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
2014-09-05 23:31:15 +04:00
|
|
|
pIter->iVisit++;
|
2014-09-02 23:59:40 +04:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
/*
|
|
|
|
** Initialize the iterator structure passed as the second argument.
|
|
|
|
**
|
|
|
|
** If no error occurs, SQLITE_OK is returned and the iterator is left
|
|
|
|
** pointing to the first entry. Otherwise, an error code and message is
|
|
|
|
** left in the OTA handle passed as the first argument. A copy of the
|
|
|
|
** error code is returned.
|
|
|
|
*/
|
|
|
|
static int otaObjIterFirst(sqlite3ota *p, OtaObjIter *pIter){
|
2014-09-02 23:59:40 +04:00
|
|
|
int rc;
|
2014-09-05 23:31:15 +04:00
|
|
|
memset(pIter, 0, sizeof(OtaObjIter));
|
2014-09-02 23:59:40 +04:00
|
|
|
|
2014-09-05 23:52:42 +04:00
|
|
|
rc = prepareAndCollectError(p->db, &pIter->pTblIter, &p->zErrmsg,
|
|
|
|
"SELECT substr(name, 6) FROM ota.sqlite_master "
|
2014-09-05 23:31:15 +04:00
|
|
|
"WHERE type='table' AND name LIKE 'data_%'"
|
2014-09-02 23:59:40 +04:00
|
|
|
);
|
2014-09-05 23:31:15 +04:00
|
|
|
|
2014-09-02 23:59:40 +04:00
|
|
|
if( rc==SQLITE_OK ){
|
2014-09-05 23:52:42 +04:00
|
|
|
rc = prepareAndCollectError(p->db, &pIter->pIdxIter, &p->zErrmsg,
|
|
|
|
"SELECT name FROM main.sqlite_master "
|
2014-09-05 23:31:15 +04:00
|
|
|
"WHERE type='index' AND tbl_name = ?"
|
|
|
|
);
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
pIter->bCleanup = 1;
|
|
|
|
p->rc = rc;
|
|
|
|
return otaObjIterNext(p, pIter);
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
/*
|
|
|
|
** Allocate a buffer and populate it with the double-quoted version of the
|
|
|
|
** string in the argument buffer, suitable for use as an SQL identifier.
|
|
|
|
** For example:
|
|
|
|
**
|
2014-09-15 19:22:32 +04:00
|
|
|
** [quick `brown` fox] -> [`quick ``brown`` fox`]
|
2014-09-05 23:31:15 +04:00
|
|
|
**
|
|
|
|
** Assuming the allocation is successful, a pointer to the new buffer is
|
|
|
|
** returned. It is the responsibility of the caller to free it using
|
|
|
|
** sqlite3_free() at some point in the future. Or, if the allocation fails,
|
|
|
|
** a NULL pointer is returned.
|
|
|
|
*/
|
|
|
|
static char *otaQuoteName(const char *zName){
|
|
|
|
int nName = strlen(zName);
|
|
|
|
char *zRet = sqlite3_malloc(nName * 2 + 2 + 1);
|
|
|
|
if( zRet ){
|
|
|
|
int i;
|
|
|
|
char *p = zRet;
|
2014-09-15 19:22:32 +04:00
|
|
|
*p++ = '`';
|
2014-09-05 23:31:15 +04:00
|
|
|
for(i=0; i<nName; i++){
|
2014-09-15 19:22:32 +04:00
|
|
|
if( zName[i]=='`' ) *p++ = '`';
|
2014-09-05 23:31:15 +04:00
|
|
|
*p++ = zName[i];
|
|
|
|
}
|
2014-09-15 19:22:32 +04:00
|
|
|
*p++ = '`';
|
2014-09-05 23:31:15 +04:00
|
|
|
*p++ = '\0';
|
|
|
|
}
|
|
|
|
return zRet;
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
|
2014-09-07 00:19:38 +04:00
|
|
|
/*
|
|
|
|
** Argument zFmt is a sqlite3_mprintf() style format string. The trailing
|
|
|
|
** arguments are the usual subsitution values. This function performs
|
|
|
|
** the printf() style substitutions and executes the result as an SQL
|
|
|
|
** statement on the OTA handles database.
|
|
|
|
**
|
|
|
|
** If an error occurs, an error code and error message is stored in the
|
|
|
|
** OTA handle. If an error has already occurred when this function is
|
|
|
|
** called, it is a no-op.
|
|
|
|
*/
|
|
|
|
static int otaMPrintfExec(sqlite3ota *p, const char *zFmt, ...){
|
|
|
|
va_list ap;
|
|
|
|
va_start(ap, zFmt);
|
|
|
|
if( p->rc==SQLITE_OK ){
|
|
|
|
char *zSql = sqlite3_vmprintf(zFmt, ap);
|
|
|
|
if( zSql==0 ){
|
|
|
|
p->rc = SQLITE_NOMEM;
|
|
|
|
}else{
|
|
|
|
p->rc = sqlite3_exec(p->db, zSql, 0, 0, &p->zErrmsg);
|
|
|
|
sqlite3_free(zSql);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
return p->rc;
|
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
/*
|
|
|
|
** If they are not already populated, populate the pIter->azTblCol[],
|
|
|
|
** pIter->abTblPk[] and pIter->nTblCol variables according to the table
|
|
|
|
** that the iterator currently points to.
|
|
|
|
**
|
|
|
|
** Return SQLITE_OK if successful, or an SQLite error code otherwise. If
|
|
|
|
** an error does occur, an error code and error message are also left in
|
|
|
|
** the OTA handle.
|
|
|
|
*/
|
|
|
|
static int otaObjIterGetCols(sqlite3ota *p, OtaObjIter *pIter){
|
|
|
|
if( pIter->azTblCol==0 ){
|
|
|
|
sqlite3_stmt *pStmt;
|
|
|
|
char *zSql;
|
|
|
|
int nCol = 0;
|
|
|
|
int bSeenPk = 0;
|
|
|
|
int rc2; /* sqlite3_finalize() return value */
|
|
|
|
|
2014-09-05 23:52:42 +04:00
|
|
|
zSql = sqlite3_mprintf("PRAGMA main.table_info(%Q)", pIter->zTbl);
|
|
|
|
p->rc = prepareFreeAndCollectError(p->db, &pStmt, &p->zErrmsg, zSql);
|
2014-09-05 23:31:15 +04:00
|
|
|
while( p->rc==SQLITE_OK && SQLITE_ROW==sqlite3_step(pStmt) ){
|
|
|
|
if( (nCol % 8)==0 ){
|
|
|
|
int nByte = sizeof(char*) * (nCol+8);
|
|
|
|
char **azNew = (char**)sqlite3_realloc(pIter->azTblCol, nByte);
|
2014-09-18 15:15:17 +04:00
|
|
|
u8 *abNew = (u8*)sqlite3_realloc(pIter->abTblPk, nCol+8);
|
2014-09-05 23:31:15 +04:00
|
|
|
|
|
|
|
if( azNew ) pIter->azTblCol = azNew;
|
|
|
|
if( abNew ) pIter->abTblPk = abNew;
|
|
|
|
if( azNew==0 || abNew==0 ) p->rc = SQLITE_NOMEM;
|
|
|
|
}
|
2014-09-02 23:59:40 +04:00
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
if( p->rc==SQLITE_OK ){
|
|
|
|
const char *zName = (const char*)sqlite3_column_text(pStmt, 1);
|
|
|
|
pIter->abTblPk[nCol] = sqlite3_column_int(pStmt, 5);
|
|
|
|
if( pIter->abTblPk[nCol] ) bSeenPk = 1;
|
|
|
|
pIter->azTblCol[nCol] = otaQuoteName(zName);
|
|
|
|
if( pIter->azTblCol[nCol]==0 ) p->rc = SQLITE_NOMEM;
|
|
|
|
nCol++;
|
|
|
|
}
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
2014-09-05 23:31:15 +04:00
|
|
|
pIter->nTblCol = nCol;
|
|
|
|
rc2 = sqlite3_finalize(pStmt);
|
|
|
|
if( p->rc==SQLITE_OK ) p->rc = rc2;
|
|
|
|
|
|
|
|
if( p->rc==SQLITE_OK && bSeenPk==0 ){
|
|
|
|
p->zErrmsg = sqlite3_mprintf("table %s has no PRIMARY KEY", pIter->zTbl);
|
|
|
|
p->rc = SQLITE_ERROR;
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
return p->rc;
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
|
2014-09-15 18:54:07 +04:00
|
|
|
/*
|
|
|
|
** This function constructs and returns a pointer to a nul-terminated
|
|
|
|
** string containing some SQL clause or list based on one or more of the
|
|
|
|
** column names currently stored in the pIter->azTblCol[] array.
|
|
|
|
**
|
|
|
|
** If an OOM error is encountered, NULL is returned and an error code
|
|
|
|
** left in the OTA handle passed as the first argument. Otherwise, a pointer
|
|
|
|
** to the allocated string buffer is returned. It is the responsibility
|
|
|
|
** of the caller to eventually free this buffer using sqlite3_free().
|
|
|
|
**
|
|
|
|
** The number of column names to include in the returned string is passed
|
|
|
|
** as the third argument.
|
|
|
|
**
|
|
|
|
** If arguments aiCol and azCollate are both NULL, then the returned string
|
|
|
|
** contains the first nCol column names as a comma-separated list. For
|
|
|
|
** example:
|
|
|
|
**
|
|
|
|
** "a", "b", "c"
|
|
|
|
**
|
|
|
|
** If argument aiCol is not NULL, it must point to an array containing nCol
|
|
|
|
** entries - the index of each column name to include in the comma-separated
|
|
|
|
** list. For example, if aiCol[] contains {2, 0, 1), then the returned
|
|
|
|
** string is changed to:
|
|
|
|
**
|
|
|
|
** "c", "a", "b"
|
|
|
|
**
|
|
|
|
** If azCollate is not NULL, it must also point to an array containing nCol
|
|
|
|
** entries - collation sequence names to associated with each element of
|
|
|
|
** the comma separated list. For example, ef azCollate[] contains
|
|
|
|
** {"BINARY", "NOCASE", "REVERSE"}, then the retuned string is:
|
|
|
|
**
|
|
|
|
** "c" COLLATE "BINARY", "a" COLLATE "NOCASE", "b" COLLATE "REVERSE"
|
|
|
|
**
|
|
|
|
*/
|
2014-09-05 23:31:15 +04:00
|
|
|
static char *otaObjIterGetCollist(
|
2014-09-15 18:54:07 +04:00
|
|
|
sqlite3ota *p, /* OTA object */
|
|
|
|
OtaObjIter *pIter, /* Object iterator for column names */
|
|
|
|
int nCol, /* Number of column names */
|
|
|
|
int *aiCol, /* Array of nCol column indexes */
|
|
|
|
const char **azCollate /* Array of nCol collation sequence names */
|
2014-09-05 23:31:15 +04:00
|
|
|
){
|
|
|
|
char *zList = 0;
|
|
|
|
if( p->rc==SQLITE_OK ){
|
|
|
|
const char *zSep = "";
|
|
|
|
int i;
|
|
|
|
for(i=0; i<nCol; i++){
|
|
|
|
int iCol = aiCol ? aiCol[i] : i;
|
|
|
|
zList = sqlite3_mprintf("%z%s%s", zList, zSep, pIter->azTblCol[iCol]);
|
2014-09-15 18:54:07 +04:00
|
|
|
if( zList && azCollate ){
|
|
|
|
zList = sqlite3_mprintf("%z COLLATE %Q", zList, azCollate[i]);
|
|
|
|
}
|
2014-09-05 23:31:15 +04:00
|
|
|
zSep = ", ";
|
|
|
|
if( zList==0 ){
|
|
|
|
p->rc = SQLITE_NOMEM;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
2014-09-05 23:31:15 +04:00
|
|
|
return zList;
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
|
2014-09-07 00:19:38 +04:00
|
|
|
static char *otaObjIterGetOldlist(
|
|
|
|
sqlite3ota *p,
|
2014-09-08 21:50:35 +04:00
|
|
|
OtaObjIter *pIter,
|
|
|
|
const char *zObj
|
2014-09-07 00:19:38 +04:00
|
|
|
){
|
|
|
|
char *zList = 0;
|
|
|
|
if( p->rc==SQLITE_OK ){
|
2014-09-08 21:50:35 +04:00
|
|
|
const char *zS = "";
|
2014-09-07 00:19:38 +04:00
|
|
|
int i;
|
|
|
|
for(i=0; i<pIter->nTblCol; i++){
|
2014-09-08 21:50:35 +04:00
|
|
|
zList = sqlite3_mprintf("%z%s%s.%s", zList, zS, zObj, pIter->azTblCol[i]);
|
|
|
|
zS = ", ";
|
2014-09-07 00:19:38 +04:00
|
|
|
if( zList==0 ){
|
|
|
|
p->rc = SQLITE_NOMEM;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return zList;
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *otaObjIterGetWhere(
|
|
|
|
sqlite3ota *p,
|
|
|
|
OtaObjIter *pIter
|
|
|
|
){
|
|
|
|
char *zList = 0;
|
|
|
|
if( p->rc==SQLITE_OK ){
|
|
|
|
const char *zSep = "";
|
|
|
|
int i;
|
|
|
|
for(i=0; i<pIter->nTblCol; i++){
|
|
|
|
if( pIter->abTblPk[i] ){
|
2014-09-08 21:50:35 +04:00
|
|
|
const char *zCol = pIter->azTblCol[i];
|
|
|
|
zList = sqlite3_mprintf("%z%s%s=?%d", zList, zSep, zCol, i+1);
|
2014-09-07 00:19:38 +04:00
|
|
|
zSep = " AND ";
|
|
|
|
if( zList==0 ){
|
|
|
|
p->rc = SQLITE_NOMEM;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return zList;
|
|
|
|
}
|
|
|
|
|
2014-09-08 21:50:35 +04:00
|
|
|
/*
|
|
|
|
** The SELECT statement iterating through the keys for the current object
|
|
|
|
** (p->objiter.pSelect) currently points to a valid row. However, there
|
|
|
|
** is something wrong with the ota_control value in the ota_control value
|
|
|
|
** stored in the (p->nCol+1)'th column. Set the error code and error message
|
|
|
|
** of the OTA handle to something reflecting this.
|
|
|
|
*/
|
|
|
|
static void otaBadControlError(sqlite3ota *p){
|
|
|
|
p->rc = SQLITE_ERROR;
|
|
|
|
p->zErrmsg = sqlite3_mprintf("Invalid ota_control value");
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *otaObjIterGetSetlist(
|
|
|
|
sqlite3ota *p,
|
|
|
|
OtaObjIter *pIter,
|
|
|
|
const char *zMask
|
|
|
|
){
|
|
|
|
char *zList = 0;
|
|
|
|
if( p->rc==SQLITE_OK ){
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if( strlen(zMask)!=pIter->nTblCol ){
|
|
|
|
otaBadControlError(p);
|
|
|
|
}else{
|
|
|
|
const char *zSep = "";
|
|
|
|
for(i=0; i<pIter->nTblCol; i++){
|
|
|
|
if( zMask[i]=='x' ){
|
|
|
|
zList = sqlite3_mprintf("%z%s%s=?%d",
|
|
|
|
zList, zSep, pIter->azTblCol[i], i+1
|
|
|
|
);
|
|
|
|
zSep = ", ";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return zList;
|
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
static char *otaObjIterGetBindlist(sqlite3ota *p, int nBind){
|
|
|
|
char *zRet = 0;
|
|
|
|
if( p->rc==SQLITE_OK ){
|
|
|
|
int nByte = nBind*2 + 1;
|
|
|
|
zRet = sqlite3_malloc(nByte);
|
|
|
|
if( zRet==0 ){
|
|
|
|
p->rc = SQLITE_NOMEM;
|
|
|
|
}else{
|
|
|
|
int i;
|
|
|
|
for(i=0; i<nBind; i++){
|
|
|
|
zRet[i*2] = '?';
|
|
|
|
zRet[i*2+1] = (i+1==nBind) ? '\0' : ',';
|
|
|
|
}
|
|
|
|
}
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
2014-09-05 23:31:15 +04:00
|
|
|
return zRet;
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2014-09-05 23:31:15 +04:00
|
|
|
** Ensure that the SQLite statement handles required to update the
|
|
|
|
** target database object currently indicated by the iterator passed
|
|
|
|
** as the second argument are available.
|
2014-09-02 23:59:40 +04:00
|
|
|
*/
|
2014-09-05 23:31:15 +04:00
|
|
|
static int otaObjIterPrepareAll(
|
|
|
|
sqlite3ota *p,
|
|
|
|
OtaObjIter *pIter,
|
|
|
|
int nOffset /* Add "LIMIT -1 OFFSET $nOffset" to SELECT */
|
|
|
|
){
|
|
|
|
assert( pIter->bCleanup==0 );
|
|
|
|
if( pIter->pSelect==0 && otaObjIterGetCols(p, pIter)==SQLITE_OK ){
|
|
|
|
char *zCollist = 0; /* List of indexed columns */
|
|
|
|
char **pz = &p->zErrmsg;
|
|
|
|
const char *zIdx = pIter->zIdx;
|
|
|
|
char *zLimit = 0;
|
|
|
|
|
|
|
|
if( nOffset ){
|
|
|
|
zLimit = sqlite3_mprintf(" LIMIT -1 OFFSET %d", nOffset);
|
|
|
|
if( !zLimit ) p->rc = SQLITE_NOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( zIdx ){
|
|
|
|
int *aiCol; /* Column map */
|
2014-09-15 18:54:07 +04:00
|
|
|
const char **azColl; /* Collation sequences */
|
2014-09-05 23:31:15 +04:00
|
|
|
|
2014-09-07 00:19:38 +04:00
|
|
|
/* Create the index writers */
|
2014-09-05 23:31:15 +04:00
|
|
|
if( p->rc==SQLITE_OK ){
|
|
|
|
p->rc = sqlite3_index_writer(
|
2014-09-15 18:54:07 +04:00
|
|
|
p->db, 0, zIdx, &pIter->pInsert, &azColl, &aiCol, &pIter->nCol
|
2014-09-05 23:31:15 +04:00
|
|
|
);
|
|
|
|
}
|
2014-09-07 00:19:38 +04:00
|
|
|
if( p->rc==SQLITE_OK ){
|
|
|
|
p->rc = sqlite3_index_writer(
|
2014-09-15 18:54:07 +04:00
|
|
|
p->db, 1, zIdx, &pIter->pDelete, &azColl, &aiCol, &pIter->nCol
|
2014-09-07 00:19:38 +04:00
|
|
|
);
|
|
|
|
}
|
2014-09-05 23:31:15 +04:00
|
|
|
|
|
|
|
/* Create the SELECT statement to read keys in sorted order */
|
2014-09-15 18:54:07 +04:00
|
|
|
zCollist = otaObjIterGetCollist(p, pIter, pIter->nCol, aiCol, azColl);
|
2014-09-05 23:31:15 +04:00
|
|
|
if( p->rc==SQLITE_OK ){
|
2014-09-05 23:52:42 +04:00
|
|
|
p->rc = prepareFreeAndCollectError(p->db, &pIter->pSelect, pz,
|
2014-09-05 23:31:15 +04:00
|
|
|
sqlite3_mprintf(
|
2014-09-07 00:19:38 +04:00
|
|
|
"SELECT %s, ota_control FROM ota.'data_%q' "
|
2014-09-08 21:50:35 +04:00
|
|
|
"WHERE typeof(ota_control)='integer' AND ota_control!=1 "
|
2014-09-07 00:19:38 +04:00
|
|
|
"UNION ALL "
|
|
|
|
"SELECT %s, ota_control FROM ota.'ota_tmp_%q' "
|
|
|
|
"ORDER BY %s%s",
|
|
|
|
zCollist, pIter->zTbl,
|
|
|
|
zCollist, pIter->zTbl,
|
|
|
|
zCollist, zLimit
|
2014-09-05 23:31:15 +04:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
char *zBindings = otaObjIterGetBindlist(p, pIter->nTblCol);
|
2014-09-07 00:19:38 +04:00
|
|
|
char *zWhere = otaObjIterGetWhere(p, pIter);
|
2014-09-08 21:50:35 +04:00
|
|
|
char *zOldlist = otaObjIterGetOldlist(p, pIter, "old");
|
|
|
|
char *zNewlist = otaObjIterGetOldlist(p, pIter, "new");
|
2014-09-15 18:54:07 +04:00
|
|
|
zCollist = otaObjIterGetCollist(p, pIter, pIter->nTblCol, 0, 0);
|
2014-09-05 23:31:15 +04:00
|
|
|
pIter->nCol = pIter->nTblCol;
|
|
|
|
|
|
|
|
/* Create the SELECT statement to read keys from data_xxx */
|
|
|
|
if( p->rc==SQLITE_OK ){
|
2014-09-05 23:52:42 +04:00
|
|
|
p->rc = prepareFreeAndCollectError(p->db, &pIter->pSelect, pz,
|
2014-09-05 23:31:15 +04:00
|
|
|
sqlite3_mprintf(
|
2014-09-07 00:19:38 +04:00
|
|
|
"SELECT %s, ota_control FROM ota.'data_%q'%s",
|
2014-09-05 23:31:15 +04:00
|
|
|
zCollist, pIter->zTbl, zLimit)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create the INSERT statement to write to the target PK b-tree */
|
|
|
|
if( p->rc==SQLITE_OK ){
|
2014-09-05 23:52:42 +04:00
|
|
|
p->rc = prepareFreeAndCollectError(p->db, &pIter->pInsert, pz,
|
2014-09-05 23:31:15 +04:00
|
|
|
sqlite3_mprintf(
|
2014-09-05 23:52:42 +04:00
|
|
|
"INSERT INTO main.%Q(%s) VALUES(%s)",
|
|
|
|
pIter->zTbl, zCollist, zBindings
|
2014-09-05 23:31:15 +04:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
2014-09-07 00:19:38 +04:00
|
|
|
|
|
|
|
/* Create the DELETE statement to write to the target PK b-tree */
|
|
|
|
if( p->rc==SQLITE_OK ){
|
|
|
|
p->rc = prepareFreeAndCollectError(p->db, &pIter->pDelete, pz,
|
|
|
|
sqlite3_mprintf(
|
|
|
|
"DELETE FROM main.%Q WHERE %s", pIter->zTbl, zWhere
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if( p->rc==SQLITE_OK ){
|
|
|
|
otaMPrintfExec(p,
|
|
|
|
"CREATE TABLE IF NOT EXISTS ota.'ota_tmp_%q' AS "
|
|
|
|
"SELECT * FROM ota.'data_%q' WHERE 0;"
|
2014-09-08 21:50:35 +04:00
|
|
|
|
2014-09-07 00:19:38 +04:00
|
|
|
"CREATE TEMP TRIGGER ota_delete_%q BEFORE DELETE ON main.%Q "
|
|
|
|
"BEGIN "
|
|
|
|
" INSERT INTO 'ota_tmp_%q'(ota_control, %s) VALUES(2, %s);"
|
|
|
|
"END;"
|
2014-09-08 21:50:35 +04:00
|
|
|
|
|
|
|
"CREATE TEMP TRIGGER ota_update1_%q BEFORE UPDATE ON main.%Q "
|
|
|
|
"BEGIN "
|
|
|
|
" INSERT INTO 'ota_tmp_%q'(ota_control, %s) VALUES(2, %s);"
|
|
|
|
"END;"
|
|
|
|
|
|
|
|
"CREATE TEMP TRIGGER ota_update2_%q AFTER UPDATE ON main.%Q "
|
|
|
|
"BEGIN "
|
|
|
|
" INSERT INTO 'ota_tmp_%q'(ota_control, %s) VALUES(3, %s);"
|
|
|
|
"END;"
|
|
|
|
|
|
|
|
, pIter->zTbl, pIter->zTbl,
|
|
|
|
pIter->zTbl, pIter->zTbl, pIter->zTbl, zCollist, zOldlist,
|
|
|
|
pIter->zTbl, pIter->zTbl, pIter->zTbl, zCollist, zOldlist,
|
|
|
|
pIter->zTbl, pIter->zTbl, pIter->zTbl, zCollist, zNewlist
|
2014-09-07 00:19:38 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2014-09-08 21:50:35 +04:00
|
|
|
/* Allocate space required for the zMask field. */
|
|
|
|
if( p->rc==SQLITE_OK ){
|
|
|
|
int nMask = pIter->nTblCol+1;
|
|
|
|
pIter->zMask = (char*)sqlite3_malloc(nMask);
|
|
|
|
if( pIter->zMask==0 ){
|
|
|
|
p->rc = SQLITE_NOMEM;
|
|
|
|
}else{
|
|
|
|
memset(pIter->zMask, 0, nMask);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-07 00:19:38 +04:00
|
|
|
sqlite3_free(zWhere);
|
|
|
|
sqlite3_free(zOldlist);
|
2014-09-08 21:50:35 +04:00
|
|
|
sqlite3_free(zNewlist);
|
2014-09-05 23:31:15 +04:00
|
|
|
sqlite3_free(zBindings);
|
|
|
|
}
|
|
|
|
sqlite3_free(zCollist);
|
|
|
|
sqlite3_free(zLimit);
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
2014-09-05 23:31:15 +04:00
|
|
|
|
|
|
|
return p->rc;
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
|
2014-09-07 00:19:38 +04:00
|
|
|
#define OTA_INSERT 1
|
|
|
|
#define OTA_DELETE 2
|
|
|
|
#define OTA_IDX_DELETE 3
|
2014-09-08 21:50:35 +04:00
|
|
|
#define OTA_IDX_INSERT 4
|
|
|
|
#define OTA_UPDATE 5
|
2014-09-07 00:19:38 +04:00
|
|
|
|
2014-09-08 21:50:35 +04:00
|
|
|
static int otaGetUpdateStmt(
|
|
|
|
sqlite3ota *p,
|
|
|
|
OtaObjIter *pIter,
|
|
|
|
const char *zMask,
|
|
|
|
sqlite3_stmt **ppStmt
|
|
|
|
){
|
|
|
|
if( pIter->pUpdate && strcmp(zMask, pIter->zMask)==0 ){
|
|
|
|
*ppStmt = pIter->pUpdate;
|
|
|
|
}else{
|
|
|
|
char *zWhere = otaObjIterGetWhere(p, pIter);
|
|
|
|
char *zSet = otaObjIterGetSetlist(p, pIter, zMask);
|
|
|
|
char *zUpdate = 0;
|
|
|
|
sqlite3_finalize(pIter->pUpdate);
|
|
|
|
pIter->pUpdate = 0;
|
|
|
|
if( p->rc==SQLITE_OK ){
|
|
|
|
zUpdate = sqlite3_mprintf("UPDATE %Q SET %s WHERE %s",
|
|
|
|
pIter->zTbl, zSet, zWhere
|
|
|
|
);
|
|
|
|
p->rc = prepareFreeAndCollectError(
|
|
|
|
p->db, &pIter->pUpdate, &p->zErrmsg, zUpdate
|
|
|
|
);
|
|
|
|
*ppStmt = pIter->pUpdate;
|
|
|
|
}
|
|
|
|
if( p->rc==SQLITE_OK ){
|
|
|
|
memcpy(pIter->zMask, zMask, pIter->nTblCol);
|
|
|
|
}
|
|
|
|
sqlite3_free(zWhere);
|
|
|
|
sqlite3_free(zSet);
|
|
|
|
}
|
|
|
|
return p->rc;
|
2014-09-07 00:19:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** The SELECT statement iterating through the keys for the current object
|
|
|
|
** (p->objiter.pSelect) currently points to a valid row. This function
|
|
|
|
** determines the type of operation requested by this row and returns
|
|
|
|
** one of the following values to indicate the result:
|
|
|
|
**
|
|
|
|
** * OTA_INSERT
|
|
|
|
** * OTA_DELETE
|
|
|
|
** * OTA_IDX_DELETE
|
|
|
|
** * OTA_UPDATE
|
|
|
|
**
|
|
|
|
** If OTA_UPDATE is returned, then output variable *pzMask is set to
|
|
|
|
** point to the text value indicating the columns to update.
|
|
|
|
**
|
|
|
|
** If the ota_control field contains an invalid value, an error code and
|
|
|
|
** message are left in the OTA handle and zero returned.
|
|
|
|
*/
|
|
|
|
static int otaStepType(sqlite3ota *p, const char **pzMask){
|
|
|
|
int iCol = p->objiter.nCol; /* Index of ota_control column */
|
|
|
|
int res = 0; /* Return value */
|
|
|
|
|
|
|
|
switch( sqlite3_column_type(p->objiter.pSelect, iCol) ){
|
|
|
|
case SQLITE_INTEGER: {
|
|
|
|
int iVal = sqlite3_column_int(p->objiter.pSelect, iCol);
|
|
|
|
if( iVal==0 ){
|
|
|
|
res = OTA_INSERT;
|
|
|
|
}else if( iVal==1 ){
|
|
|
|
res = OTA_DELETE;
|
|
|
|
}else if( iVal==2 ){
|
|
|
|
res = OTA_IDX_DELETE;
|
2014-09-08 21:50:35 +04:00
|
|
|
}else if( iVal==3 ){
|
|
|
|
res = OTA_IDX_INSERT;
|
2014-09-07 00:19:38 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SQLITE_TEXT:
|
|
|
|
*pzMask = (const char*)sqlite3_column_text(p->objiter.pSelect, iCol);
|
|
|
|
res = OTA_UPDATE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if( res==0 ){
|
|
|
|
otaBadControlError(p);
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
/*
|
|
|
|
** This function does the work for an sqlite3ota_step() call.
|
|
|
|
**
|
|
|
|
** The object-iterator (p->objiter) currently points to a valid object,
|
|
|
|
** and the input cursor (p->objiter.pSelect) currently points to a valid
|
|
|
|
** input row. Perform whatever processing is required and return.
|
|
|
|
**
|
|
|
|
** If no error occurs, SQLITE_OK is returned. Otherwise, an error code
|
|
|
|
** and message is left in the OTA handle and a copy of the error code
|
|
|
|
** returned.
|
2014-09-02 23:59:40 +04:00
|
|
|
*/
|
2014-09-05 23:31:15 +04:00
|
|
|
static int otaStep(sqlite3ota *p){
|
|
|
|
OtaObjIter *pIter = &p->objiter;
|
2014-09-07 00:19:38 +04:00
|
|
|
const char *zMask = 0;
|
2014-09-05 23:31:15 +04:00
|
|
|
int i;
|
2014-09-07 00:19:38 +04:00
|
|
|
int eType = otaStepType(p, &zMask);
|
|
|
|
|
|
|
|
if( eType ){
|
|
|
|
assert( eType!=OTA_UPDATE || pIter->zIdx==0 );
|
2014-09-02 23:59:40 +04:00
|
|
|
|
2014-09-07 00:19:38 +04:00
|
|
|
if( pIter->zIdx==0 && eType==OTA_IDX_DELETE ){
|
|
|
|
otaBadControlError(p);
|
|
|
|
}
|
2014-09-08 21:50:35 +04:00
|
|
|
else if(
|
|
|
|
eType==OTA_INSERT
|
|
|
|
|| eType==OTA_DELETE
|
|
|
|
|| eType==OTA_IDX_DELETE
|
|
|
|
|| eType==OTA_IDX_INSERT
|
|
|
|
){
|
2014-09-07 00:19:38 +04:00
|
|
|
sqlite3_stmt *pWriter;
|
2014-09-08 21:50:35 +04:00
|
|
|
|
2014-09-07 00:19:38 +04:00
|
|
|
assert( eType!=OTA_UPDATE );
|
2014-09-08 21:50:35 +04:00
|
|
|
assert( eType!=OTA_DELETE || pIter->zIdx==0 );
|
|
|
|
|
|
|
|
if( eType==OTA_IDX_DELETE || eType==OTA_DELETE ){
|
|
|
|
pWriter = pIter->pDelete;
|
|
|
|
}else{
|
|
|
|
pWriter = pIter->pInsert;
|
|
|
|
}
|
2014-09-07 00:19:38 +04:00
|
|
|
|
|
|
|
for(i=0; i<pIter->nCol; i++){
|
2014-09-08 21:50:35 +04:00
|
|
|
if( eType==SQLITE_DELETE && pIter->zIdx==0 && pIter->abTblPk[i]==0 ){
|
|
|
|
continue;
|
|
|
|
}
|
2014-09-07 00:19:38 +04:00
|
|
|
sqlite3_value *pVal = sqlite3_column_value(pIter->pSelect, i);
|
|
|
|
sqlite3_bind_value(pWriter, i+1, pVal);
|
|
|
|
}
|
|
|
|
sqlite3_step(pWriter);
|
|
|
|
p->rc = resetAndCollectError(pWriter, &p->zErrmsg);
|
2014-09-08 21:50:35 +04:00
|
|
|
}else if( eType==OTA_UPDATE ){
|
|
|
|
sqlite3_stmt *pUpdate = 0;
|
|
|
|
otaGetUpdateStmt(p, pIter, zMask, &pUpdate);
|
|
|
|
if( pUpdate ){
|
|
|
|
for(i=0; i<pIter->nCol; i++){
|
2014-09-07 00:19:38 +04:00
|
|
|
sqlite3_value *pVal = sqlite3_column_value(pIter->pSelect, i);
|
2014-09-08 21:50:35 +04:00
|
|
|
sqlite3_bind_value(pUpdate, i+1, pVal);
|
2014-09-07 00:19:38 +04:00
|
|
|
}
|
2014-09-08 21:50:35 +04:00
|
|
|
sqlite3_step(pUpdate);
|
|
|
|
p->rc = resetAndCollectError(pUpdate, &p->zErrmsg);
|
2014-09-07 00:19:38 +04:00
|
|
|
}
|
|
|
|
}else{
|
|
|
|
/* no-op */
|
|
|
|
assert( eType==OTA_DELETE && pIter->zIdx );
|
|
|
|
}
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
2014-09-05 23:31:15 +04:00
|
|
|
|
2014-09-02 23:59:40 +04:00
|
|
|
return p->rc;
|
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
/*
|
|
|
|
** Step the OTA object.
|
|
|
|
*/
|
2014-09-02 23:59:40 +04:00
|
|
|
int sqlite3ota_step(sqlite3ota *p){
|
|
|
|
if( p ){
|
2014-09-05 23:31:15 +04:00
|
|
|
OtaObjIter *pIter = &p->objiter;
|
|
|
|
while( p && p->rc==SQLITE_OK && pIter->zTbl ){
|
2014-09-02 23:59:40 +04:00
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
if( pIter->bCleanup ){
|
2014-09-07 00:19:38 +04:00
|
|
|
/* Clean up the ota_tmp_xxx table for the previous table. It
|
|
|
|
** cannot be dropped as there are currently active SQL statements.
|
|
|
|
** But the contents can be deleted. */
|
2014-09-08 21:50:35 +04:00
|
|
|
// otaMPrintfExec(p, "DELETE FROM ota.'ota_tmp_%q'", pIter->zTbl);
|
2014-09-05 23:31:15 +04:00
|
|
|
}else{
|
|
|
|
otaObjIterPrepareAll(p, pIter, 0);
|
|
|
|
|
|
|
|
/* Advance to the next row to process. */
|
|
|
|
if( p->rc==SQLITE_OK ){
|
|
|
|
int rc = sqlite3_step(pIter->pSelect);
|
|
|
|
if( rc==SQLITE_ROW ){
|
|
|
|
p->nStep++;
|
2014-09-18 18:48:38 +04:00
|
|
|
p->nProgress++;
|
2014-09-05 23:31:15 +04:00
|
|
|
return otaStep(p);
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
2014-09-05 23:31:15 +04:00
|
|
|
p->rc = sqlite3_reset(pIter->pSelect);
|
|
|
|
p->nStep = 0;
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
otaObjIterNext(p, pIter);
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
if( p->rc==SQLITE_OK && pIter->zTbl==0 ){
|
|
|
|
p->rc = SQLITE_DONE;
|
|
|
|
}
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
2014-09-05 23:31:15 +04:00
|
|
|
return p->rc;
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void otaSaveTransactionState(sqlite3ota *p){
|
2014-09-05 23:52:42 +04:00
|
|
|
otaMPrintfExec(p,
|
|
|
|
"INSERT OR REPLACE INTO ota.ota_state(rowid, tbl, idx, row, progress)"
|
2014-09-18 18:48:38 +04:00
|
|
|
"VALUES(1, %Q, %Q, %d, %lld)",
|
|
|
|
p->objiter.zTbl, p->objiter.zIdx, p->nStep, p->nProgress
|
2014-09-03 23:30:32 +04:00
|
|
|
);
|
|
|
|
}
|
2014-09-02 23:59:40 +04:00
|
|
|
|
2014-09-03 23:30:32 +04:00
|
|
|
/*
|
|
|
|
** Allocate an OtaState object and load the contents of the ota_state
|
|
|
|
** table into it. Return a pointer to the new object. It is the
|
|
|
|
** responsibility of the caller to eventually free the object using
|
|
|
|
** sqlite3_free().
|
|
|
|
**
|
|
|
|
** If an error occurs, leave an error code and message in the ota handle
|
|
|
|
** and return NULL.
|
|
|
|
*/
|
|
|
|
static OtaState *otaLoadState(sqlite3ota *p){
|
2014-09-05 23:52:42 +04:00
|
|
|
const char *zSelect = "SELECT tbl, idx, row, progress FROM ota.ota_state";
|
2014-09-03 23:30:32 +04:00
|
|
|
OtaState *pRet = 0;
|
|
|
|
sqlite3_stmt *pStmt;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
assert( p->rc==SQLITE_OK );
|
2014-09-05 23:52:42 +04:00
|
|
|
rc = prepareAndCollectError(p->db, &pStmt, &p->zErrmsg, zSelect);
|
2014-09-02 23:59:40 +04:00
|
|
|
if( rc==SQLITE_OK ){
|
2014-09-03 23:30:32 +04:00
|
|
|
if( sqlite3_step(pStmt)==SQLITE_ROW ){
|
|
|
|
const char *zIdx = (const char*)sqlite3_column_text(pStmt, 1);
|
|
|
|
const char *zTbl = (const char*)sqlite3_column_text(pStmt, 0);
|
|
|
|
int nIdx = zIdx ? (strlen(zIdx) + 1) : 0;
|
|
|
|
int nTbl = strlen(zTbl) + 1;
|
|
|
|
int nByte = sizeof(OtaState) + nTbl + nIdx;
|
|
|
|
|
|
|
|
pRet = (OtaState*)sqlite3_malloc(nByte);
|
|
|
|
if( pRet ){
|
|
|
|
pRet->zTbl = (char*)&pRet[1];
|
|
|
|
memcpy(pRet->zTbl, sqlite3_column_text(pStmt, 0), nTbl);
|
|
|
|
if( zIdx ){
|
|
|
|
pRet->zIdx = &pRet->zTbl[nTbl];
|
|
|
|
memcpy(pRet->zIdx, zIdx, nIdx);
|
|
|
|
}else{
|
|
|
|
pRet->zIdx = 0;
|
|
|
|
}
|
2014-09-05 23:31:15 +04:00
|
|
|
pRet->nRow = sqlite3_column_int(pStmt, 2);
|
2014-09-18 18:48:38 +04:00
|
|
|
pRet->nProgress = sqlite3_column_int64(pStmt, 3);
|
2014-09-03 23:30:32 +04:00
|
|
|
}
|
|
|
|
}else{
|
|
|
|
pRet = (OtaState*)sqlite3_malloc(sizeof(OtaState));
|
|
|
|
if( pRet ){
|
|
|
|
memset(pRet, 0, sizeof(*pRet));
|
|
|
|
}
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
rc = sqlite3_finalize(pStmt);
|
2014-09-03 23:30:32 +04:00
|
|
|
if( rc==SQLITE_OK && pRet==0 ) rc = SQLITE_NOMEM;
|
2014-09-02 23:59:40 +04:00
|
|
|
if( rc!=SQLITE_OK ){
|
2014-09-03 23:30:32 +04:00
|
|
|
sqlite3_free(pRet);
|
|
|
|
pRet = 0;
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
}
|
2014-09-03 23:30:32 +04:00
|
|
|
|
2014-09-02 23:59:40 +04:00
|
|
|
p->rc = rc;
|
2014-09-03 23:30:32 +04:00
|
|
|
return pRet;
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
static int otaStrCompare(const char *z1, const char *z2){
|
|
|
|
if( z1==0 && z2==0 ) return 0;
|
|
|
|
if( z1==0 || z2==0 ) return 1;
|
|
|
|
return (sqlite3_stricmp(z1, z2)!=0);
|
|
|
|
}
|
|
|
|
|
2014-09-03 23:30:32 +04:00
|
|
|
static void otaLoadTransactionState(sqlite3ota *p, OtaState *pState){
|
|
|
|
assert( p->rc==SQLITE_OK );
|
|
|
|
if( pState->zTbl ){
|
2014-09-05 23:31:15 +04:00
|
|
|
OtaObjIter *pIter = &p->objiter;
|
2014-09-17 23:05:46 +04:00
|
|
|
int rc = SQLITE_OK;
|
2014-09-05 23:31:15 +04:00
|
|
|
|
|
|
|
while( rc==SQLITE_OK && pIter->zTbl && (pIter->bCleanup
|
|
|
|
|| otaStrCompare(pIter->zTbl, pState->zTbl)
|
|
|
|
|| otaStrCompare(pIter->zIdx, pState->zIdx)
|
|
|
|
)){
|
|
|
|
rc = otaObjIterNext(p, &p->objiter);
|
2014-09-03 23:30:32 +04:00
|
|
|
}
|
2014-09-05 23:31:15 +04:00
|
|
|
|
|
|
|
if( rc==SQLITE_OK && !p->objiter.zTbl ){
|
2014-09-03 23:30:32 +04:00
|
|
|
rc = SQLITE_ERROR;
|
|
|
|
p->zErrmsg = sqlite3_mprintf("ota_state mismatch error");
|
|
|
|
}
|
2014-09-02 23:59:40 +04:00
|
|
|
|
2014-09-03 23:30:32 +04:00
|
|
|
if( rc==SQLITE_OK ){
|
2014-09-05 23:31:15 +04:00
|
|
|
p->nStep = pState->nRow;
|
|
|
|
rc = otaObjIterPrepareAll(p, &p->objiter, p->nStep);
|
2014-09-03 23:30:32 +04:00
|
|
|
}
|
2014-09-02 23:59:40 +04:00
|
|
|
|
2014-09-03 23:30:32 +04:00
|
|
|
p->rc = rc;
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-03 23:30:32 +04:00
|
|
|
/*
|
|
|
|
** Move the "*-oal" file corresponding to the target database to the
|
|
|
|
** "*-wal" location. If an error occurs, leave an error code and error
|
|
|
|
** message in the ota handle.
|
|
|
|
*/
|
|
|
|
static void otaMoveOalFile(sqlite3ota *p){
|
|
|
|
char *zWal = sqlite3_mprintf("%s-wal", p->zTarget);
|
|
|
|
char *zOal = sqlite3_mprintf("%s-oal", p->zTarget);
|
|
|
|
|
|
|
|
assert( p->rc==SQLITE_DONE && p->zErrmsg==0 );
|
|
|
|
if( zWal==0 || zOal==0 ){
|
|
|
|
p->rc = SQLITE_NOMEM;
|
|
|
|
}else{
|
|
|
|
rename(zOal, zWal);
|
|
|
|
}
|
|
|
|
|
|
|
|
sqlite3_free(zWal);
|
|
|
|
sqlite3_free(zOal);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** If there is a "*-oal" file in the file-system corresponding to the
|
|
|
|
** target database in the file-system, delete it. If an error occurs,
|
|
|
|
** leave an error code and error message in the ota handle.
|
|
|
|
*/
|
|
|
|
static void otaDeleteOalFile(sqlite3ota *p){
|
|
|
|
char *zOal = sqlite3_mprintf("%s-oal", p->zTarget);
|
|
|
|
assert( p->rc==SQLITE_OK && p->zErrmsg==0 );
|
|
|
|
unlink(zOal);
|
|
|
|
sqlite3_free(zOal);
|
|
|
|
}
|
2014-09-02 23:59:40 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
** Open and return a new OTA handle.
|
|
|
|
*/
|
|
|
|
sqlite3ota *sqlite3ota_open(const char *zTarget, const char *zOta){
|
|
|
|
sqlite3ota *p;
|
2014-09-03 23:30:32 +04:00
|
|
|
int nTarget = strlen(zTarget);
|
2014-09-02 23:59:40 +04:00
|
|
|
|
2014-09-03 23:30:32 +04:00
|
|
|
p = (sqlite3ota*)sqlite3_malloc(sizeof(sqlite3ota)+nTarget+1);
|
2014-09-02 23:59:40 +04:00
|
|
|
if( p ){
|
2014-09-03 23:30:32 +04:00
|
|
|
OtaState *pState = 0;
|
2014-09-02 23:59:40 +04:00
|
|
|
|
|
|
|
/* Open the target database */
|
|
|
|
memset(p, 0, sizeof(sqlite3ota));
|
2014-09-03 23:30:32 +04:00
|
|
|
p->zTarget = (char*)&p[1];
|
|
|
|
memcpy(p->zTarget, zTarget, nTarget+1);
|
2014-09-05 23:52:42 +04:00
|
|
|
p->rc = sqlite3_open(zTarget, &p->db);
|
|
|
|
if( p->rc ){
|
|
|
|
p->zErrmsg = sqlite3_mprintf("%s", sqlite3_errmsg(p->db));
|
|
|
|
}
|
|
|
|
otaMPrintfExec(p, "ATTACH %Q AS ota", zOta);
|
2014-09-02 23:59:40 +04:00
|
|
|
|
|
|
|
/* If it has not already been created, create the ota_state table */
|
|
|
|
if( p->rc==SQLITE_OK ){
|
2014-09-05 23:52:42 +04:00
|
|
|
p->rc = sqlite3_exec(p->db, OTA_CREATE_STATE, 0, 0, &p->zErrmsg);
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if( p->rc==SQLITE_OK ){
|
2014-09-03 23:30:32 +04:00
|
|
|
pState = otaLoadState(p);
|
|
|
|
if( pState && pState->zTbl==0 ){
|
|
|
|
otaDeleteOalFile(p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if( p->rc==SQLITE_OK ){
|
|
|
|
const char *zScript =
|
|
|
|
"PRAGMA journal_mode=off;"
|
|
|
|
"PRAGMA pager_ota_mode=1;"
|
2014-09-02 23:59:40 +04:00
|
|
|
"PRAGMA ota_mode=1;"
|
|
|
|
"BEGIN IMMEDIATE;"
|
|
|
|
;
|
2014-09-05 23:52:42 +04:00
|
|
|
p->rc = sqlite3_exec(p->db, zScript, 0, 0, &p->zErrmsg);
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
/* Point the object iterator at the first object */
|
2014-09-02 23:59:40 +04:00
|
|
|
if( p->rc==SQLITE_OK ){
|
2014-09-05 23:31:15 +04:00
|
|
|
p->rc = otaObjIterFirst(p, &p->objiter);
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if( p->rc==SQLITE_OK ){
|
2014-09-18 18:48:38 +04:00
|
|
|
p->nProgress = pState->nProgress;
|
2014-09-03 23:30:32 +04:00
|
|
|
otaLoadTransactionState(p, pState);
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
2014-09-03 23:30:32 +04:00
|
|
|
|
|
|
|
sqlite3_free(pState);
|
2014-09-02 23:59:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
/*
|
|
|
|
** Close the OTA handle.
|
|
|
|
*/
|
2014-09-02 23:59:40 +04:00
|
|
|
int sqlite3ota_close(sqlite3ota *p, char **pzErrmsg){
|
|
|
|
int rc;
|
|
|
|
if( p ){
|
|
|
|
|
|
|
|
/* If the update has not been fully applied, save the state in
|
|
|
|
** the ota db. If successful, this call also commits the open
|
|
|
|
** transaction on the ota db. */
|
|
|
|
assert( p->rc!=SQLITE_ROW );
|
|
|
|
if( p->rc==SQLITE_OK ){
|
|
|
|
assert( p->zErrmsg==0 );
|
|
|
|
otaSaveTransactionState(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Close all open statement handles. */
|
2014-09-05 23:31:15 +04:00
|
|
|
otaObjIterFinalize(&p->objiter);
|
2014-09-02 23:59:40 +04:00
|
|
|
|
2014-09-03 23:30:32 +04:00
|
|
|
/* Commit the transaction to the *-oal file. */
|
|
|
|
if( p->rc==SQLITE_OK || p->rc==SQLITE_DONE ){
|
2014-09-05 23:52:42 +04:00
|
|
|
rc = sqlite3_exec(p->db, "COMMIT", 0, 0, &p->zErrmsg);
|
2014-09-02 23:59:40 +04:00
|
|
|
if( rc!=SQLITE_OK ) p->rc = rc;
|
|
|
|
}
|
2014-09-03 23:30:32 +04:00
|
|
|
|
2014-09-05 23:31:15 +04:00
|
|
|
/* Close the open database handles */
|
2014-09-05 23:52:42 +04:00
|
|
|
sqlite3_close(p->db);
|
2014-09-05 23:31:15 +04:00
|
|
|
|
|
|
|
/* If the OTA has been completely applied and no error occurred, move
|
|
|
|
** the *-oal file to *-wal. */
|
2014-09-03 23:30:32 +04:00
|
|
|
if( p->rc==SQLITE_DONE ){
|
|
|
|
otaMoveOalFile(p);
|
|
|
|
}
|
2014-09-02 23:59:40 +04:00
|
|
|
|
|
|
|
rc = p->rc;
|
|
|
|
*pzErrmsg = p->zErrmsg;
|
|
|
|
sqlite3_free(p);
|
|
|
|
}else{
|
|
|
|
rc = SQLITE_NOMEM;
|
|
|
|
*pzErrmsg = 0;
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2014-09-18 18:48:38 +04:00
|
|
|
/*
|
|
|
|
** Return the total number of key-value operations (inserts, deletes or
|
|
|
|
** updates) that have been performed on the target database since the
|
|
|
|
** current OTA update was started.
|
|
|
|
*/
|
|
|
|
sqlite3_int64 sqlite3ota_progress(sqlite3ota *pOta){
|
|
|
|
return pOta->nProgress;
|
|
|
|
}
|
|
|
|
|
2014-09-02 23:59:40 +04:00
|
|
|
|
|
|
|
/**************************************************************************/
|
|
|
|
|
|
|
|
#ifdef SQLITE_TEST
|
|
|
|
|
|
|
|
#include <tcl.h>
|
|
|
|
|
|
|
|
/* From main.c (apparently...) */
|
|
|
|
extern const char *sqlite3ErrName(int);
|
|
|
|
|
|
|
|
static int test_sqlite3ota_cmd(
|
|
|
|
ClientData clientData,
|
|
|
|
Tcl_Interp *interp,
|
|
|
|
int objc,
|
|
|
|
Tcl_Obj *CONST objv[]
|
|
|
|
){
|
|
|
|
int ret = TCL_OK;
|
|
|
|
sqlite3ota *pOta = (sqlite3ota*)clientData;
|
|
|
|
const char *azMethod[] = { "step", "close", 0 };
|
|
|
|
int iMethod;
|
|
|
|
|
|
|
|
if( objc!=2 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 1, objv, "METHOD");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
if( Tcl_GetIndexFromObj(interp, objv[1], azMethod, "method", 0, &iMethod) ){
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch( iMethod ){
|
|
|
|
case 0: /* step */ {
|
|
|
|
int rc = sqlite3ota_step(pOta);
|
|
|
|
Tcl_SetObjResult(interp, Tcl_NewStringObj(sqlite3ErrName(rc), -1));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case 1: /* close */ {
|
|
|
|
char *zErrmsg = 0;
|
|
|
|
int rc;
|
|
|
|
Tcl_DeleteCommand(interp, Tcl_GetString(objv[0]));
|
|
|
|
rc = sqlite3ota_close(pOta, &zErrmsg);
|
|
|
|
if( rc==SQLITE_OK || rc==SQLITE_DONE ){
|
|
|
|
Tcl_SetObjResult(interp, Tcl_NewStringObj(sqlite3ErrName(rc), -1));
|
|
|
|
assert( zErrmsg==0 );
|
|
|
|
}else{
|
|
|
|
Tcl_SetObjResult(interp, Tcl_NewStringObj(sqlite3ErrName(rc), -1));
|
|
|
|
if( zErrmsg ){
|
|
|
|
Tcl_AppendResult(interp, " - ", zErrmsg, 0);
|
|
|
|
sqlite3_free(zErrmsg);
|
|
|
|
}
|
|
|
|
ret = TCL_ERROR;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default: /* seems unlikely */
|
|
|
|
assert( !"cannot happen" );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
** Tclcmd: sqlite3ota CMD <target-db> <ota-db>
|
|
|
|
*/
|
|
|
|
static int test_sqlite3ota(
|
|
|
|
ClientData clientData,
|
|
|
|
Tcl_Interp *interp,
|
|
|
|
int objc,
|
|
|
|
Tcl_Obj *CONST objv[]
|
|
|
|
){
|
|
|
|
sqlite3ota *pOta = 0;
|
|
|
|
const char *zCmd;
|
|
|
|
const char *zTarget;
|
|
|
|
const char *zOta;
|
|
|
|
|
|
|
|
if( objc!=4 ){
|
|
|
|
Tcl_WrongNumArgs(interp, 1, objv, "NAME TARGET-DB OTA-DB");
|
|
|
|
return TCL_ERROR;
|
|
|
|
}
|
|
|
|
zCmd = Tcl_GetString(objv[1]);
|
|
|
|
zTarget = Tcl_GetString(objv[2]);
|
|
|
|
zOta = Tcl_GetString(objv[3]);
|
|
|
|
|
|
|
|
pOta = sqlite3ota_open(zTarget, zOta);
|
|
|
|
Tcl_CreateObjCommand(interp, zCmd, test_sqlite3ota_cmd, (ClientData)pOta, 0);
|
|
|
|
Tcl_SetObjResult(interp, objv[1]);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SqliteOta_Init(Tcl_Interp *interp){
|
|
|
|
Tcl_CreateObjCommand(interp, "sqlite3ota", test_sqlite3ota, 0, 0);
|
|
|
|
return TCL_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* ifdef SQLITE_TEST */
|
|
|
|
|
|
|
|
|
|
|
|
|