mirror of
https://github.com/sqlite/sqlite.git
synced 2024-11-22 12:17:40 +01:00
0de8c11292
FossilOrigin-Name: 00f83c2576f4a9689720d344788f66219c1f6827
64 lines
1.3 KiB
C
64 lines
1.3 KiB
C
/*
|
|
** A utility for printing an SQLite database journal.
|
|
*/
|
|
#include <stdio.h>
|
|
#include <ctype.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
static int pagesize = 1024;
|
|
static int db = -1;
|
|
static int mxPage = 0;
|
|
|
|
static void out_of_memory(void){
|
|
fprintf(stderr,"Out of memory...\n");
|
|
exit(1);
|
|
}
|
|
|
|
static print_page(int iPg){
|
|
unsigned char *aData;
|
|
int i, j;
|
|
aData = malloc(pagesize);
|
|
if( aData==0 ) out_of_memory();
|
|
read(db, aData, pagesize);
|
|
fprintf(stdout, "Page %d:\n", iPg);
|
|
for(i=0; i<pagesize; i += 16){
|
|
fprintf(stdout, " %03x: ",i);
|
|
for(j=0; j<16; j++){
|
|
fprintf(stdout,"%02x ", aData[i+j]);
|
|
}
|
|
for(j=0; j<16; j++){
|
|
fprintf(stdout,"%c", isprint(aData[i+j]) ? aData[i+j] : '.');
|
|
}
|
|
fprintf(stdout,"\n");
|
|
}
|
|
free(aData);
|
|
}
|
|
|
|
int main(int argc, char **argv){
|
|
struct stat sbuf;
|
|
unsigned int u;
|
|
int rc;
|
|
char zBuf[100];
|
|
if( argc!=2 ){
|
|
fprintf(stderr,"Usage: %s FILENAME\n", argv[0]);
|
|
exit(1);
|
|
}
|
|
db = open(argv[1], O_RDONLY);
|
|
if( db<0 ){
|
|
fprintf(stderr,"%s: can't open %s\n", argv[0], argv[1]);
|
|
exit(1);
|
|
}
|
|
read(db, zBuf, 8);
|
|
read(db, &u, sizeof(u));
|
|
printf("Database Size: %u\n", u);
|
|
while( read(db, &u, sizeof(u))==sizeof(u) ){
|
|
print_page(u);
|
|
}
|
|
close(db);
|
|
}
|