- add search paths via new arg -s (-search). Thanks Ted Roth
[openocd.git] / src / helper / configuration.c
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
24 #include "types.h"
25 #include "command.h"
26 #include "configuration.h"
27 #include "log.h"
28
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <getopt.h>
32 #include <string.h>
33
34 static size_t num_config_files;
35 static char** config_file_names;
36
37 static size_t num_script_dirs;
38 static char** script_search_dirs;
39
40 static int help_flag;
41
42 static struct option long_options[] =
43 {
44 {"help", no_argument, &help_flag, 1},
45
46 {"debug", optional_argument, 0, 'd'},
47 {"file", required_argument, 0, 'f'},
48 {"search", required_argument, 0, 's'},
49 {"log_output", required_argument, 0, 'l'},
50
51 {0, 0, 0, 0}
52 };
53
54 int configuration_output_handler(struct command_context_s *context, char* line)
55 {
56 INFO(line);
57
58 return ERROR_OK;
59 }
60
61 void add_script_search_dir (const char *dir)
62 {
63 num_script_dirs++;
64 script_search_dirs = (char **)realloc(script_search_dirs, (num_script_dirs+1) * sizeof (char *));
65
66 script_search_dirs[num_script_dirs-1] = strdup(dir);
67 script_search_dirs[num_script_dirs] = NULL;
68 }
69
70 void add_config_file_name (const char *cfg)
71 {
72 num_config_files++;
73 config_file_names = (char **)realloc(config_file_names, (num_config_files+1) * sizeof (char *));
74
75 config_file_names[num_config_files-1] = strdup(cfg);
76 config_file_names[num_config_files] = NULL;
77 }
78
79 int parse_cmdline_args(struct command_context_s *cmd_ctx, int argc, char *argv[])
80 {
81 int c;
82 char command_buffer[128];
83
84 /* Always search relative to current working dir first. */
85 add_script_search_dir(".");
86
87 while (1)
88 {
89 /* getopt_long stores the option index here. */
90 int option_index = 0;
91
92 c = getopt_long(argc, argv, "hd::l:f:s:", long_options, &option_index);
93
94 /* Detect the end of the options. */
95 if (c == -1)
96 break;
97
98 switch (c)
99 {
100 case 0:
101 break;
102 case 'h': /* --help | -h */
103 help_flag = 1;
104 break;
105 case 'f': /* --file | -f */
106 add_config_file_name(optarg);
107 break;
108 case 's': /* --search | -s */
109 add_script_search_dir(optarg);
110 break;
111 case 'd': /* --debug | -d */
112 if (optarg)
113 snprintf(command_buffer, 128, "debug_level %s", optarg);
114 else
115 snprintf(command_buffer, 128, "debug_level 3");
116 command_run_line(cmd_ctx, command_buffer);
117 break;
118 case 'l': /* --log_output | -l */
119 if (optarg)
120 {
121 snprintf(command_buffer, 128, "log_output %s", optarg);
122 command_run_line(cmd_ctx, command_buffer);
123 }
124 break;
125 }
126 }
127
128 if (help_flag)
129 {
130 printf("Open On-Chip Debugger\n(c) 2005 by Dominic Rath\n\n");
131 printf("--help | -h\tdisplay this help\n");
132 printf("--file | -f\tuse configuration file <name>\n");
133 printf("--search | -s\tdir to search for config files and scripts.\n");
134 printf("--debug | -d\tset debug level <0-3>\n");
135 printf("--log_output | -l\tredirect log output to file <name>\n");
136 exit(-1);
137 }
138
139 /* Add dir for openocd supplied scripts last so that user can over
140 ride those scripts if desired. */
141 add_script_search_dir(PKGDATADIR);
142
143 return ERROR_OK;
144 }
145
146 FILE *open_file_from_path (command_context_t *cmd_ctx, char *file, char *mode)
147 {
148 FILE *fp = NULL;
149 char **search_dirs = script_search_dirs;
150 char *dir;
151 char full_path[1024];
152
153 while (!fp)
154 {
155 dir = *search_dirs++;
156
157 if (!dir)
158 break;
159
160 snprintf(full_path, 1024, "%s/%s", dir, file);
161 fp = fopen(full_path, mode);
162 }
163
164 if (fp)
165 command_print(cmd_ctx, "opened %s", full_path);
166
167 return fp;
168 }
169
170 int parse_config_file(struct command_context_s *cmd_ctx)
171 {
172 char **cfg;
173 FILE *config_file;
174
175 if (!config_file_names)
176 add_config_file_name ("openocd.cfg");
177
178 cfg = config_file_names;
179
180 while (*cfg)
181 {
182 config_file = open_file_from_path(cmd_ctx, *cfg, "r");
183 if (!config_file)
184 {
185 ERROR("couldn't open config file");
186 return ERROR_NO_CONFIG_FILE;
187 }
188
189 command_run_file(cmd_ctx, config_file, COMMAND_CONFIG);
190
191 fclose(config_file);
192
193 cfg++;
194 }
195
196 return ERROR_OK;
197 }

Linking to existing account procedure

If you already have an account and want to add another login method you MUST first sign in with your existing account and then change URL to read https://review.openocd.org/login/?link to get to this page again but this time it'll work for linking. Thank you.

SSH host keys fingerprints

1024 SHA256:YKx8b7u5ZWdcbp7/4AeXNaqElP49m6QrwfXaqQGJAOk gerrit-code-review@openocd.zylin.com (DSA)
384 SHA256:jHIbSQa4REvwCFG4cq5LBlBLxmxSqelQPem/EXIrxjk gerrit-code-review@openocd.org (ECDSA)
521 SHA256:UAOPYkU9Fjtcao0Ul/Rrlnj/OsQvt+pgdYSZ4jOYdgs gerrit-code-review@openocd.org (ECDSA)
256 SHA256:A13M5QlnozFOvTllybRZH6vm7iSt0XLxbA48yfc2yfY gerrit-code-review@openocd.org (ECDSA)
256 SHA256:spYMBqEYoAOtK7yZBrcwE8ZpYt6b68Cfh9yEVetvbXg gerrit-code-review@openocd.org (ED25519)
+--[ED25519 256]--+
|=..              |
|+o..   .         |
|*.o   . .        |
|+B . . .         |
|Bo. = o S        |
|Oo.+ + =         |
|oB=.* = . o      |
| =+=.+   + E     |
|. .=o   . o      |
+----[SHA256]-----+
2048 SHA256:0Onrb7/PHjpo6iVZ7xQX2riKN83FJ3KGU0TvI0TaFG4 gerrit-code-review@openocd.zylin.com (RSA)