mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
CHG: adapt to be similar as other cmd*.c files
This commit is contained in:
parent
d05d63b112
commit
31191382fc
2 changed files with 42 additions and 44 deletions
|
@ -38,16 +38,6 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static int CmdHelp(const char *Cmd);
|
static int CmdHelp(const char *Cmd);
|
||||||
static int CmdList(const char *Cmd);
|
|
||||||
static int CmdRun(const char *Cmd);
|
|
||||||
|
|
||||||
command_t CommandTable[] =
|
|
||||||
{
|
|
||||||
{"help", CmdHelp, 1, "This help"},
|
|
||||||
{"list", CmdList, 1, "List available scripts"},
|
|
||||||
{"run", CmdRun, 1, "<name> -- Execute a script"},
|
|
||||||
{NULL, NULL, 0, NULL}
|
|
||||||
};
|
|
||||||
|
|
||||||
int str_ends_with(const char * str, const char * suffix) {
|
int str_ends_with(const char * str, const char * suffix) {
|
||||||
|
|
||||||
|
@ -62,16 +52,14 @@ int str_ends_with(const char * str, const char * suffix) {
|
||||||
|
|
||||||
return 0 == strncmp( str + str_len - suffix_len, suffix, suffix_len );
|
return 0 == strncmp( str + str_len - suffix_len, suffix, suffix_len );
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Shows some basic help
|
* Utility to check the ending of a string (used to check file suffix)
|
||||||
* @brief CmdHelp
|
|
||||||
* @param Cmd
|
|
||||||
* @return
|
|
||||||
*/
|
*/
|
||||||
int CmdHelp(const char * Cmd)
|
bool endsWith (char* base, char* str) {
|
||||||
{
|
int blen = strlen(base);
|
||||||
PrintAndLog("This is a feature to run Lua-scripts. You can place lua-scripts within the scripts/-folder. ");
|
int slen = strlen(str);
|
||||||
return 0;
|
return (blen >= slen) && (0 == strcmp(base + blen - slen, str));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -79,7 +67,7 @@ int CmdHelp(const char * Cmd)
|
||||||
* generate a file listing of the script-directory for files
|
* generate a file listing of the script-directory for files
|
||||||
* ending with .lua
|
* ending with .lua
|
||||||
*/
|
*/
|
||||||
int CmdList(const char *Cmd) {
|
int CmdScriptList(const char *Cmd) {
|
||||||
|
|
||||||
char script_directory_path[strlen(get_my_executable_directory()) + strlen(LUA_SCRIPTS_DIRECTORY) + 1];
|
char script_directory_path[strlen(get_my_executable_directory()) + strlen(LUA_SCRIPTS_DIRECTORY) + 1];
|
||||||
strcpy(script_directory_path, get_my_executable_directory());
|
strcpy(script_directory_path, get_my_executable_directory());
|
||||||
|
@ -103,35 +91,13 @@ int CmdList(const char *Cmd) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Finds a matching script-file
|
* @brief CmdScriptRun - executes a script file.
|
||||||
* @brief CmdScript
|
|
||||||
* @param Cmd
|
|
||||||
* @return
|
|
||||||
*/
|
|
||||||
int CmdScript(const char *Cmd) {
|
|
||||||
clearCommandBuffer();
|
|
||||||
CmdsParse(CommandTable, Cmd);
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Utility to check the ending of a string (used to check file suffix)
|
|
||||||
*/
|
|
||||||
bool endsWith (char* base, char* str) {
|
|
||||||
int blen = strlen(base);
|
|
||||||
int slen = strlen(str);
|
|
||||||
return (blen >= slen) && (0 == strcmp(base + blen - slen, str));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief CmdRun - executes a script file.
|
|
||||||
* @param argc
|
* @param argc
|
||||||
* @param argv
|
* @param argv
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
int CmdRun(const char *Cmd)
|
int CmdScriptRun(const char *Cmd) {
|
||||||
{
|
|
||||||
// create new Lua state
|
// create new Lua state
|
||||||
lua_State *lua_state;
|
lua_State *lua_state;
|
||||||
lua_state = luaL_newstate();
|
lua_state = luaL_newstate();
|
||||||
|
@ -197,3 +163,33 @@ int CmdRun(const char *Cmd)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static command_t CommandTable[] = {
|
||||||
|
{"help", CmdHelp, 1, "This help"},
|
||||||
|
{"list", CmdScriptList, 1, "List available scripts"},
|
||||||
|
{"run", CmdScriptRun, 1, "<name> -- Execute a script"},
|
||||||
|
{NULL, NULL, 0, NULL}
|
||||||
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds a matching script-file
|
||||||
|
* @brief CmdScript
|
||||||
|
* @param Cmd
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
int CmdScript(const char *Cmd) {
|
||||||
|
clearCommandBuffer();
|
||||||
|
CmdsParse(CommandTable, Cmd);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Shows some basic help
|
||||||
|
* @brief CmdHelp
|
||||||
|
* @param Cmd
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
int CmdHelp(const char * Cmd) {
|
||||||
|
PrintAndLog("This is a feature to run Lua-scripts. You can place lua-scripts within the scripts/-folder. ");
|
||||||
|
return 0;
|
||||||
|
}
|
|
@ -11,6 +11,8 @@
|
||||||
#ifndef CMDSCRIPT_H__
|
#ifndef CMDSCRIPT_H__
|
||||||
#define CMDSCRIPT_H__
|
#define CMDSCRIPT_H__
|
||||||
|
|
||||||
int CmdScript(const char *Cmd);
|
extern int CmdScript(const char *Cmd);
|
||||||
|
|
||||||
|
extern int CmdScriptList(const char *Cmd);
|
||||||
|
extern int CmdScriptRun(const char *Cmd);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue