1993-04-08 05:07:16 +04:00
|
|
|
/* buf.c: This file contains the scratch-file buffer rountines for the
|
|
|
|
ed line editor. */
|
|
|
|
/*-
|
1993-11-12 13:48:43 +03:00
|
|
|
* Copyright (c) 1993 Andrew Moore, Talke Studio.
|
1993-04-08 05:07:16 +04:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
1993-11-12 13:48:43 +03:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
1993-04-08 05:07:16 +04:00
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
1993-11-12 13:48:43 +03:00
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
1993-04-08 05:07:16 +04:00
|
|
|
* 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
|
1993-11-23 07:41:44 +03:00
|
|
|
/* static char sccsid[] = "@(#)buf.c 5.5 (Talke Studio) 3/28/93"; */
|
|
|
|
static char rcsid[] = "$Id: buf.c,v 1.10 1993/11/23 04:41:48 alm Exp $";
|
1993-04-08 05:07:16 +04:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#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
|
|
|
|
|
|
|
FILE *sfp; /* scratch file pointer */
|
1993-05-08 14:49:52 +04:00
|
|
|
char *sfbuf = NULL; /* scratch file input buffer */
|
|
|
|
int sfbufsz = 0; /* scratch file input buffer size */
|
1993-04-08 05:07:16 +04:00
|
|
|
off_t sfseek; /* scratch file position */
|
|
|
|
int seek_write; /* seek before writing */
|
1993-07-02 14:02:26 +04:00
|
|
|
line_t line0; /* initial node of line queue */
|
1993-04-08 05:07:16 +04:00
|
|
|
|
1993-11-23 07:41:44 +03:00
|
|
|
/* get_sbuf_line: get a line of text from the scratch file; return pointer
|
1993-04-08 05:07:16 +04:00
|
|
|
to the text */
|
|
|
|
char *
|
1993-11-23 07:41:44 +03:00
|
|
|
get_sbuf_line(lp)
|
1993-04-08 05:07:16 +04:00
|
|
|
line_t *lp;
|
|
|
|
{
|
|
|
|
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-05-08 14:49:52 +04:00
|
|
|
return NULL;
|
1993-04-08 05:07:16 +04:00
|
|
|
}
|
|
|
|
}
|
1993-11-12 13:48:43 +03:00
|
|
|
len = lp->len;
|
1993-05-08 14:49:52 +04:00
|
|
|
CKBUF(sfbuf, sfbufsz, len + 1, NULL);
|
|
|
|
if ((ct = fread(sfbuf, 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-05-08 14:49:52 +04:00
|
|
|
return NULL;
|
1993-04-08 05:07:16 +04:00
|
|
|
}
|
|
|
|
sfseek += len; /* update file position */
|
1993-05-08 14:49:52 +04:00
|
|
|
sfbuf[len] = '\0';
|
|
|
|
return sfbuf;
|
1993-04-08 05:07:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-11-23 07:41:44 +03:00
|
|
|
extern long current_addr;
|
|
|
|
extern long addr_last;
|
1993-04-08 05:07:16 +04:00
|
|
|
|
1993-11-23 07:41:44 +03:00
|
|
|
/* put_sbuf_line: write a line of text to the scratch file and add a line node
|
1993-04-08 05:07:16 +04:00
|
|
|
to the editor buffer; return a pointer to the end of the text */
|
|
|
|
char *
|
1993-11-23 07:41:44 +03:00
|
|
|
put_sbuf_line(cs)
|
1993-04-08 05:07:16 +04:00
|
|
|
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-05-08 14:49:52 +04:00
|
|
|
return NULL;
|
1993-04-08 05:07:16 +04:00
|
|
|
}
|
|
|
|
/* assert: cs is '\n' terminated */
|
|
|
|
for (s = cs; *s != '\n'; s++)
|
|
|
|
;
|
1993-05-08 14:49:52 +04:00
|
|
|
if (s - cs >= LINECHARS) {
|
|
|
|
sprintf(errmsg, "line too long");
|
|
|
|
return NULL;
|
|
|
|
}
|
1993-11-23 07:41:44 +03:00
|
|
|
len = s - cs;
|
1993-04-08 05:07:16 +04:00
|
|
|
/* 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-05-08 14:49:52 +04:00
|
|
|
return NULL;
|
1993-04-08 05:07:16 +04:00
|
|
|
}
|
|
|
|
sfseek = ftell(sfp);
|
|
|
|
seek_write = 0;
|
|
|
|
}
|
1993-11-23 07:41:44 +03:00
|
|
|
/* assert: SPL1() */
|
1993-04-08 05:07:16 +04:00
|
|
|
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-05-08 14:49:52 +04:00
|
|
|
return NULL;
|
1993-04-08 05:07:16 +04:00
|
|
|
}
|
|
|
|
lp->len = len;
|
|
|
|
lp->seek = sfseek;
|
1993-11-23 07:41:44 +03:00
|
|
|
add_line_node(lp);
|
1993-04-08 05:07:16 +04:00
|
|
|
sfseek += len; /* update file position */
|
1993-05-08 14:49:52 +04:00
|
|
|
return ++s;
|
1993-04-08 05:07:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-11-23 07:41:44 +03:00
|
|
|
/* add_line_node: add a line node in the editor buffer after the current line */
|
1993-04-08 05:07:16 +04:00
|
|
|
void
|
1993-11-23 07:41:44 +03:00
|
|
|
add_line_node(lp)
|
1993-04-08 05:07:16 +04:00
|
|
|
line_t *lp;
|
|
|
|
{
|
|
|
|
line_t *cp;
|
|
|
|
|
1993-11-23 07:41:44 +03:00
|
|
|
cp = get_addressed_line_node(current_addr); /* this get_addressed_line_node last! */
|
1993-04-08 05:07:16 +04:00
|
|
|
insqueue(lp, cp);
|
1993-11-23 07:41:44 +03:00
|
|
|
addr_last++;
|
|
|
|
current_addr++;
|
1993-04-08 05:07:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-11-23 07:41:44 +03:00
|
|
|
/* get_line_node_addr: return line number of pointer */
|
1993-04-14 16:22:14 +04:00
|
|
|
long
|
1993-11-23 07:41:44 +03:00
|
|
|
get_line_node_addr(lp)
|
1993-04-14 16:22:14 +04:00
|
|
|
line_t *lp;
|
|
|
|
{
|
|
|
|
line_t *cp = &line0;
|
|
|
|
long n = 0;
|
|
|
|
|
|
|
|
while (cp != lp && (cp = cp->next) != &line0)
|
|
|
|
n++;
|
1993-07-02 14:02:26 +04:00
|
|
|
if (n && cp == &line0) {
|
|
|
|
sprintf(errmsg, "invalid address");
|
|
|
|
return ERR;
|
|
|
|
}
|
|
|
|
return n;
|
1993-04-14 16:22:14 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-11-23 07:41:44 +03:00
|
|
|
/* get_addressed_line_node: return pointer to a line node in the editor buffer */
|
1993-04-08 05:07:16 +04:00
|
|
|
line_t *
|
1993-11-23 07:41:44 +03:00
|
|
|
get_addressed_line_node(n)
|
1993-04-08 05:07:16 +04:00
|
|
|
long n;
|
|
|
|
{
|
|
|
|
static line_t *lp = &line0;
|
|
|
|
static long on = 0;
|
|
|
|
|
1993-11-23 07:41:44 +03:00
|
|
|
SPL1();
|
1993-04-08 05:07:16 +04:00
|
|
|
if (n > on)
|
1993-11-23 07:41:44 +03:00
|
|
|
if (n <= (on + addr_last) >> 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;
|
1993-11-23 07:41:44 +03:00
|
|
|
for (on = addr_last; on > n; on--)
|
1993-04-08 05:07:16 +04:00
|
|
|
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;
|
|
|
|
}
|
1993-11-23 07:41:44 +03:00
|
|
|
SPL0();
|
1993-04-08 05:07:16 +04:00
|
|
|
return lp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char sfn[15] = ""; /* scratch file name */
|
|
|
|
|
1993-11-23 07:41:44 +03:00
|
|
|
/* open_sbuf: open scratch file */
|
|
|
|
int
|
|
|
|
open_sbuf()
|
1993-04-08 05:07:16 +04:00
|
|
|
{
|
|
|
|
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-11-23 07:41:44 +03:00
|
|
|
/* close_sbuf: close scratch file */
|
|
|
|
int
|
|
|
|
close_sbuf()
|
1993-04-08 05:07:16 +04:00
|
|
|
{
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-11-23 07:41:44 +03:00
|
|
|
/* quit: remove_lines scratch file and exit */
|
1993-04-08 05:07:16 +04:00
|
|
|
void
|
|
|
|
quit(n)
|
|
|
|
int n;
|
|
|
|
{
|
|
|
|
if (sfp) {
|
|
|
|
fclose(sfp);
|
1993-05-08 14:49:52 +04:00
|
|
|
unlink(sfn);
|
1993-04-08 05:07:16 +04:00
|
|
|
}
|
|
|
|
exit(n);
|
|
|
|
}
|
1993-07-02 14:02:26 +04:00
|
|
|
|
|
|
|
|
|
|
|
unsigned char ctab[256]; /* character translation table */
|
|
|
|
|
1993-11-23 07:41:44 +03:00
|
|
|
/* init_buffers: open scratch buffer; initialize line queue */
|
1993-07-02 14:02:26 +04:00
|
|
|
void
|
1993-11-23 07:41:44 +03:00
|
|
|
init_buffers()
|
1993-07-02 14:02:26 +04:00
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
|
1993-11-23 07:41:44 +03:00
|
|
|
if (open_sbuf() < 0)
|
1993-07-02 14:02:26 +04:00
|
|
|
quit(2);
|
|
|
|
requeue(&line0, &line0);
|
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
ctab[i] = i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-11-23 07:41:44 +03:00
|
|
|
/* translit_text: translate characters in a string */
|
1993-07-02 14:02:26 +04:00
|
|
|
char *
|
1993-11-23 07:41:44 +03:00
|
|
|
translit_text(s, len, from, to)
|
1993-07-02 14:02:26 +04:00
|
|
|
char *s;
|
|
|
|
int len;
|
|
|
|
int from;
|
|
|
|
int to;
|
|
|
|
{
|
|
|
|
static int i = 0;
|
|
|
|
|
|
|
|
unsigned char *us;
|
|
|
|
|
|
|
|
ctab[i] = i; /* restore table to initial state */
|
|
|
|
ctab[i = from] = to;
|
|
|
|
for (us = (unsigned char *) s; len-- > 0; us++)
|
|
|
|
*us = ctab[*us];
|
|
|
|
return s;
|
|
|
|
}
|