2010-06-16 Vincent Rivire <vincent.riviere@freesbee.fr>
[binutils.git] / gprof / source.c
blob1a445d3315f3427f1114ffe46cff14e6325fd89b
1 /* source.c - Keep track of source files.
3 Copyright 2000, 2001, 2002, 2004, 2007 Free Software Foundation, Inc.
5 This file is part of GNU Binutils.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
20 02110-1301, USA. */
22 #include "gprof.h"
23 #include "libiberty.h"
24 #include "filenames.h"
25 #include "search_list.h"
26 #include "source.h"
28 #define EXT_ANNO "-ann" /* Postfix of annotated files. */
30 /* Default option values. */
31 bfd_boolean create_annotation_files = FALSE;
33 Search_List src_search_list = {0, 0};
34 Source_File *first_src_file = 0;
37 Source_File *
38 source_file_lookup_path (const char *path)
40 Source_File *sf;
42 for (sf = first_src_file; sf; sf = sf->next)
44 if (FILENAME_CMP (path, sf->name) == 0)
45 break;
48 if (!sf)
50 /* Create a new source file descriptor. */
51 sf = (Source_File *) xmalloc (sizeof (*sf));
53 memset (sf, 0, sizeof (*sf));
55 sf->name = xstrdup (path);
56 sf->next = first_src_file;
57 first_src_file = sf;
60 return sf;
64 Source_File *
65 source_file_lookup_name (const char *filename)
67 const char *fname;
68 Source_File *sf;
70 /* The user cannot know exactly how a filename will be stored in
71 the debugging info (e.g., ../include/foo.h
72 vs. /usr/include/foo.h). So we simply compare the filename
73 component of a path only. */
74 for (sf = first_src_file; sf; sf = sf->next)
76 fname = strrchr (sf->name, '/');
78 if (fname)
79 ++fname;
80 else
81 fname = sf->name;
83 if (FILENAME_CMP (filename, fname) == 0)
84 break;
87 return sf;
91 FILE *
92 annotate_source (Source_File *sf, unsigned int max_width,
93 void (*annote) (char *, unsigned int, int, void *),
94 void *arg)
96 static bfd_boolean first_file = TRUE;
97 int i, line_num, nread;
98 bfd_boolean new_line;
99 char buf[8192];
100 char fname[PATH_MAX];
101 char *annotation, *name_only;
102 FILE *ifp, *ofp;
103 Search_List_Elem *sle = src_search_list.head;
105 /* Open input file. If open fails, walk along search-list until
106 open succeeds or reaching end of list. */
107 strcpy (fname, sf->name);
109 if (IS_ABSOLUTE_PATH (sf->name))
110 sle = 0; /* Don't use search list for absolute paths. */
112 name_only = 0;
113 while (TRUE)
115 DBG (SRCDEBUG, printf ("[annotate_source]: looking for %s, trying %s\n",
116 sf->name, fname));
118 ifp = fopen (fname, FOPEN_RB);
119 if (ifp)
120 break;
122 if (!sle && !name_only)
124 name_only = strrchr (sf->name, '/');
125 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
127 char *bslash = strrchr (sf->name, '\\');
128 if (name_only == NULL || (bslash != NULL && bslash > name_only))
129 name_only = bslash;
130 if (name_only == NULL && sf->name[0] != '\0' && sf->name[1] == ':')
131 name_only = (char *)sf->name + 1;
133 #endif
134 if (name_only)
136 /* Try search-list again, but this time with name only. */
137 ++name_only;
138 sle = src_search_list.head;
142 if (sle)
144 strcpy (fname, sle->path);
145 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
146 /* d:foo is not the same thing as d:/foo! */
147 if (fname[strlen (fname) - 1] == ':')
148 strcat (fname, ".");
149 #endif
150 strcat (fname, "/");
152 if (name_only)
153 strcat (fname, name_only);
154 else
155 strcat (fname, sf->name);
157 sle = sle->next;
159 else
161 if (errno == ENOENT)
162 fprintf (stderr, _("%s: could not locate `%s'\n"),
163 whoami, sf->name);
164 else
165 perror (sf->name);
167 return 0;
171 ofp = stdout;
173 if (create_annotation_files)
175 /* Try to create annotated source file. */
176 const char *filename;
178 /* Create annotation files in the current working directory. */
179 filename = strrchr (sf->name, '/');
180 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
182 char *bslash = strrchr (sf->name, '\\');
183 if (filename == NULL || (bslash != NULL && bslash > filename))
184 filename = bslash;
185 if (filename == NULL && sf->name[0] != '\0' && sf->name[1] == ':')
186 filename = sf->name + 1;
188 #endif
189 if (filename)
190 ++filename;
191 else
192 filename = sf->name;
194 strcpy (fname, filename);
195 strcat (fname, EXT_ANNO);
196 #ifdef __MSDOS__
198 /* foo.cpp-ann can overwrite foo.cpp due to silent truncation of
199 file names on 8+3 filesystems. Their `stat' better be good... */
200 struct stat buf1, buf2;
202 if (stat (filename, &buf1) == 0
203 && stat (fname, &buf2) == 0
204 && buf1.st_ino == buf2.st_ino)
206 char *dot = strrchr (fname, '.');
208 if (dot)
209 *dot = '\0';
210 strcat (fname, ".ann");
213 #endif
214 ofp = fopen (fname, "w");
216 if (!ofp)
218 perror (fname);
219 return 0;
223 /* Print file names if output goes to stdout
224 and there are more than one source file. */
225 if (ofp == stdout)
227 if (first_file)
228 first_file = FALSE;
229 else
230 fputc ('\n', ofp);
232 if (first_output)
233 first_output = FALSE;
234 else
235 fprintf (ofp, "\f\n");
237 fprintf (ofp, _("*** File %s:\n"), sf->name);
240 annotation = (char *) xmalloc (max_width + 1);
241 line_num = 1;
242 new_line = TRUE;
244 while ((nread = fread (buf, 1, sizeof (buf), ifp)) > 0)
246 for (i = 0; i < nread; ++i)
248 if (new_line)
250 (*annote) (annotation, max_width, line_num, arg);
251 fputs (annotation, ofp);
252 ++line_num;
253 new_line = FALSE;
256 new_line = (buf[i] == '\n');
257 fputc (buf[i], ofp);
261 free (annotation);
262 return ofp;