Revert multibuild.pl change.
[oweals/busybox.git] / 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 "busybox.h"
29 #include <stdio.h>
30 #include <fcntl.h>
31 #include <signal.h>
32 #include <stdlib.h>
33 #include <sys/ioctl.h>
34 #define BB_DECLARE_EXTERN
35 #define bb_need_help
36 #include "messages.c"
37
38 /* ED: sparc termios is broken: revert back to old termio handling. */
39 #ifdef BB_FEATURE_USE_TERMIOS
40 #       if #cpu(sparc)
41 #               include <termio.h>
42 #               define termios termio
43 #               define setTermSettings(fd,argp) ioctl(fd,TCSETAF,argp)
44 #               define getTermSettings(fd,argp) ioctl(fd,TCGETA,argp)
45 #       else
46 #               include <termios.h>
47 #               define setTermSettings(fd,argp) tcsetattr(fd,TCSANOW,argp)
48 #               define getTermSettings(fd,argp) tcgetattr(fd, argp);
49 #       endif
50
51 static FILE *cin;
52
53 static struct termios initial_settings, new_settings;
54
55 static void gotsig(int sig)
56 {
57         setTermSettings(fileno(cin), &initial_settings);
58         putchar('\n');
59         exit(EXIT_FAILURE);
60 }
61 #endif /* BB_FEATURE_USE_TERMIOS */
62
63
64 static int terminal_width = 79; /* not 80 in case terminal has linefold bug */
65 static int terminal_height = 24;
66
67
68 extern int more_main(int argc, char **argv)
69 {
70         int c, lines = 0, input = 0;
71         int please_display_more_prompt = 0;
72         struct stat st;
73         FILE *file;
74
75 #if defined BB_FEATURE_AUTOWIDTH && defined BB_FEATURE_USE_TERMIOS
76         struct winsize win = { 0, 0, 0, 0 };
77 #endif
78
79         argc--;
80         argv++;
81
82         do {
83                 if (argc == 0) {
84                         file = stdin;
85                 } else
86                         file = xfopen(*argv, "r");
87
88                 fstat(fileno(file), &st);
89
90 #ifdef BB_FEATURE_USE_TERMIOS
91                 cin = fopen("/dev/tty", "r");
92                 if (!cin)
93                         cin = fopen("/dev/console", "r");
94                 getTermSettings(fileno(cin), &initial_settings);
95                 new_settings = initial_settings;
96                 new_settings.c_cc[VMIN] = 1;
97                 new_settings.c_cc[VTIME] = 0;
98                 new_settings.c_lflag &= ~ICANON;
99                 new_settings.c_lflag &= ~ECHO;
100                 setTermSettings(fileno(cin), &new_settings);
101
102 #       ifdef BB_FEATURE_AUTOWIDTH
103                 ioctl(fileno(stdout), TIOCGWINSZ, &win);
104                 if (win.ws_row > 4)
105                         terminal_height = win.ws_row - 2;
106                 if (win.ws_col > 0)
107                         terminal_width = win.ws_col - 1;
108 #       endif
109
110                 (void) signal(SIGINT, gotsig);
111                 (void) signal(SIGQUIT, gotsig);
112                 (void) signal(SIGTERM, gotsig);
113
114 #endif
115                 while ((c = getc(file)) != EOF) {
116                         if (please_display_more_prompt) {
117                                 int len = 0;
118
119                                 please_display_more_prompt = 0;
120                                 lines = 0;
121                                 len = printf("--More-- ");
122                                 if (file != stdin) {
123 #if _FILE_OFFSET_BITS == 64
124                                         len += printf("(%d%% of %lld bytes)",
125 #else
126                                         len += printf("(%d%% of %ld bytes)",
127 #endif
128                                                                    (int) (100 *
129                                                                                   ((double) ftell(file) /
130                                                                                    (double) st.st_size)),
131                                                                    st.st_size);
132                                 }
133                                 len += printf("%s",
134 #ifdef BB_FEATURE_USE_TERMIOS
135                                                            ""
136 #else
137                                                            "\n"
138 #endif
139                                         );
140
141                                 fflush(stdout);
142
143                                 /*
144                                  * We've just displayed the "--More--" prompt, so now we need
145                                  * to get input from the user.
146                                  */
147 #ifdef BB_FEATURE_USE_TERMIOS
148                                 input = getc(cin);
149 #else
150                                 input = getc(stdin);
151 #endif
152
153 #ifdef BB_FEATURE_USE_TERMIOS
154                                 /* Erase the "More" message */
155                                 while (--len >= 0)
156                                         putc('\b', stdout);
157                                 while (++len <= terminal_width)
158                                         putc(' ', stdout);
159                                 while (--len >= 0)
160                                         putc('\b', stdout);
161                                 fflush(stdout);
162 #endif
163
164                         }
165
166                         /* 
167                          * There are two input streams to worry about here:
168                          *
169                          *     c : the character we are reading from the file being "mored"
170                          * input : a character received from the keyboard
171                          *
172                          * If we hit a newline in the _file_ stream, we want to test and
173                          * see if any characters have been hit in the _input_ stream. This
174                          * allows the user to quit while in the middle of a file.
175                          */
176                         if (c == '\n') {
177                                 switch (input) {
178                                 case 'q':
179                                         goto end;
180                                 case '\n':
181                                         /* increment by just one line if we are at 
182                                          * the end of this line*/
183                                         please_display_more_prompt = 1;
184                                         break;
185                                 }
186                                 if (++lines == terminal_height)
187                                         please_display_more_prompt = 1;
188                         }
189                         /*
190                          * If we just read a newline from the file being 'mored' and any
191                          * key other than a return is hit, scroll by one page
192                          */
193                         putc(c, stdout);
194                 }
195                 fclose(file);
196                 fflush(stdout);
197
198                 argv++;
199         } while (--argc > 0);
200   end:
201 #ifdef BB_FEATURE_USE_TERMIOS
202         gotsig(0);
203 #endif
204         return(TRUE);
205 }