X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=gedcom%2Fmultilex.c;h=96af2952b714d022462e171c199b6b58b170d0bf;hb=7b470d2685d5a2479cf710b41d19d62e062b0dd6;hp=b7becba94c7d6bf8d8012614e18e1f034f62014e;hpb=b087de94b5d04bd40afb9d39c8c46c5ab30bace7;p=gedcom-parse.git diff --git a/gedcom/multilex.c b/gedcom/multilex.c index b7becba..96af295 100644 --- a/gedcom/multilex.c +++ b/gedcom/multilex.c @@ -1,5 +1,5 @@ /* The lexer multiplexer for Gedcom. - Copyright (C) 2001 The Genes Development Team + Copyright (C) 2001,2002 The Genes Development Team This file is part of the Gedcom parser library. Contributed by Peter Verthez , 2001. @@ -24,6 +24,7 @@ #include "gedcom_internal.h" #include "multilex.h" #include "encoding.h" +#include "xref.h" int line_no; @@ -71,68 +72,88 @@ int determine_encoding(FILE* f) fread(first, 1, 2, f); if ((first[0] == '0') && (first[1] == ' ')) { - gedcom_message(_("One-byte encoding")); + gedcom_debug_print(_("One-byte encoding")); fseek(f, 0, 0); return ONE_BYTE; } else if ((first[0] == '\0') && (first[1] == '0')) { - gedcom_message(_("Two-byte encoding, high-low")); + gedcom_debug_print(_("Two-byte encoding, high-low")); fseek(f, 0, 0); return TWO_BYTE_HILO; } else if ((first[0] == '\xFE') && (first[1] == '\xFF')) { - gedcom_message(_("Two-byte encoding, high-low, with BOM")); + gedcom_debug_print(_("Two-byte encoding, high-low, with BOM")); return TWO_BYTE_HILO; } else if ((first[0] == '0') && (first[1] == '\0')) { - gedcom_message(_("Two-byte encoding, low-high")); + gedcom_debug_print(_("Two-byte encoding, low-high")); fseek(f, 0, 0); return TWO_BYTE_LOHI; } else if ((first[0] == '\xFF') && (first[1] == '\xFE')) { - gedcom_message(_("Two-byte encoding, low-high, with BOM")); + gedcom_debug_print(_("Two-byte encoding, low-high, with BOM")); return TWO_BYTE_LOHI; } else { - gedcom_message(_("Unknown encoding, falling back to one-byte")); + gedcom_warning(_("Unknown encoding, falling back to one-byte")); fseek(f, 0, 0); return ONE_BYTE; } } +static int init_called = 0; + +void gedcom_init() +{ + init_called = 1; + update_gconv_search_path(); +} + int gedcom_parse_file(char* file_name) { ENCODING enc; int result = 1; FILE* file; + char *save_locale = strdup(setlocale(LC_ALL, NULL)); char *save_textdom = textdomain(NULL); - setlocale(LC_ALL, ""); /* In fact only necessary if main program doesn't - do this */ + setlocale(LC_ALL, ""); bindtextdomain(PACKAGE, LOCALEDIR); + bind_textdomain_codeset(PACKAGE, INTERNAL_ENCODING); textdomain(PACKAGE); - line_no = 1; - file = fopen(file_name, "r"); - if (!file) { - gedcom_error(_("Could not open file '%s'\n"), file_name); + if (!init_called) { + gedcom_error(_("Internal error: GEDCOM parser not initialized")); } else { - init_encodings(); - enc = determine_encoding(file); - - if (lexer_init(enc, file)) { - result = gedcom_parse(); + line_no = 1; + file = fopen(file_name, "r"); + if (!file) { + gedcom_error(_("Could not open file '%s'"), file_name); + } + else { + init_encodings(); + enc = determine_encoding(file); + + if (lexer_init(enc, file)) { + line_no = 1; + make_xref_table(); + result = gedcom_parse(); + if (result == 0) + result = check_xref_table(); + } + lexer_close(); + fclose(file); } - lexer_close(); - fclose(file); } textdomain(save_textdom); + setlocale(LC_ALL, save_locale); + free(save_locale); return result; }