X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=gedcom%2Finterface.c;h=7d155576744fda077ea177ae97d7fd876833158b;hb=refs%2Fheads%2Flibiconv-gedcom-1.14;hp=152599a2ec0fea2c63443b934335c0c3535fb314;hpb=0a3842e05ee5ad37ffacefb70f685bbae3ad7fe6;p=gedcom-parse.git diff --git a/gedcom/interface.c b/gedcom/interface.c index 152599a..7d15557 100644 --- a/gedcom/interface.c +++ b/gedcom/interface.c @@ -30,25 +30,56 @@ static Gedcom_elt_start_cb element_start_callback[NR_OF_ELTS] = { NULL }; static Gedcom_elt_end_cb element_end_callback [NR_OF_ELTS] = { NULL }; static Gedcom_def_cb default_cb = NULL; +/** This function allows to set the default callback. You can only register + one default callback. + \param func The default callback. + */ void gedcom_set_default_callback(Gedcom_def_cb func) { + if (default_cb) { + gedcom_error(_("Internal error: Duplicate registration for default callback")); + } default_cb = func; } +/** This function allows to subscribe to a record of a certain type, with a + start and an end + callback. The end callback is optional: you can pass \c NULL if you are + not interested in the end callback. You can only register once for a + given record type. + \param rec The record to subscribe to (see the + interface details) + \param cb_start The start callback + \param cb_end The end callback + */ void gedcom_subscribe_to_record(Gedcom_rec rec, Gedcom_rec_start_cb cb_start, Gedcom_rec_end_cb cb_end) { + if (record_start_callback[rec] || record_end_callback[rec]) + gedcom_error(_("Internal error: Duplicate registration for record type %d"), rec); if (cb_start) { record_start_callback[rec] = cb_start; record_end_callback[rec] = cb_end; } } +/** This function allows to subscribe to an element of a certain type, with a + start and an end + callback. The end callback is optional: you can pass \c NULL if you are + not interested in the end callback. You can only register once for a given + element type. + \param elt The element to subscribe to (see the + interface details) + \param cb_start The start callback + \param cb_end The end callback + */ void gedcom_subscribe_to_element(Gedcom_elt elt, Gedcom_elt_start_cb cb_start, Gedcom_elt_end_cb cb_end) { + if (element_start_callback[elt] || element_end_callback[elt]) + gedcom_error(_("Internal error: Duplicate registration for element type %d"), elt); if (cb_start) { element_start_callback[elt] = cb_start; element_end_callback[elt] = cb_end; @@ -61,16 +92,17 @@ Gedcom_ctxt start_record(Gedcom_rec rec, { Gedcom_rec_start_cb cb = record_start_callback[rec]; if (cb != NULL) - return (*cb)(level, xref, tag.string, raw_value, tag.value, parsed_value); + return (*cb)(rec, level, xref, tag.string, raw_value, tag.value, + parsed_value); else return NULL; } -void end_record(Gedcom_rec rec, Gedcom_ctxt self) +void end_record(Gedcom_rec rec, Gedcom_ctxt self, Gedcom_val parsed_value) { Gedcom_rec_end_cb cb = record_end_callback[rec]; if (cb != NULL) - (*cb)(self); + (*cb)(rec, self, parsed_value); } Gedcom_ctxt start_element(Gedcom_elt elt, Gedcom_ctxt parent, @@ -80,10 +112,10 @@ Gedcom_ctxt start_element(Gedcom_elt elt, Gedcom_ctxt parent, Gedcom_elt_start_cb cb = element_start_callback[elt]; Gedcom_ctxt ctxt = parent; if (cb != NULL) - ctxt = (*cb)(parent, level, tag.string, raw_value, + ctxt = (*cb)(elt, parent, level, tag.string, raw_value, tag.value, parsed_value); else if (default_cb != NULL && parent != NULL) - (*default_cb)(parent, level, tag.string, raw_value, tag.value); + (*default_cb)(elt, parent, level, tag.string, raw_value, tag.value); return ctxt; } @@ -92,18 +124,65 @@ void end_element(Gedcom_elt elt, Gedcom_ctxt parent, Gedcom_ctxt self, { Gedcom_elt_end_cb cb = element_end_callback[elt]; if (cb != NULL) - (*cb)(parent, self, parsed_value); + (*cb)(elt, parent, self, parsed_value); } -char* val_type_str[] = { N_("null value"), - N_("character string"), - N_("date") }; +const char* val_type_str[] = { N_("null value"), + N_("character string"), + N_("date"), + N_("age"), + N_("cross-reference") }; -void gedcom_cast_error(char* file, int line, +void gedcom_cast_error(const char* file, int line, Gedcom_val_type tried_type, Gedcom_val_type real_type) { + int tried_bit=0, real_bit=0; + while (tried_type && tried_type % 2 == 0) { + tried_bit++; + tried_type >>= 1; + } + while (real_type && real_type % 2 == 0) { + real_bit++; + real_type >>= 1; + } gedcom_warning (_("Wrong cast of value in file %s, at line %d: %s instead of %s"), - file, line, _(val_type_str[tried_type]), _(val_type_str[real_type])); + file, line, _(val_type_str[tried_bit]), _(val_type_str[real_bit])); +} + +/** This function allows to customize what happens on an error. It doesn't + influence the generation of error or warning messages, only the behaviour + of the parser and its return code. + \param mechanism The mechanism to be used; see \ref Gedcom_err_mech + for the possible mechanisms. + */ +void gedcom_set_error_handling(Gedcom_err_mech mechanism) +{ + error_mechanism = mechanism; +} + +/** This function allows to change the debug level. + + \param level The debug level, one of the following values: + - 0: no debugging information (this is the default) + - 1: only debugging information from libgedcom itself + - 2: debugging information from libgedcom and yacc + + \param f A file handle (which must be open) to write debugging information + to; if \c NULL is passed, \c stderr will be used. +*/ +void gedcom_set_debug_level(int level, FILE* f) +{ + if (f != NULL) + trace_output = f; + else + trace_output = stderr; + if (level > 0) { + gedcom_high_level_debug = 1; + } + if (level > 1) { + gedcom_enable_internal_debug(); + } } +