FreeCalypso > hg > freecalypso-hwlab
view uicc/dispatch.c @ 140:062141ce5755
fc-uicc-tool: select-[ui]sim: command dispatch bugfix
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 04 Feb 2021 05:01:30 +0000 |
parents | 6c6e8705dc70 |
children | 429a8f80426e |
line wrap: on
line source
/* * This module implements the command dispatch for fc-uicc-tool */ #include <ctype.h> #include <stdio.h> #include <string.h> #include <strings.h> #include <stdlib.h> extern int cmd_dir(); extern int cmd_exec(); extern int cmd_iccid(); extern int cmd_pb_dump(); extern int cmd_pb_dump_rec(); extern int cmd_readbin(); extern int cmd_readrec(); extern int cmd_select(); extern int cmd_select_aid(); extern int cmd_select_isim(); extern int cmd_select_usim(); extern int cmd_telecom_sum(); extern int display_sim_resp_in_hex(); extern int good_exit(); static struct cmdtab { char *cmd; int minargs; int maxargs; int (*func)(); } cmdtab[] = { {"dir", 0, 0, cmd_dir}, {"exec", 1, 1, cmd_exec}, {"exit", 0, 0, good_exit}, {"iccid", 0, 0, cmd_iccid}, {"pb-dump", 1, 2, cmd_pb_dump}, {"pb-dump-rec", 2, 3, cmd_pb_dump_rec}, {"quit", 0, 0, good_exit}, {"readbin", 2, 2, cmd_readbin}, {"readrec", 2, 2, cmd_readrec}, {"select", 1, 1, cmd_select}, {"select-aid", 1, 1, cmd_select_aid}, {"select-isim", 0, 0, cmd_select_isim}, {"select-usim", 0, 0, cmd_select_usim}, {"sim-resp", 0, 0, display_sim_resp_in_hex}, {"telecom-sum", 0, 0, cmd_telecom_sum}, {0, 0, 0, 0} }; simtool_dispatch_cmd(cmd, is_script) char *cmd; { char *argv[10]; char *cp, **ap; struct cmdtab *tp; for (cp = cmd; isspace(*cp); cp++) ; if (!*cp || *cp == '#') return(0); if (is_script) printf("Script command: %s\n", cp); argv[0] = cp; while (*cp && !isspace(*cp)) cp++; if (*cp) *cp++ = '\0'; for (tp = cmdtab; tp->cmd; tp++) if (!strcmp(tp->cmd, argv[0])) break; if (!tp->func) { fprintf(stderr, "error: no such command\n"); return(-1); } for (ap = argv + 1; ; ) { while (isspace(*cp)) cp++; if (!*cp || *cp == '#') break; if (ap - argv - 1 >= tp->maxargs) { fprintf(stderr, "error: too many arguments\n"); return(-1); } if (*cp == '"') { *ap++ = ++cp; for (;;) { if (!*cp) { unterm_qstring: fprintf(stderr, "error: unterminated quoted string\n"); return(-1); } if (*cp == '"') break; if (*cp++ == '\\') { if (!*cp) goto unterm_qstring; cp++; } } *cp++ = '\0'; } else { *ap++ = cp; while (*cp && !isspace(*cp)) cp++; if (*cp) *cp++ = '\0'; } } if (ap - argv - 1 < tp->minargs) { fprintf(stderr, "error: too few arguments\n"); return(-1); } *ap = 0; return tp->func(ap - argv, argv); } dispatch_ready_argv(argc, argv) char **argv; { struct cmdtab *tp; for (tp = cmdtab; tp->cmd; tp++) if (!strcmp(tp->cmd, argv[0])) break; if (!tp->func) { fprintf(stderr, "error: no such command\n"); return(-1); } if (argc - 1 > tp->maxargs) { fprintf(stderr, "error: too many arguments\n"); return(-1); } if (argc - 1 < tp->minargs) { fprintf(stderr, "error: too few arguments\n"); return(-1); } return tp->func(argc, argv); }