X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=src%2Fdumpword.c;h=39098903454bf010d26167e7ed0f56c87e7be05f;hp=081ee441773cf8c667b73a2f26d5bae4b20b85e1;hb=86e559d164166966a797a1e5855871d48e087ddd;hpb=fb54b1c9d2fbc3d4a62c6b4d38ff68e9d3b25c26 diff --git a/src/dumpword.c b/src/dumpword.c index 081ee44..3909890 100644 --- a/src/dumpword.c +++ b/src/dumpword.c @@ -1,56 +1,77 @@ -#include "casl2.h" -#define _GNU_SOURCE -#include +#include "package.h" +#include "word.h" +/** + * @brief dumpwordコマンドのオプション + */ static struct option longopts[] = { - {"arithmetic", no_argument, NULL, 'a'}, - {"logical", no_argument, NULL, 'l'}, - {"help", no_argument, NULL, 'h'}, - {0, 0, 0, 0} + { "arithmetic", no_argument, NULL, 'a' }, + { "logical", no_argument, NULL, 'l' }, + { "version", no_argument, NULL, 'v' }, + { "help", no_argument, NULL, 'h' }, + { 0, 0, 0, 0 }, }; +/** + * @brief dumpwordコマンドのメイン + * + * @return 正常終了時は0、エラー発生時は1 + * + * @param argc コマンドライン引数の数 + * @param *argv[] コマンドライン引数の配列 + */ int main(int argc, char *argv[]) { - int opt; - WORD w; - char *check; + bool logicalmode = false; /* レジストリの内容を論理値(0から65535)で表示する場合はtrue */ + int opt = 0; + int stat = 0; + WORD word = 0; + const char *version = PACKAGE_VERSION; + const char *cmdversion = "dumpword of YACASL2 version %s\n"; const char *usage = "Usage: %s [-alh] WORD\n"; - logicalmode = false; - while((opt = getopt_long(argc, argv, "alh", longopts, NULL)) != -1) { + /* エラーの定義 */ + cerr_init(); + addcerrlist_load(); + addcerrlist_word(); + + /* オプションの処理 */ + while((opt = getopt_long(argc, argv, "alvh", longopts, NULL)) != -1) { switch(opt) { case 'l': logicalmode = true; break; + case 'v': + fprintf(stdout, cmdversion, version); + goto dumpwordfin; case 'h': fprintf(stdout, usage, argv[0]); - exit(-1); + goto dumpwordfin; case '?': fprintf(stderr, usage, argv[0]); - exit(-1); + setcerr(212, ""); /* invalid option */ + goto dumpwordfin; } } if(argv[optind] == NULL) { + setcerr(213, ""); /* invalid argument */ fprintf(stderr, usage, argv[0]); - exit(-1); - } - if(*argv[optind] == '-' || strlen(argv[optind]) > 4) { - setcerr(116, argv[optind]); /* out of hex range */ + goto dumpwordfin; } /* WORD値に変換 */ - w = (WORD)strtol(argv[optind], &check, 16); - if(*check != '\0') { - setcerr(115, argv[optind]); /* not hex */ - } - if(cerrno > 0) { - fprintf(stderr, "Dumpword Error - %d: %s\n", cerrno, cerrmsg); - exit(-1); + word = nh2word(argv[optind]); + if(cerr->num > 0) { + fprintf(stderr, "Dumpword Error - %d: %s\n", cerr->num, cerr->msg); + goto dumpwordfin; } - if(logicalmode == true) { - fprintf(stdout, "%4s: %6d = #%04X = %s\n", argv[optind], w, w, word2bit(w)); - } else { - fprintf(stdout, "%4s: %6d = #%04X = %s\n", argv[optind], (short)w, w, word2bit(w)); + fprintf(stdout, "%6s: ", argv[optind]); + print_dumpword(word, logicalmode); + fprintf(stdout, "\n"); +dumpwordfin: + if(cerr->num > 0) { + stat = 1; } - return 0; + freecerr(); /* エラーの解放 */ + return stat; }