エラー処理にリストを使うよう仕様変更
[YACASL2.git] / src / cerr.c
index 1aeb8c4..662cc66 100644 (file)
@@ -1,35 +1,66 @@
 #include "cerr.h"
 
-/* エラーメッセージ */
+/* エラー番号 */
 int cerrno = 0;
+
+/* エラーメッセージ */
 char *cerrmsg;
 
+/* エラーリスト */
+CERRLIST *cerr;
+
+/* エラーリストを作成する */
+void addcerrlist(int newerrc, CERRARRAY newerrv[])
+{
+    int i;
+    CERRLIST *p = cerr, *q;
+
+    if(cerr != NULL) {
+        for(p = cerr; p != NULL; p = p->next) {
+            ;
+        }
+        if((p = malloc(sizeof(CERRLIST *))) == NULL) {
+            fprintf(stderr, "addcerrlist: cannot allocate memory\n");
+            exit(-1);
+        }
+    } else if((p = cerr = malloc(sizeof(CERRLIST *))) == NULL) {
+        fprintf(stderr, "addcerrlist: cannot allocate memory\n");
+        exit(-1);
+    }
+    for(i = 0; i < newerrc; i++) {
+        p->err = &(newerrv[i]);
+        if((p->next = malloc(sizeof(CERRLIST *))) == NULL) {
+            fprintf(stderr, "addcerrlist: cannot allocate memory\n");
+            exit(-1);
+        }
+        q = p;
+        p = p->next;
+    }
+    q->next = NULL;
+}
+
 /* エラー番号とエラーメッセージを設定する */
 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));
     }
 }
 
-/* ã\82¨ã\83©ã\83¼ç\95ªå\8f·ã\81\8bã\82\89メッセージを返す */
+/* ã\83ªã\82¹ã\83\88ã\81\8bã\82\89ã\80\81ã\82¨ã\83©ã\83¼ç\95ªå\8f·ã\81«å¯¾å¿\9cã\81\99ã\82\8bメッセージを返す */
 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";
 }