1993-04-08 05:07:16 +04:00
|
|
|
/* buf.c: This file contains the scratch-file buffer rountines for the
|
|
|
|
ed line editor. */
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 1992 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Rodney Ruddock of the University of Guelph.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
|
|
|
static char sccsid[] = "@(#)buf.c 5.5 (Berkeley) 3/28/93";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/file.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "ed.h"
|
|
|
|
|
1993-04-10 15:46:38 +04:00
|
|
|
extern char errmsg[];
|
1993-04-08 05:07:16 +04:00
|
|
|
extern line_t line0;
|
|
|
|
|
|
|
|
FILE *sfp; /* scratch file pointer */
|
|
|
|
off_t sfseek; /* scratch file position */
|
|
|
|
int seek_write; /* seek before writing */
|
|
|
|
|
|
|
|
/* gettxt: get a line of text from the scratch file; return pointer
|
|
|
|
to the text */
|
|
|
|
char *
|
|
|
|
gettxt(lp)
|
|
|
|
line_t *lp;
|
|
|
|
{
|
1993-04-23 06:08:48 +04:00
|
|
|
static char buf[MAXLINE];
|
1993-04-08 05:07:16 +04:00
|
|
|
int len, ct;
|
|
|
|
|
|
|
|
if (lp == &line0)
|
|
|
|
return NULL;
|
|
|
|
seek_write = 1; /* force seek on write */
|
|
|
|
/* out of position */
|
|
|
|
if (sfseek != lp->seek) {
|
|
|
|
sfseek = lp->seek;
|
|
|
|
if (fseek(sfp, sfseek, SEEK_SET) < 0) {
|
1993-04-14 16:22:14 +04:00
|
|
|
fprintf(stderr, "%s\n", strerror(errno));
|
1993-04-10 15:46:38 +04:00
|
|
|
sprintf(errmsg, "cannot seek temp file");
|
1993-04-08 05:07:16 +04:00
|
|
|
return (char *) ERR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
len = lp->len & ~ACTV;
|
1993-04-23 06:08:48 +04:00
|
|
|
if ((ct = fread(buf, sizeof(char), len, sfp)) < 0 || ct != len) {
|
1993-04-14 16:22:14 +04:00
|
|
|
fprintf(stderr, "%s\n", strerror(errno));
|
1993-04-10 15:46:38 +04:00
|
|
|
sprintf(errmsg, "cannot read temp file");
|
1993-04-08 05:07:16 +04:00
|
|
|
return (char *) ERR;
|
|
|
|
}
|
|
|
|
sfseek += len; /* update file position */
|
1993-04-23 06:08:48 +04:00
|
|
|
buf[len] = '\0';
|
|
|
|
return buf;
|
1993-04-08 05:07:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
extern long curln;
|
|
|
|
extern long lastln;
|
|
|
|
|
|
|
|
/* puttxt: write a line of text to the scratch file and add a line node
|
|
|
|
to the editor buffer; return a pointer to the end of the text */
|
|
|
|
char *
|
|
|
|
puttxt(cs)
|
|
|
|
char *cs;
|
|
|
|
{
|
|
|
|
line_t *lp;
|
|
|
|
int len, ct;
|
|
|
|
char *s;
|
|
|
|
|
|
|
|
if ((lp = (line_t *) malloc(sizeof(line_t))) == NULL) {
|
1993-04-14 16:22:14 +04:00
|
|
|
fprintf(stderr, "%s\n", strerror(errno));
|
1993-04-10 15:46:38 +04:00
|
|
|
sprintf(errmsg, "out of memory");
|
1993-04-08 05:07:16 +04:00
|
|
|
return (char *) ERR;
|
|
|
|
}
|
|
|
|
/* assert: cs is '\n' terminated */
|
|
|
|
for (s = cs; *s != '\n'; s++)
|
|
|
|
;
|
|
|
|
len = (s - cs) & ~ACTV;
|
|
|
|
/* out of position */
|
|
|
|
if (seek_write) {
|
|
|
|
if (fseek(sfp, 0L, SEEK_END) < 0) {
|
1993-04-14 16:22:14 +04:00
|
|
|
fprintf(stderr, "%s\n", strerror(errno));
|
1993-04-10 15:46:38 +04:00
|
|
|
sprintf(errmsg, "cannot seek temp file");
|
1993-04-08 05:07:16 +04:00
|
|
|
return (char *) ERR;
|
|
|
|
}
|
|
|
|
sfseek = ftell(sfp);
|
|
|
|
seek_write = 0;
|
|
|
|
}
|
|
|
|
/* assert: spl1() */
|
|
|
|
if ((ct = fwrite(cs, sizeof(char), len, sfp)) < 0 || ct != len) {
|
|
|
|
sfseek = -1;
|
1993-04-14 16:22:14 +04:00
|
|
|
fprintf(stderr, "%s\n", strerror(errno));
|
1993-04-10 15:46:38 +04:00
|
|
|
sprintf(errmsg, "cannot write temp file");
|
1993-04-08 05:07:16 +04:00
|
|
|
return (char *) ERR;
|
|
|
|
}
|
|
|
|
lp->len = len;
|
|
|
|
lp->seek = sfseek;
|
|
|
|
lpqueue(lp);
|
|
|
|
sfseek += len; /* update file position */
|
|
|
|
return (*++s == '\0') ? NULL : s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* lpqueue: add a line node in the editor buffer after the current line */
|
|
|
|
void
|
|
|
|
lpqueue(lp)
|
|
|
|
line_t *lp;
|
|
|
|
{
|
|
|
|
line_t *cp;
|
|
|
|
|
|
|
|
cp = getptr(curln); /* this getptr last! */
|
|
|
|
insqueue(lp, cp);
|
|
|
|
lastln++;
|
|
|
|
curln++;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-04-14 16:22:14 +04:00
|
|
|
/* getaddr: return line number of pointer */
|
|
|
|
long
|
|
|
|
getaddr(lp)
|
|
|
|
line_t *lp;
|
|
|
|
{
|
|
|
|
line_t *cp = &line0;
|
|
|
|
long n = 0;
|
|
|
|
|
|
|
|
while (cp != lp && (cp = cp->next) != &line0)
|
|
|
|
n++;
|
|
|
|
return (cp != &line0) ? n : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-04-08 05:07:16 +04:00
|
|
|
extern int mutex;
|
|
|
|
extern int sigflags;
|
|
|
|
|
|
|
|
/* getptr: return pointer to a line node in the editor buffer */
|
|
|
|
line_t *
|
|
|
|
getptr(n)
|
|
|
|
long n;
|
|
|
|
{
|
|
|
|
static line_t *lp = &line0;
|
|
|
|
static long on = 0;
|
|
|
|
|
|
|
|
spl1();
|
|
|
|
if (n > on)
|
1993-04-10 15:46:38 +04:00
|
|
|
if (n <= (on + lastln) >> 1)
|
1993-04-08 05:07:16 +04:00
|
|
|
for (; on < n; on++)
|
|
|
|
lp = lp->next;
|
1993-04-10 15:46:38 +04:00
|
|
|
else {
|
1993-04-08 05:07:16 +04:00
|
|
|
lp = line0.prev;
|
|
|
|
for (on = lastln; on > n; on--)
|
|
|
|
lp = lp->prev;
|
|
|
|
}
|
|
|
|
else
|
1993-04-10 15:46:38 +04:00
|
|
|
if (n >= on >> 1)
|
1993-04-08 05:07:16 +04:00
|
|
|
for (; on > n; on--)
|
|
|
|
lp = lp->prev;
|
1993-04-10 15:46:38 +04:00
|
|
|
else {
|
1993-04-08 05:07:16 +04:00
|
|
|
lp = &line0;
|
|
|
|
for (on = 0; on < n; on++)
|
|
|
|
lp = lp->next;
|
|
|
|
}
|
|
|
|
spl0();
|
|
|
|
return lp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char sfn[15] = ""; /* scratch file name */
|
|
|
|
|
|
|
|
/* sbopen: open scratch file */
|
|
|
|
sbopen()
|
|
|
|
{
|
|
|
|
strcpy(sfn, "/tmp/ed.XXXXXX");
|
|
|
|
if (mktemp(sfn) == NULL || (sfp = fopen(sfn, "w+")) == NULL) {
|
1993-04-14 16:22:14 +04:00
|
|
|
fprintf(stderr, "%s: %s\n", sfn, strerror(errno));
|
1993-04-10 15:46:38 +04:00
|
|
|
sprintf(errmsg, "cannot open temp file");
|
1993-04-08 05:07:16 +04:00
|
|
|
return ERR;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
1993-04-10 15:46:38 +04:00
|
|
|
|
1993-04-08 05:07:16 +04:00
|
|
|
/* sbclose: close scratch file */
|
|
|
|
sbclose()
|
|
|
|
{
|
|
|
|
if (sfp) {
|
1993-04-14 16:22:14 +04:00
|
|
|
if (fclose(sfp) < 0) {
|
|
|
|
fprintf(stderr, "%s: %s\n", sfn, strerror(errno));
|
|
|
|
sprintf(errmsg, "cannot close temp file");
|
|
|
|
return ERR;
|
|
|
|
}
|
1993-04-08 05:07:16 +04:00
|
|
|
sfp = NULL;
|
1993-04-10 15:46:38 +04:00
|
|
|
unlink(sfn);
|
1993-04-08 05:07:16 +04:00
|
|
|
}
|
|
|
|
sfseek = seek_write = 0;
|
1993-04-15 08:58:32 +04:00
|
|
|
return 0;
|
1993-04-08 05:07:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* quit: remove scratch file and exit */
|
|
|
|
void
|
|
|
|
quit(n)
|
|
|
|
int n;
|
|
|
|
{
|
|
|
|
if (sfp) {
|
|
|
|
unlink(sfn);
|
|
|
|
fclose(sfp);
|
|
|
|
}
|
|
|
|
exit(n);
|
|
|
|
}
|