missed added files

This commit is contained in:
brianb
2003-05-02 22:20:44 +00:00
parent aa19a0892f
commit 8592cf5db5
4 changed files with 587 additions and 0 deletions

154
src/util/mdb-prop.c Normal file
View File

@@ -0,0 +1,154 @@
/* 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 "mdbtools.h"
#define MSYSOBJECTS "MSysObjects"
#define LVPROP "LvProp"
#undef MDB_DEBUG
//#define MDB_DEBUG 1
void dump_kkd(gchar *kkd, int len);
MdbHandle *mdb;
int
main(int argc, char **argv)
{
int i, len, pos, col_num;
MdbColumn *col;
MdbTableDef *table;
MdbCatalogEntry *entry;
gchar name[256];
gchar buf[MDB_BIND_SIZE];
gchar kkd_pg[200000];
gchar kkd_ptr[MDB_MEMO_OVERHEAD+1];
/*
** optind is now the position of the first non-option arg,
** see getopt(3)
*/
if (argc < 2) {
fprintf(stderr,"Usage: %s <file> <name> [<prop col>]\n",argv[0]);
exit(1);
}
mdb_init();
if (!(mdb = mdb_open(argv[optind]))) {
exit(1);
}
mdb_read_catalog(mdb, MDB_TABLE);
for (i=0;i<mdb->num_catalog;i++) {
entry = g_ptr_array_index(mdb->catalog,i);
if (!strcmp(entry->object_name,MSYSOBJECTS)) {
break;
}
}
table = mdb_read_table(entry);
mdb_read_columns(table);
mdb_rewind_table(table);
col_num = mdb_bind_column_by_name(table, LVPROP, buf);
mdb_bind_len(table, col_num, &len);
mdb_bind_column_by_name(table, "Name", name);
while(mdb_fetch_row(table)) {
if (!strcmp(name, argv[optind+1])) {
memcpy(kkd_ptr, buf, MDB_MEMO_OVERHEAD);
col=g_ptr_array_index(table->columns,col_num - 1);
len = mdb_ole_read(mdb, col, kkd_ptr, MDB_BIND_SIZE);
memcpy(kkd_pg, buf, len);
pos = len;
while ((len = mdb_ole_read_next(mdb, col, kkd_ptr))) {
memcpy(&kkd_pg[pos], buf, len);
pos += len;
}
len = pos;
dump_kkd(kkd_pg, len);
}
}
mdb_free_handle(mdb);
mdb_exit();
exit(0);
}
void print_keyvalue(gpointer key, gpointer value, gpointer user_data)
{
printf("%s = %s\n", (gchar *)key, (gchar *)value);
}
void dump_kkd(gchar *kkd, int len)
{
guint32 record_len, record_type;
int pos = 0;
GPtrArray *names = NULL;
gchar *name;
MdbProperties *props;
#ifdef MDB_DEBUG
buffer_dump(kkd, 0, len);
#endif
if (strcmp("KKD", kkd)) {
fprintf(stderr, "Unrecognized format.\n");
return;
}
pos = 4;
while (pos < len) {
record_len = mdb_get_int32(kkd, pos);
record_type = mdb_get_int16(kkd, pos + 4);
//printf("len = %d type = %d\n", record_len, record_type);
switch (record_type) {
case 0x80:
names = mdb_read_props_list(&kkd[pos+6], record_len - 6);
break;
case 0x00:
if (!names) {
printf("sequence error!\n");
break;
}
props = mdb_read_props(mdb, names, &kkd[pos+6], record_len - 6);
printf("type 0x00 name %s\n", props->name ? props->name : "(none)");
g_hash_table_foreach(props->hash, print_keyvalue, NULL);
mdb_free_props(props);
break;
case 0x01:
if (!names) {
printf("sequence error!\n");
break;
}
props = mdb_read_props(names, &kkd[pos+6], record_len - 6);
printf("type 0x01 name %s\n", props->name ? props->name : "(none)");
g_hash_table_foreach(props->hash, print_keyvalue, NULL);
mdb_free_props(props);
break;
default:
fprintf(stderr,"Unknown record type %d\n", record_type);
return;
}
pos += record_len;
}
}