summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2008-01-12 13:09:00 +0000
committerMarc Espie <espie@cvs.openbsd.org>2008-01-12 13:09:00 +0000
commita0f943522f15e96ee722b1206a6ca46a5cbebc74 (patch)
treefa20f7a055f61295fbbb56de2b93efd571340198 /usr.bin
parent6213474ecb692248944a72b77eadf3f344f5c54b (diff)
better error reporting/job handling error:
- systematically reorder jobs based on who did output last, so that the last job to output is *first* to output again. - better reaction to errors: any job that outputs is checked for termination directly, and the Error message is printed right afterwards. - better error messages, giving more useful information in -j mode.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/make/error.c6
-rw-r--r--usr.bin/make/job.c133
-rw-r--r--usr.bin/make/job.h5
-rw-r--r--usr.bin/make/lst.h4
-rw-r--r--usr.bin/make/make.c5
5 files changed, 79 insertions, 74 deletions
diff --git a/usr.bin/make/error.c b/usr.bin/make/error.c
index eee710f1a18..a017524c844 100644
--- a/usr.bin/make/error.c
+++ b/usr.bin/make/error.c
@@ -1,5 +1,5 @@
/* $OpenPackages$ */
-/* $OpenBSD: error.c,v 1.15 2007/11/03 10:41:48 espie Exp $ */
+/* $OpenBSD: error.c,v 1.16 2008/01/12 13:08:59 espie Exp $ */
/*
* Copyright (c) 2001 Marc Espie.
@@ -140,9 +140,7 @@ Finish(int errors) /* number of errors encountered in Make_Make */
{
Job_Wait();
if (errors != 0) {
- Error("make pid #%ld: %d error%s in directory %s:", (long)getpid(),
- errors, errors == 1 ? "" : "s",
- Var_Value(".CURDIR"));
+ Error("Stop in %s:", Var_Value(".CURDIR"));
}
print_errors();
if (DEBUG(GRAPH2))
diff --git a/usr.bin/make/job.c b/usr.bin/make/job.c
index 7fe27c1c026..b841397731f 100644
--- a/usr.bin/make/job.c
+++ b/usr.bin/make/job.c
@@ -1,5 +1,5 @@
/* $OpenPackages$ */
-/* $OpenBSD: job.c,v 1.110 2007/12/01 15:14:34 espie Exp $ */
+/* $OpenBSD: job.c,v 1.111 2008/01/12 13:08:59 espie Exp $ */
/* $NetBSD: job.c,v 1.16 1996/11/06 17:59:08 christos Exp $ */
/*
@@ -43,19 +43,6 @@
* Interface:
* Job_Make Start the creation of the given target.
*
- * Job_CatchChildren Check for and handle the termination of any
- * children. This must be called reasonably
- * frequently to keep the whole make going at
- * a decent clip, since job table entries aren't
- * removed until their process is caught this way.
- *
- * Job_CatchOutput Print any output our children have produced.
- * Should also be called fairly frequently to
- * keep the user informed of what's going on.
- * If no output is waiting, it will block for
- * a time given by the SEL_* constants, below,
- * or until output is ready.
- *
* Job_Init Called to initialize this module. in addition,
* any commands attached to the .BEGIN target
* are executed before this function returns.
@@ -159,6 +146,7 @@ typedef struct Job_ {
#define JOB_CONTINUING 0x200 /* We are in the process of resuming this job.
* Used to avoid infinite recursion between
* JobFinish and JobRestart */
+#define JOB_DIDOUTPUT 0x001
struct job_pipe in[2];
} Job;
@@ -189,7 +177,7 @@ static LIST errorsList;
static int errors;
struct error_info {
int status;
- char *name;
+ GNode *n;
};
@@ -246,6 +234,9 @@ static bool print_complete_lines(struct job_pipe *, Job *, FILE *, size_t);
static void prepare_pipe(struct job_pipe *, int *);
static void handle_job_output(Job *, int, bool);
static void register_error(int, Job *);
+static void loop_handle_running_jobs(void);
+static void Job_CatchChildren(void);
+static void Job_CatchOutput(void);
static void
register_error(int status, Job *job)
@@ -255,9 +246,8 @@ register_error(int status, Job *job)
errors++;
p = emalloc(sizeof(struct error_info));
p->status = status;
- p->name = job->node->name;
- if (p)
- Lst_AtEnd(&errorsList, p);
+ p->n = job->node;
+ Lst_AtEnd(&errorsList, p);
}
void
@@ -265,18 +255,26 @@ print_errors()
{
LstNode ln;
struct error_info *p;
+ const char *type;
+ int r;
for (ln = Lst_First(&errorsList); ln != NULL; ln = Lst_Adv(ln)) {
p = (struct error_info *)Lst_Datum(ln);
if (WIFEXITED(p->status)) {
- Error("\tExit status %d in target %s",
- WEXITSTATUS(p->status), p->name);
+ type = "Exit status";
+ r = WEXITSTATUS(p->status);
} else if (WIFSIGNALED(p->status)) {
- Error("\tReceived signal %d in target s",
- WTERMSIG(p->status), p->name);
+ type = "Received signal";
+ r = WTERMSIG(p->status);
} else {
- Error("\tStatus %d in target %s", p->status, p->name);
+ type = "Status";
+ r = p->status;
}
+ if (p->n->lineno)
+ Error(" %s %d (%s, line %lu of %s)",
+ type, r, p->n->name, p->n->lineno, p->n->fname);
+ else
+ Error(" %s %d (%s)", type, r, p->n->name);
}
}
@@ -549,7 +547,7 @@ JobFinish(Job *job, int status)
debug_printf("Process %ld exited.\n", (long)job->pid);
if (WEXITSTATUS(status) != 0) {
banner(job, stdout);
- (void)fprintf(stdout, "*** Error code %d%s\n",
+ (void)fprintf(stdout, "*** Error code %d %s\n",
WEXITSTATUS(status),
(job->node->type & OP_IGNORE) ?
"(ignored)" : "");
@@ -635,8 +633,6 @@ JobFinish(Job *job, int status)
free(job);
}
- JobRestartJobs();
-
/*
* Set aborting if any error.
*/
@@ -650,6 +646,9 @@ JobFinish(Job *job, int status)
aborting = ABORT_ERROR;
}
+ if (aborting != ABORT_ERROR)
+ JobRestartJobs();
+
if (aborting == ABORT_ERROR && Job_Empty()) {
/*
* If we are aborting and the job table is now empty, we finish.
@@ -1027,6 +1026,7 @@ print_partial_buffer(struct job_pipe *p, Job *job, FILE *out, size_t endPos)
size_t i;
banner(job, out);
+ job->flags |= JOB_DIDOUTPUT;
for (i = 0; i < endPos; i++)
putc(p->buffer[i], out);
}
@@ -1062,6 +1062,7 @@ print_complete_lines(struct job_pipe *p, Job *job, FILE *out, size_t limit)
}
return false;
}
+
/*-
*-----------------------------------------------------------------------
* handle_pipe --
@@ -1122,7 +1123,7 @@ handle_job_output(Job *job, int i, bool finish)
/*-
*-----------------------------------------------------------------------
* Job_CatchChildren --
- * Handle the exit of a child. Called from Make_Make.
+ * Handle the exit of a child. Called by handle_running_jobs
*
* Side Effects:
* The job descriptor is removed from the list of children.
@@ -1185,14 +1186,7 @@ Job_CatchChildren()
/*-
*-----------------------------------------------------------------------
* Job_CatchOutput --
- * Catch the output from our children, if we're using
- * pipes do so. Otherwise just block time until we get a
- * signal (most likely a SIGCHLD) since there's no point in
- * just spinning when there's nothing to do and the reaping
- * of a child can wait for a while.
- *
- * Side Effects:
- * Output is read from pipes if we're piping.
+ * Catch the output from our children.
* -----------------------------------------------------------------------
*/
void
@@ -1200,9 +1194,10 @@ Job_CatchOutput(void)
{
int nfds;
struct timeval timeout;
- LstNode ln;
+ LstNode ln, ln2;
Job *job;
int i;
+ int status;
int count = howmany(outputsn+1, NFDBITS) * sizeof(fd_mask);
fd_set *readfdsp = malloc(count);
@@ -1217,21 +1212,45 @@ Job_CatchOutput(void)
nfds = select(outputsn+1, readfdsp, NULL, NULL, &timeout);
handle_all_signals();
- if (nfds > 0) {
- for (ln = Lst_First(&runningJobs); nfds && ln != NULL;
- ln = Lst_Adv(ln)) {
- job = (Job *)Lst_Datum(ln);
- for (i = 0; i < 2; i++) {
- if (FD_ISSET(job->in[i].fd, readfdsp)) {
- handle_job_output(job, i, false);
- nfds--;
- }
+ for (ln = Lst_First(&runningJobs); nfds && ln != NULL;
+ ln = ln2) {
+ ln2 = Lst_Adv(ln);
+ job = (Job *)Lst_Datum(ln);
+ job->flags &= ~JOB_DIDOUTPUT;
+ for (i = 1; i >= 0; i--) {
+ if (FD_ISSET(job->in[i].fd, readfdsp)) {
+ nfds--;
+ handle_job_output(job, i, false);
+ }
+ }
+ if (job->flags & JOB_DIDOUTPUT) {
+ if (wait4(job->pid, &status, WNOHANG|WUNTRACED, NULL) ==
+ job->pid) {
+ Lst_Remove(&runningJobs, ln);
+ nJobs--;
+ jobFull = false;
+ JobFinish(job, status);
+ } else {
+ Lst_Requeue(&runningJobs, ln);
}
}
}
free(readfdsp);
}
+void
+handle_running_jobs()
+{
+ Job_CatchOutput();
+ Job_CatchChildren();
+}
+
+static void
+loop_handle_running_jobs()
+{
+ while (nJobs)
+ handle_running_jobs();
+}
/*-
*-----------------------------------------------------------------------
* Job_Make --
@@ -1275,10 +1294,7 @@ Job_Init(int maxproc)
if ((begin_node->type & OP_DUMMY) == 0) {
JobStart(begin_node, JOB_SPECIAL);
- while (nJobs) {
- Job_CatchOutput();
- Job_CatchChildren();
- }
+ loop_handle_running_jobs();
}
}
@@ -1374,10 +1390,7 @@ JobInterrupt(int runINTERRUPT, /* Non-zero if commands for the .INTERRUPT
ignoreErrors = false;
JobStart(interrupt_node, 0);
- while (nJobs) {
- Job_CatchOutput();
- Job_CatchChildren();
- }
+ loop_handle_running_jobs();
}
}
exit(signo);
@@ -1402,11 +1415,7 @@ Job_Finish(void)
Error("Errors reported so .END ignored");
} else {
JobStart(end_node, JOB_SPECIAL);
-
- while (nJobs) {
- Job_CatchOutput();
- Job_CatchChildren();
- }
+ loop_handle_running_jobs();
}
}
return errors;
@@ -1434,10 +1443,7 @@ void
Job_Wait(void)
{
aborting = ABORT_WAIT;
- while (nJobs != 0) {
- Job_CatchOutput();
- Job_CatchChildren();
- }
+ loop_handle_running_jobs();
aborting = 0;
}
@@ -1498,7 +1504,8 @@ JobRestartJobs(void)
{
Job *job;
- while (!jobFull && (job = (Job *)Lst_DeQueue(&stoppedJobs)) != NULL) {
+ while (!Job_Full() &&
+ (job = (Job *)Lst_DeQueue(&stoppedJobs)) != NULL) {
debug_printf("Job queue is not full. "
"Restarting a stopped job.\n");
JobRestart(job);
diff --git a/usr.bin/make/job.h b/usr.bin/make/job.h
index d93199d0d44..9cd545177d8 100644
--- a/usr.bin/make/job.h
+++ b/usr.bin/make/job.h
@@ -2,7 +2,7 @@
#define _JOB_H_
/* $OpenPackages$ */
-/* $OpenBSD: job.h,v 1.21 2007/11/02 17:27:24 espie Exp $ */
+/* $OpenBSD: job.h,v 1.22 2008/01/12 13:08:59 espie Exp $ */
/* $NetBSD: job.h,v 1.5 1996/11/06 17:59:10 christos Exp $ */
/*
@@ -46,8 +46,6 @@
* Definitions pertaining to the running of jobs in parallel mode.
*/
-extern void Job_CatchChildren(void);
-extern void Job_CatchOutput(void);
extern void Job_Make(GNode *);
extern void Job_Init(int);
extern bool Job_Full(void);
@@ -61,5 +59,6 @@ extern void Job_End(void);
extern void Job_Wait(void);
extern void Job_AbortAll(void);
extern void print_errors(void);
+extern void handle_running_jobs(void);
#endif /* _JOB_H_ */
diff --git a/usr.bin/make/lst.h b/usr.bin/make/lst.h
index 53d8d098310..789b49e3e20 100644
--- a/usr.bin/make/lst.h
+++ b/usr.bin/make/lst.h
@@ -2,7 +2,7 @@
#define _LST_H_
/* $OpenPackages$ */
-/* $OpenBSD: lst.h,v 1.26 2007/01/04 17:55:35 espie Exp $ */
+/* $OpenBSD: lst.h,v 1.27 2008/01/12 13:08:59 espie Exp $ */
/* $NetBSD: lst.h,v 1.7 1996/11/06 17:59:12 christos Exp $ */
/*
@@ -106,6 +106,8 @@ extern void Lst_Replace(LstNode, void *);
extern void Lst_ConcatDestroy(Lst, Lst);
/* Concatenate two lists, non-destructive. */
extern void Lst_Concat(Lst, Lst);
+/* requeue element already in list at front of list */
+extern void Lst_Requeue(Lst, LstNode);
/*
* Node-specific functions
diff --git a/usr.bin/make/make.c b/usr.bin/make/make.c
index 0e669352313..d10e8b07e26 100644
--- a/usr.bin/make/make.c
+++ b/usr.bin/make/make.c
@@ -1,5 +1,5 @@
/* $OpenPackages$ */
-/* $OpenBSD: make.c,v 1.56 2007/12/01 15:14:34 espie Exp $ */
+/* $OpenBSD: make.c,v 1.57 2008/01/12 13:08:59 espie Exp $ */
/* $NetBSD: make.c,v 1.10 1996/11/06 17:59:15 christos Exp $ */
/*
@@ -553,8 +553,7 @@ Make_Run(Lst targs) /* the initial list of targets */
* the keepgoing flag was given.
*/
while (!Job_Empty()) {
- Job_CatchOutput();
- Job_CatchChildren();
+ handle_running_jobs();
(void)MakeStartJobs();
}