X-Git-Url: http://j8takagi.net/cgi-bin/gitweb.cgi?p=YACASL2.git;a=blobdiff_plain;f=src%2Fdumpword.c;h=39098903454bf010d26167e7ed0f56c87e7be05f;hp=7e7d00a9a6990adef32c9cea6a548c0ceca8dea1;hb=86e559d164166966a797a1e5855871d48e087ddd;hpb=0d225ac1f580c59da7a063ef52da35c0af254dd3 diff --git a/src/dumpword.c b/src/dumpword.c index 7e7d00a..3909890 100644 --- a/src/dumpword.c +++ b/src/dumpword.c @@ -1,49 +1,77 @@ -#define _GNU_SOURCE -#include +#include "package.h" #include "word.h" -#include "cerr.h" -#include "cmem.h" +/** + * @brief dumpwordコマンドのオプション + */ static struct option longopts[] = { { "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[]) { - bool logicalmode = false; /* レジストリの内容を論理値(0〜65535)で表示する場合はtrue */ - int opt; - WORD word; + 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"; + /* エラーの定義 */ cerr_init(); - while((opt = getopt_long(argc, argv, "alh", longopts, NULL)) != -1) { + 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]); - return 0; + 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); + goto dumpwordfin; } /* WORD値に変換 */ word = nh2word(argv[optind]); if(cerr->num > 0) { fprintf(stderr, "Dumpword Error - %d: %s\n", cerr->num, cerr->msg); - exit(-1); + goto dumpwordfin; } fprintf(stdout, "%6s: ", argv[optind]); print_dumpword(word, logicalmode); - return 0; + fprintf(stdout, "\n"); +dumpwordfin: + if(cerr->num > 0) { + stat = 1; + } + freecerr(); /* エラーの解放 */ + return stat; }