2000-03-16 20:05:47 +08:00
|
|
|
/* MDB Tools - A library for reading MS Access database file
|
|
|
|
* Copyright (C) 2000 Brian Bruns
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* this utility dumps the schema for an existing database */
|
|
|
|
#include "mdbtools.h"
|
|
|
|
|
2003-01-29 07:51:06 +08:00
|
|
|
#ifdef DMALLOC
|
|
|
|
#include "dmalloc.h"
|
|
|
|
#endif
|
|
|
|
|
2004-05-02 19:24:39 +08:00
|
|
|
struct type_struct {
|
|
|
|
char *name;
|
|
|
|
int value;
|
|
|
|
} types[] = {
|
|
|
|
{ "form", MDB_FORM },
|
|
|
|
{ "table", MDB_TABLE },
|
|
|
|
{ "macro", MDB_MACRO },
|
|
|
|
{ "systable", MDB_SYSTEM_TABLE },
|
|
|
|
{ "report", MDB_REPORT },
|
|
|
|
{ "query", MDB_QUERY },
|
|
|
|
{ "linkedtable", MDB_LINKED_TABLE },
|
|
|
|
{ "module", MDB_MODULE },
|
|
|
|
{ "relationship", MDB_RELATIONSHIP },
|
|
|
|
{ "dbprop", MDB_DATABASE_PROPERTY },
|
|
|
|
{ "any", MDB_ANY },
|
|
|
|
{ "all", MDB_ANY },
|
|
|
|
{ NULL, 0 }
|
|
|
|
};
|
|
|
|
|
|
|
|
char *
|
|
|
|
valid_types()
|
|
|
|
{
|
|
|
|
static char ret[256]; /* be sure to allow for enough space if adding more */
|
|
|
|
int i = 0;
|
|
|
|
|
|
|
|
ret[0] = '\0';
|
|
|
|
while (types[i].name) {
|
|
|
|
strcat(ret, types[i].name);
|
|
|
|
strcat(ret, " ");
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
int
|
|
|
|
get_obj_type(char *typename, int *ret)
|
|
|
|
{
|
|
|
|
int i=0;
|
|
|
|
int found=0;
|
|
|
|
|
|
|
|
char *s = typename;
|
|
|
|
|
|
|
|
while (*s) { *s=tolower(*s); s++; }
|
|
|
|
|
|
|
|
while (types[i].name) {
|
|
|
|
if (!strcmp(types[i].name, typename)) {
|
|
|
|
found=1;
|
|
|
|
*ret = types[i].value;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
return found;
|
|
|
|
}
|
2003-01-21 00:04:24 +08:00
|
|
|
int
|
2000-03-16 20:05:47 +08:00
|
|
|
main (int argc, char **argv)
|
|
|
|
{
|
2004-07-09 20:47:04 +08:00
|
|
|
unsigned int i;
|
2004-05-02 19:24:39 +08:00
|
|
|
MdbHandle *mdb;
|
|
|
|
MdbCatalogEntry *entry;
|
|
|
|
char *delimiter = NULL;
|
|
|
|
int line_break=0;
|
|
|
|
int skip_sys=1;
|
|
|
|
int opt;
|
|
|
|
int objtype = MDB_TABLE;
|
|
|
|
|
2000-03-16 20:05:47 +08:00
|
|
|
|
2002-04-21 11:09:26 +08:00
|
|
|
if (argc < 2) {
|
2004-05-02 19:24:39 +08:00
|
|
|
fprintf (stderr, "Usage: %s [-S] [-1 | -d<delimiter>] [-t <type>] <file>\n",argv[0]);
|
|
|
|
fprintf (stderr, " Valid types are: %s\n",valid_types());
|
|
|
|
|
2002-04-21 11:09:26 +08:00
|
|
|
exit (1);
|
|
|
|
}
|
2000-03-16 20:05:47 +08:00
|
|
|
|
2004-05-02 19:24:39 +08:00
|
|
|
while ((opt=getopt(argc, argv, "S1d:t:"))!=-1) {
|
2002-04-21 11:09:26 +08:00
|
|
|
switch (opt) {
|
2002-12-27 23:09:02 +08:00
|
|
|
case 'S':
|
|
|
|
skip_sys = 0;
|
2002-04-21 11:09:26 +08:00
|
|
|
case '1':
|
|
|
|
line_break = 1;
|
|
|
|
break;
|
2004-05-02 19:24:39 +08:00
|
|
|
case 't':
|
|
|
|
if (!get_obj_type(optarg, &objtype)) {
|
|
|
|
fprintf(stderr,"Invalid type name.\n");
|
|
|
|
fprintf (stderr, "Valid types are: %s\n",valid_types());
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
break;
|
2002-04-21 11:09:26 +08:00
|
|
|
case 'd':
|
2004-05-30 15:19:22 +08:00
|
|
|
delimiter = (char *) g_strdup(optarg);
|
2002-04-21 11:09:26 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2000-03-16 20:05:47 +08:00
|
|
|
|
|
|
|
|
2002-04-21 11:09:26 +08:00
|
|
|
/* initialize the library */
|
|
|
|
mdb_init();
|
2000-03-16 20:05:47 +08:00
|
|
|
|
2002-04-21 11:09:26 +08:00
|
|
|
/* open the database */
|
2004-04-14 04:06:04 +08:00
|
|
|
if (!(mdb = mdb_open (argv[optind], MDB_NOFLAGS))) {
|
2003-01-06 07:49:56 +08:00
|
|
|
fprintf(stderr,"Couldn't open database.\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2000-03-16 20:05:47 +08:00
|
|
|
|
2002-04-21 11:09:26 +08:00
|
|
|
/* read the catalog */
|
2004-05-02 19:24:39 +08:00
|
|
|
if (!mdb_read_catalog (mdb, MDB_ANY)) {
|
2004-01-11 05:46:14 +08:00
|
|
|
fprintf(stderr,"File does not appear to be an Access database\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
2000-03-16 20:05:47 +08:00
|
|
|
|
2002-04-21 11:09:26 +08:00
|
|
|
/* loop over each entry in the catalog */
|
|
|
|
for (i=0; i < mdb->num_catalog; i++) {
|
|
|
|
entry = g_ptr_array_index (mdb->catalog, i);
|
2000-03-16 20:05:47 +08:00
|
|
|
|
2004-09-16 12:00:39 +08:00
|
|
|
if (entry->object_type != objtype)
|
|
|
|
continue;
|
|
|
|
if (skip_sys && mdb_is_system_table(entry))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (line_break)
|
|
|
|
fprintf (stdout, "%s\n", entry->object_name);
|
|
|
|
else if (delimiter)
|
|
|
|
fprintf (stdout, "%s%s", entry->object_name, delimiter);
|
|
|
|
else
|
|
|
|
fprintf (stdout, "%s ", entry->object_name);
|
2002-04-21 11:09:26 +08:00
|
|
|
}
|
|
|
|
if (!line_break)
|
|
|
|
fprintf (stdout, "\n");
|
2000-03-16 20:05:47 +08:00
|
|
|
|
2003-01-29 07:51:06 +08:00
|
|
|
mdb_close(mdb);
|
2002-04-21 11:09:26 +08:00
|
|
|
mdb_exit();
|
2004-05-30 15:19:22 +08:00
|
|
|
g_free(delimiter);
|
2002-04-21 11:09:26 +08:00
|
|
|
|
2002-08-13 01:37:04 +08:00
|
|
|
exit(0);
|
2000-03-16 20:05:47 +08:00
|
|
|
}
|
|
|
|
|