2005-02-01 10:50:37 +00:00
|
|
|
/*-
|
2002-04-13 10:57:56 +00:00
|
|
|
* Copyright (c) 1988, 1989, 1990, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1995-01-23 21:03:17 +00:00
|
|
|
* Copyright (c) 1988, 1989 by Adam de Boor
|
1994-05-27 12:33:43 +00:00
|
|
|
* Copyright (c) 1989 by Berkeley Softworks
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Adam de Boor.
|
|
|
|
*
|
|
|
|
* 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 University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University 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 REGENTS 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 REGENTS 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.
|
|
|
|
*
|
2002-04-13 10:57:56 +00:00
|
|
|
* @(#)job.h 8.1 (Berkeley) 6/6/93
|
1999-08-28 01:08:13 +00:00
|
|
|
* $FreeBSD$
|
1994-05-27 12:33:43 +00:00
|
|
|
*/
|
|
|
|
|
2005-02-01 10:50:37 +00:00
|
|
|
#ifndef job_h_4678dfd1
|
|
|
|
#define job_h_4678dfd1
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
/*-
|
|
|
|
* job.h --
|
|
|
|
* Definitions pertaining to the running of jobs in parallel mode.
|
|
|
|
*/
|
2005-02-01 10:50:37 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "sprite.h"
|
|
|
|
|
|
|
|
struct GNode;
|
|
|
|
struct LstNode;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2002-09-17 21:29:06 +00:00
|
|
|
#define TMPPAT "/tmp/makeXXXXXXXXXX"
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2002-10-04 20:30:03 +00:00
|
|
|
#ifndef USE_KQUEUE
|
1994-05-27 12:33:43 +00:00
|
|
|
/*
|
|
|
|
* The SEL_ constants determine the maximum amount of time spent in select
|
|
|
|
* before coming out to see if a child has finished. SEL_SEC is the number of
|
1995-05-30 06:41:30 +00:00
|
|
|
* seconds and SEL_USEC is the number of micro-seconds
|
1994-05-27 12:33:43 +00:00
|
|
|
*/
|
2003-12-19 11:18:37 +00:00
|
|
|
#define SEL_SEC 2
|
|
|
|
#define SEL_USEC 0
|
2002-10-04 20:30:03 +00:00
|
|
|
#endif /* !USE_KQUEUE */
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-02-01 10:50:37 +00:00
|
|
|
/*
|
1995-05-30 06:41:30 +00:00
|
|
|
* Job Table definitions.
|
1994-05-27 12:33:43 +00:00
|
|
|
*
|
|
|
|
* The job "table" is kept as a linked Lst in 'jobs', with the number of
|
|
|
|
* active jobs maintained in the 'nJobs' variable. At no time will this
|
1995-05-30 06:41:30 +00:00
|
|
|
* exceed the value of 'maxJobs', initialized by the Job_Init function.
|
1994-05-27 12:33:43 +00:00
|
|
|
*
|
|
|
|
* When a job is finished, the Make_Update function is called on each of the
|
|
|
|
* parents of the node which was just remade. This takes care of the upward
|
|
|
|
* traversal of the dependency graph.
|
|
|
|
*/
|
2002-09-17 21:29:06 +00:00
|
|
|
#define JOB_BUFSIZE 1024
|
1994-05-27 12:33:43 +00:00
|
|
|
typedef struct Job {
|
2005-02-01 10:50:37 +00:00
|
|
|
int pid; /* The child's process ID */
|
|
|
|
|
|
|
|
/* Temporary file to use for job */
|
|
|
|
char tfile[sizeof(TMPPAT)];
|
|
|
|
|
|
|
|
struct GNode *node; /* The target the child is making */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A LstNode for the first command to be saved after the job completes.
|
|
|
|
* This is NULL if there was no "..." in the job's commands.
|
|
|
|
*/
|
|
|
|
LstNode *tailCmds;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* An FILE* for writing out the commands. This is only
|
|
|
|
* used before the job is actually started.
|
|
|
|
*/
|
|
|
|
FILE *cmdFILE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A word of flags which determine how the module handles errors,
|
|
|
|
* echoing, etc. for the job
|
|
|
|
*/
|
|
|
|
short flags; /* Flags to control treatment of job */
|
1994-05-27 12:33:43 +00:00
|
|
|
#define JOB_IGNERR 0x001 /* Ignore non-zero exits */
|
|
|
|
#define JOB_SILENT 0x002 /* no output */
|
2002-09-17 21:29:06 +00:00
|
|
|
#define JOB_SPECIAL 0x004 /* Target is a special one. i.e. run it locally
|
1994-05-27 12:33:43 +00:00
|
|
|
* if we can't export it and maxLocal is 0 */
|
2002-09-17 21:29:06 +00:00
|
|
|
#define JOB_IGNDOTS 0x008 /* Ignore "..." lines when processing
|
1994-05-27 12:33:43 +00:00
|
|
|
* commands */
|
2002-09-17 21:29:06 +00:00
|
|
|
#define JOB_FIRST 0x020 /* Job is first job for the node */
|
|
|
|
#define JOB_RESTART 0x080 /* Job needs to be completely restarted */
|
|
|
|
#define JOB_RESUME 0x100 /* Job needs to be resumed b/c it stopped,
|
1994-05-27 12:33:43 +00:00
|
|
|
* for some reason */
|
2002-09-17 21:29:06 +00:00
|
|
|
#define JOB_CONTINUING 0x200 /* We are in the process of resuming this job.
|
1994-05-27 12:33:43 +00:00
|
|
|
* Used to avoid infinite recursion between
|
|
|
|
* JobFinish and JobRestart */
|
2005-02-01 10:50:37 +00:00
|
|
|
|
|
|
|
/* union for handling shell's output */
|
|
|
|
union {
|
|
|
|
/*
|
|
|
|
* This part is used when usePipes is true.
|
|
|
|
* The output is being caught via a pipe and the descriptors
|
|
|
|
* of our pipe, an array in which output is line buffered and
|
|
|
|
* the current position in that buffer are all maintained for
|
|
|
|
* each job.
|
|
|
|
*/
|
|
|
|
struct {
|
|
|
|
/*
|
|
|
|
* Input side of pipe associated with
|
|
|
|
* job's output channel
|
|
|
|
*/
|
|
|
|
int op_inPipe;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Output side of pipe associated with job's
|
|
|
|
* output channel
|
|
|
|
*/
|
|
|
|
int op_outPipe;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Buffer for storing the output of the
|
|
|
|
* job, line by line
|
|
|
|
*/
|
|
|
|
char op_outBuf[JOB_BUFSIZE + 1];
|
|
|
|
|
|
|
|
/* Current position in op_outBuf */
|
|
|
|
int op_curPos;
|
|
|
|
} o_pipe;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If usePipes is false the output is routed to a temporary
|
|
|
|
* file and all that is kept is the name of the file and the
|
|
|
|
* descriptor open to the file.
|
|
|
|
*/
|
|
|
|
struct {
|
|
|
|
/* Name of file to which shell output was rerouted */
|
|
|
|
char of_outFile[sizeof(TMPPAT)];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Stream open to the output file. Used to funnel all
|
|
|
|
* from a single job to one file while still allowing
|
|
|
|
* multiple shell invocations
|
|
|
|
*/
|
|
|
|
int of_outFd;
|
|
|
|
} o_file;
|
|
|
|
|
|
|
|
} output; /* Data for tracking a shell's output */
|
1994-05-27 12:33:43 +00:00
|
|
|
} Job;
|
|
|
|
|
2002-09-17 21:29:06 +00:00
|
|
|
#define outPipe output.o_pipe.op_outPipe
|
|
|
|
#define inPipe output.o_pipe.op_inPipe
|
|
|
|
#define outBuf output.o_pipe.op_outBuf
|
|
|
|
#define curPos output.o_pipe.op_curPos
|
|
|
|
#define outFile output.o_file.of_outFile
|
|
|
|
#define outFd output.o_file.of_outFd
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
/*-
|
|
|
|
* Shell Specifications:
|
|
|
|
*
|
|
|
|
* Some special stuff goes on if a shell doesn't have error control. In such
|
|
|
|
* a case, errCheck becomes a printf template for echoing the command,
|
|
|
|
* should echoing be on and ignErr becomes another printf template for
|
|
|
|
* executing the command while ignoring the return status. If either of these
|
|
|
|
* strings is empty when hasErrCtl is FALSE, the command will be executed
|
|
|
|
* anyway as is and if it causes an error, so be it.
|
|
|
|
*/
|
2005-02-01 10:50:37 +00:00
|
|
|
#define DEF_SHELL_STRUCT(TAG, CONST) \
|
|
|
|
struct TAG { \
|
|
|
|
/* \
|
|
|
|
* the name of the shell. For Bourne and C shells, this is used \
|
|
|
|
* only to find the shell description when used as the single \
|
|
|
|
* source of a .SHELL target. For user-defined shells, this is \
|
|
|
|
* the full path of the shell. \
|
|
|
|
*/ \
|
|
|
|
CONST char *name; \
|
|
|
|
\
|
|
|
|
/* True if both echoOff and echoOn defined */ \
|
|
|
|
Boolean hasEchoCtl; \
|
|
|
|
\
|
|
|
|
CONST char *echoOff; /* command to turn off echo */ \
|
|
|
|
CONST char *echoOn; /* command to turn it back on */\
|
|
|
|
\
|
|
|
|
/* \
|
|
|
|
* What the shell prints, and its length, when given the \
|
|
|
|
* echo-off command. This line will not be printed when \
|
|
|
|
* received from the shell. This is usually the command which \
|
|
|
|
* was executed to turn off echoing \
|
|
|
|
*/ \
|
|
|
|
CONST char *noPrint; \
|
|
|
|
int noPLen; /* length of noPrint command */ \
|
|
|
|
\
|
|
|
|
/* set if can control error checking for individual commands */ \
|
|
|
|
Boolean hasErrCtl; \
|
|
|
|
\
|
|
|
|
/* string to turn error checking on */ \
|
|
|
|
CONST char *errCheck; \
|
|
|
|
\
|
|
|
|
/* string to turn off error checking */ \
|
|
|
|
CONST char *ignErr; \
|
|
|
|
\
|
|
|
|
CONST char *echo; /* command line flag: echo commands */ \
|
|
|
|
CONST char *exit; /* command line flag: exit on error */ \
|
2004-11-30 15:35:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
typedef DEF_SHELL_STRUCT(Shell,) Shell;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2004-10-23 21:34:41 +00:00
|
|
|
extern char *shellPath;
|
|
|
|
extern char *shellName;
|
2002-10-09 01:56:02 +00:00
|
|
|
extern int maxJobs; /* Number of jobs that may run */
|
|
|
|
|
2004-10-23 21:34:41 +00:00
|
|
|
void Shell_Init(void);
|
2005-02-01 10:50:37 +00:00
|
|
|
void Job_Touch(struct GNode *, Boolean);
|
|
|
|
Boolean Job_CheckCommands(struct GNode *, void (*abortProc)(const char *, ...));
|
2002-03-22 01:33:25 +00:00
|
|
|
void Job_CatchChildren(Boolean);
|
2004-11-12 08:58:07 +00:00
|
|
|
void Job_CatchOutput(int flag);
|
2005-02-01 10:50:37 +00:00
|
|
|
void Job_Make(struct GNode *);
|
2004-11-11 12:52:16 +00:00
|
|
|
void Job_Init(int);
|
2002-03-22 01:33:25 +00:00
|
|
|
Boolean Job_Full(void);
|
|
|
|
Boolean Job_Empty(void);
|
|
|
|
ReturnStatus Job_ParseShell(char *);
|
2002-04-13 12:18:00 +00:00
|
|
|
int Job_Finish(void);
|
2002-03-22 01:33:25 +00:00
|
|
|
void Job_Wait(void);
|
|
|
|
void Job_AbortAll(void);
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2005-02-01 10:50:37 +00:00
|
|
|
#endif /* job_h_4678dfd1 */
|