1
0
Files
2022-09-29 17:59:04 +03:00

154 lines
3.3 KiB
C

/*
* |-----------------------------------------------------------|
* | Copyright (c) 1991, 1990 MIPS Computer Systems, Inc. |
* | All Rights Reserved |
* |-----------------------------------------------------------|
* | Restricted Rights Legend |
* | Use, duplication, or disclosure by the Government is |
* | subject to restrictions as set forth in |
* | subparagraph (c)(1)(ii) of the Rights in Technical |
* | Data and Computer Software Clause of DFARS 252.227-7013. |
* | MIPS Computer Systems, Inc. |
* | 950 DeGuigne Avenue |
* | Sunnyvale, California 94088-3650, USA |
* |-----------------------------------------------------------|
*/
#ident "$Header: /proj/irix6.5.7m/isms/eoe/cmd/lp_svr4/lib/forms/RCS/putform.c,v 1.1 1992/12/14 13:27:24 suresh Exp $"
/* 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. */
/* EMACS_MODES: !fill, lnumb, !overwrite, !nodelete, !picture */
#include "sys/types.h"
#include "sys/stat.h"
#include "stdio.h"
#include "string.h"
#include "errno.h"
#include "stdlib.h"
#include "lp.h"
#include "form.h"
/**
** putform() - WRITE FORM STRUCTURE TO DISK FILES
**/
int
#if defined(__STDC__)
putform (
char * name,
FORM * formp,
FALERT * alertp,
FILE ** p_align_fp
)
#else
putform (name, formp, alertp, p_align_fp)
char * name;
FORM * formp;
FALERT * alertp;
FILE ** p_align_fp;
#endif
{
register char * path;
FILE * fp;
struct stat statbuf;
if (!name || !*name) {
errno = EINVAL;
return (-1);
}
if (STREQU(NAME_ALL, name)) {
errno = EINVAL;
return (-1);
}
/*
* Create the parent directory for this form
* if it doesn't yet exist.
*/
if (!(path = getformfile(name, (char *)0)))
return (-1);
if (Stat(path, &statbuf) == 0) {
if (!(statbuf.st_mode & S_IFDIR)) {
Free (path);
errno = ENOTDIR;
return (-1);
}
} else if (errno != ENOENT || mkdir_lpdir(path, MODE_DIR) == -1) {
Free (path);
return (-1);
}
Free (path);
/*
* Open the configuration file and write out the form
* configuration (?)
*/
if (formp) {
if (!(path = getformfile(name, DESCRIBE)))
return (-1);
if (!(fp = open_lpfile(path, "w", MODE_READ))) {
Free (path);
return (-1);
}
Free (path);
if (wrform(name, formp, fp, 0, (int *)0) == -1) {
close_lpfile (fp);
return (-1);
}
close_lpfile (fp);
}
/*
* Write out the alert condition (?)
*/
if (alertp) {
if (
alertp->shcmd
&& putalert(Lp_A_Forms, name, alertp) == -1
)
return (-1);
}
/*
* Write out the alignment pattern (?)
*/
if (p_align_fp && *p_align_fp) {
int size = 0,
n;
char buf[BUFSIZ];
if (!(path = getformfile(name, ALIGN_PTRN)))
return (-1);
if (!(fp = open_lpfile(path, "w", MODE_READ))) {
Free (path);
return (-1);
}
while ((n = fread(buf, 1, BUFSIZ, *p_align_fp)) != 0) {
size += n;
fwrite (buf, 1, n, fp);
}
close_lpfile (fp);
if (!size)
Unlink(path);
Free(path);
}
return (0);
}