gdb/testsuite: fix gdb.trace/signal.exp on x86
[binutils-gdb/blckswan.git] / gdb / mi / mi-cmd-env.c
blob0c75b8042ff861c4379e0e53e2e923f72ad68017
1 /* MI Command Set - environment commands.
2 Copyright (C) 2002-2022 Free Software Foundation, Inc.
4 Contributed by Red Hat Inc.
6 This file is part of GDB.
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 3 of the License, or
11 (at your option) any later version.
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.
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/>. */
21 #include "defs.h"
22 #include "inferior.h"
23 #include "value.h"
24 #include "mi-out.h"
25 #include "mi-cmds.h"
26 #include "mi-getopt.h"
27 #include "symtab.h"
28 #include "target.h"
29 #include "gdbsupport/environ.h"
30 #include "command.h"
31 #include "ui-out.h"
32 #include "top.h"
33 #include <sys/stat.h>
34 #include "source.h"
36 static const char path_var_name[] = "PATH";
37 static char *orig_path = NULL;
39 /* The following is copied from mi-main.c so for m1 and below we can
40 perform old behavior and use cli commands. If ARGS is non-null,
41 append it to the CMD. */
43 static void
44 env_execute_cli_command (const char *cmd, const char *args)
46 if (cmd != 0)
48 gdb::unique_xmalloc_ptr<char> run;
50 if (args != NULL)
51 run = xstrprintf ("%s %s", cmd, args);
52 else
53 run.reset (xstrdup (cmd));
54 execute_command ( /*ui */ run.get (), 0 /*from_tty */ );
58 /* Print working directory. */
60 void
61 mi_cmd_env_pwd (const char *command, char **argv, int argc)
63 struct ui_out *uiout = current_uiout;
65 if (argc > 0)
66 error (_("-environment-pwd: No arguments allowed"));
68 if (mi_version (uiout) < 2)
70 env_execute_cli_command ("pwd", NULL);
71 return;
74 /* Otherwise the mi level is 2 or higher. */
76 gdb::unique_xmalloc_ptr<char> cwd (getcwd (NULL, 0));
77 if (cwd == NULL)
78 error (_("-environment-pwd: error finding name of working directory: %s"),
79 safe_strerror (errno));
81 uiout->field_string ("cwd", cwd.get ());
84 /* Change working directory. */
86 void
87 mi_cmd_env_cd (const char *command, char **argv, int argc)
89 if (argc == 0 || argc > 1)
90 error (_("-environment-cd: Usage DIRECTORY"));
92 env_execute_cli_command ("cd", argv[0]);
95 static void
96 env_mod_path (const char *dirname, std::string &which_path)
98 if (dirname == 0 || dirname[0] == '\0')
99 return;
101 /* Call add_path with last arg 0 to indicate not to parse for
102 separator characters. */
103 add_path (dirname, which_path, 0);
106 /* Add one or more directories to start of executable search path. */
108 void
109 mi_cmd_env_path (const char *command, char **argv, int argc)
111 struct ui_out *uiout = current_uiout;
112 const char *env;
113 int reset = 0;
114 int oind = 0;
115 int i;
116 char *oarg;
117 enum opt
119 RESET_OPT
121 static const struct mi_opt opts[] =
123 {"r", RESET_OPT, 0},
124 { 0, 0, 0 }
127 dont_repeat ();
129 if (mi_version (uiout) < 2)
131 for (i = argc - 1; i >= 0; --i)
132 env_execute_cli_command ("path", argv[i]);
133 return;
136 /* Otherwise the mi level is 2 or higher. */
137 while (1)
139 int opt = mi_getopt ("-environment-path", argc, argv, opts,
140 &oind, &oarg);
142 if (opt < 0)
143 break;
144 switch ((enum opt) opt)
146 case RESET_OPT:
147 reset = 1;
148 break;
151 argv += oind;
152 argc -= oind;
154 std::string exec_path;
155 if (reset)
157 /* Reset implies resetting to original path first. */
158 exec_path = orig_path;
160 else
162 /* Otherwise, get current path to modify. */
163 env = current_inferior ()->environment.get (path_var_name);
165 /* Can be null if path is not set. */
166 if (!env)
167 env = "";
169 exec_path = env;
172 for (i = argc - 1; i >= 0; --i)
173 env_mod_path (argv[i], exec_path);
175 current_inferior ()->environment.set (path_var_name, exec_path.c_str ());
176 env = current_inferior ()->environment.get (path_var_name);
177 uiout->field_string ("path", env);
180 /* Add zero or more directories to the front of the source path. */
182 void
183 mi_cmd_env_dir (const char *command, char **argv, int argc)
185 struct ui_out *uiout = current_uiout;
186 int i;
187 int oind = 0;
188 int reset = 0;
189 char *oarg;
190 enum opt
192 RESET_OPT
194 static const struct mi_opt opts[] =
196 {"r", RESET_OPT, 0},
197 { 0, 0, 0 }
200 dont_repeat ();
202 if (mi_version (uiout) < 2)
204 for (i = argc - 1; i >= 0; --i)
205 env_execute_cli_command ("dir", argv[i]);
206 return;
209 /* Otherwise mi level is 2 or higher. */
210 while (1)
212 int opt = mi_getopt ("-environment-directory", argc, argv, opts,
213 &oind, &oarg);
215 if (opt < 0)
216 break;
217 switch ((enum opt) opt)
219 case RESET_OPT:
220 reset = 1;
221 break;
224 argv += oind;
225 argc -= oind;
227 if (reset)
229 /* Reset means setting to default path first. */
230 init_source_path ();
233 for (i = argc - 1; i >= 0; --i)
234 env_mod_path (argv[i], source_path);
236 uiout->field_string ("source-path", source_path);
237 forget_cached_source_info ();
240 /* Set the inferior terminal device name. */
242 void
243 mi_cmd_inferior_tty_set (const char *command, char **argv, int argc)
245 if (argc > 0)
246 current_inferior ()->set_tty (argv[0]);
247 else
248 current_inferior ()->set_tty ("");
251 /* Print the inferior terminal device name. */
253 void
254 mi_cmd_inferior_tty_show (const char *command, char **argv, int argc)
256 if ( !mi_valid_noargs ("-inferior-tty-show", argc, argv))
257 error (_("-inferior-tty-show: Usage: No args"));
259 const std::string &inferior_tty = current_inferior ()->tty ();
260 if (!inferior_tty.empty ())
261 current_uiout->field_string ("inferior_tty_terminal", inferior_tty);
264 void _initialize_mi_cmd_env ();
265 void
266 _initialize_mi_cmd_env ()
268 const char *env;
270 /* We want original execution path to reset to, if desired later.
271 At this point, current inferior is not created, so cannot use
272 current_inferior ()->environment. We use getenv here because it
273 is not necessary to create a whole new gdb_environ just for one
274 variable. */
275 env = getenv (path_var_name);
277 /* Can be null if path is not set. */
278 if (!env)
279 env = "";
280 orig_path = xstrdup (env);