*** empty log message ***
[deliverable/binutils-gdb.git] / gdb / source.c
CommitLineData
c906108c 1/* List lines of source files for GDB, the GNU debugger.
0b302171 2 Copyright (C) 1986-2005, 2007-2012 Free Software Foundation, Inc.
c906108c 3
c5aa993b 4 This file is part of GDB.
c906108c 5
c5aa993b
JM
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
a9762ec7 8 the Free Software Foundation; either version 3 of the License, or
c5aa993b 9 (at your option) any later version.
c906108c 10
c5aa993b
JM
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
c906108c 15
c5aa993b 16 You should have received a copy of the GNU General Public License
a9762ec7 17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
18
19#include "defs.h"
5af949e3 20#include "arch-utils.h"
c906108c
SS
21#include "symtab.h"
22#include "expression.h"
23#include "language.h"
24#include "command.h"
c2c6d25f 25#include "source.h"
c906108c
SS
26#include "gdbcmd.h"
27#include "frame.h"
28#include "value.h"
2f61ca93 29#include "gdb_assert.h"
c906108c
SS
30
31#include <sys/types.h>
32#include "gdb_string.h"
33#include "gdb_stat.h"
34#include <fcntl.h>
c906108c 35#include "gdbcore.h"
88987551 36#include "gdb_regex.h"
c906108c
SS
37#include "symfile.h"
38#include "objfiles.h"
39#include "annotate.h"
40#include "gdbtypes.h"
c5f0f3d0 41#include "linespec.h"
fe4e3eb8 42#include "filenames.h" /* for DOSish file names */
d75b5104 43#include "completer.h"
8b93c638 44#include "ui-out.h"
dbda9972 45#include "readline/readline.h"
c906108c 46
ccefe4c4
TT
47#include "psymtab.h"
48
3e3a28f1 49
c906108c
SS
50#define OPEN_MODE (O_RDONLY | O_BINARY)
51#define FDOPEN_MODE FOPEN_RB
52
c378eb4e 53/* Prototypes for exported functions. */
c906108c 54
a14ed312 55void _initialize_source (void);
c906108c 56
c378eb4e 57/* Prototypes for local functions. */
c906108c 58
a14ed312 59static int get_filename_and_charpos (struct symtab *, char **);
c906108c 60
a14ed312 61static void reverse_search_command (char *, int);
c906108c 62
a14ed312 63static void forward_search_command (char *, int);
c906108c 64
a14ed312 65static void line_info (char *, int);
c906108c 66
a14ed312 67static void source_info (char *, int);
c906108c 68
c906108c
SS
69/* Path of directories to search for source files.
70 Same format as the PATH environment variable's value. */
71
72char *source_path;
73
2f61ca93
JB
74/* Support for source path substitution commands. */
75
76struct substitute_path_rule
77{
78 char *from;
79 char *to;
80 struct substitute_path_rule *next;
81};
82
83static struct substitute_path_rule *substitute_path_rules = NULL;
84
c906108c
SS
85/* Symtab of default file for listing lines of. */
86
0378c332 87static struct symtab *current_source_symtab;
c906108c
SS
88
89/* Default next line to list. */
90
0378c332 91static int current_source_line;
c906108c 92
6c95b8df
PA
93static struct program_space *current_source_pspace;
94
c906108c
SS
95/* Default number of lines to print with commands like "list".
96 This is based on guessing how many long (i.e. more than chars_per_line
97 characters) lines there will be. To be completely correct, "list"
98 and friends should be rewritten to count characters and see where
99 things are wrapping, but that would be a fair amount of work. */
100
101int lines_to_list = 10;
920d2a44
AC
102static void
103show_lines_to_list (struct ui_file *file, int from_tty,
104 struct cmd_list_element *c, const char *value)
105{
3e43a32a
MS
106 fprintf_filtered (file,
107 _("Number of source lines gdb "
108 "will list by default is %s.\n"),
920d2a44
AC
109 value);
110}
c906108c
SS
111
112/* Line number of last line printed. Default for various commands.
113 current_source_line is usually, but not always, the same as this. */
114
115static int last_line_listed;
116
117/* First line number listed by last listing command. */
118
119static int first_line_listed;
120
121/* Saves the name of the last source file visited and a possible error code.
c378eb4e 122 Used to prevent repeating annoying "No such file or directories" msgs. */
c906108c
SS
123
124static struct symtab *last_source_visited = NULL;
125static int last_source_error = 0;
c906108c 126\f
0378c332
FN
127/* Return the first line listed by print_source_lines.
128 Used by command interpreters to request listing from
c378eb4e 129 a previous point. */
0378c332
FN
130
131int
132get_first_line_listed (void)
133{
134 return first_line_listed;
135}
136
137/* Return the default number of lines to print with commands like the
138 cli "list". The caller of print_source_lines must use this to
139 calculate the end line and use it in the call to print_source_lines
c378eb4e 140 as it does not automatically use this value. */
0378c332
FN
141
142int
143get_lines_to_list (void)
144{
145 return lines_to_list;
146}
147
148/* Return the current source file for listing and next line to list.
c378eb4e 149 NOTE: The returned sal pc and end fields are not valid. */
0378c332
FN
150
151struct symtab_and_line
152get_current_source_symtab_and_line (void)
153{
245c7f48 154 struct symtab_and_line cursal = { 0 };
0378c332 155
6c95b8df 156 cursal.pspace = current_source_pspace;
0378c332
FN
157 cursal.symtab = current_source_symtab;
158 cursal.line = current_source_line;
53cb0458
FN
159 cursal.pc = 0;
160 cursal.end = 0;
0378c332
FN
161
162 return cursal;
163}
164
53cb0458
FN
165/* If the current source file for listing is not set, try and get a default.
166 Usually called before get_current_source_symtab_and_line() is called.
0378c332 167 It may err out if a default cannot be determined.
53cb0458
FN
168 We must be cautious about where it is called, as it can recurse as the
169 process of determining a new default may call the caller!
170 Use get_current_source_symtab_and_line only to get whatever
c378eb4e 171 we have without erroring out or trying to get a default. */
0378c332 172
53cb0458
FN
173void
174set_default_source_symtab_and_line (void)
0378c332 175{
0378c332 176 if (!have_full_symbols () && !have_partial_symbols ())
8a3fe4f8 177 error (_("No symbol table is loaded. Use the \"file\" command."));
0378c332 178
c378eb4e 179 /* Pull in a current source symtab if necessary. */
0378c332
FN
180 if (current_source_symtab == 0)
181 select_source_symtab (0);
0378c332
FN
182}
183
184/* Return the current default file for listing and next line to list
185 (the returned sal pc and end fields are not valid.)
53cb0458 186 and set the current default to whatever is in SAL.
c378eb4e 187 NOTE: The returned sal pc and end fields are not valid. */
0378c332
FN
188
189struct symtab_and_line
53cb0458 190set_current_source_symtab_and_line (const struct symtab_and_line *sal)
0378c332 191{
245c7f48 192 struct symtab_and_line cursal = { 0 };
6c95b8df
PA
193
194 cursal.pspace = current_source_pspace;
0378c332
FN
195 cursal.symtab = current_source_symtab;
196 cursal.line = current_source_line;
6c95b8df
PA
197 cursal.pc = 0;
198 cursal.end = 0;
0378c332 199
6c95b8df 200 current_source_pspace = sal->pspace;
0378c332
FN
201 current_source_symtab = sal->symtab;
202 current_source_line = sal->line;
6c95b8df 203
0378c332
FN
204 return cursal;
205}
206
c378eb4e 207/* Reset any information stored about a default file and line to print. */
0378c332
FN
208
209void
210clear_current_source_symtab_and_line (void)
211{
212 current_source_symtab = 0;
213 current_source_line = 0;
214}
c5aa993b 215
c906108c
SS
216/* Set the source file default for the "list" command to be S.
217
218 If S is NULL, and we don't have a default, find one. This
219 should only be called when the user actually tries to use the
220 default, since we produce an error if we can't find a reasonable
221 default. Also, since this can cause symbols to be read, doing it
222 before we need to would make things slower than necessary. */
223
224void
aa1ee363 225select_source_symtab (struct symtab *s)
c906108c
SS
226{
227 struct symtabs_and_lines sals;
228 struct symtab_and_line sal;
c906108c 229 struct objfile *ofp;
c5aa993b 230
c906108c
SS
231 if (s)
232 {
233 current_source_symtab = s;
234 current_source_line = 1;
6c95b8df 235 current_source_pspace = SYMTAB_PSPACE (s);
c906108c
SS
236 return;
237 }
238
239 if (current_source_symtab)
240 return;
241
242 /* Make the default place to list be the function `main'
243 if one exists. */
2570f2b7 244 if (lookup_symbol (main_name (), 0, VAR_DOMAIN, 0))
c906108c 245 {
f8eba3c6 246 sals = decode_line_spec (main_name (), DECODE_LINE_FUNFIRSTLINE);
c906108c 247 sal = sals.sals[0];
b8c9b27d 248 xfree (sals.sals);
6c95b8df 249 current_source_pspace = sal.pspace;
c906108c
SS
250 current_source_symtab = sal.symtab;
251 current_source_line = max (sal.line - (lines_to_list - 1), 1);
252 if (current_source_symtab)
c5aa993b 253 return;
c906108c 254 }
c5aa993b 255
8340a3fb
LM
256 /* Alright; find the last file in the symtab list (ignoring .h's
257 and namespace symtabs). */
c906108c
SS
258
259 current_source_line = 1;
260
6c95b8df 261 ALL_OBJFILES (ofp)
c906108c 262 {
c5aa993b 263 for (s = ofp->symtabs; s; s = s->next)
c906108c 264 {
591e78ff 265 const char *name = s->filename;
c906108c 266 int len = strlen (name);
433759f7 267
8340a3fb
LM
268 if (!(len > 2 && (strcmp (&name[len - 2], ".h") == 0
269 || strcmp (name, "<<C++-namespaces>>") == 0)))
6c95b8df
PA
270 {
271 current_source_pspace = current_program_space;
272 current_source_symtab = s;
273 }
c906108c
SS
274 }
275 }
6c95b8df 276
c906108c
SS
277 if (current_source_symtab)
278 return;
279
6c95b8df 280 ALL_OBJFILES (ofp)
ccefe4c4
TT
281 {
282 if (ofp->sf)
283 s = ofp->sf->qf->find_last_source_symtab (ofp);
284 if (s)
285 current_source_symtab = s;
286 }
c906108c
SS
287 if (current_source_symtab)
288 return;
289
8a3fe4f8 290 error (_("Can't find a default source file"));
c906108c
SS
291}
292\f
99e7ae30
DE
293/* Handler for "set directories path-list" command.
294 "set dir mumble" doesn't prepend paths, it resets the entire
295 path list. The theory is that set(show(dir)) should be a no-op. */
296
297static void
298set_directories_command (char *args, int from_tty, struct cmd_list_element *c)
299{
300 /* This is the value that was set.
301 It needs to be processed to maintain $cdir:$cwd and remove dups. */
302 char *set_path = source_path;
303
304 /* We preserve the invariant that $cdir:$cwd begins life at the end of
305 the list by calling init_source_path. If they appear earlier in
306 SET_PATH then mod_path will move them appropriately.
307 mod_path will also remove duplicates. */
308 init_source_path ();
309 if (*set_path != '\0')
310 mod_path (set_path, &source_path);
311
312 xfree (set_path);
313}
314
315/* Print the list of source directories.
316 This is used by the "ld" command, so it has the signature of a command
317 function. */
318
c906108c 319static void
99e7ae30 320show_directories_1 (char *ignore, int from_tty)
c906108c
SS
321{
322 puts_filtered ("Source directories searched: ");
323 puts_filtered (source_path);
324 puts_filtered ("\n");
325}
326
99e7ae30
DE
327/* Handler for "show directories" command. */
328
329static void
330show_directories_command (struct ui_file *file, int from_tty,
331 struct cmd_list_element *c, const char *value)
332{
333 show_directories_1 (NULL, from_tty);
334}
335
00174a86
TT
336/* Forget line positions and file names for the symtabs in a
337 particular objfile. */
338
339void
340forget_cached_source_info_for_objfile (struct objfile *objfile)
341{
342 struct symtab *s;
343
344 ALL_OBJFILE_SYMTABS (objfile, s)
345 {
346 if (s->line_charpos != NULL)
347 {
348 xfree (s->line_charpos);
349 s->line_charpos = NULL;
350 }
351 if (s->fullname != NULL)
352 {
353 xfree (s->fullname);
354 s->fullname = NULL;
355 }
00174a86 356 }
6f809020
DE
357
358 if (objfile->sf)
359 objfile->sf->qf->forget_cached_source_info (objfile);
00174a86
TT
360}
361
c906108c
SS
362/* Forget what we learned about line positions in source files, and
363 which directories contain them; must check again now since files
364 may be found in a different directory now. */
365
366void
fba45db2 367forget_cached_source_info (void)
c906108c 368{
6c95b8df 369 struct program_space *pspace;
52f0bd74 370 struct objfile *objfile;
c906108c 371
6c95b8df
PA
372 ALL_PSPACES (pspace)
373 ALL_PSPACE_OBJFILES (pspace, objfile)
c906108c 374 {
00174a86 375 forget_cached_source_info_for_objfile (objfile);
c906108c 376 }
c4e86dd4
DJ
377
378 last_source_visited = NULL;
c906108c
SS
379}
380
381void
fba45db2 382init_source_path (void)
c906108c
SS
383{
384 char buf[20];
385
386 sprintf (buf, "$cdir%c$cwd", DIRNAME_SEPARATOR);
4fcf66da 387 source_path = xstrdup (buf);
c906108c
SS
388 forget_cached_source_info ();
389}
390
391/* Add zero or more directories to the front of the source path. */
c5aa993b 392
c906108c 393void
fba45db2 394directory_command (char *dirname, int from_tty)
c906108c
SS
395{
396 dont_repeat ();
c378eb4e 397 /* FIXME, this goes to "delete dir"... */
c906108c
SS
398 if (dirname == 0)
399 {
80618b99 400 if (!from_tty || query (_("Reinitialize source path to empty? ")))
c906108c 401 {
b8c9b27d 402 xfree (source_path);
c906108c
SS
403 init_source_path ();
404 }
405 }
406 else
407 {
408 mod_path (dirname, &source_path);
c4e86dd4 409 forget_cached_source_info ();
c906108c
SS
410 }
411 if (from_tty)
99e7ae30 412 show_directories_1 ((char *) 0, from_tty);
c906108c
SS
413}
414
13d35ae5
AS
415/* Add a path given with the -d command line switch.
416 This will not be quoted so we must not treat spaces as separators. */
417
418void
419directory_switch (char *dirname, int from_tty)
420{
421 add_path (dirname, &source_path, 0);
422}
423
c906108c
SS
424/* Add zero or more directories to the front of an arbitrary path. */
425
426void
fba45db2 427mod_path (char *dirname, char **which_path)
c04e0a08
JJ
428{
429 add_path (dirname, which_path, 1);
430}
431
432/* Workhorse of mod_path. Takes an extra argument to determine
433 if dirname should be parsed for separators that indicate multiple
434 directories. This allows for interfaces that pre-parse the dirname
435 and allow specification of traditional separator characters such
c378eb4e 436 as space or tab. */
c04e0a08
JJ
437
438void
439add_path (char *dirname, char **which_path, int parse_separators)
c906108c
SS
440{
441 char *old = *which_path;
442 int prefix = 0;
e4ab2fad
JK
443 VEC (char_ptr) *dir_vec = NULL;
444 struct cleanup *back_to;
445 int ix;
446 char *name;
c906108c
SS
447
448 if (dirname == 0)
449 return;
450
13d35ae5
AS
451 if (parse_separators)
452 {
e4ab2fad
JK
453 char **argv, **argvp;
454
13d35ae5 455 /* This will properly parse the space and tab separators
e4ab2fad 456 and any quotes that may exist. */
d1a41061 457 argv = gdb_buildargv (dirname);
13d35ae5 458
e4ab2fad
JK
459 for (argvp = argv; *argvp; argvp++)
460 dirnames_to_char_ptr_vec_append (&dir_vec, *argvp);
461
462 freeargv (argv);
13d35ae5
AS
463 }
464 else
e4ab2fad
JK
465 VEC_safe_push (char_ptr, dir_vec, xstrdup (dirname));
466 back_to = make_cleanup_free_char_ptr_vec (dir_vec);
c906108c 467
e4ab2fad 468 for (ix = 0; VEC_iterate (char_ptr, dir_vec, ix, name); ++ix)
c906108c 469 {
aa1ee363 470 char *p;
c906108c
SS
471 struct stat st;
472
e4ab2fad
JK
473 /* Spaces and tabs will have been removed by buildargv().
474 NAME is the start of the directory.
475 P is the '\0' following the end. */
476 p = name + strlen (name);
13d35ae5
AS
477
478 while (!(IS_DIR_SEPARATOR (*name) && p <= name + 1) /* "/" */
c3690141 479#ifdef HAVE_DOS_BASED_FILE_SYSTEM
7be570e7 480 /* On MS-DOS and MS-Windows, h:\ is different from h: */
13d35ae5 481 && !(p == name + 3 && name[1] == ':') /* "d:/" */
7be570e7 482#endif
13d35ae5 483 && IS_DIR_SEPARATOR (p[-1]))
c378eb4e 484 /* Sigh. "foo/" => "foo" */
c906108c 485 --p;
c906108c
SS
486 *p = '\0';
487
7be570e7 488 while (p > name && p[-1] == '.')
c906108c
SS
489 {
490 if (p - name == 1)
491 {
492 /* "." => getwd (). */
493 name = current_directory;
494 goto append;
495 }
fe4e3eb8 496 else if (p > name + 1 && IS_DIR_SEPARATOR (p[-2]))
c906108c
SS
497 {
498 if (p - name == 2)
499 {
500 /* "/." => "/". */
501 *--p = '\0';
502 goto append;
503 }
504 else
505 {
506 /* "...foo/." => "...foo". */
507 p -= 2;
508 *p = '\0';
509 continue;
510 }
511 }
512 else
513 break;
514 }
515
516 if (name[0] == '~')
517 name = tilde_expand (name);
c3690141 518#ifdef HAVE_DOS_BASED_FILE_SYSTEM
fe4e3eb8 519 else if (IS_ABSOLUTE_PATH (name) && p == name + 2) /* "d:" => "d:." */
1754f103 520 name = concat (name, ".", (char *)NULL);
7be570e7 521#endif
fe4e3eb8 522 else if (!IS_ABSOLUTE_PATH (name) && name[0] != '$')
1754f103 523 name = concat (current_directory, SLASH_STRING, name, (char *)NULL);
c906108c
SS
524 else
525 name = savestring (name, p - name);
b8c9b27d 526 make_cleanup (xfree, name);
c906108c
SS
527
528 /* Unless it's a variable, check existence. */
c5aa993b
JM
529 if (name[0] != '$')
530 {
531 /* These are warnings, not errors, since we don't want a
532 non-existent directory in a .gdbinit file to stop processing
533 of the .gdbinit file.
534
535 Whether they get added to the path is more debatable. Current
536 answer is yes, in case the user wants to go make the directory
537 or whatever. If the directory continues to not exist/not be
538 a directory/etc, then having them in the path should be
539 harmless. */
540 if (stat (name, &st) < 0)
541 {
542 int save_errno = errno;
433759f7 543
c5aa993b
JM
544 fprintf_unfiltered (gdb_stderr, "Warning: ");
545 print_sys_errmsg (name, save_errno);
546 }
547 else if ((st.st_mode & S_IFMT) != S_IFDIR)
8a3fe4f8 548 warning (_("%s is not a directory."), name);
c5aa993b 549 }
c906108c
SS
550
551 append:
552 {
aa1ee363 553 unsigned int len = strlen (name);
5ee4ed9f 554 char tinybuf[2];
c906108c
SS
555
556 p = *which_path;
e4ab2fad
JK
557 /* FIXME: we should use realpath() or its work-alike
558 before comparing. Then all the code above which
559 removes excess slashes and dots could simply go away. */
560 if (!filename_cmp (p, name))
c906108c 561 {
e4ab2fad
JK
562 /* Found it in the search path, remove old copy. */
563 if (p > *which_path)
564 p--; /* Back over leading separator. */
565 if (prefix > p - *which_path)
566 goto skip_dup; /* Same dir twice in one cmd. */
567 memmove (p, &p[len + 1], strlen (&p[len + 1]) + 1); /* Copy from next \0 or : */
c906108c 568 }
c906108c 569
5ee4ed9f
JK
570 tinybuf[0] = DIRNAME_SEPARATOR;
571 tinybuf[1] = '\0';
c906108c 572
5ee4ed9f
JK
573 /* If we have already tacked on a name(s) in this command,
574 be sure they stay on the front as we tack on some
575 more. */
576 if (prefix)
577 {
578 char *temp, c;
579
580 c = old[prefix];
581 old[prefix] = '\0';
582 temp = concat (old, tinybuf, name, (char *)NULL);
583 old[prefix] = c;
584 *which_path = concat (temp, "", &old[prefix], (char *) NULL);
585 prefix = strlen (temp);
586 xfree (temp);
587 }
588 else
589 {
590 *which_path = concat (name, (old[0] ? tinybuf : old),
591 old, (char *)NULL);
592 prefix = strlen (name);
c906108c 593 }
5ee4ed9f
JK
594 xfree (old);
595 old = *which_path;
c906108c 596 }
82ae4854 597 skip_dup:
b27cf2b3 598 ;
c5aa993b 599 }
e4ab2fad
JK
600
601 do_cleanups (back_to);
c906108c
SS
602}
603
604
605static void
fba45db2 606source_info (char *ignore, int from_tty)
c906108c 607{
52f0bd74 608 struct symtab *s = current_source_symtab;
c906108c
SS
609
610 if (!s)
611 {
a3f17187 612 printf_filtered (_("No current source file.\n"));
c906108c
SS
613 return;
614 }
a3f17187 615 printf_filtered (_("Current source file is %s\n"), s->filename);
c906108c 616 if (s->dirname)
a3f17187 617 printf_filtered (_("Compilation directory is %s\n"), s->dirname);
c906108c 618 if (s->fullname)
a3f17187 619 printf_filtered (_("Located in %s\n"), s->fullname);
c906108c 620 if (s->nlines)
a3f17187 621 printf_filtered (_("Contains %d line%s.\n"), s->nlines,
c906108c
SS
622 s->nlines == 1 ? "" : "s");
623
a3f17187
AC
624 printf_filtered (_("Source language is %s.\n"), language_str (s->language));
625 printf_filtered (_("Compiled with %s debugging format.\n"), s->debugformat);
626 printf_filtered (_("%s preprocessor macro info.\n"),
919d772c 627 s->macro_table ? "Includes" : "Does not include");
c906108c 628}
c5aa993b 629\f
c906108c 630
c378eb4e 631/* Return True if the file NAME exists and is a regular file. */
1da1a192
JB
632static int
633is_regular_file (const char *name)
634{
635 struct stat st;
636 const int status = stat (name, &st);
637
638 /* Stat should never fail except when the file does not exist.
639 If stat fails, analyze the source of error and return True
640 unless the file does not exist, to avoid returning false results
c378eb4e
MS
641 on obscure systems where stat does not work as expected. */
642
1da1a192
JB
643 if (status != 0)
644 return (errno != ENOENT);
645
646 return S_ISREG (st.st_mode);
647}
c906108c 648
c906108c 649/* Open a file named STRING, searching path PATH (dir names sep by some char)
fbdebf46
JK
650 using mode MODE in the calls to open. You cannot use this function to
651 create files (O_CREAT).
c906108c 652
014d698b
EZ
653 OPTS specifies the function behaviour in specific cases.
654
655 If OPF_TRY_CWD_FIRST, try to open ./STRING before searching PATH.
c906108c
SS
656 (ie pretend the first element of PATH is "."). This also indicates
657 that a slash in STRING disables searching of the path (this is
658 so that "exec-file ./foo" or "symbol-file ./foo" insures that you
659 get that particular version of foo or an error message).
660
014d698b
EZ
661 If OPTS has OPF_SEARCH_IN_PATH set, absolute names will also be
662 searched in path (we usually want this for source files but not for
663 executables).
664
e7a8479f 665 If FILENAME_OPENED is non-null, set it to a newly allocated string naming
a89f66e4 666 the actual file opened (this string will always start with a "/"). We
c906108c
SS
667 have to take special pains to avoid doubling the "/" between the directory
668 and the file, sigh! Emacs gets confuzzed by this when we print the
669 source file name!!!
670
671 If a file is found, return the descriptor.
672 Otherwise, return -1, with errno set for the last name we tried to open. */
673
674/* >>>> This should only allow files of certain types,
c378eb4e 675 >>>> eg executable, non-directory. */
c906108c 676int
014d698b 677openp (const char *path, int opts, const char *string,
fbdebf46 678 int mode, char **filename_opened)
c906108c 679{
52f0bd74
AC
680 int fd;
681 char *filename;
c906108c 682 int alloclen;
e4ab2fad
JK
683 VEC (char_ptr) *dir_vec;
684 struct cleanup *back_to;
685 int ix;
686 char *dir;
c906108c 687
fbdebf46
JK
688 /* The open syscall MODE parameter is not specified. */
689 gdb_assert ((mode & O_CREAT) == 0);
f91e5ac3
JB
690 gdb_assert (string != NULL);
691
692 /* A file with an empty name cannot possibly exist. Report a failure
693 without further checking.
694
695 This is an optimization which also defends us against buggy
696 implementations of the "stat" function. For instance, we have
697 noticed that a MinGW debugger built on Windows XP 32bits crashes
698 when the debugger is started with an empty argument. */
699 if (string[0] == '\0')
700 {
701 errno = ENOENT;
702 return -1;
703 }
fbdebf46 704
c906108c
SS
705 if (!path)
706 path = ".";
707
c906108c 708 mode |= O_BINARY;
c906108c 709
014d698b 710 if ((opts & OPF_TRY_CWD_FIRST) || IS_ABSOLUTE_PATH (string))
c906108c
SS
711 {
712 int i;
072b1022
DJ
713
714 if (is_regular_file (string))
715 {
716 filename = alloca (strlen (string) + 1);
717 strcpy (filename, string);
fbdebf46 718 fd = open (filename, mode);
072b1022
DJ
719 if (fd >= 0)
720 goto done;
721 }
722 else
3f565f1e
DJ
723 {
724 filename = NULL;
725 fd = -1;
726 }
072b1022 727
014d698b
EZ
728 if (!(opts & OPF_SEARCH_IN_PATH))
729 for (i = 0; string[i]; i++)
730 if (IS_DIR_SEPARATOR (string[i]))
731 goto done;
c906108c
SS
732 }
733
e6d9b9c2
DE
734 /* For dos paths, d:/foo -> /foo, and d:foo -> foo. */
735 if (HAS_DRIVE_SPEC (string))
736 string = STRIP_DRIVE_SPEC (string);
737
c378eb4e 738 /* /foo => foo, to avoid multiple slashes that Emacs doesn't like. */
014d698b
EZ
739 while (IS_DIR_SEPARATOR(string[0]))
740 string++;
741
c906108c 742 /* ./foo => foo */
fe4e3eb8 743 while (string[0] == '.' && IS_DIR_SEPARATOR (string[1]))
c906108c
SS
744 string += 2;
745
746 alloclen = strlen (path) + strlen (string) + 2;
1f8cc6db 747 filename = alloca (alloclen);
c906108c 748 fd = -1;
e4ab2fad
JK
749
750 dir_vec = dirnames_to_char_ptr_vec (path);
751 back_to = make_cleanup_free_char_ptr_vec (dir_vec);
752
753 for (ix = 0; VEC_iterate (char_ptr, dir_vec, ix, dir); ++ix)
c906108c 754 {
e4ab2fad 755 size_t len = strlen (dir);
c906108c 756
e4ab2fad 757 if (strcmp (dir, "$cwd") == 0)
c5aa993b
JM
758 {
759 /* Name is $cwd -- insert current directory name instead. */
760 int newlen;
761
c378eb4e 762 /* First, realloc the filename buffer if too short. */
c5aa993b
JM
763 len = strlen (current_directory);
764 newlen = len + strlen (string) + 2;
765 if (newlen > alloclen)
766 {
767 alloclen = newlen;
1f8cc6db 768 filename = alloca (alloclen);
c5aa993b
JM
769 }
770 strcpy (filename, current_directory);
771 }
772 else
773 {
774 /* Normal file name in path -- just use it. */
e4ab2fad 775 strcpy (filename, dir);
08001717
DE
776
777 /* Don't search $cdir. It's also a magic path like $cwd, but we
778 don't have enough information to expand it. The user *could*
779 have an actual directory named '$cdir' but handling that would
780 be confusing, it would mean different things in different
781 contexts. If the user really has '$cdir' one can use './$cdir'.
782 We can get $cdir when loading scripts. When loading source files
783 $cdir must have already been expanded to the correct value. */
e4ab2fad 784 if (strcmp (dir, "$cdir") == 0)
08001717 785 continue;
c906108c 786 }
c906108c 787
c378eb4e 788 /* Remove trailing slashes. */
fe4e3eb8 789 while (len > 0 && IS_DIR_SEPARATOR (filename[len - 1]))
c906108c
SS
790 filename[--len] = 0;
791
c5aa993b 792 strcat (filename + len, SLASH_STRING);
c906108c
SS
793 strcat (filename, string);
794
1da1a192 795 if (is_regular_file (filename))
5e987968
AS
796 {
797 fd = open (filename, mode);
798 if (fd >= 0)
799 break;
800 }
c906108c
SS
801 }
802
e4ab2fad
JK
803 do_cleanups (back_to);
804
c5aa993b 805done:
c906108c
SS
806 if (filename_opened)
807 {
c378eb4e 808 /* If a file was opened, canonicalize its filename. Use xfullpath
a89f66e4 809 rather than gdb_realpath to avoid resolving the basename part
c378eb4e 810 of filenames when the associated file is a symbolic link. This
a89f66e4
JB
811 fixes a potential inconsistency between the filenames known to
812 GDB and the filenames it prints in the annotations. */
c906108c 813 if (fd < 0)
1f8cc6db 814 *filename_opened = NULL;
fe4e3eb8 815 else if (IS_ABSOLUTE_PATH (filename))
a89f66e4 816 *filename_opened = xfullpath (filename);
c906108c
SS
817 else
818 {
c378eb4e 819 /* Beware the // my son, the Emacs barfs, the botch that catch... */
c5aa993b 820
58d370e0 821 char *f = concat (current_directory,
5e987968
AS
822 IS_DIR_SEPARATOR (current_directory[strlen (current_directory) - 1])
823 ? "" : SLASH_STRING,
1754f103 824 filename, (char *)NULL);
433759f7 825
a89f66e4 826 *filename_opened = xfullpath (f);
58d370e0 827 xfree (f);
c5aa993b 828 }
c906108c 829 }
c906108c
SS
830
831 return fd;
832}
833
c5aa993b 834
c906108c
SS
835/* This is essentially a convenience, for clients that want the behaviour
836 of openp, using source_path, but that really don't want the file to be
837 opened but want instead just to know what the full pathname is (as
838 qualified against source_path).
839
840 The current working directory is searched first.
841
842 If the file was found, this function returns 1, and FULL_PATHNAME is
843 set to the fully-qualified pathname.
844
5e987968 845 Else, this functions returns 0, and FULL_PATHNAME is set to NULL. */
c906108c 846int
24f81874 847source_full_path_of (const char *filename, char **full_pathname)
c906108c 848{
c5aa993b 849 int fd;
c906108c 850
014d698b 851 fd = openp (source_path, OPF_TRY_CWD_FIRST | OPF_SEARCH_IN_PATH, filename,
fbdebf46 852 O_RDONLY, full_pathname);
c906108c
SS
853 if (fd < 0)
854 {
855 *full_pathname = NULL;
856 return 0;
857 }
858
859 close (fd);
860 return 1;
861}
862
2f61ca93
JB
863/* Return non-zero if RULE matches PATH, that is if the rule can be
864 applied to PATH. */
865
866static int
867substitute_path_rule_matches (const struct substitute_path_rule *rule,
868 const char *path)
869{
870 const int from_len = strlen (rule->from);
871 const int path_len = strlen (path);
872 char *path_start;
873
874 if (path_len < from_len)
875 return 0;
876
877 /* The substitution rules are anchored at the start of the path,
878 so the path should start with rule->from. There is no filename
879 comparison routine, so we need to extract the first FROM_LEN
880 characters from PATH first and use that to do the comparison. */
881
882 path_start = alloca (from_len + 1);
883 strncpy (path_start, path, from_len);
884 path_start[from_len] = '\0';
885
886 if (FILENAME_CMP (path_start, rule->from) != 0)
887 return 0;
888
889 /* Make sure that the region in the path that matches the substitution
890 rule is immediately followed by a directory separator (or the end of
891 string character). */
892
893 if (path[from_len] != '\0' && !IS_DIR_SEPARATOR (path[from_len]))
894 return 0;
895
896 return 1;
897}
898
899/* Find the substitute-path rule that applies to PATH and return it.
900 Return NULL if no rule applies. */
901
902static struct substitute_path_rule *
903get_substitute_path_rule (const char *path)
904{
905 struct substitute_path_rule *rule = substitute_path_rules;
906
907 while (rule != NULL && !substitute_path_rule_matches (rule, path))
908 rule = rule->next;
909
910 return rule;
911}
912
913/* If the user specified a source path substitution rule that applies
914 to PATH, then apply it and return the new path. This new path must
c378eb4e 915 be deallocated afterwards.
2f61ca93
JB
916
917 Return NULL if no substitution rule was specified by the user,
918 or if no rule applied to the given PATH. */
919
920static char *
921rewrite_source_path (const char *path)
922{
923 const struct substitute_path_rule *rule = get_substitute_path_rule (path);
924 char *new_path;
925 int from_len;
926
927 if (rule == NULL)
928 return NULL;
929
930 from_len = strlen (rule->from);
931
932 /* Compute the rewritten path and return it. */
933
934 new_path =
935 (char *) xmalloc (strlen (path) + 1 + strlen (rule->to) - from_len);
936 strcpy (new_path, rule->to);
937 strcat (new_path, path + from_len);
938
939 return new_path;
940}
941
ccefe4c4 942int
e2357892 943find_and_open_source (const char *filename,
5e987968
AS
944 const char *dirname,
945 char **fullname)
c906108c
SS
946{
947 char *path = source_path;
31889e00 948 const char *p;
c906108c 949 int result;
c906108c 950
c378eb4e 951 /* Quick way out if we already know its full name. */
2f61ca93 952
57c22c6c 953 if (*fullname)
c906108c 954 {
2f61ca93
JB
955 /* The user may have requested that source paths be rewritten
956 according to substitution rules he provided. If a substitution
957 rule applies to this path, then apply it. */
958 char *rewritten_fullname = rewrite_source_path (*fullname);
959
960 if (rewritten_fullname != NULL)
961 {
962 xfree (*fullname);
963 *fullname = rewritten_fullname;
964 }
965
57c22c6c 966 result = open (*fullname, OPEN_MODE);
c906108c 967 if (result >= 0)
bc3aa6c3
DE
968 {
969 /* Call xfullpath here to be consistent with openp
970 which we use below. */
971 char *lpath = xfullpath (*fullname);
972
973 xfree (*fullname);
974 *fullname = lpath;
975 return result;
976 }
977
c378eb4e 978 /* Didn't work -- free old one, try again. */
2dc74dc1 979 xfree (*fullname);
57c22c6c 980 *fullname = NULL;
c906108c
SS
981 }
982
57c22c6c 983 if (dirname != NULL)
c906108c 984 {
2f61ca93
JB
985 /* If necessary, rewrite the compilation directory name according
986 to the source path substitution rules specified by the user. */
987
988 char *rewritten_dirname = rewrite_source_path (dirname);
989
990 if (rewritten_dirname != NULL)
991 {
992 make_cleanup (xfree, rewritten_dirname);
993 dirname = rewritten_dirname;
994 }
995
c378eb4e
MS
996 /* Replace a path entry of $cdir with the compilation directory
997 name. */
c906108c
SS
998#define cdir_len 5
999 /* We cast strstr's result in case an ANSIhole has made it const,
c378eb4e 1000 which produces a "required warning" when assigned to a nonconst. */
c5aa993b 1001 p = (char *) strstr (source_path, "$cdir");
c906108c 1002 if (p && (p == path || p[-1] == DIRNAME_SEPARATOR)
c5aa993b 1003 && (p[cdir_len] == DIRNAME_SEPARATOR || p[cdir_len] == '\0'))
c906108c
SS
1004 {
1005 int len;
1006
1007 path = (char *)
57c22c6c 1008 alloca (strlen (source_path) + 1 + strlen (dirname) + 1);
c906108c 1009 len = p - source_path;
c5aa993b 1010 strncpy (path, source_path, len); /* Before $cdir */
3e43a32a
MS
1011 strcpy (path + len, dirname); /* new stuff */
1012 strcat (path + len, source_path + len + cdir_len); /* After
1013 $cdir */
c906108c
SS
1014 }
1015 }
8da2a1df
DJ
1016
1017 if (IS_ABSOLUTE_PATH (filename))
56163ce1 1018 {
8da2a1df
DJ
1019 /* If filename is absolute path, try the source path
1020 substitution on it. */
56163ce1
JB
1021 char *rewritten_filename = rewrite_source_path (filename);
1022
1023 if (rewritten_filename != NULL)
1024 {
1025 make_cleanup (xfree, rewritten_filename);
1026 filename = rewritten_filename;
1027 }
1028 }
c906108c 1029
fbdebf46 1030 result = openp (path, OPF_SEARCH_IN_PATH, filename, OPEN_MODE, fullname);
c906108c
SS
1031 if (result < 0)
1032 {
c378eb4e 1033 /* Didn't work. Try using just the basename. */
57c22c6c
BR
1034 p = lbasename (filename);
1035 if (p != filename)
fbdebf46 1036 result = openp (path, OPF_SEARCH_IN_PATH, p, OPEN_MODE, fullname);
c906108c 1037 }
c906108c 1038
c906108c
SS
1039 return result;
1040}
1041
57c22c6c
BR
1042/* Open a source file given a symtab S. Returns a file descriptor or
1043 negative number for error.
1044
c378eb4e 1045 This function is a convience function to find_and_open_source. */
57c22c6c
BR
1046
1047int
1048open_source_file (struct symtab *s)
1049{
5e987968
AS
1050 if (!s)
1051 return -1;
57c22c6c 1052
e2357892 1053 return find_and_open_source (s->filename, s->dirname, &s->fullname);
57c22c6c
BR
1054}
1055
1056/* Finds the fullname that a symtab represents.
c906108c 1057
f132ba9d 1058 If this functions finds the fullname, it will save it in s->fullname
57c22c6c
BR
1059 and it will also return the value.
1060
1061 If this function fails to find the file that this symtab represents,
f132ba9d 1062 NULL will be returned and s->fullname will be set to NULL. */
256f06f3 1063
c906108c 1064char *
57c22c6c 1065symtab_to_fullname (struct symtab *s)
c906108c 1066{
57c22c6c 1067 int r;
c906108c
SS
1068
1069 if (!s)
1070 return NULL;
1071
256f06f3
DE
1072 /* Use cached copy if we have it.
1073 We rely on forget_cached_source_info being called appropriately
1074 to handle cases like the file being moved. */
1075 if (s->fullname)
1076 return s->fullname;
1077
e2357892 1078 r = find_and_open_source (s->filename, s->dirname, &s->fullname);
c906108c 1079
9fe4a216 1080 if (r >= 0)
5e987968
AS
1081 {
1082 close (r);
1083 return s->fullname;
1084 }
c906108c 1085
57c22c6c
BR
1086 return NULL;
1087}
5e987968 1088\f
c906108c
SS
1089/* Create and initialize the table S->line_charpos that records
1090 the positions of the lines in the source file, which is assumed
1091 to be open on descriptor DESC.
1092 All set S->nlines to the number of such lines. */
1093
1094void
fba45db2 1095find_source_lines (struct symtab *s, int desc)
c906108c
SS
1096{
1097 struct stat st;
52f0bd74 1098 char *data, *p, *end;
c906108c
SS
1099 int nlines = 0;
1100 int lines_allocated = 1000;
1101 int *line_charpos;
1102 long mtime = 0;
1103 int size;
1104
be8ca11b 1105 gdb_assert (s);
7936743b 1106 line_charpos = (int *) xmalloc (lines_allocated * sizeof (int));
c906108c
SS
1107 if (fstat (desc, &st) < 0)
1108 perror_with_name (s->filename);
1109
be8ca11b 1110 if (s->objfile && s->objfile->obfd)
c04ea773 1111 mtime = s->objfile->mtime;
c906108c 1112 else if (exec_bfd)
c04ea773 1113 mtime = exec_bfd_mtime;
c906108c
SS
1114
1115 if (mtime && mtime < st.st_mtime)
8a3fe4f8 1116 warning (_("Source file is more recent than executable."));
c906108c 1117
c906108c
SS
1118 {
1119 struct cleanup *old_cleanups;
1120
1121 /* st_size might be a large type, but we only support source files whose
1122 size fits in an int. */
1123 size = (int) st.st_size;
1124
1125 /* Use malloc, not alloca, because this may be pretty large, and we may
1126 run into various kinds of limits on stack size. */
1127 data = (char *) xmalloc (size);
b8c9b27d 1128 old_cleanups = make_cleanup (xfree, data);
c906108c
SS
1129
1130 /* Reassign `size' to result of read for systems where \r\n -> \n. */
1131 size = myread (desc, data, size);
1132 if (size < 0)
1133 perror_with_name (s->filename);
1134 end = data + size;
1135 p = data;
1136 line_charpos[0] = 0;
1137 nlines = 1;
1138 while (p != end)
1139 {
1140 if (*p++ == '\n'
c5aa993b 1141 /* A newline at the end does not start a new line. */
c906108c
SS
1142 && p != end)
1143 {
1144 if (nlines == lines_allocated)
1145 {
1146 lines_allocated *= 2;
1147 line_charpos =
0efffb96
AC
1148 (int *) xrealloc ((char *) line_charpos,
1149 sizeof (int) * lines_allocated);
c906108c
SS
1150 }
1151 line_charpos[nlines++] = p - data;
1152 }
1153 }
1154 do_cleanups (old_cleanups);
1155 }
d4d4db8a 1156
c906108c
SS
1157 s->nlines = nlines;
1158 s->line_charpos =
0efffb96 1159 (int *) xrealloc ((char *) line_charpos, nlines * sizeof (int));
c906108c
SS
1160
1161}
1162
c906108c 1163\f
c5aa993b 1164
c906108c
SS
1165/* Get full pathname and line number positions for a symtab.
1166 Return nonzero if line numbers may have changed.
1167 Set *FULLNAME to actual name of the file as found by `openp',
1168 or to 0 if the file is not found. */
1169
1170static int
fba45db2 1171get_filename_and_charpos (struct symtab *s, char **fullname)
c906108c 1172{
52f0bd74 1173 int desc, linenums_changed = 0;
9fe4a216 1174 struct cleanup *cleanups;
c5aa993b 1175
c906108c
SS
1176 desc = open_source_file (s);
1177 if (desc < 0)
1178 {
1179 if (fullname)
1180 *fullname = NULL;
1181 return 0;
c5aa993b 1182 }
9fe4a216 1183 cleanups = make_cleanup_close (desc);
c906108c
SS
1184 if (fullname)
1185 *fullname = s->fullname;
c5aa993b
JM
1186 if (s->line_charpos == 0)
1187 linenums_changed = 1;
1188 if (linenums_changed)
1189 find_source_lines (s, desc);
9fe4a216 1190 do_cleanups (cleanups);
c906108c
SS
1191 return linenums_changed;
1192}
1193
1194/* Print text describing the full name of the source file S
1195 and the line number LINE and its corresponding character position.
1196 The text starts with two Ctrl-z so that the Emacs-GDB interface
1197 can easily find it.
1198
1199 MID_STATEMENT is nonzero if the PC is not at the beginning of that line.
1200
1201 Return 1 if successful, 0 if could not find the file. */
1202
1203int
fba45db2
KB
1204identify_source_line (struct symtab *s, int line, int mid_statement,
1205 CORE_ADDR pc)
c906108c
SS
1206{
1207 if (s->line_charpos == 0)
c5aa993b 1208 get_filename_and_charpos (s, (char **) NULL);
c906108c
SS
1209 if (s->fullname == 0)
1210 return 0;
1211 if (line > s->nlines)
1212 /* Don't index off the end of the line_charpos array. */
1213 return 0;
1214 annotate_source (s->fullname, line, s->line_charpos[line - 1],
5af949e3 1215 mid_statement, get_objfile_arch (s->objfile), pc);
c906108c
SS
1216
1217 current_source_line = line;
1218 first_line_listed = line;
1219 last_line_listed = line;
1220 current_source_symtab = s;
1221 return 1;
1222}
c906108c 1223\f
c5aa993b 1224
c906108c 1225/* Print source lines from the file of symtab S,
c378eb4e 1226 starting with line number LINE and stopping before line number STOPLINE. */
c906108c 1227
a14ed312
KB
1228static void print_source_lines_base (struct symtab *s, int line, int stopline,
1229 int noerror);
c906108c 1230static void
fba45db2 1231print_source_lines_base (struct symtab *s, int line, int stopline, int noerror)
c906108c 1232{
52f0bd74
AC
1233 int c;
1234 int desc;
f4dfd9c0 1235 int noprint = 0;
52f0bd74 1236 FILE *stream;
c906108c 1237 int nlines = stopline - line;
7c8a8b04 1238 struct cleanup *cleanup;
79a45e25 1239 struct ui_out *uiout = current_uiout;
c906108c 1240
c378eb4e 1241 /* Regardless of whether we can open the file, set current_source_symtab. */
c906108c
SS
1242 current_source_symtab = s;
1243 current_source_line = line;
1244 first_line_listed = line;
1245
3e43a32a 1246 /* If printing of source lines is disabled, just print file and line
c378eb4e 1247 number. */
8b93c638
JM
1248 if (ui_out_test_flags (uiout, ui_source_list))
1249 {
c378eb4e 1250 /* Only prints "No such file or directory" once. */
c5aa993b
JM
1251 if ((s != last_source_visited) || (!last_source_error))
1252 {
1253 last_source_visited = s;
1254 desc = open_source_file (s);
1255 }
1256 else
1257 {
1258 desc = last_source_error;
1259 noerror = 1;
1260 }
8b93c638
JM
1261 }
1262 else
1263 {
f4dfd9c0 1264 desc = last_source_error;
8b93c638 1265 noerror = 1;
f4dfd9c0 1266 noprint = 1;
8b93c638 1267 }
c906108c 1268
f4dfd9c0 1269 if (desc < 0 || noprint)
c906108c
SS
1270 {
1271 last_source_error = desc;
1272
c5aa993b
JM
1273 if (!noerror)
1274 {
c906108c
SS
1275 char *name = alloca (strlen (s->filename) + 100);
1276 sprintf (name, "%d\t%s", line, s->filename);
1277 print_sys_errmsg (name, errno);
1278 }
1279 else
fc0ae648
AB
1280 {
1281 ui_out_field_int (uiout, "line", line);
1282 ui_out_text (uiout, "\tin ");
1283 ui_out_field_string (uiout, "file", s->filename);
1284 ui_out_text (uiout, "\n");
1285 }
c906108c
SS
1286
1287 return;
1288 }
1289
1290 last_source_error = 0;
1291
1292 if (s->line_charpos == 0)
1293 find_source_lines (s, desc);
1294
1295 if (line < 1 || line > s->nlines)
1296 {
1297 close (desc);
8a3fe4f8 1298 error (_("Line number %d out of range; %s has %d lines."),
c906108c
SS
1299 line, s->filename, s->nlines);
1300 }
1301
1302 if (lseek (desc, s->line_charpos[line - 1], 0) < 0)
1303 {
1304 close (desc);
1305 perror_with_name (s->filename);
1306 }
1307
1308 stream = fdopen (desc, FDOPEN_MODE);
1309 clearerr (stream);
7c8a8b04 1310 cleanup = make_cleanup_fclose (stream);
c906108c
SS
1311
1312 while (nlines-- > 0)
1313 {
8b93c638
JM
1314 char buf[20];
1315
1316 c = fgetc (stream);
1317 if (c == EOF)
1318 break;
1319 last_line_listed = current_source_line;
1320 sprintf (buf, "%d\t", current_source_line++);
1321 ui_out_text (uiout, buf);
1322 do
1323 {
1324 if (c < 040 && c != '\t' && c != '\n' && c != '\r')
1325 {
1326 sprintf (buf, "^%c", c + 0100);
1327 ui_out_text (uiout, buf);
1328 }
1329 else if (c == 0177)
1330 ui_out_text (uiout, "^?");
8b93c638
JM
1331 else if (c == '\r')
1332 {
1333 /* Skip a \r character, but only before a \n. */
1334 int c1 = fgetc (stream);
1335
1336 if (c1 != '\n')
1337 printf_filtered ("^%c", c + 0100);
1338 if (c1 != EOF)
1339 ungetc (c1, stream);
1340 }
8b93c638
JM
1341 else
1342 {
1343 sprintf (buf, "%c", c);
1344 ui_out_text (uiout, buf);
1345 }
1346 }
1347 while (c != '\n' && (c = fgetc (stream)) >= 0);
c906108c
SS
1348 }
1349
7c8a8b04 1350 do_cleanups (cleanup);
c906108c
SS
1351}
1352\f
1353/* Show source lines from the file of symtab S, starting with line
f132ba9d 1354 number LINE and stopping before line number STOPLINE. If this is
c906108c 1355 not the command line version, then the source is shown in the source
c378eb4e 1356 window otherwise it is simply printed. */
c906108c 1357
c5aa993b 1358void
fba45db2 1359print_source_lines (struct symtab *s, int line, int stopline, int noerror)
c906108c 1360{
c5aa993b 1361 print_source_lines_base (s, line, stopline, noerror);
c906108c
SS
1362}
1363\f
c906108c
SS
1364/* Print info on range of pc's in a specified line. */
1365
1366static void
fba45db2 1367line_info (char *arg, int from_tty)
c906108c
SS
1368{
1369 struct symtabs_and_lines sals;
1370 struct symtab_and_line sal;
1371 CORE_ADDR start_pc, end_pc;
1372 int i;
f8eba3c6 1373 struct cleanup *cleanups;
c906108c 1374
fe39c653 1375 init_sal (&sal); /* initialize to zeroes */
c906108c
SS
1376
1377 if (arg == 0)
1378 {
1379 sal.symtab = current_source_symtab;
f8eba3c6 1380 sal.pspace = current_program_space;
c906108c
SS
1381 sal.line = last_line_listed;
1382 sals.nelts = 1;
1383 sals.sals = (struct symtab_and_line *)
1384 xmalloc (sizeof (struct symtab_and_line));
1385 sals.sals[0] = sal;
1386 }
1387 else
1388 {
f8eba3c6 1389 sals = decode_line_spec_1 (arg, DECODE_LINE_LIST_MODE);
c5aa993b 1390
c906108c
SS
1391 dont_repeat ();
1392 }
1393
f8eba3c6
TT
1394 cleanups = make_cleanup (xfree, sals.sals);
1395
c906108c 1396 /* C++ More than one line may have been specified, as when the user
c378eb4e 1397 specifies an overloaded function name. Print info on them all. */
c906108c
SS
1398 for (i = 0; i < sals.nelts; i++)
1399 {
1400 sal = sals.sals[i];
f8eba3c6
TT
1401 if (sal.pspace != current_program_space)
1402 continue;
c5aa993b 1403
c906108c
SS
1404 if (sal.symtab == 0)
1405 {
5af949e3
UW
1406 struct gdbarch *gdbarch = get_current_arch ();
1407
a3f17187 1408 printf_filtered (_("No line number information available"));
c906108c
SS
1409 if (sal.pc != 0)
1410 {
1411 /* This is useful for "info line *0x7f34". If we can't tell the
c5aa993b
JM
1412 user about a source line, at least let them have the symbolic
1413 address. */
c906108c
SS
1414 printf_filtered (" for address ");
1415 wrap_here (" ");
5af949e3 1416 print_address (gdbarch, sal.pc, gdb_stdout);
c906108c
SS
1417 }
1418 else
1419 printf_filtered (".");
1420 printf_filtered ("\n");
1421 }
1422 else if (sal.line > 0
1423 && find_line_pc_range (sal, &start_pc, &end_pc))
1424 {
5af949e3
UW
1425 struct gdbarch *gdbarch = get_objfile_arch (sal.symtab->objfile);
1426
c906108c
SS
1427 if (start_pc == end_pc)
1428 {
1429 printf_filtered ("Line %d of \"%s\"",
1430 sal.line, sal.symtab->filename);
1431 wrap_here (" ");
1432 printf_filtered (" is at address ");
5af949e3 1433 print_address (gdbarch, start_pc, gdb_stdout);
c906108c
SS
1434 wrap_here (" ");
1435 printf_filtered (" but contains no code.\n");
1436 }
1437 else
1438 {
1439 printf_filtered ("Line %d of \"%s\"",
1440 sal.line, sal.symtab->filename);
1441 wrap_here (" ");
1442 printf_filtered (" starts at address ");
5af949e3 1443 print_address (gdbarch, start_pc, gdb_stdout);
c906108c
SS
1444 wrap_here (" ");
1445 printf_filtered (" and ends at ");
5af949e3 1446 print_address (gdbarch, end_pc, gdb_stdout);
c906108c
SS
1447 printf_filtered (".\n");
1448 }
1449
1450 /* x/i should display this line's code. */
5af949e3 1451 set_next_address (gdbarch, start_pc);
c906108c
SS
1452
1453 /* Repeating "info line" should do the following line. */
1454 last_line_listed = sal.line + 1;
1455
1456 /* If this is the only line, show the source code. If it could
1457 not find the file, don't do anything special. */
1458 if (annotation_level && sals.nelts == 1)
1459 identify_source_line (sal.symtab, sal.line, 0, start_pc);
1460 }
1461 else
1462 /* Is there any case in which we get here, and have an address
1463 which the user would want to see? If we have debugging symbols
1464 and no line numbers? */
a3f17187 1465 printf_filtered (_("Line number %d is out of range for \"%s\".\n"),
c906108c
SS
1466 sal.line, sal.symtab->filename);
1467 }
f8eba3c6 1468 do_cleanups (cleanups);
c906108c
SS
1469}
1470\f
1471/* Commands to search the source file for a regexp. */
1472
c906108c 1473static void
fba45db2 1474forward_search_command (char *regex, int from_tty)
c906108c 1475{
52f0bd74
AC
1476 int c;
1477 int desc;
1478 FILE *stream;
c906108c
SS
1479 int line;
1480 char *msg;
9fe4a216 1481 struct cleanup *cleanups;
c906108c 1482
c906108c 1483 line = last_line_listed + 1;
c906108c
SS
1484
1485 msg = (char *) re_comp (regex);
1486 if (msg)
8a3fe4f8 1487 error (("%s"), msg);
c906108c
SS
1488
1489 if (current_source_symtab == 0)
1490 select_source_symtab (0);
1491
1492 desc = open_source_file (current_source_symtab);
1493 if (desc < 0)
1494 perror_with_name (current_source_symtab->filename);
9fe4a216 1495 cleanups = make_cleanup_close (desc);
c906108c
SS
1496
1497 if (current_source_symtab->line_charpos == 0)
1498 find_source_lines (current_source_symtab, desc);
1499
1500 if (line < 1 || line > current_source_symtab->nlines)
9fe4a216 1501 error (_("Expression not found"));
c906108c
SS
1502
1503 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
9fe4a216 1504 perror_with_name (current_source_symtab->filename);
c906108c 1505
9fe4a216 1506 discard_cleanups (cleanups);
c906108c
SS
1507 stream = fdopen (desc, FDOPEN_MODE);
1508 clearerr (stream);
9fe4a216 1509 cleanups = make_cleanup_fclose (stream);
c5aa993b
JM
1510 while (1)
1511 {
1512 static char *buf = NULL;
aa1ee363 1513 char *p;
c5aa993b
JM
1514 int cursize, newsize;
1515
1516 cursize = 256;
1517 buf = xmalloc (cursize);
1518 p = buf;
1519
1520 c = getc (stream);
1521 if (c == EOF)
1522 break;
1523 do
c906108c 1524 {
c5aa993b
JM
1525 *p++ = c;
1526 if (p - buf == cursize)
1527 {
1528 newsize = cursize + cursize / 2;
1529 buf = xrealloc (buf, newsize);
1530 p = buf + cursize;
1531 cursize = newsize;
1532 }
c906108c 1533 }
c5aa993b 1534 while (c != '\n' && (c = getc (stream)) >= 0);
c906108c 1535
7be570e7
JM
1536 /* Remove the \r, if any, at the end of the line, otherwise
1537 regular expressions that end with $ or \n won't work. */
1538 if (p - buf > 1 && p[-2] == '\r')
1539 {
1540 p--;
1541 p[-1] = '\n';
1542 }
7be570e7 1543
c378eb4e 1544 /* We now have a source line in buf, null terminate and match. */
c5aa993b
JM
1545 *p = 0;
1546 if (re_exec (buf) > 0)
1547 {
c378eb4e 1548 /* Match! */
e681b284 1549 do_cleanups (cleanups);
c5aa993b 1550 print_source_lines (current_source_symtab, line, line + 1, 0);
4fa62494 1551 set_internalvar_integer (lookup_internalvar ("_"), line);
c5aa993b
JM
1552 current_source_line = max (line - lines_to_list / 2, 1);
1553 return;
1554 }
1555 line++;
1556 }
c906108c 1557
a3f17187 1558 printf_filtered (_("Expression not found\n"));
9fe4a216 1559 do_cleanups (cleanups);
c906108c
SS
1560}
1561
c906108c 1562static void
fba45db2 1563reverse_search_command (char *regex, int from_tty)
c906108c 1564{
52f0bd74
AC
1565 int c;
1566 int desc;
1567 FILE *stream;
c906108c
SS
1568 int line;
1569 char *msg;
9fe4a216 1570 struct cleanup *cleanups;
063190b6 1571
c906108c 1572 line = last_line_listed - 1;
c906108c
SS
1573
1574 msg = (char *) re_comp (regex);
1575 if (msg)
8a3fe4f8 1576 error (("%s"), msg);
c906108c
SS
1577
1578 if (current_source_symtab == 0)
1579 select_source_symtab (0);
1580
1581 desc = open_source_file (current_source_symtab);
1582 if (desc < 0)
1583 perror_with_name (current_source_symtab->filename);
9fe4a216 1584 cleanups = make_cleanup_close (desc);
c906108c
SS
1585
1586 if (current_source_symtab->line_charpos == 0)
1587 find_source_lines (current_source_symtab, desc);
1588
1589 if (line < 1 || line > current_source_symtab->nlines)
9fe4a216 1590 error (_("Expression not found"));
c906108c
SS
1591
1592 if (lseek (desc, current_source_symtab->line_charpos[line - 1], 0) < 0)
9fe4a216 1593 perror_with_name (current_source_symtab->filename);
c906108c 1594
9fe4a216 1595 discard_cleanups (cleanups);
c906108c
SS
1596 stream = fdopen (desc, FDOPEN_MODE);
1597 clearerr (stream);
9fe4a216 1598 cleanups = make_cleanup_fclose (stream);
c906108c
SS
1599 while (line > 1)
1600 {
c378eb4e
MS
1601/* FIXME!!! We walk right off the end of buf if we get a long line!!! */
1602 char buf[4096]; /* Should be reasonable??? */
aa1ee363 1603 char *p = buf;
c906108c
SS
1604
1605 c = getc (stream);
1606 if (c == EOF)
1607 break;
c5aa993b
JM
1608 do
1609 {
1610 *p++ = c;
1611 }
1612 while (c != '\n' && (c = getc (stream)) >= 0);
c906108c 1613
7be570e7
JM
1614 /* Remove the \r, if any, at the end of the line, otherwise
1615 regular expressions that end with $ or \n won't work. */
1616 if (p - buf > 1 && p[-2] == '\r')
1617 {
1618 p--;
1619 p[-1] = '\n';
1620 }
7be570e7 1621
c906108c
SS
1622 /* We now have a source line in buf; null terminate and match. */
1623 *p = 0;
1624 if (re_exec (buf) > 0)
1625 {
c378eb4e 1626 /* Match! */
e681b284 1627 do_cleanups (cleanups);
c5aa993b 1628 print_source_lines (current_source_symtab, line, line + 1, 0);
4fa62494 1629 set_internalvar_integer (lookup_internalvar ("_"), line);
c906108c
SS
1630 current_source_line = max (line - lines_to_list / 2, 1);
1631 return;
1632 }
1633 line--;
1634 if (fseek (stream, current_source_symtab->line_charpos[line - 1], 0) < 0)
1635 {
e681b284 1636 do_cleanups (cleanups);
c906108c
SS
1637 perror_with_name (current_source_symtab->filename);
1638 }
1639 }
1640
a3f17187 1641 printf_filtered (_("Expression not found\n"));
9fe4a216 1642 do_cleanups (cleanups);
c906108c
SS
1643 return;
1644}
2f61ca93
JB
1645
1646/* If the last character of PATH is a directory separator, then strip it. */
1647
1648static void
1649strip_trailing_directory_separator (char *path)
1650{
1651 const int last = strlen (path) - 1;
1652
1653 if (last < 0)
1654 return; /* No stripping is needed if PATH is the empty string. */
1655
1656 if (IS_DIR_SEPARATOR (path[last]))
1657 path[last] = '\0';
1658}
1659
1660/* Return the path substitution rule that matches FROM.
1661 Return NULL if no rule matches. */
1662
1663static struct substitute_path_rule *
1664find_substitute_path_rule (const char *from)
1665{
1666 struct substitute_path_rule *rule = substitute_path_rules;
1667
1668 while (rule != NULL)
1669 {
1670 if (FILENAME_CMP (rule->from, from) == 0)
1671 return rule;
1672 rule = rule->next;
1673 }
1674
1675 return NULL;
1676}
1677
1678/* Add a new substitute-path rule at the end of the current list of rules.
1679 The new rule will replace FROM into TO. */
1680
29b0e8a2 1681void
2f61ca93
JB
1682add_substitute_path_rule (char *from, char *to)
1683{
1684 struct substitute_path_rule *rule;
1685 struct substitute_path_rule *new_rule;
1686
1687 new_rule = xmalloc (sizeof (struct substitute_path_rule));
1688 new_rule->from = xstrdup (from);
1689 new_rule->to = xstrdup (to);
1690 new_rule->next = NULL;
1691
1692 /* If the list of rules are empty, then insert the new rule
1693 at the head of the list. */
1694
1695 if (substitute_path_rules == NULL)
1696 {
1697 substitute_path_rules = new_rule;
1698 return;
1699 }
1700
1701 /* Otherwise, skip to the last rule in our list and then append
1702 the new rule. */
1703
1704 rule = substitute_path_rules;
1705 while (rule->next != NULL)
1706 rule = rule->next;
1707
1708 rule->next = new_rule;
1709}
1710
1711/* Remove the given source path substitution rule from the current list
1712 of rules. The memory allocated for that rule is also deallocated. */
1713
1714static void
1715delete_substitute_path_rule (struct substitute_path_rule *rule)
1716{
1717 if (rule == substitute_path_rules)
1718 substitute_path_rules = rule->next;
1719 else
1720 {
1721 struct substitute_path_rule *prev = substitute_path_rules;
1722
1723 while (prev != NULL && prev->next != rule)
1724 prev = prev->next;
1725
1726 gdb_assert (prev != NULL);
1727
1728 prev->next = rule->next;
1729 }
1730
1731 xfree (rule->from);
1732 xfree (rule->to);
1733 xfree (rule);
1734}
1735
1736/* Implement the "show substitute-path" command. */
1737
1738static void
1739show_substitute_path_command (char *args, int from_tty)
1740{
1741 struct substitute_path_rule *rule = substitute_path_rules;
1742 char **argv;
1743 char *from = NULL;
1744
d1a41061 1745 argv = gdb_buildargv (args);
2f61ca93
JB
1746 make_cleanup_freeargv (argv);
1747
1748 /* We expect zero or one argument. */
1749
1750 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1751 error (_("Too many arguments in command"));
1752
1753 if (argv != NULL && argv[0] != NULL)
1754 from = argv[0];
1755
1756 /* Print the substitution rules. */
1757
1758 if (from != NULL)
1759 printf_filtered
1760 (_("Source path substitution rule matching `%s':\n"), from);
1761 else
1762 printf_filtered (_("List of all source path substitution rules:\n"));
1763
1764 while (rule != NULL)
1765 {
1766 if (from == NULL || FILENAME_CMP (rule->from, from) == 0)
1767 printf_filtered (" `%s' -> `%s'.\n", rule->from, rule->to);
1768 rule = rule->next;
1769 }
1770}
1771
1772/* Implement the "unset substitute-path" command. */
1773
1774static void
1775unset_substitute_path_command (char *args, int from_tty)
1776{
1777 struct substitute_path_rule *rule = substitute_path_rules;
d1a41061 1778 char **argv = gdb_buildargv (args);
2f61ca93
JB
1779 char *from = NULL;
1780 int rule_found = 0;
1781
1782 /* This function takes either 0 or 1 argument. */
1783
77accacd 1784 make_cleanup_freeargv (argv);
2f61ca93
JB
1785 if (argv != NULL && argv[0] != NULL && argv[1] != NULL)
1786 error (_("Incorrect usage, too many arguments in command"));
1787
1788 if (argv != NULL && argv[0] != NULL)
1789 from = argv[0];
1790
1791 /* If the user asked for all the rules to be deleted, ask him
1792 to confirm and give him a chance to abort before the action
1793 is performed. */
1794
1795 if (from == NULL
1796 && !query (_("Delete all source path substitution rules? ")))
1797 error (_("Canceled"));
1798
1799 /* Delete the rule matching the argument. No argument means that
1800 all rules should be deleted. */
1801
1802 while (rule != NULL)
1803 {
1804 struct substitute_path_rule *next = rule->next;
1805
1806 if (from == NULL || FILENAME_CMP (from, rule->from) == 0)
1807 {
1808 delete_substitute_path_rule (rule);
1809 rule_found = 1;
1810 }
1811
1812 rule = next;
1813 }
1814
1815 /* If the user asked for a specific rule to be deleted but
1816 we could not find it, then report an error. */
1817
1818 if (from != NULL && !rule_found)
1819 error (_("No substitution rule defined for `%s'"), from);
c4e86dd4
DJ
1820
1821 forget_cached_source_info ();
2f61ca93
JB
1822}
1823
1824/* Add a new source path substitution rule. */
1825
1826static void
1827set_substitute_path_command (char *args, int from_tty)
1828{
2f61ca93
JB
1829 char **argv;
1830 struct substitute_path_rule *rule;
1831
d1a41061 1832 argv = gdb_buildargv (args);
2f61ca93
JB
1833 make_cleanup_freeargv (argv);
1834
1835 if (argv == NULL || argv[0] == NULL || argv [1] == NULL)
1836 error (_("Incorrect usage, too few arguments in command"));
1837
1838 if (argv[2] != NULL)
1839 error (_("Incorrect usage, too many arguments in command"));
1840
1841 if (*(argv[0]) == '\0')
1842 error (_("First argument must be at least one character long"));
1843
1844 /* Strip any trailing directory separator character in either FROM
1845 or TO. The substitution rule already implicitly contains them. */
1846 strip_trailing_directory_separator (argv[0]);
1847 strip_trailing_directory_separator (argv[1]);
1848
1849 /* If a rule with the same "from" was previously defined, then
1850 delete it. This new rule replaces it. */
1851
1852 rule = find_substitute_path_rule (argv[0]);
1853 if (rule != NULL)
1854 delete_substitute_path_rule (rule);
1855
1856 /* Insert the new substitution rule. */
1857
1858 add_substitute_path_rule (argv[0], argv[1]);
c4e86dd4 1859 forget_cached_source_info ();
2f61ca93
JB
1860}
1861
c906108c
SS
1862\f
1863void
fba45db2 1864_initialize_source (void)
c906108c
SS
1865{
1866 struct cmd_list_element *c;
433759f7 1867
c906108c
SS
1868 current_source_symtab = 0;
1869 init_source_path ();
1870
1871 /* The intention is to use POSIX Basic Regular Expressions.
1872 Always use the GNU regex routine for consistency across all hosts.
1873 Our current GNU regex.c does not have all the POSIX features, so this is
1874 just an approximation. */
1875 re_set_syntax (RE_SYNTAX_GREP);
1876
1a966eab
AC
1877 c = add_cmd ("directory", class_files, directory_command, _("\
1878Add directory DIR to beginning of search path for source files.\n\
c906108c
SS
1879Forget cached info on source file locations and line positions.\n\
1880DIR can also be $cwd for the current working directory, or $cdir for the\n\
1881directory in which the source file was compiled into object code.\n\
1a966eab 1882With no argument, reset the search path to $cdir:$cwd, the default."),
c906108c
SS
1883 &cmdlist);
1884
1885 if (dbx_commands)
c5aa993b 1886 add_com_alias ("use", "directory", class_files, 0);
c906108c 1887
5ba2abeb 1888 set_cmd_completer (c, filename_completer);
c906108c 1889
99e7ae30
DE
1890 add_setshow_optional_filename_cmd ("directories",
1891 class_files,
1892 &source_path,
1893 _("\
1894Set the search path for finding source files."),
1895 _("\
1896Show the search path for finding source files."),
1897 _("\
c906108c 1898$cwd in the path means the current working directory.\n\
99e7ae30
DE
1899$cdir in the path means the compilation directory of the source file.\n\
1900GDB ensures the search path always ends with $cdir:$cwd by\n\
1901appending these directories if necessary.\n\
1902Setting the value to an empty string sets it to $cdir:$cwd, the default."),
1903 set_directories_command,
1904 show_directories_command,
1905 &setlist, &showlist);
c906108c
SS
1906
1907 if (xdb_commands)
1908 {
c5aa993b 1909 add_com_alias ("D", "directory", class_files, 0);
99e7ae30 1910 add_cmd ("ld", no_class, show_directories_1, _("\
1a966eab 1911Current search path for finding source files.\n\
c906108c 1912$cwd in the path means the current working directory.\n\
1a966eab 1913$cdir in the path means the compilation directory of the source file."),
c5aa993b 1914 &cmdlist);
c906108c
SS
1915 }
1916
1917 add_info ("source", source_info,
1bedd215 1918 _("Information about the current source file."));
c906108c 1919
1bedd215
AC
1920 add_info ("line", line_info, _("\
1921Core addresses of the code for a source line.\n\
c906108c
SS
1922Line can be specified as\n\
1923 LINENUM, to list around that line in current file,\n\
1924 FILE:LINENUM, to list around that line in that file,\n\
1925 FUNCTION, to list around beginning of that function,\n\
1926 FILE:FUNCTION, to distinguish among like-named static functions.\n\
c906108c
SS
1927Default is to describe the last source line that was listed.\n\n\
1928This sets the default address for \"x\" to the line's first instruction\n\
1929so that \"x/i\" suffices to start examining the machine code.\n\
1bedd215 1930The address is also stored as the value of \"$_\"."));
c906108c 1931
1bedd215
AC
1932 add_com ("forward-search", class_files, forward_search_command, _("\
1933Search for regular expression (see regex(3)) from last line listed.\n\
1934The matching line number is also stored as the value of \"$_\"."));
c906108c
SS
1935 add_com_alias ("search", "forward-search", class_files, 0);
1936
1bedd215
AC
1937 add_com ("reverse-search", class_files, reverse_search_command, _("\
1938Search backward for regular expression (see regex(3)) from last line listed.\n\
1939The matching line number is also stored as the value of \"$_\"."));
dd304d53 1940 add_com_alias ("rev", "reverse-search", class_files, 1);
c906108c
SS
1941
1942 if (xdb_commands)
1943 {
c5aa993b
JM
1944 add_com_alias ("/", "forward-search", class_files, 0);
1945 add_com_alias ("?", "reverse-search", class_files, 0);
c906108c
SS
1946 }
1947
bd4109fb 1948 add_setshow_integer_cmd ("listsize", class_support, &lines_to_list, _("\
35096d9d
AC
1949Set number of source lines gdb will list by default."), _("\
1950Show number of source lines gdb will list by default."), NULL,
1951 NULL,
920d2a44 1952 show_lines_to_list,
35096d9d 1953 &setlist, &showlist);
2f61ca93
JB
1954
1955 add_cmd ("substitute-path", class_files, set_substitute_path_command,
1956 _("\
7ef2b397
JB
1957Usage: set substitute-path FROM TO\n\
1958Add a substitution rule replacing FROM into TO in source file names.\n\
1959If a substitution rule was previously set for FROM, the old rule\n\
1960is replaced by the new one."),
1961 &setlist);
2f61ca93
JB
1962
1963 add_cmd ("substitute-path", class_files, unset_substitute_path_command,
1964 _("\
7ef2b397
JB
1965Usage: unset substitute-path [FROM]\n\
1966Delete the rule for substituting FROM in source file names. If FROM\n\
1967is not specified, all substituting rules are deleted.\n\
1968If the debugger cannot find a rule for FROM, it will display a warning."),
2f61ca93
JB
1969 &unsetlist);
1970
1971 add_cmd ("substitute-path", class_files, show_substitute_path_command,
7ef2b397
JB
1972 _("\
1973Usage: show substitute-path [FROM]\n\
1974Print the rule for substituting FROM in source file names. If FROM\n\
1975is not specified, print all substitution rules."),
2f61ca93 1976 &showlist);
c906108c 1977}
This page took 1.262564 seconds and 4 git commands to generate.