New C program to replace old "mkdep" script. Speeds up "make depend"
by at least 5 percent.
This commit is contained in:
parent
d7ec8ee3a8
commit
c0f4850d5c
|
@ -0,0 +1,245 @@
|
|||
/* $NetBSD: mkdep.c,v 1.1.1.1 1999/01/25 22:10:42 tron Exp $ */
|
||||
|
||||
/*-
|
||||
* Copyright (c) 1999 The NetBSD Foundation, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to The NetBSD Foundation
|
||||
* by Matthias Scheler.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. 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.
|
||||
* 3. All advertising materials mentioning features or use of this software
|
||||
* must display the following acknowledgement:
|
||||
* This product includes software developed by the NetBSD
|
||||
* Foundation, Inc. and its contributors.
|
||||
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
||||
* contributors may be used to endorse or promote products derived
|
||||
* from this software without specific prior written permission.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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 <sys/cdefs.h>
|
||||
#ifndef lint
|
||||
__COPYRIGHT("@(#) Copyright (c) 1999 The NetBSD Foundation, Inc.\n\
|
||||
All rights reserved.\n");
|
||||
#endif /* not lint */
|
||||
|
||||
#ifndef lint
|
||||
__RCSID("$NetBSD: mkdep.c,v 1.1.1.1 1999/01/25 22:10:42 tron Exp $");
|
||||
#endif /* not lint */
|
||||
|
||||
#include <sys/param.h>
|
||||
#include <sys/wait.h>
|
||||
|
||||
#include <ctype.h>
|
||||
#include <err.h>
|
||||
#include <locale.h>
|
||||
#include <paths.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#define DEFAULT_CC "cc"
|
||||
#define DEFAULT_PATH _PATH_DEFPATH
|
||||
#define DEFAULT_FILENAME ".depend"
|
||||
|
||||
void usage __P((void));
|
||||
char *findcc __P((const char *));
|
||||
int main __P((int, char **));
|
||||
|
||||
void
|
||||
usage()
|
||||
{
|
||||
(void)fprintf(stderr,
|
||||
"usage: mkdep [-a] [-p] [-f file ...] flags file ...\n");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
char *
|
||||
findcc(progname)
|
||||
const char *progname;
|
||||
{
|
||||
char *path, *dir, *next;
|
||||
char buffer[MAXPATHLEN];
|
||||
|
||||
if (strchr(progname, '/') != NULL)
|
||||
return access(progname, X_OK) ? NULL : strdup(progname);
|
||||
|
||||
if (((path = getenv("PATH")) == NULL) ||
|
||||
((path = strdup(path)) == NULL))
|
||||
return NULL;
|
||||
|
||||
dir = path;
|
||||
while (dir != NULL) {
|
||||
if ((next = strchr(dir, ':')) != NULL)
|
||||
*next++ = '\0';
|
||||
|
||||
if (snprintf(buffer, sizeof(buffer),
|
||||
"%s/%s", dir, progname) < sizeof(buffer)) {
|
||||
if (!access(buffer, X_OK)) {
|
||||
free(path);
|
||||
return strdup(buffer);
|
||||
}
|
||||
}
|
||||
dir = next;
|
||||
}
|
||||
|
||||
free(path);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int
|
||||
main(argc, argv)
|
||||
int argc;
|
||||
char **argv;
|
||||
{
|
||||
int aflag, pflag, index, tmpfd, status;
|
||||
pid_t cpid, pid;
|
||||
char *filename, *CC, *pathname, tmpfilename[MAXPATHLEN], **args;
|
||||
FILE *tmpfile, *dependfile;
|
||||
char buffer[32768];
|
||||
|
||||
setlocale(LC_ALL, "");
|
||||
|
||||
aflag = 0;
|
||||
pflag = 0;
|
||||
filename = DEFAULT_FILENAME;
|
||||
for (index=1; index< argc; index++)
|
||||
if (strcmp(argv[index], "-a") == 0)
|
||||
aflag = 1;
|
||||
else
|
||||
if (strcmp(argv[index], "-f") == 0) {
|
||||
if (++index < argc)
|
||||
filename = argv[index];
|
||||
}
|
||||
else
|
||||
if (strcmp(argv[index], "-p") == 0)
|
||||
pflag = 1;
|
||||
else
|
||||
break;
|
||||
|
||||
argc -= index;
|
||||
argv += index;
|
||||
if (argc == 0)
|
||||
usage();
|
||||
|
||||
if ((CC = getenv("CC")) == NULL)
|
||||
CC = DEFAULT_CC;
|
||||
if ((pathname = findcc(CC)) == NULL)
|
||||
if (!setenv("PATH", DEFAULT_PATH, 1))
|
||||
pathname = findcc(CC);
|
||||
if (pathname == NULL) {
|
||||
(void)fprintf(stderr, "mkdep: %s: not found\n", CC);
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
if ((args = malloc((argc + 3) * sizeof(char *))) == NULL) {
|
||||
perror("mkdep");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
args[0] = CC;
|
||||
args[1] = "-M";
|
||||
(void)memcpy(&args[2], argv, (argc + 1) * sizeof(char *));
|
||||
|
||||
(void)strcpy(tmpfilename, _PATH_TMP "mkdepXXXXXX");
|
||||
if ((tmpfd = mkstemp (tmpfilename)) < 0) {
|
||||
warn("unable to create temporary file %s", tmpfilename);
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
#ifdef __GNUC__ /* to shut up gcc warnings */
|
||||
(void)&aflag;
|
||||
(void)&pflag;
|
||||
(void)&filename;
|
||||
(void)&pathname;
|
||||
#endif
|
||||
|
||||
switch (cpid = vfork()) {
|
||||
case 0:
|
||||
(void)dup2(tmpfd, STDOUT_FILENO);
|
||||
(void)close(tmpfd);
|
||||
|
||||
(void)execv(pathname, args);
|
||||
_exit(EXIT_FAILURE);
|
||||
|
||||
case -1:
|
||||
(void)fputs("mkdep: unable to fork.\n", stderr);
|
||||
(void)close(tmpfd);
|
||||
(void)unlink(tmpfilename);
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
while (((pid = wait(&status)) != cpid) && (pid >= 0));
|
||||
|
||||
if (status) {
|
||||
(void)fputs("mkdep: compile failed.\n", stderr);
|
||||
(void)close(tmpfd);
|
||||
(void)unlink(tmpfilename);
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
(void)lseek(tmpfd, 0, SEEK_SET);
|
||||
if ((tmpfile = fdopen(tmpfd, "r")) == NULL) {
|
||||
(void)fprintf(stderr,
|
||||
"mkdep: unable to read temporary file %s\n",
|
||||
tmpfilename);
|
||||
(void)close(tmpfd);
|
||||
(void)unlink(tmpfilename);
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
if ((dependfile = fopen(filename, aflag ? "a" : "w")) == NULL) {
|
||||
(void)fprintf(stderr,
|
||||
"mkdep: unable to %s to file %s\n",
|
||||
aflag ? "append" : "write", filename);
|
||||
(void)fclose(tmpfile);
|
||||
(void)unlink(tmpfilename);
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
while (fgets(buffer, sizeof(buffer), tmpfile) != NULL) {
|
||||
char *ptr;
|
||||
|
||||
if (pflag && ((ptr = strstr(buffer, ".o")) != NULL)) {
|
||||
char *colon;
|
||||
|
||||
colon = ptr + 2;
|
||||
while (isspace(*colon)) colon++;
|
||||
if (*colon == ':')
|
||||
(void)strcpy(ptr, colon);
|
||||
}
|
||||
|
||||
ptr = buffer;
|
||||
while (*ptr)
|
||||
if (isspace(*ptr++))
|
||||
if ((ptr[0] == '.') && (ptr[1] == '/'))
|
||||
(void)strcpy(ptr, ptr + 2);
|
||||
|
||||
(void)fputs(buffer, dependfile);
|
||||
}
|
||||
|
||||
(void)fclose(dependfile);
|
||||
(void)fclose(tmpfile);
|
||||
(void)unlink(tmpfilename);
|
||||
|
||||
return EXIT_SUCCESS;
|
||||
}
|
Loading…
Reference in New Issue