blob: 6ac553e6baec2acf03510afe3c591fa0455fe9ca [file] [log] [blame]
Eric Andersen4bea32a1999-10-06 00:30:51 +00001/*
2 * Mini more implementation for busybox
3 *
4 * Copyright (C) 1998 by Erik Andersen <andersee@debian.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 *
20 */
21
Eric Andersencc8ed391999-10-05 16:24:54 +000022#include "internal.h"
23#include <stdio.h>
Eric Andersen4bea32a1999-10-06 00:30:51 +000024#include <signal.h>
Eric Andersencc8ed391999-10-05 16:24:54 +000025
Eric Andersen4bea32a1999-10-06 00:30:51 +000026const char more_usage[] = "[file ...]";
Eric Andersencc8ed391999-10-05 16:24:54 +000027
Eric Andersen9d3aba71999-10-06 09:04:55 +000028//#define ERASE_STUFF
Eric Andersencc8ed391999-10-05 16:24:54 +000029
Eric Andersen4bea32a1999-10-06 00:30:51 +000030extern int more_main(int argc, char **argv)
Eric Andersencc8ed391999-10-05 16:24:54 +000031{
Eric Andersen4bea32a1999-10-06 00:30:51 +000032 int c, lines=0;
Eric Andersen9d3aba71999-10-06 09:04:55 +000033 int next_page=0, rows = 24;
34#ifdef ERASE_STUFF
35 int cols=79;
36#endif
Eric Andersen4bea32a1999-10-06 00:30:51 +000037 struct stat st;
38 FILE *file = stdin;
39
40 if ( strcmp(*argv,"--help")==0 || strcmp(*argv,"-h")==0 ) {
41 fprintf(stderr, "Usage: %s %s", *argv, more_usage);
42 return(FALSE);
43 }
44 argc--;
45 argv++;
46
47 while (argc-- > 0) {
Eric Andersen9d3aba71999-10-06 09:04:55 +000048 file = fopen(*argv, "r");
Eric Andersen4bea32a1999-10-06 00:30:51 +000049 if (file == NULL) {
Eric Andersen9d3aba71999-10-06 09:04:55 +000050 perror("Can't open file");
Eric Andersen4bea32a1999-10-06 00:30:51 +000051 return(FALSE);
Eric Andersencc8ed391999-10-05 16:24:54 +000052 }
Eric Andersen4bea32a1999-10-06 00:30:51 +000053 fstat(fileno(file), &st);
Eric Andersen9d3aba71999-10-06 09:04:55 +000054 fprintf(stderr, "hi\n");
Eric Andersencc8ed391999-10-05 16:24:54 +000055
Eric Andersen4bea32a1999-10-06 00:30:51 +000056 while ((c = getc(file)) != EOF) {
57 if ( next_page ) {
58 int len=0;
59 next_page = 0;
60 lines=0;
Eric Andersen9d3aba71999-10-06 09:04:55 +000061 len = fprintf(stdout, "--More-- (%d%% of %ld bytes)",
Eric Andersen4bea32a1999-10-06 00:30:51 +000062 (int) (100*( (double) ftell(file) / (double) st.st_size )),
63 st.st_size);
64 fflush(stdout);
65 getc( stdin);
Eric Andersen9d3aba71999-10-06 09:04:55 +000066#ifdef ERASE_STUFF
67 /* Try to erase the "More" message */
Eric Andersen4bea32a1999-10-06 00:30:51 +000068 while(len-- > 0)
69 putc('\b', stdout);
70 while(len++ < cols)
Eric Andersen9d3aba71999-10-06 09:04:55 +000071 putc(' ', stdout);
Eric Andersen4bea32a1999-10-06 00:30:51 +000072 while(len-- > 0)
73 putc('\b', stdout);
74 fflush(stdout);
Eric Andersencc8ed391999-10-05 16:24:54 +000075#endif
Eric Andersen4bea32a1999-10-06 00:30:51 +000076 }
77 if ( c == '\n' && ++lines == (rows + 1) )
78 next_page = 1;
79 putc(c, stdout);
Eric Andersencc8ed391999-10-05 16:24:54 +000080 }
Eric Andersen4bea32a1999-10-06 00:30:51 +000081 fclose(file);
82 fflush(stdout);
83
84 argc--;
85 argv++;
86 }
87 return(TRUE);
Eric Andersencc8ed391999-10-05 16:24:54 +000088}
Eric Andersen4bea32a1999-10-06 00:30:51 +000089
90