|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "sqlite3.h" |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int sqlite3_mmap_warm(sqlite3 *db, const char *zDb){ |
|
|
int rc = SQLITE_OK; |
|
|
char *zSql = 0; |
|
|
int pgsz = 0; |
|
|
unsigned int nTotal = 0; |
|
|
|
|
|
if( 0==sqlite3_get_autocommit(db) ) return SQLITE_MISUSE; |
|
|
|
|
|
|
|
|
zSql = sqlite3_mprintf("BEGIN; SELECT * FROM %s%q%ssqlite_schema", |
|
|
(zDb ? "'" : ""), (zDb ? zDb : ""), (zDb ? "'." : "") |
|
|
); |
|
|
if( zSql==0 ) return SQLITE_NOMEM; |
|
|
rc = sqlite3_exec(db, zSql, 0, 0, 0); |
|
|
sqlite3_free(zSql); |
|
|
|
|
|
|
|
|
if( rc==SQLITE_OK ){ |
|
|
zSql = sqlite3_mprintf("PRAGMA %s%q%spage_size", |
|
|
(zDb ? "'" : ""), (zDb ? zDb : ""), (zDb ? "'." : "") |
|
|
); |
|
|
if( zSql==0 ){ |
|
|
rc = SQLITE_NOMEM; |
|
|
}else{ |
|
|
sqlite3_stmt *pPgsz = 0; |
|
|
rc = sqlite3_prepare_v2(db, zSql, -1, &pPgsz, 0); |
|
|
sqlite3_free(zSql); |
|
|
if( rc==SQLITE_OK ){ |
|
|
if( sqlite3_step(pPgsz)==SQLITE_ROW ){ |
|
|
pgsz = sqlite3_column_int(pPgsz, 0); |
|
|
} |
|
|
rc = sqlite3_finalize(pPgsz); |
|
|
} |
|
|
if( rc==SQLITE_OK && pgsz==0 ){ |
|
|
rc = SQLITE_ERROR; |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if( rc==SQLITE_OK ){ |
|
|
int rc2; |
|
|
sqlite3_file *pFd = 0; |
|
|
rc = sqlite3_file_control(db, zDb, SQLITE_FCNTL_FILE_POINTER, &pFd); |
|
|
if( rc==SQLITE_OK && pFd->pMethods->iVersion>=3 ){ |
|
|
sqlite3_int64 iPg = 1; |
|
|
sqlite3_io_methods const *p = pFd->pMethods; |
|
|
while( 1 ){ |
|
|
unsigned char *pMap; |
|
|
rc = p->xFetch(pFd, pgsz*iPg, pgsz, (void**)&pMap); |
|
|
if( rc!=SQLITE_OK || pMap==0 ) break; |
|
|
|
|
|
nTotal += (unsigned int)pMap[0]; |
|
|
nTotal += (unsigned int)pMap[pgsz-1]; |
|
|
|
|
|
rc = p->xUnfetch(pFd, pgsz*iPg, (void*)pMap); |
|
|
if( rc!=SQLITE_OK ) break; |
|
|
iPg++; |
|
|
} |
|
|
sqlite3_log(SQLITE_OK, |
|
|
"sqlite3_mmap_warm_cache: Warmed up %d pages of %s", iPg==1?0:iPg, |
|
|
sqlite3_db_filename(db, zDb) |
|
|
); |
|
|
} |
|
|
|
|
|
rc2 = sqlite3_exec(db, "END", 0, 0, 0); |
|
|
if( rc==SQLITE_OK ) rc = rc2; |
|
|
} |
|
|
|
|
|
(void)nTotal; |
|
|
return rc; |
|
|
} |
|
|
|