X-Git-Url: https://git.dlugolecki.net.pl/?a=blobdiff_plain;f=gedcom%2Fgedcom_lex_common.c;h=06c1f77a8a5fefb51696d6fb7ac63e9b1c7f917c;hb=6103dd898c4de86c68891cc0222543988a2caab7;hp=703a9de9d3f21987ec3b22f51d267218603b596e;hpb=84f96f49d14f1bae8a7f58a25bfd3b0f9d31f34b;p=gedcom-parse.git diff --git a/gedcom/gedcom_lex_common.c b/gedcom/gedcom_lex_common.c index 703a9de..06c1f77 100644 --- a/gedcom/gedcom_lex_common.c +++ b/gedcom/gedcom_lex_common.c @@ -26,14 +26,17 @@ #include "gedcom_internal.h" #include "multilex.h" #include "encoding.h" +#include "encoding_state.h" #include "gedcom.h" #include "gedcom.tabgen.h" #include "compat.h" static size_t encoding_width; static int current_level = -1; -static int level_diff=MAXGEDCLEVEL; +static int level_diff = MAXGEDCLEVEL; static size_t line_len = 0; +static int tab_space = 0; +static int current_tag = -1; static struct conv_buffer* ptr_buffer = NULL; static struct conv_buffer* tag_buffer = NULL; @@ -91,10 +94,10 @@ int test_loop(ENCODING enc, const char* code) /* These are defined as functions here, because xgettext has trouble extracting the strings out of long pre-processor defined */ -static void error_line_too_long(const char *line) +static void error_line_too_long() { - gedcom_error(_("Line too long, max %d characters allowed: %s"), - MAXGEDCLINELEN, line); + gedcom_error(_("Line too long, max %d characters allowed"), + MAXGEDCLINELEN); } static void error_level_leading_zero() @@ -135,6 +138,11 @@ static void error_at_character() gedcom_error(_("'@' character should be written as '@@' in values")); } +static void error_tab_character() +{ + gedcom_error(_("Tab character is not allowed in values")); +} + static void error_unexpected_character(const char* str, char ch) { gedcom_error(_("Unexpected character: '%s' (0x%02x)"), str, ch); @@ -155,21 +163,29 @@ static int dummy_conv = 0; #define CHECK_LINE_LEN \ { if (line_len != (size_t)-1) { \ line_len += strlen(yytext); \ - if (line_len > MAXGEDCLINELEN * encoding_width) { \ - error_line_too_long(yytext); \ + if (line_len > MAXGEDCLINELEN * encoding_width \ + && ! compat_long_line(current_level, current_tag)) { \ + error_line_too_long(); \ line_len = (size_t)-1; \ return BADTOKEN; \ } \ } \ } +#define GENERATE_TAB_SPACE \ + { gedcom_lval.string = " "; \ + tab_space--; \ + return DELIM; \ + } + #define MKTAGACTION(THETAG) \ { CHECK_LINE_LEN; \ gedcom_lval.tag.string = TO_INTERNAL(yytext, tag_buffer); \ - gedcom_lval.tag.value = TAG_##THETAG; \ + current_tag = TAG_##THETAG; \ + gedcom_lval.tag.value = current_tag; \ BEGIN(NORMAL); \ line_no++; \ - return TAG_##THETAG; \ + return current_tag; \ } /* The GEDCOM level number is converted into a sequence of opening @@ -205,10 +221,16 @@ static int dummy_conv = 0; But because this means that one token is converted into a series of tokens, there is some initial code following immediately here - that returns "pending" tokens. */ + that returns "pending" tokens. + + Also, for compatibility tabs are converted into spaces, which is + also handled here */ #define ACTION_BEFORE_REGEXPS \ - { if (level_diff < 1) { \ + { if (compat_mode(C_TAB_CHARACTER) && tab_space-- > 0) { \ + GENERATE_TAB_SPACE; \ + } \ + else if (level_diff < 1) { \ level_diff++; \ return CLOSE; \ } \ @@ -337,7 +359,7 @@ static int dummy_conv = 0; { CHECK_LINE_LEN; \ INIT_LINE_LEN; \ if (line_no == 1) \ - set_encoding_terminator(TO_INTERNAL(yytext, str_buffer)); \ + set_read_encoding_terminator(TO_INTERNAL(yytext, str_buffer)); \ BEGIN(INITIAL); \ } @@ -382,6 +404,17 @@ static int dummy_conv = 0; } \ } +#define ACTION_TAB \ + { if (compat_mode(C_TAB_CHARACTER)) { \ + tab_space = 8; \ + GENERATE_TAB_SPACE; \ + } \ + else { \ + error_tab_character(); \ + return BADTOKEN; \ + } \ + } + #define ACTION_UNEXPECTED \ { error_unexpected_character(yytext, yytext[0]); \ return BADTOKEN; \