("" < 3.4) always evaluates to true, which unconditionally
[dragonfly.git] / contrib / less-381 / main.c
blob1fb91a3c946e11379f3620db342daeb6ab384beb
1 /*
2 * Copyright (C) 1984-2002 Mark Nudelman
4 * You may distribute under the terms of either the GNU General Public
5 * License or the Less License, as specified in the README file.
7 * For more information about less, or for information on how to
8 * contact the author, see the README file.
9 */
13 * Entry point, initialization, miscellaneous routines.
16 #include "less.h"
17 #if MSDOS_COMPILER==WIN32C
18 #include <windows.h>
19 #endif
21 public char * every_first_cmd = NULL;
22 public int new_file;
23 public int is_tty;
24 public IFILE curr_ifile = NULL_IFILE;
25 public IFILE old_ifile = NULL_IFILE;
26 public struct scrpos initial_scrpos;
27 public int any_display = FALSE;
28 public POSITION start_attnpos = NULL_POSITION;
29 public POSITION end_attnpos = NULL_POSITION;
30 public int wscroll;
31 public char * progname;
32 public int quitting;
33 public int secure;
34 public int dohelp;
36 #if LOGFILE
37 public int logfile = -1;
38 public int force_logfile = FALSE;
39 public char * namelogfile = NULL;
40 #endif
42 #if EDITOR
43 public char * editor;
44 public char * editproto;
45 #endif
47 #if TAGS
48 extern char * tags;
49 extern char * tagoption;
50 extern int jump_sline;
51 #endif
53 #ifdef WIN32
54 static char consoleTitle[256];
55 #endif
57 extern int missing_cap;
58 extern int know_dumb;
62 * Entry point.
64 int
65 main(argc, argv)
66 int argc;
67 char *argv[];
69 IFILE ifile;
70 char *s;
72 #ifdef __EMX__
73 _response(&argc, &argv);
74 _wildcard(&argc, &argv);
75 #endif
77 progname = *argv++;
78 argc--;
80 secure = 0;
81 s = lgetenv("LESSSECURE");
82 if (s != NULL && *s != '\0')
83 secure = 1;
85 #ifdef WIN32
86 if (getenv("HOME") == NULL)
89 * If there is no HOME environment variable,
90 * try the concatenation of HOMEDRIVE + HOMEPATH.
92 char *drive = getenv("HOMEDRIVE");
93 char *path = getenv("HOMEPATH");
94 if (drive != NULL && path != NULL)
96 char *env = (char *) ecalloc(strlen(drive) +
97 strlen(path) + 6, sizeof(char));
98 strcpy(env, "HOME=");
99 strcat(env, drive);
100 strcat(env, path);
101 putenv(env);
104 GetConsoleTitle(consoleTitle, sizeof(consoleTitle)/sizeof(char));
105 #endif /* WIN32 */
108 * Process command line arguments and LESS environment arguments.
109 * Command line arguments override environment arguments.
111 is_tty = isatty(1);
112 get_term();
113 init_cmds();
114 init_prompt();
115 init_charset();
116 init_line();
117 init_option();
118 s = lgetenv("LESS");
119 if (s != NULL)
120 scan_option(save(s));
122 #define isoptstring(s) (((s)[0] == '-' || (s)[0] == '+') && (s)[1] != '\0')
123 while (argc > 0 && (isoptstring(*argv) || isoptpending()))
125 s = *argv++;
126 argc--;
127 if (strcmp(s, "--") == 0)
128 break;
129 scan_option(s);
131 #undef isoptstring
133 if (isoptpending())
136 * Last command line option was a flag requiring a
137 * following string, but there was no following string.
139 nopendopt();
140 quit(QUIT_OK);
143 #if EDITOR
144 editor = lgetenv("VISUAL");
145 if (editor == NULL || *editor == '\0')
147 editor = lgetenv("EDITOR");
148 if (editor == NULL || *editor == '\0')
149 editor = EDIT_PGM;
151 editproto = lgetenv("LESSEDIT");
152 if (editproto == NULL || *editproto == '\0')
153 editproto = "%E ?lm+%lm. %f";
154 #endif
157 * Call get_ifile with all the command line filenames
158 * to "register" them with the ifile system.
160 ifile = NULL_IFILE;
161 if (dohelp)
162 ifile = get_ifile(FAKE_HELPFILE, ifile);
163 while (argc-- > 0)
165 char *filename;
166 #if (MSDOS_COMPILER && MSDOS_COMPILER != DJGPPC)
168 * Because the "shell" doesn't expand filename patterns,
169 * treat each argument as a filename pattern rather than
170 * a single filename.
171 * Expand the pattern and iterate over the expanded list.
173 struct textlist tlist;
174 char *gfilename;
176 gfilename = lglob(*argv++);
177 init_textlist(&tlist, gfilename);
178 filename = NULL;
179 while ((filename = forw_textlist(&tlist, filename)) != NULL)
181 (void) get_ifile(filename, ifile);
182 ifile = prev_ifile(NULL_IFILE);
184 free(gfilename);
185 #else
186 filename = shell_quote(*argv);
187 if (filename == NULL)
188 filename = *argv;
189 argv++;
190 (void) get_ifile(filename, ifile);
191 ifile = prev_ifile(NULL_IFILE);
192 #endif
195 * Set up terminal, etc.
197 if (!is_tty)
200 * Output is not a tty.
201 * Just copy the input file(s) to output.
203 SET_BINARY(1);
204 if (nifile() == 0)
206 if (edit_stdin() == 0)
207 cat_file();
208 } else if (edit_first() == 0)
210 do {
211 cat_file();
212 } while (edit_next(1) == 0);
214 quit(QUIT_OK);
217 if (missing_cap && !know_dumb)
218 error("WARNING: terminal is not fully functional", NULL_PARG);
219 init_mark();
220 open_getchr();
221 raw_mode(1);
222 init_signals(1);
225 * Select the first file to examine.
227 #if TAGS
228 if (tagoption != NULL || strcmp(tags, "-") == 0)
231 * A -t option was given.
232 * Verify that no filenames were also given.
233 * Edit the file selected by the "tags" search,
234 * and search for the proper line in the file.
236 if (nifile() > 0)
238 error("No filenames allowed with -t option", NULL_PARG);
239 quit(QUIT_ERROR);
241 findtag(tagoption);
242 if (edit_tagfile()) /* Edit file which contains the tag */
243 quit(QUIT_ERROR);
245 * Search for the line which contains the tag.
246 * Set up initial_scrpos so we display that line.
248 initial_scrpos.pos = tagsearch();
249 if (initial_scrpos.pos == NULL_POSITION)
250 quit(QUIT_ERROR);
251 initial_scrpos.ln = jump_sline;
252 } else
253 #endif
254 if (nifile() == 0)
256 if (edit_stdin()) /* Edit standard input */
257 quit(QUIT_ERROR);
258 } else
260 if (edit_first()) /* Edit first valid file in cmd line */
261 quit(QUIT_ERROR);
264 init();
265 commands();
266 quit(QUIT_OK);
267 /*NOTREACHED*/
268 return (0);
272 * Copy a string to a "safe" place
273 * (that is, to a buffer allocated by calloc).
275 public char *
276 save(s)
277 char *s;
279 register char *p;
281 p = (char *) ecalloc(strlen(s)+1, sizeof(char));
282 strcpy(p, s);
283 return (p);
287 * Allocate memory.
288 * Like calloc(), but never returns an error (NULL).
290 public VOID_POINTER
291 ecalloc(count, size)
292 int count;
293 unsigned int size;
295 register VOID_POINTER p;
297 p = (VOID_POINTER) calloc(count, size);
298 if (p != NULL)
299 return (p);
300 error("Cannot allocate memory", NULL_PARG);
301 quit(QUIT_ERROR);
302 /*NOTREACHED*/
303 return (NULL);
307 * Skip leading spaces in a string.
309 public char *
310 skipsp(s)
311 register char *s;
313 while (*s == ' ' || *s == '\t')
314 s++;
315 return (s);
319 * See how many characters of two strings are identical.
320 * If uppercase is true, the first string must begin with an uppercase
321 * character; the remainder of the first string may be either case.
323 public int
324 sprefix(ps, s, uppercase)
325 char *ps;
326 char *s;
327 int uppercase;
329 register int c;
330 register int sc;
331 register int len = 0;
333 for ( ; *s != '\0'; s++, ps++)
335 c = *ps;
336 if (uppercase)
338 if (len == 0 && SIMPLE_IS_LOWER(c))
339 return (-1);
340 if (SIMPLE_IS_UPPER(c))
341 c = SIMPLE_TO_LOWER(c);
343 sc = *s;
344 if (len > 0 && SIMPLE_IS_UPPER(sc))
345 sc = SIMPLE_TO_LOWER(sc);
346 if (c != sc)
347 break;
348 len++;
350 return (len);
354 * Exit the program.
356 public void
357 quit(status)
358 int status;
360 static int save_status;
363 * Put cursor at bottom left corner, clear the line,
364 * reset the terminal modes, and exit.
366 if (status < 0)
367 status = save_status;
368 else
369 save_status = status;
370 quitting = 1;
371 edit((char*)NULL);
372 if (any_display && is_tty)
373 clear_bot();
374 deinit();
375 flush();
376 raw_mode(0);
377 #if MSDOS_COMPILER && MSDOS_COMPILER != DJGPPC
379 * If we don't close 2, we get some garbage from
380 * 2's buffer when it flushes automatically.
381 * I cannot track this one down RB
382 * The same bug shows up if we use ^C^C to abort.
384 close(2);
385 #endif
386 #if WIN32
387 SetConsoleTitle(consoleTitle);
388 #endif
389 close_getchr();
390 exit(status);