V10/lbin/mailx/edit.c
#ident "@(#)edit.c 1.3 'attmail mail(1) command'"
#ident "@(#)mailx:edit.c 1.8.1.1"
/* Copyright (c) 1984 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 "@(#)mailx:edit.c 1.8"
#include "rcv.h"
/*
* mailx -- a modified version of a University of California at Berkeley
* mail program
*
* Perform message editing functions.
*/
static void edit1();
/*
* Edit a message list.
*/
editor(msgvec)
int *msgvec;
{
char *edname;
if ((edname = value("EDITOR")) == NOSTR)
edname = EDITOR;
edit1(msgvec, edname);
return(0);
}
/*
* Invoke the visual editor on a message list.
*/
visual(msgvec)
int *msgvec;
{
char *edname;
if ((edname = value("VISUAL")) == NOSTR)
edname = VISUAL;
edit1(msgvec, edname);
return(0);
}
/*
* Edit a message by writing the message into a funnily-named file
* (which should not exist) and forking an editor on it.
* We get the editor from the stuff above.
*/
static void
edit1(msgvec, ed)
int *msgvec;
char *ed;
{
register int c;
pid_t pid;
int *ip, mesg;
long ms, lines;
void (*sigint)(), (*sigquit)();
FILE *ibuf, *obuf;
struct message *mp;
off_t size;
struct stat statb;
long modtime;
/*
* Set signals; locate editor.
*/
sigint = sigset(SIGINT, SIG_IGN);
sigquit = sigset(SIGQUIT, SIG_IGN);
ed = expand(ed);
/*
* Deal with each message to be edited . . .
*/
for (ip = msgvec; *ip && ip-msgvec < msgCount; ip++) {
mesg = *ip;
mp = &message[mesg-1];
if (mp->m_text) {
mp->m_flag |= MODIFY;
if (!access(tempZedit, 2)) {
printf("%s: file exists\n", tempZedit);
goto out;
}
/*
* Copy the message into the edit file.
*/
close(creat(tempZedit, TEMPPERM));
if ((obuf = fopen(tempZedit, "w")) == NULL) {
perror(tempZedit);
goto out;
}
if (send(mp, obuf, 0) < 0) {
perror(tempZedit);
fclose(obuf);
removefile(tempZedit);
goto out;
}
fflush(obuf);
if (ferror(obuf)) {
removefile(tempZedit);
fclose(obuf);
goto out;
}
fclose(obuf);
/*
* If we are in read only mode, make the
* temporary message file readonly as well.
*/
if (readonly)
chmod(tempZedit, 0400);
/*
* Fork/execl the editor on the edit file.
*/
if (stat(tempZedit, &statb) < 0)
modtime = 0;
modtime = statb.st_mtime;
pid = fork();
if (pid == (pid_t)-1) {
perror("fork");
removefile(tempZedit);
goto out;
}
if (pid == 0) {
sigchild();
if (sigint != (void (*)())SIG_IGN) /* adb */
sigset(SIGINT, SIG_DFL);
if (sigquit != (void (*)())SIG_IGN) /* adb */
sigset(SIGQUIT, SIG_DFL);
execlp(ed, ed, tempZedit, (char *)0);
perror(ed);
_exit(1);
}
while (wait(&mesg) != pid)
;
/*
* If in read only mode, just remove the editor
* temporary and return.
*/
if (readonly) {
removefile(tempZedit);
continue;
}
/*
* Now copy the message to the end of the
* temp file.
*/
if (stat(tempZedit, &statb) < 0) {
perror(tempZedit);
goto out;
}
if (modtime == statb.st_mtime) {
removefile(tempZedit);
goto out;
}
if ((ibuf = fopen(tempZedit, "r")) == NULL) {
perror(tempZedit);
removefile(tempZedit);
goto out;
}
removefile(tempZedit);
fseek(otf, (long) 0, 2);
size = fsize(otf);
mp->m_block = blockof(size);
mp->m_offset = offsetofaddr(size);
ms = 0L;
lines = 0;
while ((c = getc(ibuf)) != EOF) {
if (c == '\n')
lines++;
putc(c, otf);
if (ferror(otf))
break;
ms++;
}
mp->m_size = ms;
mp->m_lines = lines;
if (ferror(otf))
perror("/tmp");
fclose(ibuf);
} else {
printf("\n%s\n", binmsg);
}
}
/*
* Restore signals and return.
*/
out:
sigset(SIGINT, sigint);
sigset(SIGQUIT, sigquit);
}