More stuff...
[oweals/busybox.git] / util-linux / 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;
53     int next_page=0, rows = 24;
54 #ifdef BB_MORE_TERM
55     int cols;
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         fprintf(stderr, "Usage: %s %s", *argv, more_usage);
63         exit(FALSE);
64     }
65     argc--;
66     argv++;
67
68     while (argc-- > 0) {
69             file = fopen(*argv, "r");
70         if (file == NULL) {
71             perror("Can't open file");
72             exit(FALSE);
73         }
74         fstat(fileno(file), &st);
75         fprintf(stderr, "hi\n");
76
77 #ifdef BB_MORE_TERM
78         cin = fopen("/dev/tty", "r");
79         tcgetattr(fileno(cin),&initial_settings);
80         new_settings = initial_settings;
81         new_settings.c_lflag &= ~ICANON;
82         new_settings.c_lflag &= ~ECHO;
83         tcsetattr(fileno(cin), TCSANOW, &new_settings);
84         
85         (void) signal(SIGINT, gotsig);
86
87         ioctl(STDOUT_FILENO, TIOCGWINSZ, &win);
88         if (win.ws_row > 4)     rows = win.ws_row - 2;
89         if (win.ws_col > 0)     cols = win.ws_col - 1;
90
91
92 #endif
93         while ((c = getc(file)) != EOF) {
94             if ( next_page ) {
95                 int len=0;
96                 next_page = 0;
97                 lines=0;
98                 len = fprintf(stdout, "--More-- (%d%% of %ld bytes)%s", 
99                         (int) (100*( (double) ftell(file) / (double) st.st_size )),
100                         st.st_size,
101 #ifdef BB_MORE_TERM
102                         ""
103 #else
104                         "\n"
105 #endif
106                         );
107
108                 fflush(stdout);
109                 input = getc( stdin);
110
111 #ifdef BB_MORE_TERM
112                 /* Erase the "More" message */
113                 while(len-- > 0)
114                     putc('\b', stdout);
115                 while(len++ < cols)
116                     putc(' ', stdout);
117                 while(len-- > 0)
118                     putc('\b', stdout);
119                 fflush(stdout);
120 #endif
121
122             }
123             if (input=='q')
124                 goto end;
125             if (input==' ' &&  c == '\n' )
126                 next_page = 1;
127             if ( c == '\n' && ++lines == (rows + 1) )
128                 next_page = 1;
129             putc(c, stdout);
130         }
131         fclose(file);
132         fflush(stdout);
133
134         argc--;
135         argv++;
136     }
137 end:
138 #ifdef BB_MORE_TERM
139     gotsig(0);
140 #endif  
141     exit(TRUE);
142 }
143