blob: 9641b7628b4de60b8d476f5329334b6dc6a10144 [file] [log] [blame]
David Gibsona4da2e32007-12-18 15:06:42 +11001/*
2 * Copyright 2007 Jon Loeliger, Freescale Semiconductor, Inc.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17 * USA
18 */
19
20#include "dtc.h"
21#include "srcpos.h"
22
David Gibsona4da2e32007-12-18 15:06:42 +110023/*
24 * Like yylineno, this is the current open file pos.
25 */
26
David Gibsoned95d742008-08-07 12:24:17 +100027struct dtc_file *srcpos_file;
David Gibsona4da2e32007-12-18 15:06:42 +110028
David Gibsoned95d742008-08-07 12:24:17 +100029static int dtc_open_one(struct dtc_file *file,
30 const char *search,
31 const char *fname)
David Gibsona4da2e32007-12-18 15:06:42 +110032{
David Gibsoned95d742008-08-07 12:24:17 +100033 char *fullname;
David Gibsona4da2e32007-12-18 15:06:42 +110034
David Gibsoned95d742008-08-07 12:24:17 +100035 if (search) {
36 fullname = xmalloc(strlen(search) + strlen(fname) + 2);
David Gibsona4da2e32007-12-18 15:06:42 +110037
David Gibsoned95d742008-08-07 12:24:17 +100038 strcpy(fullname, search);
39 strcat(fullname, "/");
40 strcat(fullname, fname);
41 } else {
42 fullname = strdup(fname);
43 }
David Gibsona4da2e32007-12-18 15:06:42 +110044
David Gibsoned95d742008-08-07 12:24:17 +100045 file->file = fopen(fullname, "r");
46 if (!file->file) {
47 free(fullname);
48 return 0;
49 }
David Gibsona4da2e32007-12-18 15:06:42 +110050
David Gibsoned95d742008-08-07 12:24:17 +100051 file->name = fullname;
52 return 1;
David Gibsona4da2e32007-12-18 15:06:42 +110053}
54
55
David Gibsoned95d742008-08-07 12:24:17 +100056struct dtc_file *dtc_open_file(const char *fname,
57 const struct search_path *search)
David Gibsona4da2e32007-12-18 15:06:42 +110058{
David Gibsoned95d742008-08-07 12:24:17 +100059 static const struct search_path default_search = { NULL, NULL, NULL };
David Gibsona4da2e32007-12-18 15:06:42 +110060
David Gibsoned95d742008-08-07 12:24:17 +100061 struct dtc_file *file;
62 const char *slash;
63
64 file = xmalloc(sizeof(struct dtc_file));
65
66 slash = strrchr(fname, '/');
67 if (slash) {
68 char *dir = xmalloc(slash - fname + 1);
69
70 memcpy(dir, fname, slash - fname);
71 dir[slash - fname] = 0;
72 file->dir = dir;
73 } else {
74 file->dir = NULL;
David Gibsona4da2e32007-12-18 15:06:42 +110075 }
76
David Gibsoned95d742008-08-07 12:24:17 +100077 if (streq(fname, "-")) {
78 file->name = "stdin";
79 file->file = stdin;
80 return file;
David Gibsona4da2e32007-12-18 15:06:42 +110081 }
82
David Gibsoned95d742008-08-07 12:24:17 +100083 if (fname[0] == '/') {
84 file->file = fopen(fname, "r");
85 if (!file->file)
86 goto fail;
87
88 file->name = strdup(fname);
89 return file;
90 }
91
92 if (!search)
93 search = &default_search;
94
95 while (search) {
96 if (dtc_open_one(file, search->dir, fname))
97 return file;
98
99 if (errno != ENOENT)
100 goto fail;
101
102 search = search->next;
103 }
104
105fail:
106 die("Couldn't open \"%s\": %s\n", fname, strerror(errno));
David Gibsona4da2e32007-12-18 15:06:42 +1100107}
108
David Gibsoned95d742008-08-07 12:24:17 +1000109void dtc_close_file(struct dtc_file *file)
David Gibsona4da2e32007-12-18 15:06:42 +1100110{
David Gibsoned95d742008-08-07 12:24:17 +1000111 if (fclose(file->file))
112 die("Error closing \"%s\": %s\n", file->name, strerror(errno));
David Gibsona4da2e32007-12-18 15:06:42 +1100113
David Gibsoned95d742008-08-07 12:24:17 +1000114 free(file->dir);
115 free(file);
David Gibsona4da2e32007-12-18 15:06:42 +1100116}