X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=src%2Ftoken.c;h=b846c69b265477cb93312cf841d4624e76ca77f3;hp=48ed6ec219ff79d6fd0ac74a93eaf63504aa272c;hb=f1803bd560071fb724b2c7ff2f5f35fa5086d10a;hpb=94c85b53aa233dcb92d1db091f2104a5bab505fa diff --git a/src/token.c b/src/token.c index 48ed6ec..b846c69 100644 --- a/src/token.c +++ b/src/token.c @@ -6,7 +6,7 @@ OPD *opdtok(const char *str) { OPD *opd = malloc(sizeof(OPD)); char *p, *q, *sepp; - int sepc = ','; + int sepc = ',', qcnt = 0; bool quoting = false; opd->opdc = 0; @@ -24,14 +24,21 @@ OPD *opdtok(const char *str) if(*q == '=') { q++; } - /* 「'」で囲まれた文字列の処理。「''」は無視 */ - if(*q == '\'' && *(q+1) != '\'' && !(p < q && *(q-1) == '\'')) { - quoting = !quoting; + /* 「'」の場合 */ + if(*q == '\'') { + /* 「''」以外の場合はquote値を反転 */ + if(*(q+1) != '\'' && !(p < q && *(q-1) == '\'')) { + quoting = !quoting; + } + /* 「'」の分、文字列の長さを小さくする */ + if(*(q+1) != '\'') { + qcnt++; + } } if(quoting == true) { /* 閉じ「'」がないまま文字列が終了した場合 */ if(*q == '\0') { - setcerr(123, str); /* illegal string */ + setcerr(123, str); /* unclosed quote */ break; } q++; @@ -39,16 +46,17 @@ OPD *opdtok(const char *str) sepp = q + strcspn(q, ", "); sepc = *sepp; *sepp = '\0'; - if(strlen(p) == 0) { + if(*p == '\0') { setcerr(121, NULL); /* cannot get operand token */ break; } - if(strlen(p) > OPDSIZE + 2) { /* OPDSIZE + 「'」2文字分 */ - setcerr(118, p); /* operand length is too long */ + if(strlen(p) - qcnt > OPDSIZE) { + setcerr(118, NULL); /* operand length is too long */ break; } opd->opdv[(++opd->opdc)-1] = strdup(p); p = q = sepp + 1; + qcnt = 0; } } while(sepc == ','); return opd; @@ -60,6 +68,7 @@ CMDLINE *linetok(const char *line) char *tokens, *p, *q, *sepp; bool quote = false; CMDLINE *cmdl = malloc(sizeof(CMDLINE)); + if(line == NULL || strlen(line) == 0) { return NULL; }