207 lines
4.4 KiB
C
Executable File
207 lines
4.4 KiB
C
Executable File
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
#ident "@(#)putrequest.c 1.4 93/10/15 SMI" /* SVr4.0 1.11 */
|
|
/* EMACS_MODES: !fill, lnumb, !overwrite, !nodelete, !picture */
|
|
|
|
#include "stdio.h"
|
|
#include "string.h"
|
|
#include "errno.h"
|
|
#include "sys/types.h"
|
|
#include "sys/utsname.h"
|
|
#include "stdlib.h"
|
|
|
|
#include "lp.h"
|
|
#include "requests.h"
|
|
|
|
extern struct {
|
|
char *v;
|
|
short len;
|
|
} reqheadings[];
|
|
|
|
/**
|
|
** putrequest() - WRITE REQUEST STRUCTURE TO DISK FILE
|
|
**/
|
|
|
|
int
|
|
#if defined(__STDC__)
|
|
putrequest (
|
|
char * file,
|
|
REQUEST * reqbufp
|
|
)
|
|
#else
|
|
putrequest (file, reqbufp)
|
|
char *file;
|
|
REQUEST *reqbufp;
|
|
#endif
|
|
{
|
|
char **pp,
|
|
*path;
|
|
|
|
FILE *fp;
|
|
|
|
int fld;
|
|
|
|
/*
|
|
* First go through the structure and see if we have
|
|
* anything strange.
|
|
*/
|
|
if (
|
|
reqbufp->copies <= 0
|
|
|| !(reqbufp->destination)
|
|
|| !reqbufp->file_list || !*(reqbufp->file_list)
|
|
|| (reqbufp->actions & (ACT_MAIL|ACT_WRITE))
|
|
&& (reqbufp->alert && *(reqbufp->alert))
|
|
|| reqbufp->priority < -1 || 39 < reqbufp->priority
|
|
) {
|
|
errno = EINVAL;
|
|
return (-1);
|
|
}
|
|
|
|
/*
|
|
* Now open the file and write out the request.
|
|
*/
|
|
|
|
/*
|
|
* Full pathname? If so the file must lie in LP's
|
|
* regular temporary directory.
|
|
*/
|
|
if (*file == '/') {
|
|
if (!STRNEQU(file, Lp_Tmp, strlen(Lp_Tmp))) {
|
|
errno = EINVAL;
|
|
return (-1);
|
|
}
|
|
path = Strdup(file);
|
|
|
|
/*
|
|
* A relative pathname (such as system/name)?
|
|
* If so we'll locate it under LP's regular temporary
|
|
* directory.
|
|
*/
|
|
} else if (strchr(file, '/')) {
|
|
if (!(path = makepath(Lp_Tmp, file, (char *)0)))
|
|
return (-1);
|
|
|
|
/*
|
|
* If must be a simple name. Locate this under the
|
|
* special temporary directory that is linked to the
|
|
* regular place for the local system.
|
|
*/
|
|
} else if (!(path = makepath(Lp_Temp, file, (char *)0)))
|
|
return (-1);
|
|
|
|
if (!(fp = open_lpfile(path, "w", MODE_NOREAD))) {
|
|
Free (path);
|
|
return (-1);
|
|
}
|
|
Free (path);
|
|
|
|
for (fld = 0; fld < RQ_MAX; fld++) switch (fld) {
|
|
|
|
#define HEAD reqheadings[fld].v
|
|
|
|
case RQ_COPIES:
|
|
(void)fprintf (fp, "%s%d\n", HEAD, reqbufp->copies);
|
|
break;
|
|
|
|
case RQ_DEST:
|
|
(void)fprintf (fp, "%s%s\n", HEAD, reqbufp->destination);
|
|
break;
|
|
|
|
case RQ_FILE:
|
|
for (pp = reqbufp->file_list; *pp; pp++)
|
|
(void)fprintf (fp, "%s%s\n", HEAD, *pp);
|
|
break;
|
|
|
|
case RQ_FORM:
|
|
if (reqbufp->form)
|
|
(void)fprintf (fp, "%s%s\n", HEAD, reqbufp->form);
|
|
break;
|
|
|
|
case RQ_HANDL:
|
|
if ((reqbufp->actions & ACT_SPECIAL) == ACT_IMMEDIATE)
|
|
(void)fprintf (fp, "%s%s\n", HEAD, NAME_IMMEDIATE);
|
|
else if ((reqbufp->actions & ACT_SPECIAL) == ACT_RESUME)
|
|
(void)fprintf (fp, "%s%s\n", HEAD, NAME_RESUME);
|
|
else if ((reqbufp->actions & ACT_SPECIAL) == ACT_HOLD)
|
|
(void)fprintf (fp, "%s%s\n", HEAD, NAME_HOLD);
|
|
break;
|
|
|
|
case RQ_NOTIFY:
|
|
if (reqbufp->actions & ACT_MAIL)
|
|
(void)fprintf (fp, "%sM\n", HEAD);
|
|
else if (reqbufp->actions & ACT_WRITE)
|
|
(void)fprintf (fp, "%sW\n", HEAD);
|
|
else if (reqbufp->actions & ACT_NOTIFY)
|
|
(void)fprintf (fp, "%sN\n", HEAD);
|
|
else if (reqbufp->alert && *(reqbufp->alert))
|
|
(void)fprintf (fp, "%s%s\n", HEAD, reqbufp->alert);
|
|
break;
|
|
|
|
case RQ_OPTS:
|
|
if (reqbufp->options)
|
|
(void)fprintf (fp, "%s%s\n", HEAD, reqbufp->options);
|
|
break;
|
|
|
|
case RQ_PRIOR:
|
|
if (reqbufp->priority != -1)
|
|
(void)fprintf (fp, "%s%d\n", HEAD, reqbufp->priority);
|
|
break;
|
|
|
|
case RQ_PAGES:
|
|
if (reqbufp->pages)
|
|
(void)fprintf (fp, "%s%s\n", HEAD, reqbufp->pages);
|
|
break;
|
|
|
|
case RQ_CHARS:
|
|
if (reqbufp->charset)
|
|
(void)fprintf (fp, "%s%s\n", HEAD, reqbufp->charset);
|
|
break;
|
|
|
|
case RQ_TITLE:
|
|
if (reqbufp->title)
|
|
(void)fprintf (fp, "%s%s\n", HEAD, reqbufp->title);
|
|
break;
|
|
|
|
case RQ_MODES:
|
|
if (reqbufp->modes)
|
|
(void)fprintf (fp, "%s%s\n", HEAD, reqbufp->modes);
|
|
break;
|
|
|
|
case RQ_TYPE:
|
|
if (reqbufp->input_type)
|
|
(void)fprintf (fp, "%s%s\n", HEAD, reqbufp->input_type);
|
|
break;
|
|
|
|
case RQ_USER:
|
|
(void)fprintf (fp, "%s%s\n", HEAD, reqbufp->user);
|
|
break;
|
|
|
|
case RQ_RAW:
|
|
if (reqbufp->actions & ACT_RAW)
|
|
(void)fprintf (fp, "%s\n", HEAD);
|
|
break;
|
|
|
|
case RQ_FAST:
|
|
if (reqbufp->actions & ACT_FAST)
|
|
(void)fprintf (fp, "%s\n", HEAD);
|
|
break;
|
|
|
|
case RQ_STAT:
|
|
(void)fprintf (fp, "%s%#6.4x\n", HEAD, reqbufp->outcome);
|
|
break;
|
|
|
|
case RQ_VERSION:
|
|
(void)fprintf (fp, "%s%d\n", HEAD, reqbufp->version);
|
|
break;
|
|
|
|
}
|
|
|
|
close_lpfile (fp);
|
|
return (0);
|
|
}
|