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