Michael Bruck:

- fix indentation of multi-level commands
- make help command work with multi-level commands

git-svn-id: svn://svn.berlios.de/openocd/trunk@384 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
oharboe 2008-02-29 07:01:43 +00:00
parent c98ec4cc36
commit 881dddd84f
1 changed files with 32 additions and 16 deletions

View File

@ -471,24 +471,27 @@ int command_run_file(command_context_t *context, FILE *file, enum command_mode m
void command_print_help_line(command_context_t* context, struct command_s *command, int indent) void command_print_help_line(command_context_t* context, struct command_s *command, int indent)
{ {
command_t *c; command_t *c;
char indents[32] = {0}; char indent_text[indent + 2];
char *help = "no help available"; char *help = "no help available";
char name_buf[64]; char name_buf[64];
int i; int i;
for (i = 0; i < indent; i+=2) if (indent)
{ {
indents[i*2] = ' '; indent_text[0] = ' ';
indents[i*2+1] = '-'; memset(indent_text + 1, '-', indent);
indent_text[indent + 1] = 0;
} }
indents[i*2] = 0;
if (command->help) if (command->help)
help = command->help; help = command->help;
snprintf(name_buf, 64, command->name); snprintf(name_buf, 64, command->name);
strncat(name_buf, indents, 64);
command_print(context, "%20s\t%s", name_buf, help); if (indent)
strncat(name_buf, indent_text, 64);
command_print(context, "%20s\t%s", name_buf, help, indent);
if (command->children) if (command->children)
{ {
@ -499,19 +502,26 @@ void command_print_help_line(command_context_t* context, struct command_s *comma
} }
} }
int command_print_help(command_context_t* context, char* name, char** args, int argc) int command_print_help_match(command_context_t* context, command_t* c_first, char* name, char** args, int argc)
{ {
command_t * c; command_t * c;
int i;
for (c = context->commands; c; c = c->next) for (c = c_first; c; c = c->next)
{ {
if (argc == 1) if (argc > 0)
{ {
if (strncasecmp(c->name, args[0], c->unique_len)) if (strncasecmp(c->name, args[0], c->unique_len))
continue; continue;
if (strncasecmp(c->name, args[0], strlen(args[0]))) if (strncasecmp(c->name, args[0], strlen(args[0])))
continue; continue;
if (argc > 1)
{
command_print_help_match(context, c->children, name, args + 1, argc - 1);
continue;
}
} }
command_print_help_line(context, c, 0); command_print_help_line(context, c, 0);
@ -520,6 +530,12 @@ int command_print_help(command_context_t* context, char* name, char** args, int
return ERROR_OK; return ERROR_OK;
} }
int command_print_help(command_context_t* context, char* name, char** args, int argc)
{
return command_print_help_match(context, context->commands, name, args, argc);
}
void command_set_output_handler(command_context_t* context, int (*output_handler)(struct command_context_s *context, char* line), void *priv) void command_set_output_handler(command_context_t* context, int (*output_handler)(struct command_context_s *context, char* line), void *priv)
{ {
context->output_handler = output_handler; context->output_handler = output_handler;