#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[];
int
#if defined(__STDC__)
putrequest (
char * file,
REQUEST * reqbufp
)
#else
putrequest (file, reqbufp)
char *file;
REQUEST *reqbufp;
#endif
{
char **pp,
*path;
int fd;
int fld;
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);
}
if (*file == '/') {
if (!STRNEQU(file, Lp_Tmp, strlen(Lp_Tmp))) {
errno = EINVAL;
return (-1);
}
path = Strdup(file);
} else if (strchr(file, '/')) {
if (!(path = makepath(Lp_Tmp, file, (char *)0)))
return (-1);
} else if (!(path = makepath(Lp_Temp, file, (char *)0)))
return (-1);
if ((fd = open_locked(path, "w", MODE_NOREAD)) < 0) {
Free (path);
return (-1);
}
Free (path);
for (fld = 0; fld < RQ_MAX; fld++) switch (fld) {
#define HEAD reqheadings[fld].v
case RQ_COPIES:
(void)fdprintf(fd, "%s%d\n", HEAD, reqbufp->copies);
break;
case RQ_DEST:
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->destination);
break;
case RQ_FILE:
for (pp = reqbufp->file_list; *pp; pp++)
(void)fdprintf(fd, "%s%s\n", HEAD, *pp);
break;
case RQ_FORM:
if (reqbufp->form)
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->form);
break;
case RQ_HANDL:
if ((reqbufp->actions & ACT_SPECIAL) == ACT_IMMEDIATE)
(void)fdprintf(fd, "%s%s\n", HEAD, NAME_IMMEDIATE);
else if ((reqbufp->actions & ACT_SPECIAL) == ACT_RESUME)
(void)fdprintf(fd, "%s%s\n", HEAD, NAME_RESUME);
else if ((reqbufp->actions & ACT_SPECIAL) == ACT_HOLD)
(void)fdprintf(fd, "%s%s\n", HEAD, NAME_HOLD);
break;
case RQ_NOTIFY:
if (reqbufp->actions & ACT_MAIL)
(void)fdprintf(fd, "%sM\n", HEAD);
else if (reqbufp->actions & ACT_WRITE)
(void)fdprintf(fd, "%sW\n", HEAD);
else if (reqbufp->actions & ACT_NOTIFY)
(void)fdprintf(fd, "%sN\n", HEAD);
else if (reqbufp->alert && *(reqbufp->alert))
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->alert);
break;
case RQ_OPTS:
if (reqbufp->options)
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->options);
break;
case RQ_PRIOR:
if (reqbufp->priority != -1)
(void)fdprintf(fd, "%s%d\n", HEAD, reqbufp->priority);
break;
case RQ_PAGES:
if (reqbufp->pages)
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->pages);
break;
case RQ_CHARS:
if (reqbufp->charset)
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->charset);
break;
case RQ_TITLE:
if (reqbufp->title)
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->title);
break;
case RQ_MODES:
if (reqbufp->modes)
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->modes);
break;
case RQ_TYPE:
if (reqbufp->input_type)
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->input_type);
break;
case RQ_USER:
if (reqbufp->user)
(void)fdprintf(fd, "%s%s\n", HEAD, reqbufp->user);
break;
case RQ_RAW:
if (reqbufp->actions & ACT_RAW)
(void)fdprintf(fd, "%s\n", HEAD);
break;
case RQ_FAST:
if (reqbufp->actions & ACT_FAST)
(void)fdprintf(fd, "%s\n", HEAD);
break;
case RQ_STAT:
(void)fdprintf(fd, "%s%#6.4x\n", HEAD, reqbufp->outcome);
break;
}
close(fd);
return (0);
}