1994-05-27 12:33:43 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Edward Sze-Tyan Wang.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2001-12-12 00:01:16 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
#ifndef lint
|
2001-12-12 00:01:16 +00:00
|
|
|
static const char sccsid[] = "@(#)read.c 8.1 (Berkeley) 6/6/93";
|
2000-12-02 19:10:12 +00:00
|
|
|
#endif
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2001-12-12 00:01:16 +00:00
|
|
|
|
|
|
|
#include <err.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <errno.h>
|
2001-12-12 00:01:16 +00:00
|
|
|
#include <fcntl.h>
|
1994-05-27 12:33:43 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2001-12-12 00:01:16 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
|
1994-05-27 12:33:43 +00:00
|
|
|
#include "extern.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* bytes -- read bytes to an offset from the end and display.
|
|
|
|
*
|
|
|
|
* This is the function that reads to a byte offset from the end of the input,
|
|
|
|
* storing the data in a wrap-around buffer which is then displayed. If the
|
|
|
|
* rflag is set, the data is displayed in lines in reverse order, and this
|
|
|
|
* routine has the usual nastiness of trying to find the newlines. Otherwise,
|
|
|
|
* it is displayed from the character closest to the beginning of the input to
|
|
|
|
* the end.
|
|
|
|
*/
|
1996-07-30 13:11:43 +00:00
|
|
|
int
|
2009-06-05 09:08:53 +00:00
|
|
|
bytes(FILE *fp, const char *fn, off_t off)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
2000-12-03 17:05:45 +00:00
|
|
|
int ch, len, tlen;
|
|
|
|
char *ep, *p, *t;
|
1994-05-27 12:33:43 +00:00
|
|
|
int wrap;
|
|
|
|
char *sp;
|
|
|
|
|
|
|
|
if ((sp = p = malloc(off)) == NULL)
|
1996-08-25 21:12:01 +00:00
|
|
|
err(1, "malloc");
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
for (wrap = 0, ep = p + off; (ch = getc(fp)) != EOF;) {
|
|
|
|
*p = ch;
|
|
|
|
if (++p == ep) {
|
|
|
|
wrap = 1;
|
|
|
|
p = sp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ferror(fp)) {
|
2009-06-05 09:08:53 +00:00
|
|
|
ierr(fn);
|
2007-10-17 09:52:08 +00:00
|
|
|
free(sp);
|
1996-07-30 13:11:43 +00:00
|
|
|
return 1;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rflag) {
|
|
|
|
for (t = p - 1, len = 0; t >= sp; --t, ++len)
|
|
|
|
if (*t == '\n' && len) {
|
|
|
|
WR(t + 1, len);
|
|
|
|
len = 0;
|
|
|
|
}
|
|
|
|
if (wrap) {
|
|
|
|
tlen = len;
|
|
|
|
for (t = ep - 1, len = 0; t >= p; --t, ++len)
|
|
|
|
if (*t == '\n') {
|
|
|
|
if (len) {
|
|
|
|
WR(t + 1, len);
|
|
|
|
len = 0;
|
|
|
|
}
|
|
|
|
if (tlen) {
|
|
|
|
WR(sp, tlen);
|
|
|
|
tlen = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (len)
|
|
|
|
WR(t + 1, len);
|
|
|
|
if (tlen)
|
|
|
|
WR(sp, tlen);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (wrap && (len = ep - p))
|
|
|
|
WR(p, len);
|
2001-12-12 00:01:16 +00:00
|
|
|
len = p - sp;
|
|
|
|
if (len)
|
1994-05-27 12:33:43 +00:00
|
|
|
WR(sp, len);
|
|
|
|
}
|
2007-10-17 09:52:08 +00:00
|
|
|
|
|
|
|
free(sp);
|
1996-07-30 15:44:30 +00:00
|
|
|
return 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* lines -- read lines to an offset from the end and display.
|
|
|
|
*
|
|
|
|
* This is the function that reads to a line offset from the end of the input,
|
|
|
|
* storing the data in an array of buffers which is then displayed. If the
|
|
|
|
* rflag is set, the data is displayed in lines in reverse order, and this
|
|
|
|
* routine has the usual nastiness of trying to find the newlines. Otherwise,
|
|
|
|
* it is displayed from the line closest to the beginning of the input to
|
|
|
|
* the end.
|
|
|
|
*/
|
1996-07-30 13:11:43 +00:00
|
|
|
int
|
2009-06-05 09:08:53 +00:00
|
|
|
lines(FILE *fp, const char *fn, off_t off)
|
1994-05-27 12:33:43 +00:00
|
|
|
{
|
|
|
|
struct {
|
2003-06-10 16:49:14 +00:00
|
|
|
int blen;
|
1994-05-27 12:33:43 +00:00
|
|
|
u_int len;
|
|
|
|
char *l;
|
2001-12-12 00:01:16 +00:00
|
|
|
} *llines;
|
2007-10-17 09:52:08 +00:00
|
|
|
int ch, rc;
|
2001-12-12 00:01:16 +00:00
|
|
|
char *p, *sp;
|
2003-06-10 16:49:14 +00:00
|
|
|
int blen, cnt, recno, wrap;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
2013-01-08 22:14:45 +00:00
|
|
|
if ((llines = calloc(off, sizeof(*llines))) == NULL)
|
|
|
|
err(1, "calloc");
|
2007-11-02 18:06:51 +00:00
|
|
|
p = sp = NULL;
|
1994-05-27 12:33:43 +00:00
|
|
|
blen = cnt = recno = wrap = 0;
|
2007-10-17 09:52:08 +00:00
|
|
|
rc = 0;
|
1994-05-27 12:33:43 +00:00
|
|
|
|
|
|
|
while ((ch = getc(fp)) != EOF) {
|
|
|
|
if (++cnt > blen) {
|
|
|
|
if ((sp = realloc(sp, blen += 1024)) == NULL)
|
1996-08-25 21:12:01 +00:00
|
|
|
err(1, "realloc");
|
1994-05-27 12:33:43 +00:00
|
|
|
p = sp + cnt - 1;
|
|
|
|
}
|
|
|
|
*p++ = ch;
|
|
|
|
if (ch == '\n') {
|
2003-06-10 16:49:14 +00:00
|
|
|
if ((int)llines[recno].blen < cnt) {
|
2001-12-12 00:01:16 +00:00
|
|
|
llines[recno].blen = cnt + 256;
|
|
|
|
if ((llines[recno].l = realloc(llines[recno].l,
|
|
|
|
llines[recno].blen)) == NULL)
|
1996-08-25 21:12:01 +00:00
|
|
|
err(1, "realloc");
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2001-12-12 00:01:16 +00:00
|
|
|
bcopy(sp, llines[recno].l, llines[recno].len = cnt);
|
1994-05-27 12:33:43 +00:00
|
|
|
cnt = 0;
|
|
|
|
p = sp;
|
|
|
|
if (++recno == off) {
|
|
|
|
wrap = 1;
|
|
|
|
recno = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ferror(fp)) {
|
2009-06-05 09:08:53 +00:00
|
|
|
ierr(fn);
|
2007-10-17 09:52:08 +00:00
|
|
|
rc = 1;
|
|
|
|
goto done;
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
|
|
|
if (cnt) {
|
2001-12-12 00:01:16 +00:00
|
|
|
llines[recno].l = sp;
|
2007-11-22 01:51:46 +00:00
|
|
|
sp = NULL;
|
2001-12-12 00:01:16 +00:00
|
|
|
llines[recno].len = cnt;
|
1994-05-27 12:33:43 +00:00
|
|
|
if (++recno == off) {
|
|
|
|
wrap = 1;
|
|
|
|
recno = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rflag) {
|
2003-06-10 16:49:14 +00:00
|
|
|
for (cnt = recno - 1; cnt >= 0; --cnt)
|
2001-12-12 00:01:16 +00:00
|
|
|
WR(llines[cnt].l, llines[cnt].len);
|
1994-05-27 12:33:43 +00:00
|
|
|
if (wrap)
|
2003-06-10 16:49:14 +00:00
|
|
|
for (cnt = off - 1; cnt >= recno; --cnt)
|
2001-12-12 00:01:16 +00:00
|
|
|
WR(llines[cnt].l, llines[cnt].len);
|
1994-05-27 12:33:43 +00:00
|
|
|
} else {
|
|
|
|
if (wrap)
|
2003-06-10 16:49:14 +00:00
|
|
|
for (cnt = recno; cnt < off; ++cnt)
|
2001-12-12 00:01:16 +00:00
|
|
|
WR(llines[cnt].l, llines[cnt].len);
|
2003-06-10 16:49:14 +00:00
|
|
|
for (cnt = 0; cnt < recno; ++cnt)
|
2001-12-12 00:01:16 +00:00
|
|
|
WR(llines[cnt].l, llines[cnt].len);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|
2007-10-17 09:52:08 +00:00
|
|
|
done:
|
|
|
|
for (cnt = 0; cnt < off; cnt++)
|
|
|
|
free(llines[cnt].l);
|
|
|
|
free(sp);
|
|
|
|
free(llines);
|
|
|
|
return (rc);
|
1994-05-27 12:33:43 +00:00
|
|
|
}
|