ソースの書き方を変更
[YACASL2.git] / src / cerr.c
index be3e58b..24f620d 100644 (file)
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <assert.h>
+#include <stdbool.h>
 #include "cerr.h"
 
-/* エラーメッセージ */
-int cerrno = 0;
-char *cerrmsg;
+/**
+ * エラーの初期化
+ */
+void cerr_init()
+{
+    cerr = malloc_chk(sizeof(CERR), "cerr");
+    cerr->num = 0;
+}
+
+/**
+ * 現在のエラー
+ */
+CERR *cerr;
 
-/* エラー番号とエラーメッセージを設定する */
-void setcerr(int num, const char *val)
+/**
+ * エラーリスト
+ */
+CERRLIST *cerrlist;
+
+/**
+ * エラーリストを作成または追加する
+ */
+bool addcerrlist(int newerrc, CERR newerrv[])
 {
-    assert(cerr != NULL && num > 0);
-
-    cerrno = num;
-    cerrmsg = malloc(MSGSIZE + 1);
-    if(val != NULL) {
-        strcpy(cerrmsg, val);
-        strcat(cerrmsg, ": ");
-        strcat(cerrmsg, getcerrmsg(cerrno));
+    int i;
+    CERRLIST *p, *q;
+
+    assert(newerrc > 0 && newerrv != NULL);
+    if(cerrlist == NULL) {
+        p = cerrlist = malloc_chk(sizeof(CERRLIST), "cerrlist");
     } else {
-        strcpy(cerrmsg, getcerrmsg(cerrno));
+        for(p = cerrlist; p != NULL; p = p->next) {
+            q = p;
+        }
+        p = q->next = malloc_chk(sizeof(CERRLIST), "cerrlist.next");
     }
+    for(i = 0; i < newerrc; i++) {
+        p->cerr = &newerrv[i];
+        q = p;
+        p = p->next = malloc_chk(sizeof(CERRLIST), "cerrlist.next");
+    }
+    q->next = NULL;
+    return true;
 }
 
-/* エラー番号からメッセージを返す */
+/**
+ * エラーリストを表示する
+ */
+void printcerrlist()
+{
+    CERRLIST *p;
+
+    if(cerrlist == NULL) {
+        puts("error list is null.");
+    } else {
+        for(p = cerrlist; p != NULL; p = p->next) {
+            printf("%d: %s\n", p->cerr->num, p->cerr->msg);
+        }
+    }
+}
+
+/**
+ * 現在のエラーを設定する
+ */
+void setcerr(int num, const char *str)
+{
+    /* 現在のエラー番号を設定  */
+    cerr->num = num;
+    /* 現在のエラーメッセージを設定 */
+    cerr->msg = malloc_chk(CERRMSGSIZE + 1, "cerr.msg");
+    if(str != NULL && strlen(str) <= CERRSTRSIZE) {
+        sprintf(cerr->msg, "%s: %s", str, getcerrmsg(cerr->num));
+    } else {
+        strcpy(cerr->msg, getcerrmsg(cerr->num));
+    }
+}
+
+/**
+ * エラーリストから、エラー番号に対応するメッセージを返す
+ */
 char *getcerrmsg(int num)
 {
-    assert(cerr != NULL && num > 0);
-    int i = 0;
-    CERRARRAY *ptr;
+    CERRLIST *p;
+    char *msg = "unknown error";
 
-    do {
-        if((ptr = &cerr[i++])->num == num) {
-            return ptr->msg;
+    for(p = cerrlist; p != NULL; p = p->next) {
+        if(num == p->cerr->num) {
+            msg = p->cerr->msg;
+            break;
         }
-    } while(ptr->num > 0);
-    return "unkown error";
+    }
+    return msg;
 }
 
-/* エラーを解放する */
+/**
+ * エラーリストと現在のエラーを解放する
+ */
 void freecerr()
 {
-    assert(cerrno > 0);
-    cerrno = 0;
-    if(strlen(cerrmsg) > 0) {
-        free(cerrmsg);
+    CERRLIST *p = cerrlist, *q;
+
+    /* 現在のエラーメッセージを解放 */
+    free_chk(cerr->msg, "cerr.msg");
+    /* 現在のエラーを解放 */
+    free_chk(cerr, "cerr");
+    /* エラーリストを解放 */
+    for(p = cerrlist; p != NULL; p = q) {
+        q = p->next;
+        free_chk(p, "freecerr.p");
     }
 }