mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
246 lines
5.8 KiB
C++
246 lines
5.8 KiB
C++
/*******************************************************************************
|
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2012, 2015.
|
|
|
|
This program is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by the Free
|
|
Software Foundation, either version 3 of the License, or (at your option)
|
|
any later version.
|
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
more details.
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
tail.cpp
|
|
Output the last part of files.
|
|
|
|
*******************************************************************************/
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include <error.h>
|
|
#include <ctype.h>
|
|
|
|
#ifdef HEAD
|
|
#define TAIL false
|
|
#else
|
|
#define TAIL true
|
|
#endif
|
|
|
|
const char* STDINNAME = "standard input";
|
|
|
|
long numlines = 10;
|
|
bool quiet = false;
|
|
bool verbose = false;
|
|
|
|
bool processfp(const char* inputname, FILE* fp)
|
|
{
|
|
struct stat st;
|
|
if ( fstat(fileno(fp), &st) == 0 && S_ISDIR(st.st_mode) )
|
|
{
|
|
error(0, EISDIR, "%s", inputname);
|
|
return false;
|
|
}
|
|
|
|
const bool tail = TAIL;
|
|
const bool head = !TAIL;
|
|
if ( !numlines ) { return true; }
|
|
bool specialleading = (head && 0 < numlines) || (tail && numlines < 0);
|
|
bool specialtrailing = !specialleading;
|
|
long abslines = (numlines < 0) ? -numlines : numlines;
|
|
|
|
char** buffer = NULL;
|
|
if ( specialtrailing )
|
|
{
|
|
buffer = new char*[abslines];
|
|
memset(buffer, 0, sizeof(char*) * abslines);
|
|
}
|
|
|
|
long linenum;
|
|
for ( linenum = 0; true; linenum++ )
|
|
{
|
|
char* line = NULL;
|
|
size_t linesize;
|
|
ssize_t linelen = getline(&line, &linesize, fp);
|
|
if ( linelen < 0 )
|
|
{
|
|
free(line);
|
|
if ( feof(fp) ) { break; }
|
|
error(1, errno, "%s", inputname);
|
|
}
|
|
if ( specialleading )
|
|
{
|
|
bool doprint = false;
|
|
if ( head && linenum < abslines ) { doprint = true; }
|
|
else if ( tail && abslines <= linenum ) { doprint = true; }
|
|
bool done = head && abslines <= linenum+1;
|
|
if ( doprint ) { printf("%s", line); }
|
|
free(line);
|
|
if ( done ) { return true; }
|
|
}
|
|
if ( specialtrailing )
|
|
{
|
|
long index = linenum % abslines;
|
|
if ( buffer[index] )
|
|
{
|
|
char* bufline = buffer[index];
|
|
if ( head ) { printf("%s", bufline); }
|
|
free(bufline);
|
|
}
|
|
buffer[index] = line;
|
|
}
|
|
}
|
|
|
|
if ( specialtrailing && tail )
|
|
{
|
|
long numtoprint = linenum < abslines ? linenum : abslines;
|
|
for ( long i = 0; i < numtoprint; i++ )
|
|
{
|
|
long index = (linenum - numtoprint + i) % abslines;
|
|
printf("%s", buffer[index]);
|
|
free(buffer[index]);
|
|
}
|
|
}
|
|
|
|
delete[] buffer;
|
|
|
|
return true;
|
|
}
|
|
|
|
static void compact_arguments(int* argc, char*** argv)
|
|
{
|
|
for ( int i = 0; i < *argc; i++ )
|
|
{
|
|
while ( i < *argc && !(*argv)[i] )
|
|
{
|
|
for ( int n = i; n < *argc; n++ )
|
|
(*argv)[n] = (*argv)[n+1];
|
|
(*argc)--;
|
|
}
|
|
}
|
|
}
|
|
|
|
static void help(FILE* fp, const char* argv0)
|
|
{
|
|
fprintf(fp, "Usage: %s [OPTION]... [FILE]...\n", argv0);
|
|
}
|
|
|
|
static void version(FILE* fp, const char* argv0)
|
|
{
|
|
fprintf(fp, "%s (Sortix) %s\n", argv0, VERSIONSTR);
|
|
fprintf(fp, "License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.\n");
|
|
fprintf(fp, "This is free software: you are free to change and redistribute it.\n");
|
|
fprintf(fp, "There is NO WARRANTY, to the extent permitted by law.\n");
|
|
}
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
const char* nlinesstr = NULL;
|
|
|
|
const char* argv0 = argv[0];
|
|
for ( int i = 1; i < argc; i++ )
|
|
{
|
|
const char* arg = argv[i];
|
|
if ( arg[0] != '-' || !arg[1] )
|
|
continue;
|
|
argv[i] = NULL;
|
|
if ( !strcmp(arg, "--") )
|
|
break;
|
|
if ( isdigit((unsigned char) arg[1]) )
|
|
nlinesstr = arg + 1;
|
|
else if ( arg[1] != '-' )
|
|
{
|
|
while ( char c = *++arg ) switch ( c )
|
|
{
|
|
case 'n':
|
|
if ( !*(nlinesstr = arg + 1) )
|
|
{
|
|
if ( i + 1 == argc )
|
|
{
|
|
error(0, 0, "option requires an argument -- 'n'");
|
|
fprintf(stderr, "Try `%s --help' for more information.\n", argv[0]);
|
|
exit(125);
|
|
}
|
|
nlinesstr = argv[i+1];
|
|
argv[++i] = NULL;
|
|
}
|
|
arg = "n";
|
|
break;
|
|
case 'q': quiet = true; verbose = false; break;
|
|
case 'v': quiet = false; verbose = true; break;
|
|
default:
|
|
fprintf(stderr, "%s: unknown option -- '%c'\n", argv0, c);
|
|
help(stderr, argv0);
|
|
exit(1);
|
|
}
|
|
}
|
|
else if ( !strcmp(arg, "--help") )
|
|
help(stdout, argv0), exit(0);
|
|
else if ( !strcmp(arg, "--version") )
|
|
version(stdout, argv0), exit(0);
|
|
else if ( !strcmp(arg, "--quiet") || !strcmp(arg, "--silent") )
|
|
quiet = true, verbose = false;
|
|
else if ( !strcmp(arg, "--verbose") )
|
|
quiet = false, verbose = true;
|
|
else
|
|
{
|
|
fprintf(stderr, "%s: unknown option: %s\n", argv0, arg);
|
|
help(stderr, argv0);
|
|
exit(1);
|
|
}
|
|
}
|
|
|
|
compact_arguments(&argc, &argv);
|
|
|
|
if ( nlinesstr )
|
|
{
|
|
char* nlinesstrend;
|
|
long nlines = strtol(nlinesstr, &nlinesstrend, 10);
|
|
if ( *nlinesstrend )
|
|
error(1, 0, "Bad number of lines: %s", nlinesstr);
|
|
numlines = nlines;
|
|
}
|
|
|
|
if ( argc < 2 )
|
|
{
|
|
bool header = verbose;
|
|
if ( header )
|
|
printf("==> %s <==\n", STDINNAME);
|
|
if ( !processfp(STDINNAME, stdin) )
|
|
return 1;
|
|
return 0;
|
|
}
|
|
|
|
int result = 0;
|
|
|
|
const char* prefix = "";
|
|
for ( int i = 1; i < argc; i++ )
|
|
{
|
|
bool isstdin = strcmp(argv[i], "-") == 0;
|
|
FILE* fp = isstdin ? stdin : fopen(argv[i], "r");
|
|
if ( !fp )
|
|
{
|
|
error(0, errno, "%s", argv[i]);
|
|
result = 1;
|
|
continue;
|
|
}
|
|
bool header = !quiet && (verbose || 2 < argc);
|
|
if ( header )
|
|
printf("%s==> %s <==\n", prefix, argv[i]);
|
|
prefix = "\n";
|
|
if ( !processfp(isstdin ? STDINNAME : argv[i], fp) )
|
|
result = 1;
|
|
if ( !isstdin )
|
|
fclose(fp);
|
|
}
|
|
|
|
return result;
|
|
}
|