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.
 
 
 
 
 
 

198 lines
5.2 KiB

  1. /***************************************************************************
  2. * Copyright (C) 2004, 2005 by Dominic Rath *
  3. * Dominic.Rath@gmx.de *
  4. * *
  5. * This program is free software; you can redistribute it and/or modify *
  6. * it under the terms of the GNU General Public License as published by *
  7. * the Free Software Foundation; either version 2 of the License, or *
  8. * (at your option) any later version. *
  9. * *
  10. * This program is distributed in the hope that it will be useful, *
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  13. * GNU General Public License for more details. *
  14. * *
  15. * You should have received a copy of the GNU General Public License *
  16. * along with this program; if not, write to the *
  17. * Free Software Foundation, Inc., *
  18. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
  19. ***************************************************************************/
  20. #ifdef HAVE_CONFIG_H
  21. #include "config.h"
  22. #endif
  23. #include "types.h"
  24. #include "command.h"
  25. #include "configuration.h"
  26. #include "log.h"
  27. #include <stdio.h>
  28. #include <stdlib.h>
  29. #include <getopt.h>
  30. #include <string.h>
  31. static size_t num_config_files;
  32. static char** config_file_names;
  33. static size_t num_script_dirs;
  34. static char** script_search_dirs;
  35. static int help_flag;
  36. static struct option long_options[] =
  37. {
  38. {"help", no_argument, &help_flag, 1},
  39. {"debug", optional_argument, 0, 'd'},
  40. {"file", required_argument, 0, 'f'},
  41. {"search", required_argument, 0, 's'},
  42. {"log_output", required_argument, 0, 'l'},
  43. {0, 0, 0, 0}
  44. };
  45. int configuration_output_handler(struct command_context_s *context, char* line)
  46. {
  47. INFO(line);
  48. return ERROR_OK;
  49. }
  50. void add_script_search_dir (const char *dir)
  51. {
  52. num_script_dirs++;
  53. script_search_dirs = (char **)realloc(script_search_dirs, (num_script_dirs+1) * sizeof (char *));
  54. script_search_dirs[num_script_dirs-1] = strdup(dir);
  55. script_search_dirs[num_script_dirs] = NULL;
  56. }
  57. void add_config_file_name (const char *cfg)
  58. {
  59. num_config_files++;
  60. config_file_names = (char **)realloc(config_file_names, (num_config_files+1) * sizeof (char *));
  61. config_file_names[num_config_files-1] = strdup(cfg);
  62. config_file_names[num_config_files] = NULL;
  63. }
  64. int parse_cmdline_args(struct command_context_s *cmd_ctx, int argc, char *argv[])
  65. {
  66. int c;
  67. char command_buffer[128];
  68. /* Always search relative to current working dir first. */
  69. add_script_search_dir(".");
  70. while (1)
  71. {
  72. /* getopt_long stores the option index here. */
  73. int option_index = 0;
  74. c = getopt_long(argc, argv, "hd::l:f:s:", long_options, &option_index);
  75. /* Detect the end of the options. */
  76. if (c == -1)
  77. break;
  78. switch (c)
  79. {
  80. case 0:
  81. break;
  82. case 'h': /* --help | -h */
  83. help_flag = 1;
  84. break;
  85. case 'f': /* --file | -f */
  86. add_config_file_name(optarg);
  87. break;
  88. case 's': /* --search | -s */
  89. add_script_search_dir(optarg);
  90. break;
  91. case 'd': /* --debug | -d */
  92. if (optarg)
  93. snprintf(command_buffer, 128, "debug_level %s", optarg);
  94. else
  95. snprintf(command_buffer, 128, "debug_level 3");
  96. command_run_line(cmd_ctx, command_buffer);
  97. break;
  98. case 'l': /* --log_output | -l */
  99. if (optarg)
  100. {
  101. snprintf(command_buffer, 128, "log_output %s", optarg);
  102. command_run_line(cmd_ctx, command_buffer);
  103. }
  104. break;
  105. }
  106. }
  107. if (help_flag)
  108. {
  109. printf("Open On-Chip Debugger\n(c) 2005 by Dominic Rath\n\n");
  110. printf("--help | -h\tdisplay this help\n");
  111. printf("--file | -f\tuse configuration file <name>\n");
  112. printf("--search | -s\tdir to search for config files and scripts.\n");
  113. printf("--debug | -d\tset debug level <0-3>\n");
  114. printf("--log_output | -l\tredirect log output to file <name>\n");
  115. exit(-1);
  116. }
  117. /* Add dir for openocd supplied scripts last so that user can over
  118. ride those scripts if desired. */
  119. add_script_search_dir(PKGDATADIR);
  120. return ERROR_OK;
  121. }
  122. FILE *open_file_from_path (command_context_t *cmd_ctx, char *file, char *mode)
  123. {
  124. FILE *fp = NULL;
  125. char **search_dirs = script_search_dirs;
  126. char *dir;
  127. char full_path[1024];
  128. while (!fp)
  129. {
  130. dir = *search_dirs++;
  131. if (!dir)
  132. break;
  133. snprintf(full_path, 1024, "%s/%s", dir, file);
  134. fp = fopen(full_path, mode);
  135. }
  136. if (fp)
  137. command_print(cmd_ctx, "opened %s", full_path);
  138. return fp;
  139. }
  140. int parse_config_file(struct command_context_s *cmd_ctx)
  141. {
  142. char **cfg;
  143. FILE *config_file;
  144. if (!config_file_names)
  145. add_config_file_name ("openocd.cfg");
  146. cfg = config_file_names;
  147. while (*cfg)
  148. {
  149. config_file = open_file_from_path(cmd_ctx, *cfg, "r");
  150. if (!config_file)
  151. {
  152. ERROR("couldn't open config file");
  153. return ERROR_NO_CONFIG_FILE;
  154. }
  155. command_run_file(cmd_ctx, config_file, COMMAND_CONFIG);
  156. fclose(config_file);
  157. cfg++;
  158. }
  159. return ERROR_OK;
  160. }