]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/cmdparser.c
28ca2196798fe4b71a578a9824deb9b34f212255
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
9 //-----------------------------------------------------------------------------
15 #include "cmdparser.h"
16 #include "proxmark3.h"
20 void CmdsHelp(const command_t Commands
[])
22 if (Commands
[0].Name
== NULL
)
25 while (Commands
[i
].Name
)
27 if (!IsOffline() || Commands
[i
].Offline
)
28 PrintAndLog("%-16s %s", Commands
[i
].Name
, Commands
[i
].Help
);
34 int CmdsParse(const command_t Commands
[], const char *Cmd
)
36 if(strcmp( Cmd
, "XX_internal_command_dump_XX") == 0)
37 {// Help dump children
38 dumpCommandsRecursive(Commands
, 0);
41 if(strcmp( Cmd
, "XX_internal_command_dump_markdown_XX") == 0)
42 {// Markdown help dump children
43 dumpCommandsRecursive(Commands
, 1);
48 memset(cmd_name
, 0, 32);
49 sscanf(Cmd
, "%31s%n", cmd_name
, &len
);
51 while (Commands
[i
].Name
&& strcmp(Commands
[i
].Name
, cmd_name
))
54 /* try to find exactly one prefix-match */
55 if(!Commands
[i
].Name
) {
59 for(i
=0;Commands
[i
].Name
;i
++) {
60 if( !strncmp(Commands
[i
].Name
, cmd_name
, strlen(cmd_name
)) ) {
65 if(matches
== 1) i
=last_match
;
68 if (Commands
[i
].Name
) {
69 while (Cmd
[len
] == ' ')
71 return Commands
[i
].Parse(Cmd
+ len
);
73 // show help for selected hierarchy or if command not recognised
80 char pparent
[512] = {0};
81 char *parent
= pparent
;
83 void dumpCommandsRecursive(const command_t cmds
[], int markdown
)
85 if (cmds
[0].Name
== NULL
)
91 // First, dump all single commands, which are not a container for
94 printf("|%-*s|%-*s|%s\n",w_cmd
,"command",w_off
,"offline","description");
95 printf("|%-*s|%-*s|%s\n",w_cmd
,"-------",w_off
,"-------","-----------");
97 printf("%-*s|%-*s|%s\n",w_cmd
,"command",w_off
,"offline","description");
98 printf("%-*s|%-*s|%s\n",w_cmd
,"-------",w_off
,"-------","-----------");
103 char* cmd_offline
= "N";
104 if(cmds
[i
].Help
[0] == '{' && ++i
) continue;
106 if ( cmds
[i
].Offline
) cmd_offline
= "Y";
108 printf("|`%s%-*s`|%-*s|`%s`\n", parent
, w_cmd
-(int)strlen(parent
)-2, cmds
[i
].Name
, w_off
, cmd_offline
, cmds
[i
].Help
);
110 printf("%s%-*s|%-*s|%s\n", parent
, w_cmd
-(int)strlen(parent
), cmds
[i
].Name
, w_off
, cmd_offline
, cmds
[i
].Help
);
115 // Then, print the categories. These will go into subsections with their own tables
119 if(cmds
[i
].Help
[0] != '{' && ++i
) continue;
121 printf("### %s%s\n\n %s\n\n", parent
, cmds
[i
].Name
, cmds
[i
].Help
);
123 char currentparent
[512] = {0};
124 snprintf(currentparent
, sizeof currentparent
, "%s%s ", parent
, cmds
[i
].Name
);
125 char *old_parent
= parent
;
126 parent
= currentparent
;
127 // This is what causes the recursion, since commands Parse-implementation
128 // in turn calls the CmdsParse above.
130 cmds
[i
].Parse("XX_internal_command_dump_markdown_XX");
132 cmds
[i
].Parse("XX_internal_command_dump_XX");