53437ed58c50deed4e14e44c5a3b4a6066d13c34
[platform/upstream/busybox.git] / more.c
1 /*
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
22
23 /* Turning this off makes things a bit smaller (and less pretty) */
24 #define BB_MORE_TERM
25
26
27
28 #include "internal.h"
29 #include <stdio.h>
30 #include <signal.h>
31
32
33 const char more_usage[] = "[file ...]";
34
35
36 #ifdef BB_MORE_TERM
37     #include <termios.h>
38     #include <signal.h>
39     #include <sys/ioctl.h>
40
41     FILE *cin;
42     struct termios initial_settings, new_settings;
43
44     void gotsig(int sig) { 
45             tcsetattr(fileno(cin), TCSANOW, &initial_settings);
46             exit( TRUE);
47     }
48 #endif
49
50 extern int more_main(int argc, char **argv)
51 {
52     int c, lines=0, input=0;
53     int next_page=0, rows = 24;
54 #ifdef BB_MORE_TERM
55     int cols=79;
56     struct winsize win;
57 #endif
58     struct stat st;     
59     FILE *file = stdin;
60
61     if ( strcmp(*argv,"--help")==0 || strcmp(*argv,"-h")==0 ) {
62         usage (more_usage);
63     }
64     argc--;
65     argv++;
66
67     while (argc-- > 0) {
68             file = fopen(*argv, "r");
69         if (file == NULL) {
70             perror("Can't open file");
71             exit(FALSE);
72         }
73         fstat(fileno(file), &st);
74         fprintf(stderr, "hi\n");
75
76 #ifdef BB_MORE_TERM
77         cin = fopen("/dev/tty", "r");
78         tcgetattr(fileno(cin),&initial_settings);
79         new_settings = initial_settings;
80         new_settings.c_lflag &= ~ICANON;
81         new_settings.c_lflag &= ~ECHO;
82         tcsetattr(fileno(cin), TCSANOW, &new_settings);
83         
84         (void) signal(SIGINT, gotsig);
85
86         ioctl(STDOUT_FILENO, TIOCGWINSZ, &win);
87         if (win.ws_row > 4)     rows = win.ws_row - 2;
88         if (win.ws_col > 0)     cols = win.ws_col - 1;
89
90
91 #endif
92         while ((c = getc(file)) != EOF) {
93             if ( next_page ) {
94                 int len=0;
95                 next_page = 0;
96                 lines=0;
97                 len = fprintf(stdout, "--More-- (%d%% of %ld bytes)%s", 
98                         (int) (100*( (double) ftell(file) / (double) st.st_size )),
99                         st.st_size,
100 #ifdef BB_MORE_TERM
101                         ""
102 #else
103                         "\n"
104 #endif
105                         );
106
107                 fflush(stdout);
108                 input = getc( stdin);
109
110 #ifdef BB_MORE_TERM
111                 /* Erase the "More" message */
112                 while(len-- > 0)
113                     putc('\b', stdout);
114                 while(len++ < cols)
115                     putc(' ', stdout);
116                 while(len-- > 0)
117                     putc('\b', stdout);
118                 fflush(stdout);
119 #endif
120
121             }
122             if (input=='q')
123                 goto end;
124             if (input==' ' &&  c == '\n' )
125                 next_page = 1;
126             if ( c == '\n' && ++lines == (rows + 1) )
127                 next_page = 1;
128             putc(c, stdout);
129         }
130         fclose(file);
131         fflush(stdout);
132
133         argc--;
134         argv++;
135     }
136 end:
137 #ifdef BB_MORE_TERM
138     gotsig(0);
139 #endif  
140     exit(TRUE);
141 }
142