mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 20:31:00 +08:00

GLib will automatically convert command line options to UTF-8 provided that setlocale(LC_TYPE, "") is called first, and the argument type is STRING (but not FILENAME). Update the CLI tools to take advantage of this behavior, and likewise implement it in fakeglib. GLib does not automatically convert non-option arguments (i.e. everything remaining in argv after option processing), so manually call g_locale_to_utf8 on these arguments when they represent table names. This should fix the CLI tools when processing non-ASCII table names in non-UTF-8 locales. Also update fakeglib to implement a fast and loose version of g_locale_to_utf8, and factor out some of the code page => iconv name logic in iconv.c so it can be used in our fake g_locale_to_utf8. This adds a new symbol mdb_iconv_name_from_code_page that is not advertised in the main header file. I did not want to include mdbtools.h from fakeglib.c, but maybe that's not important.
96 lines
2.5 KiB
C
96 lines
2.5 KiB
C
/* MDB Tools - A library for reading MS Access database file
|
|
* Copyright (C) 2000-2004 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.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#include "mdbtools.h"
|
|
#include "mdbver.h"
|
|
#include "mdbprivate.h"
|
|
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
MdbHandle *mdb;
|
|
int print_mdbver = 0;
|
|
|
|
/* setlocale (LC_ALL, ""); */
|
|
bindtextdomain (PACKAGE, LOCALEDIR);
|
|
textdomain (PACKAGE);
|
|
|
|
GOptionEntry entries[] = {
|
|
{ "mdbtools", 'M', 0, G_OPTION_ARG_NONE, &print_mdbver, "Show MDBtools version", NULL},
|
|
{ NULL },
|
|
};
|
|
GError *error = NULL;
|
|
GOptionContext *opt_context;
|
|
|
|
opt_context = g_option_context_new("<file> - display MDB file version");
|
|
g_option_context_add_main_entries(opt_context, entries, NULL /*i18n*/);
|
|
// g_option_context_set_strict_posix(opt_context, TRUE); /* options first, requires glib 2.44 */
|
|
if (!g_option_context_parse (opt_context, &argc, &argv, &error))
|
|
{
|
|
fprintf(stderr, "option parsing failed: %s\n", error->message);
|
|
fputs(g_option_context_get_help(opt_context, TRUE, NULL), stderr);
|
|
exit (1);
|
|
}
|
|
|
|
if (print_mdbver) {
|
|
fprintf(stdout,"%s\n", MDB_FULL_VERSION);
|
|
if (argc == 1)
|
|
exit(0);
|
|
}
|
|
|
|
if (argc != 2) {
|
|
fputs("Wrong number of arguments.\n\n", stderr);
|
|
fputs(g_option_context_get_help(opt_context, TRUE, NULL), stderr);
|
|
exit(1);
|
|
}
|
|
|
|
if (!(mdb = mdb_open(argv[1], MDB_NOFLAGS))) {
|
|
fprintf(stderr,_("Error: unable to open file %s\n"), argv[1]);
|
|
exit(1);
|
|
}
|
|
switch(mdb->f->jet_version) {
|
|
case MDB_VER_JET3:
|
|
printf("JET3\n");
|
|
break;
|
|
case MDB_VER_JET4:
|
|
printf("JET4\n");
|
|
break;
|
|
case MDB_VER_ACCDB_2007:
|
|
printf("ACE12\n");
|
|
break;
|
|
case MDB_VER_ACCDB_2010:
|
|
printf("ACE14\n");
|
|
break;
|
|
case MDB_VER_ACCDB_2013:
|
|
printf("ACE15\n");
|
|
break;
|
|
case MDB_VER_ACCDB_2016:
|
|
printf("ACE16\n");
|
|
break;
|
|
default:
|
|
printf(_("unknown database version\n"));
|
|
break;
|
|
}
|
|
|
|
mdb_close(mdb);
|
|
g_option_context_free(opt_context);
|
|
|
|
return 0;
|
|
}
|
|
|