mdbtools/src/libmdb/backend.c

874 lines
27 KiB
C
Raw Normal View History

/* MDB Tools - A library for reading MS Access database files
* Copyright (C) 2000-2011 Brian Bruns and others
*
* 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.
*/
2005-01-15 13:02:04 +08:00
#ifdef JAVA
#include "javadefines.h"
#define MdbBackendType_STRUCT_ELEMENT(a,b,c,d) new MdbBackendType(a,b,c,d)
#else
#define MdbBackendType_STRUCT_ELEMENT(a,b,c,d) {a,b,c,d}
/*
** functions to deal with different backend database engines
*/
2005-01-15 13:02:04 +08:00
#
#include "mdbtools.h"
#ifdef DMALLOC
#include "dmalloc.h"
#endif
2005-01-15 13:02:04 +08:00
#endif /* JAVA */
2004-06-11 21:56:39 +08:00
static int is_init;
2005-04-29 11:08:12 +08:00
GHashTable *mdb_backends;
2011-02-17 07:58:22 +08:00
/* Access data types */
2004-06-11 21:56:39 +08:00
static MdbBackendType mdb_access_types[] = {
2005-01-15 13:02:04 +08:00
MdbBackendType_STRUCT_ELEMENT("Unknown 0x00", 0,0,0),
MdbBackendType_STRUCT_ELEMENT("Boolean", 0,0,0),
MdbBackendType_STRUCT_ELEMENT("Byte", 0,0,0),
MdbBackendType_STRUCT_ELEMENT("Integer", 0,0,0),
MdbBackendType_STRUCT_ELEMENT("Long Integer", 0,0,0),
MdbBackendType_STRUCT_ELEMENT("Currency", 0,0,0),
MdbBackendType_STRUCT_ELEMENT("Single", 0,0,0),
MdbBackendType_STRUCT_ELEMENT("Double", 0,0,0),
2011-02-17 07:58:22 +08:00
MdbBackendType_STRUCT_ELEMENT("DateTime", 0,0,1),
2010-06-18 10:12:44 +08:00
MdbBackendType_STRUCT_ELEMENT("Binary", 0,0,0),
2005-01-15 13:02:04 +08:00
MdbBackendType_STRUCT_ELEMENT("Text", 1,0,1),
MdbBackendType_STRUCT_ELEMENT("OLE", 1,0,1),
MdbBackendType_STRUCT_ELEMENT("Memo/Hyperlink",1,0,1),
MdbBackendType_STRUCT_ELEMENT("Unknown 0x0d",0,0,0),
MdbBackendType_STRUCT_ELEMENT("Unknown 0x0e",0,0,0),
MdbBackendType_STRUCT_ELEMENT("Replication ID",0,0,0),
MdbBackendType_STRUCT_ELEMENT("Numeric",1,1,0)
2004-01-06 08:42:07 +08:00
};
/* Oracle data types */
2004-06-11 21:56:39 +08:00
static MdbBackendType mdb_oracle_types[] = {
2005-01-15 13:02:04 +08:00
MdbBackendType_STRUCT_ELEMENT("Oracle_Unknown 0x00",0,0,0),
2011-08-11 06:00:18 +08:00
MdbBackendType_STRUCT_ELEMENT("NUMBER(1)",0,0,0),
MdbBackendType_STRUCT_ELEMENT("NUMBER(3)",0,0,0),
MdbBackendType_STRUCT_ELEMENT("NUMBER(5)",0,0,0),
MdbBackendType_STRUCT_ELEMENT("NUMBER(11)",0,0,0),
MdbBackendType_STRUCT_ELEMENT("NUMBER(15,2)",0,0,0),
2005-01-15 13:02:04 +08:00
MdbBackendType_STRUCT_ELEMENT("FLOAT",0,0,0),
MdbBackendType_STRUCT_ELEMENT("FLOAT",0,0,0),
2011-02-17 07:58:22 +08:00
MdbBackendType_STRUCT_ELEMENT("TIMESTAMP",0,0,0),
MdbBackendType_STRUCT_ELEMENT("BINARY",0,0,0),
2005-01-15 13:02:04 +08:00
MdbBackendType_STRUCT_ELEMENT("VARCHAR2",1,0,1),
MdbBackendType_STRUCT_ELEMENT("BLOB",1,0,1),
MdbBackendType_STRUCT_ELEMENT("CLOB",1,0,1),
MdbBackendType_STRUCT_ELEMENT("Oracle_Unknown 0x0d",0,0,0),
MdbBackendType_STRUCT_ELEMENT("Oracle_Unknown 0x0e",0,0,0),
MdbBackendType_STRUCT_ELEMENT("NUMBER",1,0,0),
MdbBackendType_STRUCT_ELEMENT("NUMBER",1,0,0),
2004-01-06 08:42:07 +08:00
};
2011-02-17 07:58:22 +08:00
static MdbBackendType mdb_oracle_shortdate_type =
MdbBackendType_STRUCT_ELEMENT("DATE",0,0,0);
/* Sybase/MSSQL data types */
2004-06-11 21:56:39 +08:00
static MdbBackendType mdb_sybase_types[] = {
2005-01-15 13:02:04 +08:00
MdbBackendType_STRUCT_ELEMENT("Sybase_Unknown 0x00",0,0,0),
MdbBackendType_STRUCT_ELEMENT("bit",0,0,0),
MdbBackendType_STRUCT_ELEMENT("char",1,0,1),
MdbBackendType_STRUCT_ELEMENT("smallint",0,0,0),
MdbBackendType_STRUCT_ELEMENT("int",0,0,0),
MdbBackendType_STRUCT_ELEMENT("money",0,0,0),
MdbBackendType_STRUCT_ELEMENT("real",0,0,0),
MdbBackendType_STRUCT_ELEMENT("float",0,0,0),
MdbBackendType_STRUCT_ELEMENT("smalldatetime",0,0,0),
MdbBackendType_STRUCT_ELEMENT("Sybase_Unknown 0x09",0,0,0),
MdbBackendType_STRUCT_ELEMENT("varchar",1,0,1),
MdbBackendType_STRUCT_ELEMENT("varbinary",1,0,1),
MdbBackendType_STRUCT_ELEMENT("text",1,0,1),
MdbBackendType_STRUCT_ELEMENT("Sybase_Unknown 0x0d",0,0,0),
MdbBackendType_STRUCT_ELEMENT("Sybase_Unknown 0x0e",0,0,0),
MdbBackendType_STRUCT_ELEMENT("Sybase_Replication ID",0,0,0),
MdbBackendType_STRUCT_ELEMENT("numeric",1,1,0),
2004-01-06 08:42:07 +08:00
};
2011-02-17 07:58:22 +08:00
static MdbBackendType mdb_sybase_shortdate_type =
MdbBackendType_STRUCT_ELEMENT("DATE",0,0,0);
/* Postgres data types */
2004-06-11 21:56:39 +08:00
static MdbBackendType mdb_postgres_types[] = {
2005-01-15 13:02:04 +08:00
MdbBackendType_STRUCT_ELEMENT("Postgres_Unknown 0x00",0,0,0),
MdbBackendType_STRUCT_ELEMENT("BOOL",0,0,0),
MdbBackendType_STRUCT_ELEMENT("SMALLINT",0,0,0),
MdbBackendType_STRUCT_ELEMENT("INTEGER",0,0,0),
MdbBackendType_STRUCT_ELEMENT("INTEGER",0,0,0), /* bigint */
MdbBackendType_STRUCT_ELEMENT("NUMERIC(15,2)",0,0,0), /* money deprecated ? */
MdbBackendType_STRUCT_ELEMENT("REAL",0,0,0),
MdbBackendType_STRUCT_ELEMENT("DOUBLE PRECISION",0,0,0),
MdbBackendType_STRUCT_ELEMENT("TIMESTAMP WITHOUT TIME ZONE",0,0,0),
MdbBackendType_STRUCT_ELEMENT("BYTEA",0,0,0),
MdbBackendType_STRUCT_ELEMENT("VARCHAR",1,0,1),
2011-02-17 07:58:22 +08:00
MdbBackendType_STRUCT_ELEMENT("BYTEA",0,0,0),
MdbBackendType_STRUCT_ELEMENT("TEXT",0,0,0),
2005-01-15 13:02:04 +08:00
MdbBackendType_STRUCT_ELEMENT("Postgres_Unknown 0x0d",0,0,0),
MdbBackendType_STRUCT_ELEMENT("Postgres_Unknown 0x0e",0,0,0),
MdbBackendType_STRUCT_ELEMENT("UUID",0,0,0),
2005-01-15 13:02:04 +08:00
MdbBackendType_STRUCT_ELEMENT("Postgres_Unknown 0x10",0,0,0),
2004-01-06 08:42:07 +08:00
};
2011-02-17 07:58:22 +08:00
static MdbBackendType mdb_postgres_shortdate_type =
MdbBackendType_STRUCT_ELEMENT("DATE",0,0,0);
static MdbBackendType mdb_postgres_serial_type =
MdbBackendType_STRUCT_ELEMENT("SERIAL",0,0,0);
2004-02-06 10:34:20 +08:00
/* MySQL data types */
2004-06-11 21:56:39 +08:00
static MdbBackendType mdb_mysql_types[] = {
2005-01-15 13:02:04 +08:00
MdbBackendType_STRUCT_ELEMENT("Text",1,0,1),
MdbBackendType_STRUCT_ELEMENT("char",0,0,0),
MdbBackendType_STRUCT_ELEMENT("int",0,0,0),
MdbBackendType_STRUCT_ELEMENT("int",0,0,0),
MdbBackendType_STRUCT_ELEMENT("int",0,0,0),
MdbBackendType_STRUCT_ELEMENT("float",0,0,0),
MdbBackendType_STRUCT_ELEMENT("float",0,0,0),
MdbBackendType_STRUCT_ELEMENT("float",0,0,0),
2011-02-17 07:58:22 +08:00
MdbBackendType_STRUCT_ELEMENT("datetime",0,0,1),
2005-01-15 13:02:04 +08:00
MdbBackendType_STRUCT_ELEMENT("varchar",1,0,1),
MdbBackendType_STRUCT_ELEMENT("varchar",1,0,1),
MdbBackendType_STRUCT_ELEMENT("varchar",1,0,1),
MdbBackendType_STRUCT_ELEMENT("text",1,0,1),
MdbBackendType_STRUCT_ELEMENT("blob",0,0,0),
MdbBackendType_STRUCT_ELEMENT("text",1,0,1),
MdbBackendType_STRUCT_ELEMENT("numeric",1,1,0),
MdbBackendType_STRUCT_ELEMENT("numeric",1,1,0),
2004-02-06 10:34:20 +08:00
};
2011-02-17 07:58:22 +08:00
static MdbBackendType mdb_mysql_shortdate_type =
MdbBackendType_STRUCT_ELEMENT("date",0,0,0);
2005-01-15 13:02:04 +08:00
#ifndef JAVA
2004-06-22 12:27:42 +08:00
static gboolean mdb_drop_backend(gpointer key, gpointer value, gpointer data);
2000-04-23 05:34:32 +08:00
char* sanitize_name(const char* str)
{
char *result = malloc(256);
char *p = result;
if (*str) {
*p = isalpha(*str) ? *str : '_';
p++;
if (!isdigit(*str)) /* if it was a digit, keep it */
str++;
}
while (*str) {
*p = isalnum(*str) ? *str : '_';
p++;
str++;
}
*p = 0;
return result;
}
2011-02-17 07:58:22 +08:00
static gchar*
quote_generic(const gchar *value, gchar quote_char, gchar escape_char) {
gchar *result, *pr;
unsigned char c;
pr = result = g_malloc(1+4*strlen(value)+2); // worst case scenario
*pr++ = quote_char;
while ((c=*(unsigned char*)value++)) {
if (c<32) {
sprintf(pr, "\\%03o", c);
pr+=4;
continue;
}
else if (c == quote_char) {
*pr++ = escape_char;
}
*pr++ = c;
}
*pr++ = quote_char;
*pr++ = '\0';
return result;
}
2011-02-17 07:58:22 +08:00
static gchar*
quote_schema_name_bracket_merge(const gchar* schema, const gchar *name) {
if (schema)
return g_strconcat("[", schema, "_", name, "]", NULL);
else
return g_strconcat("[", name, "]", NULL);
}
2011-02-17 07:58:22 +08:00
/*
* For backends that really does support schema
* returns "name" or "schema"."name"
*/
static gchar*
quote_schema_name_dquote(const gchar* schema, const gchar *name)
{
2011-02-17 07:58:22 +08:00
if (schema) {
gchar *frag1 = quote_generic(schema, '"', '"');
gchar *frag2 = quote_generic(name, '"', '"');
gchar *result = g_strconcat(frag1, ".", frag2, NULL);
g_free(frag1);
g_free(frag2);
return result;
}
2011-02-17 07:58:22 +08:00
return quote_generic(name, '"', '"');
}
2011-02-17 07:58:22 +08:00
/*
* For backends that really do NOT support schema
* returns "name" or "schema_name"
*/
/*
2011-02-17 07:58:22 +08:00
static gchar*
quote_schema_name_dquote_merge(const gchar* schema, const gchar *name)
{
if (schema) {
gchar *combined = g_strconcat(schema, "_", name, NULL);
gchar *result = quote_generic(combined, '"', '"');
g_free(combined);
return result;
}
return quote_generic(name, '"', '"');
}*/
2011-02-17 07:58:22 +08:00
static gchar*
quote_schema_name_rquotes_merge(const gchar* schema, const gchar *name)
{
if (schema) {
gchar *combined = g_strconcat(schema, "_", name, NULL);
gchar *result = quote_generic(combined, '`', '`');
g_free(combined);
return result;
}
return quote_generic(name, '`', '`');
}
static gchar*
quote_with_squotes(const gchar* value)
{
2011-02-17 07:58:22 +08:00
return quote_generic(value, '\'', '\'');
}
2011-02-17 07:58:22 +08:00
/* deprecated */ char *
mdb_get_coltype_string(MdbBackend *backend, int col_type)
{
2011-02-17 07:58:22 +08:00
static int warn_deprecated = 0;
static char buf[16];
2011-02-17 07:58:22 +08:00
if (!warn_deprecated) {
warn_deprecated = 1;
fprintf(stderr, "mdb_get_coltype_string is deprecated. Use mdb_get_colbacktype_string.\n");
}
2004-01-06 08:42:07 +08:00
if (col_type > 0x10 ) {
// return NULL;
snprintf(buf,sizeof(buf), "type %04x", col_type);
2004-01-06 08:42:07 +08:00
return buf;
2011-02-17 07:58:22 +08:00
} else
2004-01-06 08:42:07 +08:00
return backend->types_table[col_type].name;
}
2004-01-06 08:42:07 +08:00
2011-02-17 07:58:22 +08:00
/* deprecated */ int
mdb_coltype_takes_length(MdbBackend *backend, int col_type)
2004-01-06 08:42:07 +08:00
{
2011-02-17 07:58:22 +08:00
static int warn_deprecated = 0;
if (!warn_deprecated) {
warn_deprecated = 1;
fprintf(stderr, "mdb_coltype_takes_length is deprecated. Use mdb_colbacktype_takes_length.\n");
}
2004-06-11 21:56:39 +08:00
return backend->types_table[col_type].needs_length;
2004-01-06 08:42:07 +08:00
}
2011-02-17 07:58:22 +08:00
const MdbBackendType*
mdb_get_colbacktype(const MdbColumn *col) {
MdbBackend *backend = col->table->entry->mdb->default_backend;
int col_type = col->col_type;
if (col_type > 0x10 )
return NULL;
if (col_type == MDB_LONGINT && col->is_long_auto && backend->type_autonum)
return backend->type_autonum;
if (col_type == MDB_DATETIME && backend->type_shortdate) {
const char *format = mdb_col_get_prop(col, "Format");
if (format && !strcmp(format, "Short Date"))
return backend->type_shortdate;
}
return &backend->types_table[col_type];
}
const char *
mdb_get_colbacktype_string(const MdbColumn *col)
{
const MdbBackendType *type = mdb_get_colbacktype(col);
if (!type) {
// return NULL;
static char buf[16];
snprintf(buf,sizeof(buf), "type %04x", col->col_type);
return buf;
}
return type->name;
}
int
mdb_colbacktype_takes_length(const MdbColumn *col)
{
const MdbBackendType *type = mdb_get_colbacktype(col);
if (!type) return 0;
return type->needs_length;
}
2004-06-22 12:27:42 +08:00
/**
* mdb_init_backends
*
* Initializes the mdb_backends hash and loads the builtin backends.
* Use mdb_remove_backends() to destroy this hash when done.
*/
void mdb_init_backends()
{
mdb_backends = g_hash_table_new(g_str_hash, g_str_equal);
2011-02-17 07:58:22 +08:00
mdb_register_backend("access",
MDB_SHEXP_DROPTABLE|MDB_SHEXP_CST_NOTNULL|MDB_SHEXP_DEFVALUES|MDB_SHEXP_SANITIZE,
2011-02-17 07:58:22 +08:00
mdb_access_types, NULL, NULL,
"Date()", "Date()",
2011-02-17 07:58:22 +08:00
"-- That file uses encoding %s\n",
"DROP TABLE %s;\n",
NULL,
NULL,
NULL,
quote_schema_name_bracket_merge);
mdb_register_backend("sybase",
MDB_SHEXP_DROPTABLE|MDB_SHEXP_CST_NOTNULL|MDB_SHEXP_CST_NOTEMPTY|MDB_SHEXP_COMMENTS|MDB_SHEXP_DEFVALUES|MDB_SHEXP_SANITIZE,
2011-02-17 07:58:22 +08:00
mdb_sybase_types, &mdb_sybase_shortdate_type, NULL,
"getdate()", "getdate()",
2011-02-17 07:58:22 +08:00
"-- That file uses encoding %s\n",
"DROP TABLE %s;\n",
"ALTER TABLE %s ADD CHECK (%s <>'');\n",
"COMMENT ON COLUMN %s.%s IS %s;\n",
"COMMENT ON TABLE %s IS %s;\n",
quote_schema_name_dquote);
mdb_register_backend("oracle",
MDB_SHEXP_DROPTABLE|MDB_SHEXP_CST_NOTNULL|MDB_SHEXP_COMMENTS|MDB_SHEXP_INDEXES|MDB_SHEXP_RELATIONS|MDB_SHEXP_DEFVALUES|MDB_SHEXP_SANITIZE,
2011-02-17 07:58:22 +08:00
mdb_oracle_types, &mdb_oracle_shortdate_type, NULL,
"current_date", "sysdate",
2011-02-17 07:58:22 +08:00
"-- That file uses encoding %s\n",
"DROP TABLE %s;\n",
NULL,
"COMMENT ON COLUMN %s.%s IS %s;\n",
"COMMENT ON TABLE %s IS %s;\n",
quote_schema_name_dquote);
mdb_register_backend("postgres",
MDB_SHEXP_DROPTABLE|MDB_SHEXP_CST_NOTNULL|MDB_SHEXP_CST_NOTEMPTY|MDB_SHEXP_COMMENTS|MDB_SHEXP_INDEXES|MDB_SHEXP_RELATIONS|MDB_SHEXP_DEFVALUES|MDB_SHEXP_SANITIZE,
2011-02-17 07:58:22 +08:00
mdb_postgres_types, &mdb_postgres_shortdate_type, &mdb_postgres_serial_type,
"current_date", "now()",
2011-02-17 07:58:22 +08:00
"SET client_encoding = '%s';\n",
"DROP TABLE IF EXISTS %s;\n",
"ALTER TABLE %s ADD CHECK (%s <>'');\n",
"COMMENT ON COLUMN %s.%s IS %s;\n",
"COMMENT ON TABLE %s IS %s;\n",
quote_schema_name_dquote);
mdb_register_backend("mysql",
MDB_SHEXP_DROPTABLE|MDB_SHEXP_CST_NOTNULL|MDB_SHEXP_CST_NOTEMPTY|MDB_SHEXP_COMMENTS|MDB_SHEXP_DEFVALUES|MDB_SHEXP_SANITIZE,
2011-02-17 07:58:22 +08:00
mdb_mysql_types, &mdb_mysql_shortdate_type, NULL,
"current_date", "now()",
2011-02-17 07:58:22 +08:00
"-- That file uses encoding %s\n",
"DROP TABLE IF EXISTS %s;\n",
"ALTER TABLE %s ADD CHECK (%s <>'');\n",
"COMMENT ON COLUMN %s.%s IS %s;\n",
"COMMENT ON TABLE %s IS %s;\n",
quote_schema_name_rquotes_merge);
}
void mdb_register_backend(char *backend_name, guint32 capabilities, MdbBackendType *backend_type, MdbBackendType *type_shortdate, MdbBackendType *type_autonum, const char *short_now, const char *long_now, const char *charset_statement, const char *drop_statement, const char *constaint_not_empty_statement, const char *column_comment_statement, const char *table_comment_statement, gchar* (*quote_schema_name)(const gchar*, const gchar*))
{
2004-06-11 21:56:39 +08:00
MdbBackend *backend = (MdbBackend *) g_malloc0(sizeof(MdbBackend));
2011-02-17 07:58:22 +08:00
backend->capabilities = capabilities;
2004-06-11 21:56:39 +08:00
backend->types_table = backend_type;
2011-02-17 07:58:22 +08:00
backend->type_shortdate = type_shortdate;
backend->type_autonum = type_autonum;
backend->short_now = short_now;
backend->long_now = long_now;
2011-02-17 07:58:22 +08:00
backend->charset_statement = charset_statement;
backend->drop_statement = drop_statement;
backend->constaint_not_empty_statement = constaint_not_empty_statement;
backend->column_comment_statement = column_comment_statement;
backend->table_comment_statement = table_comment_statement;
backend->quote_schema_name = quote_schema_name;
2004-06-11 21:56:39 +08:00
g_hash_table_insert(mdb_backends, backend_name, backend);
}
2004-06-11 21:56:39 +08:00
2004-06-22 12:27:42 +08:00
/**
* mdb_remove_backends
*
* Removes all entries from and destroys the mdb_backends hash.
*/
void mdb_remove_backends()
{
g_hash_table_foreach_remove(mdb_backends, mdb_drop_backend, NULL);
g_hash_table_destroy(mdb_backends);
}
2004-04-12 22:33:56 +08:00
static gboolean mdb_drop_backend(gpointer key, gpointer value, gpointer data)
{
MdbBackend *backend = (MdbBackend *)value;
g_free (backend);
return TRUE;
}
2004-06-22 12:27:42 +08:00
/**
* mdb_set_default_backend
* @mdb: Handle to open MDB database file
* @backend_name: Name of the backend to set as default
*
* Sets the default backend of the handle @mdb to @backend_name.
*
* Returns: 1 if successful, 0 if unsuccessful.
*/
int mdb_set_default_backend(MdbHandle *mdb, const char *backend_name)
{
MdbBackend *backend;
backend = (MdbBackend *) g_hash_table_lookup(mdb_backends, backend_name);
if (backend) {
mdb->default_backend = backend;
mdb->backend_name = (char *) g_strdup(backend_name);
2004-06-11 21:56:39 +08:00
is_init = 0;
return 1;
} else {
return 0;
}
}
2000-04-23 05:34:32 +08:00
/**
* mdb_print_indexes
* @output: Where to print the sql
* @table: Table to process
*/
static void
mdb_print_indexes(FILE* outfile, MdbTableDef *table, char *namespace, int sanitize)
{
unsigned int i, j;
char* quoted_table_name;
char* index_name;
char* quoted_name;
MdbHandle* mdb = table->entry->mdb;
MdbIndex *idx;
MdbColumn *col;
if (strcmp(mdb->backend_name, "postgres")) {
fprintf(outfile, "-- Indexes are not implemented for %s\n\n", mdb->backend_name);
return;
}
/* read indexes */
mdb_read_indices(table);
2011-02-17 07:58:22 +08:00
fprintf (outfile, "-- CREATE INDEXES ...\n");
if (sanitize)
quoted_table_name = sanitize_name(table->name);
else
2011-02-17 07:58:22 +08:00
quoted_table_name = mdb->default_backend->quote_schema_name(namespace, table->name);
for (i=0;i<table->num_idxs;i++) {
idx = g_ptr_array_index (table->indices, i);
if (idx->index_type==2)
continue;
2011-02-17 07:58:22 +08:00
index_name = malloc(strlen(table->name)+strlen(idx->name)+5+1);
strcpy(index_name, table->name);
if (idx->index_type==1)
2011-02-17 07:58:22 +08:00
strcat(index_name, "_pkey");
else {
strcat(index_name, "_");
strcat(index_name, idx->name);
strcat(index_name, "_idx");
2011-02-17 07:58:22 +08:00
}
if (sanitize)
quoted_name = sanitize_name(index_name);
else
2011-02-17 07:58:22 +08:00
quoted_name = mdb->default_backend->quote_schema_name(namespace, index_name);
if (idx->index_type==1) {
fprintf (outfile, "ALTER TABLE %s ADD CONSTRAINT %s PRIMARY KEY (", quoted_table_name, quoted_name);
} else {
fprintf(outfile, "CREATE");
if (idx->flags & MDB_IDX_UNIQUE)
fprintf (outfile, " UNIQUE");
fprintf(outfile, " INDEX %s ON %s (", quoted_name, quoted_table_name);
}
free(quoted_name);
free(index_name);
for (j=0;j<idx->num_keys;j++) {
if (j)
fprintf(outfile, ", ");
col=g_ptr_array_index(table->columns,idx->key_col_num[j]-1);
if (sanitize)
quoted_name = sanitize_name(col->name);
else
2011-02-17 07:58:22 +08:00
quoted_name = mdb->default_backend->quote_schema_name(NULL, col->name);
fprintf (outfile, "%s", quoted_name);
if (idx->index_type!=1 && idx->key_col_order[j])
/* no DESC for primary keys */
fprintf(outfile, " DESC");
free(quoted_name);
}
fprintf (outfile, ");\n");
}
2011-02-17 07:58:22 +08:00
fputc ('\n', outfile);
}
2004-06-22 12:27:42 +08:00
/**
* mdb_get_relationships
* @mdb: Handle to open MDB database file
* @tablename: Name of the table to process. Process all tables if NULL.
2004-06-22 12:27:42 +08:00
*
* Generates relationships by reading the MSysRelationships table.
* 'szColumn' contains the column name of the child table.
* 'szObject' contains the table name of the child table.
* 'szReferencedColumn' contains the column name of the parent table.
* 'szReferencedObject' contains the table name of the parent table.
* 'grbit' contains integrity constraints.
2004-06-22 12:27:42 +08:00
*
* Returns: a string stating that relationships are not supported for the
* selected backend, or a string containing SQL commands for setting up
* the relationship, tailored for the selected backend.
* Returns NULL on last iteration.
* The caller is responsible for freeing this string.
2000-04-23 05:34:32 +08:00
*/
static char *
2011-02-17 07:58:22 +08:00
mdb_get_relationships(MdbHandle *mdb, const gchar *namespace, const char* tablename)
2004-06-11 21:56:39 +08:00
{
unsigned int i;
2004-07-03 12:56:07 +08:00
gchar *text = NULL; /* String to be returned */
static char *bound[5]; /* Bound values */
2004-06-11 21:56:39 +08:00
static MdbTableDef *table; /* Relationships table */
int backend = 0; /* Backends: 1=oracle, 2=postgres */
char *quoted_table_1, *quoted_column_1,
*quoted_table_2, *quoted_column_2,
*constraint_name, *quoted_constraint_name;
long grbit;
2000-04-23 05:34:32 +08:00
if (!strcmp(mdb->backend_name, "oracle")) {
2004-06-11 21:56:39 +08:00
backend = 1;
} else if (!strcmp(mdb->backend_name, "postgres")) {
backend = 2;
2004-06-11 21:56:39 +08:00
} else {
if (is_init == 0) { /* the first time through */
is_init = 1;
return (char *) g_strconcat(
"-- relationships are not implemented for ",
mdb->backend_name, "\n", NULL);
2004-06-11 21:56:39 +08:00
} else { /* the second time through */
is_init = 0;
return NULL;
}
}
if (is_init == 0) {
2004-07-02 20:29:09 +08:00
table = mdb_read_table_by_name(mdb, "MSysRelationships", MDB_TABLE);
2004-06-11 21:56:39 +08:00
if ((!table) || (table->num_rows == 0)) {
fprintf(stderr, "No MSysRelationships\n");
2004-06-11 21:56:39 +08:00
return NULL;
}
mdb_read_columns(table);
for (i=0;i<5;i++) {
2004-06-11 21:56:39 +08:00
bound[i] = (char *) g_malloc0(MDB_BIND_SIZE);
}
mdb_bind_column_by_name(table, "szColumn", bound[0], NULL);
mdb_bind_column_by_name(table, "szObject", bound[1], NULL);
mdb_bind_column_by_name(table, "szReferencedColumn", bound[2], NULL);
mdb_bind_column_by_name(table, "szReferencedObject", bound[3], NULL);
mdb_bind_column_by_name(table, "grbit", bound[4], NULL);
2004-06-11 21:56:39 +08:00
mdb_rewind_table(table);
is_init = 1;
}
else {
if (!table) {
fprintf(stderr, "table is NULL\n");
}
if (table->cur_row >= table->num_rows) { /* past the last row */
for (i=0;i<5;i++)
g_free(bound[i]);
is_init = 0;
return NULL;
}
2004-06-11 21:56:39 +08:00
}
while (1) {
if (!mdb_fetch_row(table)) {
for (i=0;i<5;i++)
g_free(bound[i]);
is_init = 0;
return NULL;
}
if (!tablename || !strcmp(bound[1], tablename))
break;
2004-06-11 21:56:39 +08:00
}
2011-02-17 07:58:22 +08:00
quoted_table_1 = mdb->default_backend->quote_schema_name(namespace, bound[1]);
quoted_column_1 = mdb->default_backend->quote_schema_name(namespace, bound[0]);
quoted_table_2 = mdb->default_backend->quote_schema_name(namespace, bound[3]);
quoted_column_2 = mdb->default_backend->quote_schema_name(namespace, bound[2]);
grbit = atoi(bound[4]);
constraint_name = g_strconcat(bound[1], "_", bound[0], "_fk", NULL);
2011-02-17 07:58:22 +08:00
quoted_constraint_name = mdb->default_backend->quote_schema_name(namespace, constraint_name);
free(constraint_name);
if (grbit & 0x00000002) {
text = g_strconcat(
"-- Relationship from ", quoted_table_1,
" (", quoted_column_1, ")"
" to ", quoted_table_2, "(", quoted_column_2, ")",
" does not enforce integrity.\n", NULL);
} else {
switch (backend) {
case 1: /* oracle */
case 2: /* postgres */
text = g_strconcat(
"ALTER TABLE ", quoted_table_1,
" ADD CONSTRAINT ", quoted_constraint_name,
" FOREIGN KEY (", quoted_column_1, ")"
" REFERENCES ", quoted_table_2, "(", quoted_column_2, ")",
(grbit & 0x00000100) ? " ON UPDATE CASCADE" : "",
(grbit & 0x00001000) ? " ON DELETE CASCADE" : "",
";\n", NULL);
break;
}
2004-06-11 21:56:39 +08:00
}
free(quoted_table_1);
free(quoted_column_1);
free(quoted_table_2);
free(quoted_column_2);
free(quoted_constraint_name);
2004-06-11 21:56:39 +08:00
return (char *)text;
}
static void
generate_table_schema(FILE *outfile, MdbCatalogEntry *entry, char *namespace, guint32 export_options)
{
MdbTableDef *table;
MdbHandle *mdb = entry->mdb;
MdbColumn *col;
unsigned int i;
char* quoted_table_name;
char* quoted_name;
int sanitize = export_options & MDB_SHEXP_SANITIZE;
2011-02-17 07:58:22 +08:00
MdbProperties *props;
const char *prop_value;
if (sanitize)
quoted_table_name = sanitize_name(entry->object_name);
else
2011-02-17 07:58:22 +08:00
quoted_table_name = mdb->default_backend->quote_schema_name(namespace, entry->object_name);
/* drop the table if it exists */
if (export_options & MDB_SHEXP_DROPTABLE)
2011-02-17 07:58:22 +08:00
fprintf (outfile, mdb->default_backend->drop_statement, quoted_table_name);
/* create the table */
fprintf (outfile, "CREATE TABLE %s\n", quoted_table_name);
fprintf (outfile, " (\n");
table = mdb_read_table (entry);
/* get the columns */
mdb_read_columns (table);
/* loop over the columns, dumping the names and types */
for (i = 0; i < table->num_cols; i++) {
col = g_ptr_array_index (table->columns, i);
if (sanitize)
quoted_name = sanitize_name(col->name);
else
2011-02-17 07:58:22 +08:00
quoted_name = mdb->default_backend->quote_schema_name(NULL, col->name);
fprintf (outfile, "\t%s\t\t\t%s", quoted_name,
2011-02-17 07:58:22 +08:00
mdb_get_colbacktype_string (col));
free(quoted_name);
2011-02-17 07:58:22 +08:00
if (mdb_colbacktype_takes_length(col)) {
/* more portable version from DW patch */
if (col->col_size == 0)
fputs(" (255)", outfile);
else
fprintf(outfile, " (%d)", col->col_size);
}
2011-02-17 07:58:22 +08:00
if (export_options & MDB_SHEXP_CST_NOTNULL) {
if (col->col_type == MDB_BOOL) {
/* access booleans are never null */
fputs(" NOT NULL", outfile);
} else {
const gchar *not_null = mdb_col_get_prop(col, "Required");
if (not_null && not_null[0]=='y')
fputs(" NOT NULL", outfile);
}
}
if (export_options & MDB_SHEXP_DEFVALUES) {
int done = 0;
if (col->props) {
gchar *defval = g_hash_table_lookup(col->props->hash, "DefaultValue");
if (defval) {
size_t def_len = strlen(defval);
fputs(" DEFAULT ", outfile);
/* ugly hack to detect the type */
if (defval[0]=='"' && defval[def_len-1]=='"') {
/* this is a string */
gchar *output_default = malloc(def_len-1);
gchar *output_default_escaped = malloc(def_len-1);
memcpy(output_default, defval+1, def_len-2);
output_default[def_len-2] = 0;
output_default_escaped = quote_with_squotes(output_default);
fputs(output_default_escaped, outfile);
g_free(output_default_escaped);
free(output_default);
} else if (!strcmp(defval, "Yes"))
fputs("TRUE", outfile);
else if (!strcmp(defval, "No"))
fputs("FALSE", outfile);
else if (!strcasecmp(defval, "date()")) {
if (!strcmp(mdb_col_get_prop(col, "Format"), "Short Date"))
fputs(mdb->default_backend->short_now, outfile);
else
fputs(mdb->default_backend->long_now, outfile);
}
else
fputs(defval, outfile);
done = 1;
}
}
if (!done && col->col_type == MDB_BOOL)
/* access booleans are false by default */
fputs(" DEFAULT FALSE", outfile);
}
if (i < table->num_cols - 1)
fputs(", \n", outfile);
else
fputs("\n", outfile);
} /* for */
fputs(");\n", outfile);
2011-02-17 07:58:22 +08:00
/* Add the constraints on columns */
for (i = 0; i < table->num_cols; i++) {
col = g_ptr_array_index (table->columns, i);
props = col->props;
if (!props)
continue;
if (sanitize)
quoted_name = sanitize_name(col->name);
else
quoted_name = mdb->default_backend->quote_schema_name(NULL, col->name);
if (export_options & MDB_SHEXP_CST_NOTEMPTY) {
prop_value = mdb_col_get_prop(col, "AllowZeroLength");
if (prop_value && prop_value[0]=='n')
fprintf(outfile,
mdb->default_backend->constaint_not_empty_statement,
quoted_table_name, quoted_name);
}
if (export_options & MDB_SHEXP_COMMENTS) {
prop_value = mdb_col_get_prop(col, "Description");
if (prop_value) {
char *comment = quote_with_squotes(prop_value);
fprintf(outfile,
mdb->default_backend->column_comment_statement,
quoted_table_name, quoted_name, comment);
free(comment);
}
}
free(quoted_name);
}
/* Add the constraints on table */
if (export_options & MDB_SHEXP_COMMENTS) {
prop_value = mdb_table_get_prop(table, "Description");
if (prop_value) {
char *comment = quote_with_squotes(prop_value);
fprintf(outfile,
mdb->default_backend->table_comment_statement,
quoted_table_name, comment);
free(comment);
}
}
2011-02-17 07:58:22 +08:00
fputc('\n', outfile);
if (export_options & MDB_SHEXP_INDEXES)
// prints all the indexes of that table
mdb_print_indexes(outfile, table, namespace, sanitize);
free(quoted_table_name);
mdb_free_tabledef (table);
}
void
mdb_print_schema(MdbHandle *mdb, FILE *outfile, char *tabname, char *namespace, guint32 export_options)
{
unsigned int i;
char *the_relation;
MdbCatalogEntry *entry;
2011-02-17 07:58:22 +08:00
/* clear unsupported options */
export_options &= mdb->default_backend->capabilities;
/* Print out a little message to show that this came from mdb-tools.
I like to know how something is generated. DW */
fputs("-- ----------------------------------------------------------\n"
"-- MDB Tools - A library for reading MS Access database files\n"
"-- Copyright (C) 2000-2011 Brian Bruns and others.\n"
"-- Files in libmdb are licensed under LGPL and the utilities under\n"
"-- the GPL, see COPYING.LIB and COPYING files respectively.\n"
"-- Check out http://mdbtools.sourceforge.net\n"
"-- ----------------------------------------------------------\n\n",
outfile);
2011-02-17 07:58:22 +08:00
const char *charset = mdb_target_charset(mdb);
if (charset) {
fprintf(outfile, mdb->default_backend->charset_statement, charset);
fputc('\n', outfile);
}
for (i=0; i < mdb->num_catalog; i++) {
entry = g_ptr_array_index (mdb->catalog, i);
if (entry->object_type == MDB_TABLE) {
if ((tabname && !strcmp(entry->object_name, tabname))
|| (!tabname && mdb_is_user_table(entry))) {
generate_table_schema(outfile, entry, namespace, export_options);
}
}
}
fprintf (outfile, "\n");
if (export_options & MDB_SHEXP_RELATIONS) {
fputs ("-- CREATE Relationships ...\n", outfile);
2011-02-17 07:58:22 +08:00
while ((the_relation=mdb_get_relationships(mdb, namespace, tabname)) != NULL) {
fputs(the_relation, outfile);
g_free(the_relation);
}
}
}
2005-01-15 13:02:04 +08:00
#endif