X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=src%2Fcerr.c;h=c0146a2899f014f0e2a2b54fd85309b4b2ccfaf4;hp=1aeb8c42c29ba3ab3b0813ebec91ae4f5f6c1f8f;hb=b0f981469cdea23225ca5c3ef0ca6759d6a92b43;hpb=285d44a446b45fa1a5ac66617b6920bc7ba81fa6 diff --git a/src/cerr.c b/src/cerr.c index 1aeb8c4..c0146a2 100644 --- a/src/cerr.c +++ b/src/cerr.c @@ -1,35 +1,68 @@ #include "cerr.h" -/* エラーメッセージ */ +/* エラー番号 */ int cerrno = 0; + +/* エラーメッセージ */ char *cerrmsg; +/* エラーリスト */ +CERRLIST *cerr; + +/* エラーリストを作成する */ +bool addcerrlist(int newerrc, CERRARRAY newerrv[]) +{ + int i; + CERRLIST *p, *q; + + assert(newerrc > 0 && newerrv != NULL); + if(cerr != NULL) { + for(p = cerr; p != NULL; p = p->next) { + q = p; + } + if((p = q->next = malloc(sizeof(CERRLIST))) == NULL) { + goto addcerrlisterr; + } + } else if((p = cerr = malloc(sizeof(CERRLIST))) == NULL) { + goto addcerrlisterr; + } + for(i = 0; i < newerrc; i++) { + p->err = &(newerrv[i]); + if((p->next = malloc(sizeof(CERRLIST))) == NULL) { + goto addcerrlisterr; + } + q = p; + p = p->next; + } + q->next = NULL; + return true; +addcerrlisterr: + fprintf(stderr, "addcerrlist: cannot allocate memory\n"); + exit(-1); +} + /* エラー番号とエラーメッセージを設定する */ void setcerr(int num, const char *str) { - assert(cerr != NULL && num > 0); - cerrno = num; cerrmsg = malloc(CERRMSGSIZE + 1); - if(str != NULL && strlen(str) < 10) { + if(str != NULL && strlen(str) <= CERRSTRSIZE) { sprintf(cerrmsg, "%s: %s", str, getcerrmsg(cerrno)); } else { strcpy(cerrmsg, getcerrmsg(cerrno)); } } -/* エラー番号からメッセージを返す */ +/* リストから、エラー番号に対応するメッセージを返す */ char *getcerrmsg(int num) { - assert(cerr != NULL && num > 0); - int i = 0; - CERRARRAY *ptr; + CERRLIST *p; - do { - if((ptr = &cerr[i++])->num == num) { - return ptr->msg; + for(p = cerr; p != NULL; p = p->next) { + if(num == p->err->num) { + return p->err->msg; } - } while(ptr->num > 0); + } return "unkown error"; }