2 * Copyright (c) 2003-2005 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see <http://www.gnu.org/licenses/>.
27 #define _(x) x /* not gettext support yet */
31 /* from libxcmd/command.c */
36 static argsfunc_t args_func;
37 static checkfunc_t check_func;
39 static char **cmdline;
42 compare(const void *a, const void *b)
44 return strcmp(((const cmdinfo_t *)a)->name,
45 ((const cmdinfo_t *)b)->name);
52 cmdtab = realloc((void *)cmdtab, ++ncmds * sizeof(*cmdtab));
53 cmdtab[ncmds - 1] = *ci;
54 qsort(cmdtab, ncmds, sizeof(*cmdtab), compare);
62 return check_func(ci);
77 printf("%s %s -- %s\n", ci->name, ci->args, ci->oneline);
89 if (!check_command(ct))
92 if (argc-1 < ct->argmin || (ct->argmax != -1 && argc-1 > ct->argmax)) {
95 _("bad argument count %d to %s, expected at least %d arguments\n"),
96 argc-1, cmd, ct->argmin);
97 else if (ct->argmin == ct->argmax)
99 _("bad argument count %d to %s, expected %d arguments\n"),
100 argc-1, cmd, ct->argmin);
103 _("bad argument count %d to %s, expected between %d and %d arguments\n"),
104 argc-1, cmd, ct->argmin, ct->argmax);
108 return ct->cfunc(argc, argv);
117 for (ct = cmdtab; ct < &cmdtab[ncmds]; ct++) {
118 if (strcmp(ct->name, cmd) == 0 ||
119 (ct->altname && strcmp(ct->altname, cmd) == 0))
120 return (const cmdinfo_t *)ct;
126 add_user_command(char *optarg)
129 cmdline = realloc(cmdline, sizeof(char*) * (ncmdline));
134 cmdline[ncmdline-1] = optarg;
142 return args_func(index);
156 int c, i, j = 0, done = 0;
161 for (i = 0; !done && i < ncmdline; i++) {
162 input = strdup(cmdline[i]);
165 _("cannot strdup command '%s': %s\n"),
166 cmdline[i], strerror(errno));
169 v = breakline(input, &c);
171 ct = find_command(v[0]);
173 if (ct->flags & CMD_FLAG_GLOBAL)
174 done = command(ct, c, v);
177 while (!done && (j = args_command(j)))
178 done = command(ct, c, v);
181 fprintf(stderr, _("command \"%s\" not found\n"),
191 if ((input = fetchline()) == NULL)
193 v = breakline(input, &c);
195 ct = find_command(v[0]);
197 done = command(ct, c, v);
199 fprintf(stderr, _("command \"%s\" not found\n"),
206 /* from libxcmd/input.c */
208 #if defined(ENABLE_READLINE)
209 # include <readline/history.h>
210 # include <readline/readline.h>
211 #elif defined(ENABLE_EDITLINE)
212 # include <histedit.h>
218 static char prompt[FILENAME_MAX + 2 /*"> "*/ + 1 /*"\0"*/ ];
221 snprintf(prompt, sizeof(prompt), "%s> ", progname);
225 #if defined(ENABLE_READLINE)
231 line = readline(get_prompt());
236 #elif defined(ENABLE_EDITLINE)
237 static char *el_get_prompt(EditLine *e) { return get_prompt(); }
242 static History *hist;
248 hist = history_init();
249 history(hist, &hevent, H_SETSIZE, 100);
250 el = el_init(progname, stdin, stdout, stderr);
252 el_set(el, EL_SIGNAL, 1);
253 el_set(el, EL_PROMPT, el_get_prompt);
254 el_set(el, EL_HIST, history, (const char *)hist);
256 line = strdup(el_gets(el, &count));
259 line[count-1] = '\0';
261 history(hist, &hevent, H_ENTER, line);
266 # define MAXREADLINESZ 1024
270 char *p, *line = malloc(MAXREADLINESZ);
274 printf("%s", get_prompt());
276 if (!fgets(line, MAXREADLINESZ, stdin)) {
280 p = line + strlen(line);
281 if (p != line && p[-1] == '\n')
287 static char *qemu_strsep(char **input, const char *delim)
289 char *result = *input;
290 if (result != NULL) {
292 for (p = result; *p != '\0'; p++) {
293 if (strchr(delim, *p)) {
314 char **rval = calloc(sizeof(char *), 1);
316 while (rval && (p = qemu_strsep(&input, " ")) != NULL) {
320 rval = realloc(rval, sizeof(*rval) * (c + 1));
341 #define EXABYTES(x) ((long long)(x) << 60)
342 #define PETABYTES(x) ((long long)(x) << 50)
343 #define TERABYTES(x) ((long long)(x) << 40)
344 #define GIGABYTES(x) ((long long)(x) << 30)
345 #define MEGABYTES(x) ((long long)(x) << 20)
346 #define KILOBYTES(x) ((long long)(x) << 10)
356 i = strtoll(s, &sp, 0);
357 if (i == 0 && sp == s)
385 #define TO_EXABYTES(x) ((x) / EXABYTES(1))
386 #define TO_PETABYTES(x) ((x) / PETABYTES(1))
387 #define TO_TERABYTES(x) ((x) / TERABYTES(1))
388 #define TO_GIGABYTES(x) ((x) / GIGABYTES(1))
389 #define TO_MEGABYTES(x) ((x) / MEGABYTES(1))
390 #define TO_KILOBYTES(x) ((x) / KILOBYTES(1))
401 precise = ((double)value * 1000 == (double)(int)value * 1000);
403 if (value >= EXABYTES(1)) {
404 fmt = precise ? "%.f EiB" : "%.3f EiB";
405 snprintf(str, size, fmt, TO_EXABYTES(value));
406 } else if (value >= PETABYTES(1)) {
407 fmt = precise ? "%.f PiB" : "%.3f PiB";
408 snprintf(str, size, fmt, TO_PETABYTES(value));
409 } else if (value >= TERABYTES(1)) {
410 fmt = precise ? "%.f TiB" : "%.3f TiB";
411 snprintf(str, size, fmt, TO_TERABYTES(value));
412 } else if (value >= GIGABYTES(1)) {
413 fmt = precise ? "%.f GiB" : "%.3f GiB";
414 snprintf(str, size, fmt, TO_GIGABYTES(value));
415 } else if (value >= MEGABYTES(1)) {
416 fmt = precise ? "%.f MiB" : "%.3f MiB";
417 snprintf(str, size, fmt, TO_MEGABYTES(value));
418 } else if (value >= KILOBYTES(1)) {
419 fmt = precise ? "%.f KiB" : "%.3f KiB";
420 snprintf(str, size, fmt, TO_KILOBYTES(value));
422 snprintf(str, size, "%f bytes", value);
427 tsub(struct timeval t1, struct timeval t2)
429 t1.tv_usec -= t2.tv_usec;
430 if (t1.tv_usec < 0) {
431 t1.tv_usec += 1000000;
434 t1.tv_sec -= t2.tv_sec;
439 tdiv(double value, struct timeval tv)
441 return value / ((double)tv.tv_sec + ((double)tv.tv_usec / 1000000.0));
444 #define HOURS(sec) ((sec) / (60 * 60))
445 #define MINUTES(sec) (((sec) % (60 * 60)) / 60)
446 #define SECONDS(sec) ((sec) % 60)
455 double usec = (double)tv->tv_usec / 1000000.0;
457 if (format & TERSE_FIXED_TIME) {
458 if (!HOURS(tv->tv_sec)) {
459 snprintf(ts, size, "%u:%02u.%02u",
460 (unsigned int) MINUTES(tv->tv_sec),
461 (unsigned int) SECONDS(tv->tv_sec),
462 (unsigned int) usec * 100);
465 format |= VERBOSE_FIXED_TIME; /* fallback if hours needed */
468 if ((format & VERBOSE_FIXED_TIME) || tv->tv_sec) {
469 snprintf(ts, size, "%u:%02u:%02u.%02u",
470 (unsigned int) HOURS(tv->tv_sec),
471 (unsigned int) MINUTES(tv->tv_sec),
472 (unsigned int) SECONDS(tv->tv_sec),
473 (unsigned int) usec * 100);
475 snprintf(ts, size, "0.%04u sec", (unsigned int) usec * 10000);
480 /* from libxcmd/quit.c */
482 static cmdinfo_t quit_cmd;
496 quit_cmd.name = _("quit");
497 quit_cmd.altname = _("q");
498 quit_cmd.cfunc = quit_f;
499 quit_cmd.argmin = -1;
500 quit_cmd.argmax = -1;
501 quit_cmd.flags = CMD_FLAG_GLOBAL;
502 quit_cmd.oneline = _("exit the program");
504 add_command(&quit_cmd);
507 /* from libxcmd/help.c */
509 static cmdinfo_t help_cmd;
510 static void help_onecmd(const char *cmd, const cmdinfo_t *ct);
511 static void help_oneline(const char *cmd, const cmdinfo_t *ct);
518 for (ct = cmdtab; ct < &cmdtab[ncmds]; ct++)
519 help_oneline(ct->name, ct);
520 printf(_("\nUse 'help commandname' for extended help.\n"));
534 ct = find_command(argv[1]);
536 printf(_("command %s not found\n"), argv[1]);
539 help_onecmd(argv[1], ct);
548 help_oneline(cmd, ct);
561 printf("%s ", ct->name);
563 printf("(or %s) ", ct->altname);
566 printf("%s ", ct->args);
567 printf("-- %s\n", ct->oneline);
573 help_cmd.name = _("help");
574 help_cmd.altname = _("?");
575 help_cmd.cfunc = help_f;
578 help_cmd.flags = CMD_FLAG_GLOBAL;
579 help_cmd.args = _("[command]");
580 help_cmd.oneline = _("help for one or all commands");
582 add_command(&help_cmd);