7fbca23177fe8306b9d2fb47f04aefb8e061d4be
[oweals/busybox.git] / more.c
1 /*
2  * Mini more implementation for busybox
3  *
4  *
5  * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
6  *
7  * Latest version blended together by Erik Andersen <andersen@lineo.com>,
8  * based on the original more implementation by Bruce, and code from the 
9  * Debian boot-floppies team.
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  * General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24  *
25  */
26
27
28 /* Turning this off makes things a bit smaller (and less pretty) */
29 #define BB_FEATURE_USE_TERMIOS
30 /* Turning this off makes things a bit smaller (and less pretty) */
31 #define BB_FEATURE_AUTOWIDTH
32
33
34
35 #include "internal.h"
36 #include <stdio.h>
37 #include <fcntl.h>
38 #include <signal.h>
39 #include <sys/ioctl.h>
40
41 static const char more_usage[] = "more [file ...]\n";
42
43 /* ED: sparc termios is broken: revert back to old termio handling. */
44 #ifdef BB_FEATURE_USE_TERMIOS
45
46 #if #cpu(sparc)
47 #      define USE_OLD_TERMIO
48 #      include <termio.h>
49 #      define termios termio
50 #      define stty(fd,argp) ioctl(fd,TCSETAF,argp)
51 #else
52 #      include <termios.h>
53 #      define stty(fd,argp) tcsetattr(fd,TCSANOW,argp)
54 #endif
55
56     FILE *cin;
57     struct termios initial_settings, new_settings;
58
59     void gotsig(int sig) { 
60             stty(fileno(cin), &initial_settings);
61             fprintf(stdout, "\n");
62             exit( TRUE);
63     }
64 #endif
65
66
67
68 #define TERMINAL_WIDTH  79      /* not 80 in case terminal has linefold bug */
69 #define TERMINAL_HEIGHT 24
70
71
72 #if defined BB_FEATURE_AUTOWIDTH
73 static int terminal_width = 0, terminal_height = 0;
74 #else
75 #define terminal_width  TERMINAL_WIDTH
76 #define terminal_height TERMINAL_HEIGHT
77 #endif
78
79
80
81 extern int more_main(int argc, char **argv)
82 {
83     int c, lines=0, input=0;
84     int next_page=0;
85     struct stat st;     
86     FILE *file;
87 #ifdef BB_FEATURE_AUTOWIDTH
88     struct winsize win = {0,0};
89 #endif
90
91     argc--;
92     argv++;
93
94     if ( argc > 0 && (strcmp(*argv,"--help")==0 || strcmp(*argv,"-h")==0) ) {
95         usage (more_usage);
96     }
97     do {
98         if (argc==0) {
99             file = stdin;
100         }
101         else
102             file = fopen(*argv, "r");
103
104         if (file == NULL) {
105             perror(*argv);
106             exit(FALSE);
107         }
108         fstat(fileno(file), &st);
109
110 #ifdef BB_FEATURE_USE_TERMIOS
111         cin = fopen("/dev/tty", "r");
112         if (!cin)
113             cin = fopen("/dev/console", "r");
114 #ifdef USE_OLD_TERMIO
115         ioctl(fileno(cin),TCGETA,&initial_settings);
116 #else
117         tcgetattr(fileno(cin),&initial_settings);
118 #endif
119         new_settings = initial_settings;
120         new_settings.c_lflag &= ~ICANON;
121         new_settings.c_lflag &= ~ECHO;
122         stty(fileno(cin), &new_settings);
123
124 #ifdef BB_FEATURE_AUTOWIDTH     
125         ioctl(fileno(stdout), TIOCGWINSZ, &win);
126         if (win.ws_row > 4) 
127             terminal_height = win.ws_row - 2;
128         if (win.ws_col > 0) 
129             terminal_width = win.ws_col - 1;
130 #endif
131
132         (void) signal(SIGINT, gotsig);
133         (void) signal(SIGQUIT, gotsig);
134         (void) signal(SIGTERM, gotsig);
135
136 #endif
137         while ((c = getc(file)) != EOF) {
138             if ( next_page ) {
139                 int len=0;
140                 next_page = 0;
141                 lines=0;
142                 len = fprintf(stdout, "--More-- ");
143                 if (file != stdin) {
144                     len += fprintf(stdout, "(%d%% of %ld bytes)", 
145                         (int) (100*( (double) ftell(file) / (double) st.st_size )),
146                         st.st_size);
147                 }
148                 len += fprintf(stdout, "%s",
149 #ifdef BB_FEATURE_USE_TERMIOS
150                         ""
151 #else
152                         "\n"
153 #endif
154                         );
155
156                 fflush(stdout);
157                 input = getc( cin);
158
159 #ifdef BB_FEATURE_USE_TERMIOS
160                 /* Erase the "More" message */
161                 while(--len >= 0)
162                     putc('\b', stdout);
163                 while(++len <= terminal_width)
164                     putc(' ', stdout);
165                 while(--len >= 0)
166                     putc('\b', stdout);
167                 fflush(stdout);
168 #endif
169
170             }
171             if (c == '\n' ) {
172                 switch(input) {
173                     case 'q':
174                         goto end;
175                     case '\n':
176                         /* increment by just one line if we are at 
177                          * the end of this line*/
178                         next_page = 1;
179                         break;
180                 }
181                 if ( ++lines == terminal_height )
182                     next_page = 1;
183             }
184             putc(c, stdout);
185         }
186         fclose(file);
187         fflush(stdout);
188
189         argv++;
190     } while (--argc > 0);
191 end:
192 #ifdef BB_FEATURE_USE_TERMIOS
193     gotsig(0);
194 #endif  
195     exit(TRUE);
196 }
197