summaryrefslogtreecommitdiff
path: root/usr.bin/make
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2000-09-14 13:43:32 +0000
committerMarc Espie <espie@cvs.openbsd.org>2000-09-14 13:43:32 +0000
commitc4465c8c2691ab013c83c9c05cb5c22c8131bcf7 (patch)
tree85f30d79a92b6c15a652ccb192883b37e8f4dbce /usr.bin/make
parentfb69cad801d15905ce6c6dbbca475698712adb3d (diff)
- new DirReadDir internal function, that just reads a directory from
the disk or from a cache. - use it in Dir_AddDir, and directly to set up dot. - change Dir_AddDir to use string intervals, as this simplifies dependend functions. - set up an open-hashing cache for opened directory names. - add_dirpath() function in main, to simplify code. - simplify cleaning-up directories, as Dir_ClearPath is overkill.
Diffstat (limited to 'usr.bin/make')
-rw-r--r--usr.bin/make/dir.c230
-rw-r--r--usr.bin/make/dir.h14
-rw-r--r--usr.bin/make/main.c62
-rw-r--r--usr.bin/make/parse.c8
4 files changed, 142 insertions, 172 deletions
diff --git a/usr.bin/make/dir.c b/usr.bin/make/dir.c
index b19c5578a34..138dc794838 100644
--- a/usr.bin/make/dir.c
+++ b/usr.bin/make/dir.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dir.c,v 1.24 2000/09/14 13:32:06 espie Exp $ */
+/* $OpenBSD: dir.c,v 1.25 2000/09/14 13:43:30 espie Exp $ */
/* $NetBSD: dir.c,v 1.14 1997/03/29 16:51:26 christos Exp $ */
/*
@@ -82,12 +82,14 @@
* Dir_PrintDirectories Print stats about the directory cache.
*/
+#include <stddef.h>
#include <stdio.h>
#include <sys/types.h>
#include <dirent.h>
#include <sys/stat.h>
#include "make.h"
#include "hash.h"
+#include "ohash.h"
#include "dir.h"
#ifndef lint
@@ -95,7 +97,7 @@
static char sccsid[] = "@(#)dir.c 8.2 (Berkeley) 1/2/94";
#else
UNUSED
-static char rcsid[] = "$OpenBSD: dir.c,v 1.24 2000/09/14 13:32:06 espie Exp $";
+static char rcsid[] = "$OpenBSD: dir.c,v 1.25 2000/09/14 13:43:30 espie Exp $";
#endif
#endif /* not lint */
@@ -109,8 +111,7 @@ static char rcsid[] = "$OpenBSD: dir.c,v 1.24 2000/09/14 13:32:06 espie Exp $";
* hampers the style of some makefiles, they must be changed.
*
* A list of all previously-read directories is kept in the
- * openDirectories Lst. This list is checked first before a directory
- * is opened.
+ * openDirectories cache.
*
* The need for the caching of whole directories is brought about by
* the multi-level transformation code in suff.c, which tends to search
@@ -171,7 +172,7 @@ static char rcsid[] = "$OpenBSD: dir.c,v 1.24 2000/09/14 13:32:06 espie Exp $";
LIST dirSearchPath; /* main search path */
-static LIST openDirectories; /* the list of all open directories */
+static struct hash openDirectories; /* cache all open directories */
/*
* Variables for gathering statistics on the efficiency of the hashing
@@ -193,8 +194,10 @@ static Hash_Table mtimes; /* Results of doing a last-resort stat in
* be two rules to update a single file, so this
* should be ok, but... */
+static struct hash_info dir_info = { offsetof(Path, name),
+ NULL, hash_alloc, hash_free, element_alloc };
-static int DirFindName __P((void *, void *));
+static Path *DirReaddir __P((const char *, const char *));
static int DirMatchFiles __P((char *, Path *, Lst));
static void DirExpandCurly __P((char *, char *, Lst, Lst));
static void DirExpandInt __P((char *, Lst, Lst));
@@ -217,23 +220,14 @@ void
Dir_Init()
{
Lst_Init(&dirSearchPath);
- Lst_Init(&openDirectories);
+ hash_init(&openDirectories, 4, &dir_info);
Hash_InitTable(&mtimes, 0);
- /*
- * Since the Path structure is placed on both openDirectories and
- * the path we give Dir_AddDir (which in this case is openDirectories),
- * we need to remove "." from openDirectories and what better time to
- * do it than when we have to fetch the thing anyway?
- */
- Dir_AddDir(&openDirectories, ".");
- dot = (Path *)Lst_DeQueue(&openDirectories);
+ dot = DirReaddir(".", NULL);
- /*
- * We always need to have dot around, so we increment its reference count
- * to make sure it's not destroyed.
- */
- dot->refCount += 1;
+ /* We always need to have dot around, so we increment its reference count
+ * to make sure it's not destroyed. */
+ dot->refCount++;
}
/*-
@@ -252,40 +246,22 @@ void
Dir_End()
{
#ifdef CLEANUP
- dot->refCount -= 1;
+ struct Path *p;
+ unsigned int i;
+
+ dot->refCount--;
Dir_Destroy(dot);
- Dir_ClearPath(&dirSearchPath);
- Lst_Destroy(&dirSearchPath, NOFREE);
- Dir_ClearPath(&openDirectories);
- Lst_Destroy(&openDirectories, NOFREE);
+ Lst_Destroy(&dirSearchPath, Dir_Destroy);
+ for (p = hash_first(&openDirectories, &i); p != NULL;
+ p = hash_next(&openDirectories, &i))
+ Dir_Destroy(p);
+ hash_delete(&openDirectories);
Hash_DeleteTable(&mtimes);
#endif
}
/*-
*-----------------------------------------------------------------------
- * DirFindName --
- * See if the Path structure describes the same directory as the
- * given one by comparing their names. Called from Dir_AddDir via
- * Lst_Find when searching the list of open directories.
- *
- * Results:
- * 0 if it is the same. Non-zero otherwise
- *
- * Side Effects:
- * None
- *-----------------------------------------------------------------------
- */
-static int
-DirFindName (p, dname)
- void *p; /* Current name */
- void *dname; /* Desired name */
-{
- return strcmp(((Path *)p)->name, (char *)dname);
-}
-
-/*-
- *-----------------------------------------------------------------------
* Dir_HasWildcards --
* see if the given name has any wildcard characters in it
* be careful not to expand unmatching brackets or braces.
@@ -620,7 +596,7 @@ Dir_Expand (word, path, expansions)
if (*dp == '/')
*dp = '\0';
Lst_Init(&temp);
- Dir_AddDir(&temp, dirpath);
+ Dir_AddDir(&temp, dirpath, NULL);
DirExpandInt(cp+1, &temp, expansions);
Lst_Destroy(&temp, NOFREE);
}
@@ -836,10 +812,8 @@ Dir_FindFile (name, path)
* again in such a manner, we will find it without having to do
* numerous numbers of access calls. Hurrah!
*/
- cp = strrchr (file, '/');
- *cp = '\0';
- Dir_AddDir (path, file);
- *cp = '/';
+ cp = strrchr(file, '/');
+ Dir_AddDir(path, file, cp);
/*
* Save the modification time so if it's needed, we don't have
@@ -895,9 +869,7 @@ Dir_FindFile (name, path)
* b/c we added it here. This is not good...
*/
#ifdef notdef
- cp[-1] = '\0';
- Dir_AddDir (path, name);
- cp[-1] = '/';
+ Dir_AddDir(path, name, cp-1);
bigmisses += 1;
ln = Lst_Last(path);
@@ -1015,6 +987,57 @@ Dir_MTime(gn)
return exists;
}
+/* Read a directory, either from the disk, or from the cache. */
+static Path *
+DirReaddir(name, end)
+ const char *name;
+ const char *end;
+{
+ Path *p; /* pointer to new Path structure */
+ DIR *d; /* for reading directory */
+ struct dirent *dp; /* entry in directory */
+ unsigned int slot;
+
+ slot = hash_qlookupi(&openDirectories, name, &end);
+ p = hash_find(&openDirectories, slot);
+
+ if (p != NULL)
+ return p;
+
+ p = hash_create_entry(&dir_info, name, &end);
+ p->hits = 0;
+ p->refCount = 0;
+ Hash_InitTable(&p->files, -1);
+
+ if (DEBUG(DIR)) {
+ printf("Caching %s...", p->name);
+ fflush(stdout);
+ }
+
+ if ((d = opendir(p->name)) == NULL)
+ return NULL;
+ /* Skip the first two entries -- these will *always* be . and .. */
+ (void)readdir(d);
+ (void)readdir(d);
+
+ while ((dp = readdir(d)) != NULL) {
+#if defined(sun) && defined(d_ino) /* d_ino is a sunos4 #define for d_fileno */
+ /* The sun directory library doesn't check for a 0 inode
+ * (0-inode slots just take up space), so we have to do
+ * it ourselves. */
+ if (dp->d_fileno == 0)
+ continue;
+#endif /* sun && d_ino */
+ (void)Hash_CreateEntry(&p->files, dp->d_name, (Boolean *)NULL);
+ }
+ (void)closedir(d);
+ if (DEBUG(DIR))
+ printf("done\n");
+
+ hash_insert(&openDirectories, slot, p);
+ return p;
+}
+
/*-
*-----------------------------------------------------------------------
* Dir_AddDir --
@@ -1022,72 +1045,30 @@ Dir_MTime(gn)
* the arguments is backwards so ParseDoDependency can do a
* Lst_ForEach of its list of paths...
*
- * Results:
- * none
- *
* Side Effects:
* A structure is added to the list and the directory is
* read and hashed.
*-----------------------------------------------------------------------
*/
void
-Dir_AddDir (path, name)
- Lst path; /* the path to which the directory should be
- * added */
- char *name; /* the name of the directory to add */
+Dir_AddDir(path, name, end)
+ Lst path; /* the path to which the directory should be
+ * added */
+ const char *name; /* the name of the directory to add */
+ const char *end;
{
- LstNode ln; /* node in case Path structure is found */
- register Path *p; /* pointer to new Path structure */
- DIR *d; /* for reading directory */
- register struct dirent *dp; /* entry in directory */
-
- ln = Lst_Find(&openDirectories, DirFindName, name);
- if (ln != NULL) {
- p = (Path *)Lst_Datum(ln);
- if (Lst_Member(path, p) == NULL) {
- p->refCount += 1;
- Lst_AtEnd(path, p);
- }
- } else {
- if (DEBUG(DIR)) {
- printf("Caching %s...", name);
- fflush(stdout);
- }
-
- if ((d = opendir (name)) != (DIR *) NULL) {
- p = (Path *) emalloc (sizeof (Path));
- p->name = estrdup (name);
- p->hits = 0;
- p->refCount = 1;
- Hash_InitTable (&p->files, -1);
-
- /*
- * Skip the first two entries -- these will *always* be . and ..
- */
- (void)readdir(d);
- (void)readdir(d);
-
- while ((dp = readdir (d)) != (struct dirent *) NULL) {
-#if defined(sun) && defined(d_ino) /* d_ino is a sunos4 #define for d_fileno */
- /*
- * The sun directory library doesn't check for a 0 inode
- * (0-inode slots just take up space), so we have to do
- * it ourselves.
- */
- if (dp->d_fileno == 0) {
- continue;
- }
-#endif /* sun && d_ino */
- (void)Hash_CreateEntry(&p->files, dp->d_name, (Boolean *)NULL);
- }
- (void) closedir (d);
- Lst_AtEnd(&openDirectories, p);
- Lst_AtEnd(path, p);
- }
- if (DEBUG(DIR)) {
- printf("done\n");
- }
- }
+ Path *p; /* pointer to new Path structure */
+
+ p = DirReaddir(name, end);
+ if (p == NULL)
+ return;
+ if (p->refCount == 0)
+ Lst_AtEnd(path, p);
+ else if (Lst_Member(path, p) != NULL)
+ return;
+ else
+ Lst_AtEnd(path, p);
+ p->refCount++;
}
/*-
@@ -1169,16 +1150,10 @@ Dir_Destroy (pp)
void *pp; /* The directory descriptor to nuke */
{
Path *p = (Path *) pp;
- p->refCount -= 1;
-
- if (p->refCount == 0) {
- LstNode ln;
-
- ln = Lst_Member(&openDirectories, p);
- Lst_Remove(&openDirectories, ln);
+ if (--p->refCount == 0) {
+ hash_remove(&openDirectories, hash_qlookup(&openDirectories, p->name));
Hash_DeleteTable (&p->files);
- free(p->name);
free(p);
}
}
@@ -1242,8 +1217,8 @@ Dir_Concat(path1, path2)
void
Dir_PrintDirectories()
{
- LstNode ln;
Path *p;
+ unsigned int i;
printf ("#*** Directory Cache:\n");
printf ("# Stats: %d hits %d misses %d near misses %d losers (%d%%)\n",
@@ -1251,12 +1226,9 @@ Dir_PrintDirectories()
(hits+bigmisses+nearmisses ?
hits * 100 / (hits + bigmisses + nearmisses) : 0));
printf ("# %-20s referenced\thits\n", "directory");
- Lst_Open(&openDirectories);
- while ((ln = Lst_Next(&openDirectories)) != NULL) {
- p = (Path *)Lst_Datum(ln);
- printf("# %-20s %10d\t%4d\n", p->name, p->refCount, p->hits);
- }
- Lst_Close(&openDirectories);
+ for (p = hash_first(&openDirectories, &i); p != NULL;
+ p = hash_next(&openDirectories, &i))
+ printf("# %-20s %10d\t%4d\n", p->name, p->refCount, p->hits);
}
static void
diff --git a/usr.bin/make/dir.h b/usr.bin/make/dir.h
index a53ab24faaf..bc563fe76d7 100644
--- a/usr.bin/make/dir.h
+++ b/usr.bin/make/dir.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: dir.h,v 1.7 2000/09/14 13:32:06 espie Exp $ */
+/* $OpenBSD: dir.h,v 1.8 2000/09/14 13:43:31 espie Exp $ */
/* $NetBSD: dir.h,v 1.4 1996/11/06 17:59:05 christos Exp $ */
/*
@@ -47,12 +47,12 @@
#ifndef _DIR
#define _DIR
-typedef struct Path {
- char *name; /* Name of directory */
- int refCount; /* Number of paths with this directory */
- int hits; /* the number of times a file in this
+typedef struct Path_ {
+ int refCount; /* Number of paths with this directory */
+ int hits; /* the number of times a file in this
* directory has been found */
- Hash_Table files; /* Hash table of files in directory */
+ Hash_Table files; /* Hash table of files in directory */
+ char name[1]; /* Name of directory */
} Path;
extern void Dir_Init __P((void));
@@ -61,7 +61,7 @@ extern Boolean Dir_HasWildcards __P((char *));
extern void Dir_Expand __P((char *, Lst, Lst));
extern char *Dir_FindFile __P((char *, Lst));
extern Boolean Dir_MTime __P((GNode *));
-extern void Dir_AddDir __P((Lst, char *));
+extern void Dir_AddDir __P((Lst, const char *, const char *));
extern char *Dir_MakeFlags __P((char *, Lst));
extern void Dir_ClearPath __P((Lst));
extern void Dir_Concat __P((Lst, Lst));
diff --git a/usr.bin/make/main.c b/usr.bin/make/main.c
index 109108093d1..fb0b9d9dd45 100644
--- a/usr.bin/make/main.c
+++ b/usr.bin/make/main.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: main.c,v 1.41 2000/09/14 13:32:07 espie Exp $ */
+/* $OpenBSD: main.c,v 1.42 2000/09/14 13:43:31 espie Exp $ */
/* $NetBSD: main.c,v 1.34 1997/03/24 20:56:36 gwr Exp $ */
/*
@@ -104,7 +104,7 @@ static char copyright[] =
static char sccsid[] = "@(#)main.c 8.3 (Berkeley) 3/19/94";
#else
UNUSED
-static char rcsid[] = "$OpenBSD: main.c,v 1.41 2000/09/14 13:32:07 espie Exp $";
+static char rcsid[] = "$OpenBSD: main.c,v 1.42 2000/09/14 13:43:31 espie Exp $";
#endif
#endif /* not lint */
@@ -142,6 +142,7 @@ static Boolean jobsRunning; /* TRUE if the jobs might be running */
static void MainParseArgs __P((int, char **));
char * chdir_verify_path __P((char *, char *));
static int ReadMakefile __P((void *, void *));
+static void add_dirpath __P((Lst, const char *));
static void usage __P((void));
static void posixParseOptLetter __P((char));
int main __P((int, char **));
@@ -347,7 +348,7 @@ rearg: while((c = getopt(argc, argv, OPTFLAGS)) != -1) {
break;
}
case 'm':
- Dir_AddDir(&sysIncPath, optarg);
+ Dir_AddDir(&sysIncPath, optarg, NULL);
Var_Append(MAKEFLAGS, "-m", VAR_GLOBAL);
Var_Append(MAKEFLAGS, optarg, VAR_GLOBAL);
break;
@@ -473,6 +474,26 @@ chdir_verify_path(path, obpath)
return 0;
}
+/* Add a :-separated path to a Lst of directories. */
+static void
+add_dirpath(l, n)
+ Lst l;
+ const char *n;
+{
+ const char *start;
+ const char *cp;
+
+ for (start = n;;) {
+ for (cp = start; *cp != '\0' && *cp != ':';)
+ cp++;
+ Dir_AddDir(l, start, cp);
+ if (*cp == '\0')
+ break;
+ else
+ start= cp+1;
+ }
+}
+
/*-
* main --
@@ -505,7 +526,6 @@ main(argc, argv)
char cdpath[MAXPATHLEN + 1];
char *machine = getenv("MACHINE");
char *machine_arch = getenv("MACHINE_ARCH");
- char *cp = NULL, *start;
/* avoid faults on read-only strings */
static char syspath[] = _PATH_DEFSYSPATH;
@@ -652,7 +672,7 @@ main(argc, argv)
Var_Init(); /* As well as the lists of variables for
* parsing arguments */
if (objdir != curdir)
- Dir_AddDir(&dirSearchPath, curdir);
+ Dir_AddDir(&dirSearchPath, curdir, NULL);
Var_Set(".CURDIR", curdir, VAR_GLOBAL);
Var_Set(".OBJDIR", objdir, VAR_GLOBAL);
@@ -719,18 +739,8 @@ main(argc, argv)
* add the directories from the DEFSYSPATH (more than one may be given
* as dir1:...:dirn) to the system include path.
*/
- if (Lst_IsEmpty(&sysIncPath)) {
- for (start = syspath; *start != '\0'; start = cp) {
- for (cp = start; *cp != '\0' && *cp != ':'; cp++)
- continue;
- if (*cp == '\0') {
- Dir_AddDir(&sysIncPath, start);
- } else {
- *cp++ = '\0';
- Dir_AddDir(&sysIncPath, start);
- }
- }
- }
+ if (Lst_IsEmpty(&sysIncPath))
+ add_dirpath(&sysIncPath, syspath);
/*
* Read in the built-in rules first, followed by the specified
@@ -782,7 +792,7 @@ main(argc, argv)
* <directory>:<directory>:<directory>...
*/
if (Var_Exists("VPATH", VAR_CMD)) {
- char *vpath, *path, *cp, savec;
+ char *vpath;
/*
* GCC stores string constants in read-only memory, but
* Var_Subst will want to write this thing, so store it
@@ -791,20 +801,8 @@ main(argc, argv)
static char VPATH[] = "${VPATH}";
vpath = Var_Subst(VPATH, (SymTable *)VAR_CMD, FALSE);
- path = vpath;
- do {
- /* skip to end of directory */
- for (cp = path; *cp != ':' && *cp != '\0'; cp++)
- continue;
- /* Save terminator character so know when to stop */
- savec = *cp;
- *cp = '\0';
- /* Add directory to search path */
- Dir_AddDir(&dirSearchPath, path);
- *cp = savec;
- path = cp + 1;
- } while (savec == ':');
- free(vpath);
+ add_dirpath(&dirSearchPath, vpath);
+ (void)free(vpath);
}
/*
diff --git a/usr.bin/make/parse.c b/usr.bin/make/parse.c
index b68f85b013b..32e6813667a 100644
--- a/usr.bin/make/parse.c
+++ b/usr.bin/make/parse.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.c,v 1.55 2000/09/14 13:40:03 espie Exp $ */
+/* $OpenBSD: parse.c,v 1.56 2000/09/14 13:43:31 espie Exp $ */
/* $NetBSD: parse.c,v 1.29 1997/03/10 21:20:04 christos Exp $ */
/*
@@ -102,7 +102,7 @@
static char sccsid[] = "@(#)parse.c 8.3 (Berkeley) 3/19/94";
#else
UNUSED
-static char rcsid[] = "$OpenBSD: parse.c,v 1.55 2000/09/14 13:40:03 espie Exp $";
+static char rcsid[] = "$OpenBSD: parse.c,v 1.56 2000/09/14 13:43:31 espie Exp $";
#endif
#endif /* not lint */
@@ -571,7 +571,7 @@ ParseAddDir(path, name)
void *path;
void *name;
{
- Dir_AddDir((Lst)path, (char *)name);
+ Dir_AddDir((Lst)path, (char *)name, NULL);
}
/*-
@@ -1467,7 +1467,7 @@ void
Parse_AddIncludeDir(dir)
char *dir; /* The name of the directory to add */
{
- Dir_AddDir(&parseIncPath, dir);
+ Dir_AddDir(&parseIncPath, dir, NULL);
}
/*-