mdbtools/src/util/mdb-sql.c

503 lines
11 KiB
C
Raw Normal View History

/* MDB Tools - A library for reading MS Access database file
* Copyright (C) 2000 Brian Bruns
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <config.h>
#include <stdio.h>
2004-06-20 22:36:23 +08:00
#ifdef HAVE_LIBREADLINE
# if defined(HAVE_READLINE_READLINE_H)
# include <readline/readline.h>
# elif defined(HAVE_READLINE_H)
# include <readline.h>
2004-10-25 12:11:13 +08:00
# else
/* no readline.h */
2004-06-20 22:36:23 +08:00
extern char *readline ();
2004-10-25 12:11:13 +08:00
# endif
2004-06-20 22:36:23 +08:00
char *cmdline = NULL;
#endif /* HAVE_LIBREADLINE */
#ifdef HAVE_READLINE_HISTORY
# if defined(HAVE_READLINE_HISTORY_H)
# include <readline/history.h>
# elif defined(HAVE_HISTORY_H)
# include <history.h>
2004-10-25 12:11:13 +08:00
# else
/* no history.h */
2004-06-20 22:36:23 +08:00
extern void add_history ();
extern int write_history ();
extern int read_history ();
2004-12-01 14:34:27 +08:00
extern void clear_history ();
2004-10-25 12:11:13 +08:00
# endif
2004-06-20 22:36:23 +08:00
#endif /* HAVE_READLINE_HISTORY */
#include <string.h>
#include "mdbsql.h"
#ifdef DMALLOC
#include "dmalloc.h"
#endif
void dump_results(FILE *out, MdbSQL *sql, char *delimiter);
void dump_results_pp(FILE *out, MdbSQL *sql);
#if SQL
int headers = 1;
int footers = 1;
int pretty_print = 1;
int showplan = 0;
int noexec = 0;
2004-10-25 12:11:13 +08:00
#ifdef HAVE_READLINE_HISTORY
#define HISTFILE ".mdbhistory"
2004-10-25 12:11:13 +08:00
#endif
2004-06-20 22:36:23 +08:00
#ifndef HAVE_LIBREADLINE
char *readline(char *prompt)
{
char *buf, line[1000];
int i = 0;
2011-08-29 07:49:54 +08:00
puts(prompt);
2004-01-06 08:42:07 +08:00
if (! fgets(line,1000,stdin)) {
return NULL;
}
for (i=strlen(line);i>0;i--) {
if (line[i]=='\n') {
line[i]='\0';
break;
}
}
buf = (char *) malloc(strlen(line)+1);
strcpy(buf,line);
return buf;
}
#endif
2011-08-29 07:49:54 +08:00
static int strlen_utf(const char *s) {
int len = 0;
while (*s) {
if ((*s++ & 0xc0) != 0x80)
len++;
}
return len;
}
void
do_set_cmd(MdbSQL *sql, char *s)
{
char *level1, *level2;
level1 = strtok(s, " \t\n");
2004-10-28 11:33:20 +08:00
if (!level1) {
printf("Usage: set [stats|showplan|noexec] [on|off]\n");
return;
}
if (!strcmp(level1,"stats")) {
level2 = strtok(NULL, " \t");
if (!level2) {
printf("Usage: set stats [on|off]\n");
return;
}
if (!strcmp(level2,"on")) {
mdb_stats_on(sql->mdb);
} else if (!strcmp(level2,"off")) {
mdb_stats_off(sql->mdb);
mdb_dump_stats(sql->mdb);
} else {
printf("Unknown stats option %s\n", level2);
2004-10-28 11:33:20 +08:00
printf("Usage: set stats [on|off]\n");
}
} else if (!strcmp(level1,"showplan")) {
level2 = strtok(NULL, " \t");
if (!level2) {
printf("Usage: set showplan [on|off]\n");
return;
}
if (!strcmp(level2,"on")) {
showplan=1;
} else if (!strcmp(level2,"off")) {
showplan=0;
} else {
printf("Unknown showplan option %s\n", level2);
2004-10-28 11:33:20 +08:00
printf("Usage: set showplan [on|off]\n");
}
} else if (!strcmp(level1,"noexec")) {
level2 = strtok(NULL, " \t");
if (!level2) {
printf("Usage: set noexec [on|off]\n");
return;
}
if (!strcmp(level2,"on")) {
noexec=1;
} else if (!strcmp(level2,"off")) {
noexec=0;
} else {
2004-10-28 11:33:20 +08:00
printf("Unknown noexec option %s\n", level2);
printf("Usage: set noexec [on|off]\n");
}
} else {
printf("Unknown set command %s\n", level1);
2004-10-28 11:33:20 +08:00
printf("Usage: set [stats|showplan|noexec] [on|off]\n");
}
}
int
2004-07-09 20:47:04 +08:00
read_file(char *s, int line, unsigned int *bufsz, char *mybuf)
{
char *fname;
FILE *in;
char buf[256];
2004-07-09 20:47:04 +08:00
unsigned int cursz = 0;
int lines = 0;
fname = s;
while (*fname && *fname==' ') fname++;
if (! (in = fopen(fname, "r"))) {
fprintf(stderr,"Unable to open file %s\n", fname);
mybuf[0]=0;
return 0;
}
while (fgets(buf, 255, in)) {
cursz += strlen(buf) + 1;
if (cursz > (*bufsz)) {
(*bufsz) *= 2;
mybuf = (char *) realloc(mybuf, *bufsz);
}
strcat(mybuf, buf);
2004-10-25 12:11:13 +08:00
#ifdef HAVE_READLINE_HISTORY
/* don't record blank lines */
if (strlen(buf)) add_history(buf);
2004-10-25 12:11:13 +08:00
#endif
strcat(mybuf, "\n");
lines++;
printf("%d => %s",line+lines, buf);
}
return lines;
}
void
run_query(FILE *out, MdbSQL *sql, char *mybuf, char *delimiter)
{
MdbTableDef *table;
mdb_sql_run_query(sql, mybuf);
if (!mdb_sql_has_error(sql)) {
if (showplan) {
table = sql->cur_table;
2003-01-23 04:15:42 +08:00
if (table->sarg_tree) mdb_sql_dump_node(table->sarg_tree, 0);
if (sql->cur_table->strategy == MDB_TABLE_SCAN)
printf("Table scanning %s\n", table->name);
else
printf("Index scanning %s using %s\n", table->name, table->scan_idx->name);
}
if (noexec) {
mdb_sql_reset(sql);
return;
}
mdb_sql_bind_all(sql);
if (pretty_print)
dump_results_pp(out, sql);
else
dump_results(out, sql, delimiter);
}
}
void print_value(FILE *out, char *v, int sz, int first)
{
int i;
int vlen;
2011-08-29 07:49:54 +08:00
if (first)
fputc('|', out);
vlen = strlen_utf(v);
fputs(v, out);
for (i=vlen;i<sz;i++)
fputc(' ', out);
fputc('|', out);
}
static void print_break(FILE *out, int sz, int first)
{
int i;
2011-08-29 07:49:54 +08:00
if (first)
fputc('+', out);
for (i=0;i<sz;i++)
fputc('-', out);
fputc('+', out);
}
void print_rows_retrieved(FILE *out, unsigned long row_count)
2004-10-28 11:33:20 +08:00
{
if (!row_count)
fprintf(out, "No Rows retrieved\n");
2004-10-28 11:33:20 +08:00
else if (row_count==1)
fprintf(out, "1 Row retrieved\n");
2004-10-28 11:33:20 +08:00
else
fprintf(out, "%lu Rows retrieved\n", row_count);
fflush(out);
2004-10-28 11:33:20 +08:00
}
void
dump_results(FILE *out, MdbSQL *sql, char *delimiter)
{
2004-07-09 20:47:04 +08:00
unsigned int j;
MdbSQLColumn *sqlcol;
unsigned long row_count = 0;
if (headers) {
for (j=0;j<sql->num_columns-1;j++) {
sqlcol = g_ptr_array_index(sql->columns,j);
fprintf(out, "%s%s", sqlcol->name,
2004-10-28 11:33:20 +08:00
delimiter ? delimiter : "\t");
}
sqlcol = g_ptr_array_index(sql->columns,sql->num_columns-1);
fprintf(out, "%s", sqlcol->name);
fprintf(out,"\n");
fflush(out);
}
while(mdb_fetch_row(sql->cur_table)) {
row_count++;
for (j=0;j<sql->num_columns-1;j++) {
sqlcol = g_ptr_array_index(sql->columns,j);
fprintf(out, "%s%s", (char*)(sql->bound_values[j]),
2004-10-28 11:33:20 +08:00
delimiter ? delimiter : "\t");
}
sqlcol = g_ptr_array_index(sql->columns,sql->num_columns-1);
fprintf(out, "%s", (char*)(sql->bound_values[sql->num_columns-1]));
fprintf(out,"\n");
fflush(out);
}
if (footers) {
print_rows_retrieved(out, row_count);
}
2004-10-28 11:33:20 +08:00
mdb_sql_reset(sql);
}
void
dump_results_pp(FILE *out, MdbSQL *sql)
{
2004-07-09 20:47:04 +08:00
unsigned int j;
MdbSQLColumn *sqlcol;
unsigned long row_count = 0;
/* print header */
if (headers) {
for (j=0;j<sql->num_columns;j++) {
sqlcol = g_ptr_array_index(sql->columns,j);
if (strlen(sqlcol->name)>sqlcol->disp_size)
sqlcol->disp_size = strlen(sqlcol->name);
print_break(out, sqlcol->disp_size, !j);
}
fprintf(out,"\n");
fflush(out);
for (j=0;j<sql->num_columns;j++) {
sqlcol = g_ptr_array_index(sql->columns,j);
print_value(out, sqlcol->name,sqlcol->disp_size,!j);
}
fprintf(out,"\n");
fflush(out);
}
for (j=0;j<sql->num_columns;j++) {
sqlcol = g_ptr_array_index(sql->columns,j);
print_break(out, sqlcol->disp_size, !j);
}
fprintf(out,"\n");
fflush(out);
/* print each row */
2004-09-09 11:44:35 +08:00
while(mdb_fetch_row(sql->cur_table)) {
row_count++;
for (j=0;j<sql->num_columns;j++) {
sqlcol = g_ptr_array_index(sql->columns,j);
print_value(out, sql->bound_values[j],sqlcol->disp_size,!j);
}
fprintf(out,"\n");
fflush(out);
}
/* footer */
for (j=0;j<sql->num_columns;j++) {
sqlcol = g_ptr_array_index(sql->columns,j);
print_break(out, sqlcol->disp_size, !j);
}
fprintf(out,"\n");
fflush(out);
if (footers) {
print_rows_retrieved(out, row_count);
}
/* clean up */
for (j=0;j<sql->num_columns;j++) {
g_free(sql->bound_values[j]);
}
mdb_sql_reset(sql);
}
int
main(int argc, char **argv)
{
2004-12-01 14:34:27 +08:00
char *s = NULL;
char prompt[20];
2004-12-01 14:34:27 +08:00
int line = 0;
char *mybuf;
2004-10-28 11:33:20 +08:00
unsigned int bufsz;
MdbSQL *sql;
int opt;
FILE *in = NULL, *out = NULL;
char *home = getenv("HOME");
char *histpath;
2004-10-28 11:33:20 +08:00
char *delimiter = NULL;
2004-10-25 12:11:13 +08:00
#ifdef HAVE_READLINE_HISTORY
if (home) {
histpath = (char *) g_strconcat(home, "/", HISTFILE, NULL);
read_history(histpath);
g_free(histpath);
}
2004-10-25 12:11:13 +08:00
#endif
/* If input is coming from a pipe */
if (!isatty(fileno(stdin))) {
in = stdin;
}
while ((opt=getopt(argc, argv, "HFpd:i:o:"))!=-1) {
switch (opt) {
case 'd':
delimiter = (char *) g_strdup(optarg);
break;
case 'p':
pretty_print=0;
break;
case 'H':
headers=0;
break;
case 'F':
footers=0;
break;
case 'i':
if (!strcmp(optarg, "stdin"))
in = stdin;
else if (!(in = fopen(optarg, "r"))) {
fprintf(stderr,"Unable to open file %s\n", optarg);
exit(1);
}
break;
case 'o':
if (!(out = fopen(optarg, "w"))) {
fprintf(stderr,"Unable to open file %s\n", optarg);
exit(1);
}
break;
default:
fprintf(stdout,"Unknown option.\nUsage: %s [-HFp] [-d <delimiter>] [-i <file>] [-o <file>] [<database>]\n", argv[0]);
exit(1);
}
}
/* initialize the SQL engine */
sql = mdb_sql_init();
if (argc>optind) {
mdb_sql_open(sql, argv[optind]);
}
/* give the buffer an initial size */
bufsz = 4096;
mybuf = (char *) g_malloc(bufsz);
mybuf[0]='\0';
2004-10-28 11:33:20 +08:00
while (1) {
line ++;
2004-12-01 14:34:27 +08:00
if (s) free(s);
2004-10-28 11:33:20 +08:00
if (in) {
s=malloc(256);
if ((!s) || (!fgets(s, 256, in))) {
/* if we have something in the buffer, run it */
if (strlen(mybuf))
2005-11-09 21:24:26 +08:00
run_query((out) ? out : stdout,
sql, mybuf, delimiter);
2004-10-28 11:33:20 +08:00
break;
}
if (s[strlen(s)-1]=='\n')
s[strlen(s)-1]=0;
} else {
sprintf(prompt, "%d => ", line);
s=readline(prompt);
if (!s)
break;
}
2004-10-28 11:33:20 +08:00
if (!strcmp(s,"exit") || !strcmp(s,"quit") || !strcmp(s,"bye"))
break;
if (line==1 && (!strncmp(s,"set ",4) || !strcmp(s,"set"))) {
do_set_cmd(sql, &s[3]);
line = 0;
} else if (!strcmp(s,"go")) {
line = 0;
2005-11-09 21:24:26 +08:00
run_query((out) ? out : stdout, sql, mybuf, delimiter);
mybuf[0]='\0';
} else if (!strcmp(s,"reset")) {
line = 0;
mybuf[0]='\0';
} else if (!strncmp(s,":r",2)) {
line += read_file(&s[2], line, &bufsz, mybuf);
} else {
while (strlen(mybuf) + strlen(s) > bufsz) {
bufsz *= 2;
2004-07-09 20:47:04 +08:00
mybuf = (char *) g_realloc(mybuf, bufsz);
}
2004-10-25 12:11:13 +08:00
#ifdef HAVE_READLINE_HISTORY
/* don't record blank lines */
if (strlen(s)) add_history(s);
2004-10-25 12:11:13 +08:00
#endif
strcat(mybuf,s);
/* preserve line numbering for the parser */
strcat(mybuf,"\n");
}
}
mdb_sql_exit(sql);
g_free(mybuf);
2004-10-28 11:33:20 +08:00
g_free(delimiter);
2004-01-06 08:42:07 +08:00
if (s) free(s);
2004-10-28 11:33:20 +08:00
if (out) fclose(out);
if ((in) && (in != stdin)) fclose(in);
2004-10-25 12:11:13 +08:00
#ifdef HAVE_READLINE_HISTORY
if (home) {
histpath = (char *) g_strconcat(home, "/", HISTFILE, NULL);
write_history(histpath);
g_free(histpath);
2004-12-01 14:34:27 +08:00
clear_history();
}
2004-10-25 12:11:13 +08:00
#endif
2004-10-28 11:33:20 +08:00
exit(0);
}
#else
int main(int argc, char **argv)
{
fprintf(stderr,"You must configure using --enable-sql to get SQL support\n");
exit(-1);
}
#endif