X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=src%2Ftoken.c;h=ec86ac5be48e7028a49cafc5588d973fb2eab350;hp=68ed3a7c5dc8a53dfa3489fb0fe6a82f2f133bef;hb=b0f981469cdea23225ca5c3ef0ca6759d6a92b43;hpb=bb9d41081432d335dcb0b3ad8c9d7dd9c6790b6f diff --git a/src/token.c b/src/token.c index 68ed3a7..ec86ac5 100644 --- a/src/token.c +++ b/src/token.c @@ -5,8 +5,8 @@ OPD *opdtok(const char *str) { OPD *opd = malloc(sizeof(OPD)); - char *p, *q, *r, *sepp; - int sepc = ',', len; + char *p, *q, *sepp; + int sepc = ',', qcnt = 0; bool quoting = false; opd->opdc = 0; @@ -17,16 +17,23 @@ OPD *opdtok(const char *str) do { /* オペランド数が多すぎる場合はエラー */ if(opd->opdc >= OPDSIZE) { - setcerr(117, str); /* operand is too many */ + setcerr(117, NULL); /* operand is too many */ break; } /* 先頭が「=」の場合の処理 */ 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) { /* 閉じ「'」がないまま文字列が終了した場合 */ @@ -43,17 +50,13 @@ OPD *opdtok(const char *str) setcerr(121, NULL); /* cannot get operand token */ break; } - len = strlen(r = p); - while(*r != '\0' && (r = strstr(r, "''")) != NULL) { - len--; - r += 2; - }; - if(len > OPDSIZE + 2) { /* OPDSIZE + 「'」2文字分 */ + 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;