-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutput.c
More file actions
232 lines (217 loc) · 6.23 KB
/
output.c
File metadata and controls
232 lines (217 loc) · 6.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/** This is a -*-c-*- file **/
/*
* Copyright (c) 1994-2004 LAAS/CNRS
* Christophe Dousson - Thu Jun 16 1994
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* - Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
#include <errno.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "mkdep.h"
static const char* mkdep_header[] =
{ "#--- DO NOT EDIT BELOW THIS LINE\n",
"#--- These lines were automatically generated by `mkdep'\n"
};
/*
* les cibles remises a jour par la commamde
*/
static deps * targets = NULL;
static FILE * olddeps = NULL;
static char * nametilde = NULL;
static char * namefile = NULL;
FILE * open_output_file(const char* name)
{
FILE * fout;
char line[4096];
size_t len;
if (name == NULL) {
printf ("%s%s\n", mkdep_header[0], mkdep_header[1]);
return stdout;
}
if (access(name, R_OK) == 0) {
/* le fichier existe deja, on cherche l'entete et */
/* on le renomme avec un tilde (oh la bonne idee) */
namefile = (char*) strdup(name);
len = strlen(name)+2;
nametilde = (char*) malloc(len);
snprintf(nametilde, len, "%s~", name);
if (rename(name, nametilde)) {
perror("mkdep"); exit(1);
}
olddeps = fopen(nametilde, "r");
fout = fopen(name, "w");
if (fout == NULL) {
perror("mkdep");
rename(nametilde, name);
free(namefile);
free(nametilde);
exit(1);
}
while (fgets(line, 4096, olddeps)) {
if (strcmp(line, mkdep_header[0]) == 0) {
if (fgets(line, 4096, olddeps) == NULL) break; /* EOF*/
if (strcmp(line, mkdep_header[1]) == 0) {
/* c'est bon, on a trouve le debut */
break;
}
/* c'est pas encore ca */
fprintf(fout, "%s", mkdep_header[0]);
}
fprintf(fout, "%s", line);
}
} else {
/* on cree le nouveau fichier */
namefile = (char*) strdup(name);
nametilde = NULL;
fout = fopen(name, "w");
if (fout == NULL) {
perror("mkdep");
free(namefile);
exit(1);
}
}
fprintf (fout, "%s%s\n", mkdep_header[0], mkdep_header[1]);
return fout;
}
void display_target(FILE * fout,
int compact,
char * file,
const char * directory,
const char * library,
const char * suffix)
{
const char* vpath = find_file(file);
{ /* impression d'un message pour savoir ou on en est */
char buffer[1024];
if (vpath == NULL) {
strlcpy(buffer, file, sizeof(buffer));
} else {
snprintf(buffer, sizeof(buffer), "%s/%s", vpath, file);
}
substitution_filtering(buffer, sizeof(buffer));
fprintf(stderr, "make dependencies for %s...\n", buffer);
}
{ /* parsing des dependances */
FILE * fin = run_preprocessor(file, vpath);
reset_dependencies();
parse_preprocessed_data(fin, vpath);
pclose(fin);
}
{ /* on tronque le suffixe .c, .cc...*/
int pos;
pos = strlen(file);
while (file[pos] != '.' && file[pos] != '/' && pos >= 0) --pos;
if (pos >= 0) {
if (file[pos] == '.') file[pos] = 0;
/* ... ainsi que le chemin d'acces */
while (file[pos] != '/' && pos >= 0) --pos;
if (pos >= 0) {
file += pos + 1;
}
}
}
{ /* on calcule le nom de la ou des cible(s) */
char target[256];
if (library) {
snprintf(target, sizeof(target), "%s(%s.o):", library, file);
targets = new_deps(target, targets);
display_dependencies(fout, compact, target);
}
if (directory) {
snprintf(target, sizeof(target), "%s/%s.%s:", directory,
file,suffix);
targets = new_deps(target, targets);
display_dependencies(fout, compact, target);
}
if ((library == NULL) && (directory == NULL)) {
snprintf(target, sizeof(target), "%s.%s:", file, suffix);
targets = new_deps(target, targets);
display_dependencies(fout, compact, target);
}
}
}
void close_output_file(FILE * fout)
{
if (olddeps != NULL) {
/* on ajoute toutes les cibles non modifiees
* par mkdep (mkdep incremental) */
int len;
char line[4096];
deps * current;
while (fgets(line, 4096, olddeps)) {
if (line[0] != '\n') { /* ligne inutile */
for (len = 0; len < 4096; ++len) {
if (line[len] == ':') { len++; break; }
}
current = targets;
while (current != NULL) {
if (strncmp(line, current->name, len) == 0) {
/* c'est une cible remise a jour */
break;
}
current = current->next;
}
/* on part du principe que les cibles sont separees
par une ligne vide, donc on traite par blocs */
if (current == NULL) {
do {
fprintf(fout, "%s",line);
if (line[0] == '\n') break;
} while (fgets(line, 4096, olddeps));
} else {
while (fgets(line, 4096, olddeps)) {
if (line[0] == '\n') break;
}
}
}
}
}
if (fout != NULL) {
fclose(fout);
}
unlink(nametilde);
free(nametilde);
free(namefile);
}
void interrupt_dependancies(int sig)
{
fprintf(stderr,"mkdep: dependencies interrupted\n");
if (nametilde != NULL) {
/* on recupere l'ancien fichier */
rename(nametilde, namefile);
free(nametilde);
free(namefile);
} else {
/* on efface le fichier en cours de creation */
unlink(namefile);
free(namefile);
}
exit(1);
}