You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

443 lines
16 KiB

  1. /***************************************************************************
  2. * Copyright (C) 2005 by Dominic Rath *
  3. * Dominic.Rath@gmx.de *
  4. * *
  5. * Copyright (C) 2007,2008 Øyvind Harboe *
  6. * oyvind.harboe@zylin.com *
  7. * *
  8. * This program is free software; you can redistribute it and/or modify *
  9. * it under the terms of the GNU General Public License as published by *
  10. * the Free Software Foundation; either version 2 of the License, or *
  11. * (at your option) any later version. *
  12. * *
  13. * This program is distributed in the hope that it will be useful, *
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  16. * GNU General Public License for more details. *
  17. * *
  18. * You should have received a copy of the GNU General Public License *
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>. *
  20. ***************************************************************************/
  21. #ifndef OPENOCD_HELPER_COMMAND_H
  22. #define OPENOCD_HELPER_COMMAND_H
  23. #include <stdint.h>
  24. #include <stdbool.h>
  25. #include <jim-nvp.h>
  26. /* To achieve C99 printf compatibility in MinGW, gnu_printf should be
  27. * used for __attribute__((format( ... ))), with GCC v4.4 or later
  28. */
  29. #if (defined(IS_MINGW) && (((__GNUC__ << 16) + __GNUC_MINOR__) >= 0x00040004))
  30. #define PRINTF_ATTRIBUTE_FORMAT gnu_printf
  31. #else
  32. #define PRINTF_ATTRIBUTE_FORMAT printf
  33. #endif
  34. enum command_mode {
  35. COMMAND_EXEC,
  36. COMMAND_CONFIG,
  37. COMMAND_ANY,
  38. };
  39. /**
  40. * Helper struct to share a common Jim interpreter among multiple command
  41. * contexts.
  42. */
  43. struct command_interpreter {
  44. /** Jim interpreter. */
  45. Jim_Interp *interp;
  46. /** Number of references held on this interpreter. */
  47. unsigned int refcnt;
  48. /**
  49. * Determines whether the Jim interpreter should be free'd when the last
  50. * reference is released.
  51. */
  52. bool free;
  53. };
  54. struct command_context;
  55. /** The type signature for command context's output handler. */
  56. typedef int (*command_output_handler_t)(struct command_context *context,
  57. const char *line);
  58. struct command_context {
  59. struct command_interpreter *interp;
  60. enum command_mode mode;
  61. struct command *commands;
  62. int current_target;
  63. command_output_handler_t output_handler;
  64. void *output_handler_priv;
  65. };
  66. struct command;
  67. /**
  68. * When run_command is called, a new instance will be created on the
  69. * stack, filled with the proper values, and passed by reference to the
  70. * required COMMAND_HANDLER routine.
  71. */
  72. struct command_invocation {
  73. struct command_context *ctx;
  74. struct command *current;
  75. const char *name;
  76. unsigned argc;
  77. const char **argv;
  78. };
  79. /**
  80. * Command handlers may be defined with more parameters than the base
  81. * set provided by command.c. This macro uses C99 magic to allow
  82. * defining all such derivative types using this macro.
  83. */
  84. #define __COMMAND_HANDLER(name, extra ...) \
  85. int name(struct command_invocation *cmd, ## extra)
  86. /**
  87. * Use this to macro to call a command helper (or a nested handler).
  88. * It provides command handler authors protection against reordering or
  89. * removal of unused parameters.
  90. *
  91. * @b Note: This macro uses lexical capture to provide some arguments.
  92. * As a result, this macro should be used @b only within functions
  93. * defined by the COMMAND_HANDLER or COMMAND_HELPER macros. Those
  94. * macros provide the expected lexical context captured by this macro.
  95. * Furthermore, it should be used only from the top-level of handler or
  96. * helper function, or care must be taken to avoid redefining the same
  97. * variables in intervening scope(s) by accident.
  98. */
  99. #define CALL_COMMAND_HANDLER(name, extra ...) \
  100. name(cmd, ## extra)
  101. /**
  102. * Always use this macro to define new command handler functions.
  103. * It ensures the parameters are ordered, typed, and named properly, so
  104. * they be can be used by other macros (e.g. COMMAND_PARSE_NUMBER).
  105. * All command handler functions must be defined as static in scope.
  106. */
  107. #define COMMAND_HANDLER(name) \
  108. static __COMMAND_HANDLER(name)
  109. /**
  110. * Similar to COMMAND_HANDLER, except some parameters are expected.
  111. * A helper is globally-scoped because it may be shared between several
  112. * source files (e.g. the s3c24xx device command helper).
  113. */
  114. #define COMMAND_HELPER(name, extra ...) __COMMAND_HANDLER(name, extra)
  115. /**
  116. * Use this macro to access the context of the command being handled,
  117. * rather than accessing the variable directly. It may be moved.
  118. */
  119. #define CMD_CTX (cmd->ctx)
  120. /**
  121. * Use this macro to access the number of arguments for the command being
  122. * handled, rather than accessing the variable directly. It may be moved.
  123. */
  124. #define CMD_ARGC (cmd->argc)
  125. /**
  126. * Use this macro to access the arguments for the command being handled,
  127. * rather than accessing the variable directly. It may be moved.
  128. */
  129. #define CMD_ARGV (cmd->argv)
  130. /**
  131. * Use this macro to access the name of the command being handled,
  132. * rather than accessing the variable directly. It may be moved.
  133. */
  134. #define CMD_NAME (cmd->name)
  135. /**
  136. * Use this macro to access the current command being handled,
  137. * rather than accessing the variable directly. It may be moved.
  138. */
  139. #define CMD_CURRENT (cmd->current)
  140. /**
  141. * Use this macro to access the invoked command handler's data pointer,
  142. * rather than accessing the variable directly. It may be moved.
  143. */
  144. #define CMD_DATA (CMD_CURRENT->jim_handler_data)
  145. /**
  146. * The type signature for command handling functions. They are
  147. * usually registered as part of command_registration, providing
  148. * a high-level means for executing a command.
  149. *
  150. * If the command fails, it *MUST* return a value != ERROR_OK
  151. * (many commands break this rule, patches welcome!)
  152. *
  153. * This is *especially* important for commands such as writing
  154. * to flash or verifying memory. The reason is that those commands
  155. * can be used by programs to determine if the operation succeded
  156. * or not. If the operation failed, then a program can try
  157. * an alternative approach.
  158. *
  159. * Returning ERROR_COMMAND_SYNTAX_ERROR will have the effect of
  160. * printing out the syntax of the command.
  161. */
  162. typedef __COMMAND_HANDLER((*command_handler_t));
  163. struct command {
  164. char *name;
  165. char *help;
  166. char *usage;
  167. struct command *parent;
  168. struct command *children;
  169. command_handler_t handler;
  170. Jim_CmdProc *jim_handler;
  171. void *jim_handler_data;
  172. enum command_mode mode;
  173. struct command *next;
  174. };
  175. /**
  176. * @param c The command to be named.
  177. * @param delim The character to place between command names.
  178. * @returns A malloc'd string containing the full command name,
  179. * which may include one or more ancestor components. Multiple names
  180. * are separated by single spaces. The caller must free() the string
  181. * when done with it.
  182. */
  183. char *command_name(struct command *c, char delim);
  184. /*
  185. * Commands should be registered by filling in one or more of these
  186. * structures and passing them to register_command().
  187. *
  188. * A conventioal format should be used for help strings, to provide both
  189. * usage and basic information:
  190. * @code
  191. * "@<options@> ... - some explanation text"
  192. * @endcode
  193. *
  194. * @param name The name of the command to register, which must not have
  195. * been registered previously in the intended context.
  196. * @param handler The callback function that will be called. If NULL,
  197. * then the command serves as a placeholder for its children or a script.
  198. * @param mode The command mode(s) in which this command may be run.
  199. * @param help The help text that will be displayed to the user.
  200. */
  201. struct command_registration {
  202. const char *name;
  203. command_handler_t handler;
  204. Jim_CmdProc *jim_handler;
  205. void *jim_handler_data;
  206. enum command_mode mode;
  207. const char *help;
  208. /** a string listing the options and arguments, required or optional */
  209. const char *usage;
  210. /**
  211. * If non-NULL, the commands in @c chain will be registered in
  212. * the same context and scope of this registration record.
  213. * This allows modules to inherit lists commands from other
  214. * modules.
  215. */
  216. const struct command_registration *chain;
  217. };
  218. /** Use this as the last entry in an array of command_registration records. */
  219. #define COMMAND_REGISTRATION_DONE { .name = NULL, .chain = NULL }
  220. /**
  221. * Register a command @c handler that can be called from scripts during
  222. * the execution @c mode specified.
  223. *
  224. * If @c parent is non-NULL, the new command will be registered as a
  225. * sub-command under it; otherwise, it will be available as a top-level
  226. * command.
  227. *
  228. * @param cmd_ctx The command_context in which to register the command.
  229. * @param parent Register this command as a child of this, or NULL to
  230. * register a top-level command.
  231. * @param rec A command_registration record that contains the desired
  232. * command parameters.
  233. * @returns The new command, if successful; otherwise, NULL.
  234. */
  235. struct command *register_command(struct command_context *cmd_ctx,
  236. struct command *parent, const struct command_registration *rec);
  237. /**
  238. * Register one or more commands in the specified context, as children
  239. * of @c parent (or top-level commends, if NULL). In a registration's
  240. * record contains a non-NULL @c chain member and name is NULL, the
  241. * commands on the chain will be registered in the same context.
  242. * Otherwise, the chained commands are added as children of the command.
  243. *
  244. * @param cmd_ctx The command_context in which to register the command.
  245. * @param parent Register this command as a child of this, or NULL to
  246. * register a top-level command.
  247. * @param cmds Pointer to an array of command_registration records that
  248. * contains the desired command parameters. The last record must have
  249. * NULL for all fields.
  250. * @returns ERROR_OK on success; ERROR_FAIL if any registration fails.
  251. */
  252. int register_commands(struct command_context *cmd_ctx, struct command *parent,
  253. const struct command_registration *cmds);
  254. /**
  255. * Unregisters command @c name from the given context, @c cmd_ctx.
  256. * @param cmd_ctx The context of the registered command.
  257. * @param parent The parent of the given command, or NULL.
  258. * @param name The name of the command to unregister.
  259. * @returns ERROR_OK on success, or an error code.
  260. */
  261. int unregister_command(struct command_context *cmd_ctx,
  262. struct command *parent, const char *name);
  263. /**
  264. * Unregisters all commands from the specfied context.
  265. * @param cmd_ctx The context that will be cleared of registered commands.
  266. * @param parent If given, only clear commands from under this one command.
  267. * @returns ERROR_OK on success, or an error code.
  268. */
  269. int unregister_all_commands(struct command_context *cmd_ctx,
  270. struct command *parent);
  271. struct command *command_find_in_context(struct command_context *cmd_ctx,
  272. const char *name);
  273. struct command *command_find_in_parent(struct command *parent,
  274. const char *name);
  275. /**
  276. * Update the private command data field for a command and all descendents.
  277. * This is used when creating a new heirarchy of commands that depends
  278. * on obtaining a dynamically created context. The value will be available
  279. * in command handlers by using the CMD_DATA macro.
  280. * @param c The command (group) whose data pointer(s) will be updated.
  281. * @param p The new data pointer to use for the command or its descendents.
  282. */
  283. void command_set_handler_data(struct command *c, void *p);
  284. void command_set_output_handler(struct command_context *context,
  285. command_output_handler_t output_handler, void *priv);
  286. int command_context_mode(struct command_context *context, enum command_mode mode);
  287. /* Return the current command context associated with the Jim interpreter or
  288. * alternatively the global default command interpreter
  289. */
  290. struct command_context *current_command_context(Jim_Interp *interp);
  291. /**
  292. * Creates a new command context using the startup TCL provided and
  293. * the existing Jim interpreter, if any. If interp == NULL, then command_init
  294. * creates a command interpreter.
  295. */
  296. struct command_context *command_init(const char *startup_tcl, Jim_Interp *interp);
  297. /**
  298. * Creates a copy of an existing command context. This does not create
  299. * a deep copy of the command list, so modifications in one context will
  300. * affect all shared contexts. The caller must track reference counting
  301. * and ensure the commands are freed before destroying the last instance.
  302. * @param cmd_ctx The command_context that will be copied.
  303. * @returns A new command_context with the same state as the original.
  304. */
  305. struct command_context *copy_command_context(struct command_context *cmd_ctx);
  306. /**
  307. * Frees the resources associated with a command context. The commands
  308. * are not removed, so unregister_all_commands() must be called first.
  309. * @param context The command_context that will be destroyed.
  310. */
  311. void command_done(struct command_context *context);
  312. void command_print(struct command_context *context, const char *format, ...)
  313. __attribute__ ((format (PRINTF_ATTRIBUTE_FORMAT, 2, 3)));
  314. void command_print_sameline(struct command_context *context, const char *format, ...)
  315. __attribute__ ((format (PRINTF_ATTRIBUTE_FORMAT, 2, 3)));
  316. int command_run_line(struct command_context *context, char *line);
  317. int command_run_linef(struct command_context *context, const char *format, ...)
  318. __attribute__ ((format (PRINTF_ATTRIBUTE_FORMAT, 2, 3)));
  319. void command_output_text(struct command_context *context, const char *data);
  320. void process_jim_events(struct command_context *cmd_ctx);
  321. #define ERROR_COMMAND_CLOSE_CONNECTION (-600)
  322. #define ERROR_COMMAND_SYNTAX_ERROR (-601)
  323. #define ERROR_COMMAND_NOTFOUND (-602)
  324. #define ERROR_COMMAND_ARGUMENT_INVALID (-603)
  325. #define ERROR_COMMAND_ARGUMENT_OVERFLOW (-604)
  326. #define ERROR_COMMAND_ARGUMENT_UNDERFLOW (-605)
  327. int parse_ulong(const char *str, unsigned long *ul);
  328. int parse_ullong(const char *str, unsigned long long *ul);
  329. int parse_long(const char *str, long *ul);
  330. int parse_llong(const char *str, long long *ul);
  331. #define DECLARE_PARSE_WRAPPER(name, type) \
  332. int parse ## name(const char *str, type * ul)
  333. DECLARE_PARSE_WRAPPER(_uint, unsigned);
  334. DECLARE_PARSE_WRAPPER(_u64, uint64_t);
  335. DECLARE_PARSE_WRAPPER(_u32, uint32_t);
  336. DECLARE_PARSE_WRAPPER(_u16, uint16_t);
  337. DECLARE_PARSE_WRAPPER(_u8, uint8_t);
  338. DECLARE_PARSE_WRAPPER(_int, int);
  339. DECLARE_PARSE_WRAPPER(_s64, int64_t);
  340. DECLARE_PARSE_WRAPPER(_s32, int32_t);
  341. DECLARE_PARSE_WRAPPER(_s16, int16_t);
  342. DECLARE_PARSE_WRAPPER(_s8, int8_t);
  343. DECLARE_PARSE_WRAPPER(_target_addr, target_addr_t);
  344. /**
  345. * @brief parses the string @a in into @a out as a @a type, or prints
  346. * a command error and passes the error code to the caller. If an error
  347. * does occur, the calling function will return the error code produced
  348. * by the parsing function (one of ERROR_COMMAND_ARGUMENT_*).
  349. *
  350. * This function may cause the calling function to return immediately,
  351. * so it should be used carefully to avoid leaking resources. In most
  352. * situations, parsing should be completed in full before proceding
  353. * to allocate resources, and this strategy will most prevents leaks.
  354. */
  355. #define COMMAND_PARSE_NUMBER(type, in, out) \
  356. do { \
  357. int retval_macro_tmp = parse_ ## type(in, &(out)); \
  358. if (ERROR_OK != retval_macro_tmp) { \
  359. command_print(CMD_CTX, stringify(out) \
  360. " option value ('%s') is not valid", in); \
  361. return retval_macro_tmp; \
  362. } \
  363. } while (0)
  364. #define COMMAND_PARSE_ADDRESS(in, out) \
  365. COMMAND_PARSE_NUMBER(target_addr, in, out)
  366. /**
  367. * Parse the string @c as a binary parameter, storing the boolean value
  368. * in @c out. The strings @c on and @c off are used to match different
  369. * strings for true and false options (e.g. "on" and "off" or
  370. * "enable" and "disable").
  371. */
  372. #define COMMAND_PARSE_BOOL(in, out, on, off) \
  373. do { \
  374. bool value; \
  375. int retval_macro_tmp = command_parse_bool_arg(in, &value); \
  376. if (ERROR_OK != retval_macro_tmp) { \
  377. command_print(CMD_CTX, stringify(out) \
  378. " option value ('%s') is not valid", in); \
  379. command_print(CMD_CTX, " choices are '%s' or '%s'", \
  380. on, off); \
  381. return retval_macro_tmp; \
  382. } \
  383. out = value; \
  384. } while (0)
  385. int command_parse_bool_arg(const char *in, bool *out);
  386. COMMAND_HELPER(handle_command_parse_bool, bool *out, const char *label);
  387. /** parses an on/off command argument */
  388. #define COMMAND_PARSE_ON_OFF(in, out) \
  389. COMMAND_PARSE_BOOL(in, out, "on", "off")
  390. /** parses an enable/disable command argument */
  391. #define COMMAND_PARSE_ENABLE(in, out) \
  392. COMMAND_PARSE_BOOL(in, out, "enable", "disable")
  393. void script_debug(Jim_Interp *interp, const char *cmd,
  394. unsigned argc, Jim_Obj * const *argv);
  395. #endif /* OPENOCD_HELPER_COMMAND_H */