opttbl.c revision 240121
1/*
2 * Copyright (C) 1984-2012  Mark Nudelman
3 *
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.
6 *
7 * For more information, see the README file.
8 */
9
10
11/*
12 * The option table.
13 */
14
15#include "less.h"
16#include "option.h"
17
18/*
19 * Variables controlled by command line options.
20 */
21public int quiet;		/* Should we suppress the audible bell? */
22public int how_search;		/* Where should forward searches start? */
23public int top_scroll;		/* Repaint screen from top?
24				   (alternative is scroll from bottom) */
25public int pr_type;		/* Type of prompt (short, medium, long) */
26public int bs_mode;		/* How to process backspaces */
27public int know_dumb;		/* Don't complain about dumb terminals */
28public int quit_at_eof;		/* Quit after hitting end of file twice */
29public int quit_if_one_screen;	/* Quit if EOF on first screen */
30public int squeeze;		/* Squeeze multiple blank lines into one */
31public int tabstop;		/* Tab settings */
32public int back_scroll;		/* Repaint screen on backwards movement */
33public int forw_scroll;		/* Repaint screen on forward movement */
34public int caseless;		/* Do "caseless" searches */
35public int linenums;		/* Use line numbers */
36public int autobuf;		/* Automatically allocate buffers as needed */
37public int bufspace;		/* Max buffer space per file (K) */
38public int ctldisp;		/* Send control chars to screen untranslated */
39public int force_open;		/* Open the file even if not regular file */
40public int swindow;		/* Size of scrolling window */
41public int jump_sline;		/* Screen line of "jump target" */
42public long jump_sline_fraction = -1;
43public long shift_count_fraction = -1;
44public int chopline;		/* Truncate displayed lines at screen width */
45public int no_init;		/* Disable sending ti/te termcap strings */
46public int no_keypad;		/* Disable sending ks/ke termcap strings */
47public int twiddle;             /* Show tildes after EOF */
48public int show_attn;		/* Hilite first unread line */
49public int shift_count;		/* Number of positions to shift horizontally */
50public int status_col;		/* Display a status column */
51public int use_lessopen;	/* Use the LESSOPEN filter */
52public int quit_on_intr;	/* Quit on interrupt */
53public int follow_mode;		/* F cmd Follows file desc or file name? */
54public int oldbot;		/* Old bottom of screen behavior {{REMOVE}} */
55#if HILITE_SEARCH
56public int hilite_search;	/* Highlight matched search patterns? */
57#endif
58
59public int less_is_more = 0;	/* Make compatible with POSIX more */
60
61/*
62 * Long option names.
63 */
64static struct optname a_optname      = { "search-skip-screen",   NULL };
65static struct optname b_optname      = { "buffers",              NULL };
66static struct optname B__optname     = { "auto-buffers",         NULL };
67static struct optname c_optname      = { "clear-screen",         NULL };
68static struct optname d_optname      = { "dumb",                 NULL };
69#if MSDOS_COMPILER
70static struct optname D__optname     = { "color",                NULL };
71#endif
72static struct optname e_optname      = { "quit-at-eof",          NULL };
73static struct optname f_optname      = { "force",                NULL };
74static struct optname F__optname     = { "quit-if-one-screen",   NULL };
75#if HILITE_SEARCH
76static struct optname g_optname      = { "hilite-search",        NULL };
77#endif
78static struct optname h_optname      = { "max-back-scroll",      NULL };
79static struct optname i_optname      = { "ignore-case",          NULL };
80static struct optname j_optname      = { "jump-target",          NULL };
81static struct optname J__optname     = { "status-column",        NULL };
82#if USERFILE
83static struct optname k_optname      = { "lesskey-file",         NULL };
84#endif
85static struct optname K__optname     = { "quit-on-intr",         NULL };
86static struct optname L__optname     = { "no-lessopen",          NULL };
87static struct optname m_optname      = { "long-prompt",          NULL };
88static struct optname n_optname      = { "line-numbers",         NULL };
89#if LOGFILE
90static struct optname o_optname      = { "log-file",             NULL };
91static struct optname O__optname     = { "LOG-FILE",             NULL };
92#endif
93static struct optname p_optname      = { "pattern",              NULL };
94static struct optname P__optname     = { "prompt",               NULL };
95static struct optname q2_optname     = { "silent",               NULL };
96static struct optname q_optname      = { "quiet",                &q2_optname };
97static struct optname r_optname      = { "raw-control-chars",    NULL };
98static struct optname s_optname      = { "squeeze-blank-lines",  NULL };
99static struct optname S__optname     = { "chop-long-lines",      NULL };
100#if TAGS
101static struct optname t_optname      = { "tag",                  NULL };
102static struct optname T__optname     = { "tag-file",             NULL };
103#endif
104static struct optname u_optname      = { "underline-special",    NULL };
105static struct optname V__optname     = { "version",              NULL };
106static struct optname w_optname      = { "hilite-unread",        NULL };
107static struct optname x_optname      = { "tabs",                 NULL };
108static struct optname X__optname     = { "no-init",              NULL };
109static struct optname y_optname      = { "max-forw-scroll",      NULL };
110static struct optname z_optname      = { "window",               NULL };
111static struct optname quote_optname  = { "quotes",               NULL };
112static struct optname tilde_optname  = { "tilde",                NULL };
113static struct optname query_optname  = { "help",                 NULL };
114static struct optname pound_optname  = { "shift",                NULL };
115static struct optname keypad_optname = { "no-keypad",            NULL };
116static struct optname oldbot_optname = { "old-bot",              NULL };
117static struct optname follow_optname = { "follow-name",          NULL };
118
119
120/*
121 * Table of all options and their semantics.
122 *
123 * For BOOL and TRIPLE options, odesc[0], odesc[1], odesc[2] are
124 * the description of the option when set to 0, 1 or 2, respectively.
125 * For NUMBER options, odesc[0] is the prompt to use when entering
126 * a new value, and odesc[1] is the description, which should contain
127 * one %d which is replaced by the value of the number.
128 * For STRING options, odesc[0] is the prompt to use when entering
129 * a new value, and odesc[1], if not NULL, is the set of characters
130 * that are valid in the string.
131 */
132static struct loption option[] =
133{
134	{ 'a', &a_optname,
135		TRIPLE, OPT_ONPLUS, &how_search, NULL,
136		{
137			"Search includes displayed screen",
138			"Search skips displayed screen",
139			"Search includes all of displayed screen"
140		}
141	},
142
143	{ 'b', &b_optname,
144		NUMBER|INIT_HANDLER, 64, &bufspace, opt_b,
145		{
146			"Max buffer space per file (K): ",
147			"Max buffer space per file: %dK",
148			NULL
149		}
150	},
151	{ 'B', &B__optname,
152		BOOL, OPT_ON, &autobuf, NULL,
153		{
154			"Don't automatically allocate buffers",
155			"Automatically allocate buffers when needed",
156			NULL
157		}
158	},
159	{ 'c', &c_optname,
160		TRIPLE, OPT_OFF, &top_scroll, NULL,
161		{
162			"Repaint by scrolling from bottom of screen",
163			"Repaint by painting from top of screen",
164			"Repaint by painting from top of screen"
165		}
166	},
167	{ 'd', &d_optname,
168		BOOL|NO_TOGGLE, OPT_OFF, &know_dumb, NULL,
169		{
170			"Assume intelligent terminal",
171			"Assume dumb terminal",
172			NULL
173		}
174	},
175#if MSDOS_COMPILER
176	{ 'D', &D__optname,
177		STRING|REPAINT|NO_QUERY, 0, NULL, opt_D,
178		{
179			"color desc: ",
180			"Ddknsu0123456789.",
181			NULL
182		}
183	},
184#endif
185	{ 'e', &e_optname,
186		TRIPLE, OPT_OFF, &quit_at_eof, NULL,
187		{
188			"Don't quit at end-of-file",
189			"Quit at end-of-file",
190			"Quit immediately at end-of-file"
191		}
192	},
193	{ 'f', &f_optname,
194		BOOL, OPT_OFF, &force_open, NULL,
195		{
196			"Open only regular files",
197			"Open even non-regular files",
198			NULL
199		}
200	},
201	{ 'F', &F__optname,
202		BOOL, OPT_OFF, &quit_if_one_screen, NULL,
203		{
204			"Don't quit if end-of-file on first screen",
205			"Quit if end-of-file on first screen",
206			NULL
207		}
208	},
209#if HILITE_SEARCH
210	{ 'g', &g_optname,
211		TRIPLE|HL_REPAINT, OPT_ONPLUS, &hilite_search, NULL,
212		{
213			"Don't highlight search matches",
214			"Highlight matches for previous search only",
215			"Highlight all matches for previous search pattern",
216		}
217	},
218#endif
219	{ 'h', &h_optname,
220		NUMBER, -1, &back_scroll, NULL,
221		{
222			"Backwards scroll limit: ",
223			"Backwards scroll limit is %d lines",
224			NULL
225		}
226	},
227	{ 'i', &i_optname,
228		TRIPLE|HL_REPAINT, OPT_OFF, &caseless, opt_i,
229		{
230			"Case is significant in searches",
231			"Ignore case in searches",
232			"Ignore case in searches and in patterns"
233		}
234	},
235	{ 'j', &j_optname,
236		STRING, 0, NULL, opt_j,
237		{
238			"Target line: ",
239			"0123456789.-",
240			NULL
241		}
242	},
243	{ 'J', &J__optname,
244		BOOL|REPAINT, OPT_OFF, &status_col, NULL,
245		{
246			"Don't display a status column",
247			"Display a status column",
248			NULL
249		}
250	},
251#if USERFILE
252	{ 'k', &k_optname,
253		STRING|NO_TOGGLE|NO_QUERY, 0, NULL, opt_k,
254		{ NULL, NULL, NULL }
255	},
256#endif
257	{ 'K', &K__optname,
258		BOOL, OPT_OFF, &quit_on_intr, NULL,
259		{
260			"Interrupt (ctrl-C) returns to prompt",
261			"Interrupt (ctrl-C) exits less",
262			NULL
263		}
264	},
265	{ 'L', &L__optname,
266		BOOL, OPT_ON, &use_lessopen, NULL,
267		{
268			"Don't use the LESSOPEN filter",
269			"Use the LESSOPEN filter",
270			NULL
271		}
272	},
273	{ 'm', &m_optname,
274		TRIPLE, OPT_OFF, &pr_type, NULL,
275		{
276			"Short prompt",
277			"Medium prompt",
278			"Long prompt"
279		}
280	},
281	{ 'n', &n_optname,
282		TRIPLE|REPAINT, OPT_ON, &linenums, NULL,
283		{
284			"Don't use line numbers",
285			"Use line numbers",
286			"Constantly display line numbers"
287		}
288	},
289#if LOGFILE
290	{ 'o', &o_optname,
291		STRING, 0, NULL, opt_o,
292		{ "log file: ", NULL, NULL }
293	},
294	{ 'O', &O__optname,
295		STRING, 0, NULL, opt__O,
296		{ "Log file: ", NULL, NULL }
297	},
298#endif
299	{ 'p', &p_optname,
300		STRING|NO_TOGGLE|NO_QUERY, 0, NULL, opt_p,
301		{ NULL, NULL, NULL }
302	},
303	{ 'P', &P__optname,
304		STRING, 0, NULL, opt__P,
305		{ "prompt: ", NULL, NULL }
306	},
307	{ 'q', &q_optname,
308		TRIPLE, OPT_OFF, &quiet, NULL,
309		{
310			"Ring the bell for errors AND at eof/bof",
311			"Ring the bell for errors but not at eof/bof",
312			"Never ring the bell"
313		}
314	},
315	{ 'r', &r_optname,
316		TRIPLE|REPAINT, OPT_OFF, &ctldisp, NULL,
317		{
318			"Display control characters as ^X",
319			"Display control characters directly",
320			"Display control characters directly, processing ANSI sequences"
321		}
322	},
323	{ 's', &s_optname,
324		BOOL|REPAINT, OPT_OFF, &squeeze, NULL,
325		{
326			"Display all blank lines",
327			"Squeeze multiple blank lines",
328			NULL
329		}
330	},
331	{ 'S', &S__optname,
332		BOOL|REPAINT, OPT_OFF, &chopline, NULL,
333		{
334			"Fold long lines",
335			"Chop long lines",
336			NULL
337		}
338	},
339#if TAGS
340	{ 't', &t_optname,
341		STRING|NO_QUERY, 0, NULL, opt_t,
342		{ "tag: ", NULL, NULL }
343	},
344	{ 'T', &T__optname,
345		STRING, 0, NULL, opt__T,
346		{ "tags file: ", NULL, NULL }
347	},
348#endif
349	{ 'u', &u_optname,
350		TRIPLE|REPAINT, OPT_OFF, &bs_mode, NULL,
351		{
352			"Display underlined text in underline mode",
353			"Backspaces cause overstrike",
354			"Print backspace as ^H"
355		}
356	},
357	{ 'V', &V__optname,
358		NOVAR, 0, NULL, opt__V,
359		{ NULL, NULL, NULL }
360	},
361	{ 'w', &w_optname,
362		TRIPLE|REPAINT, OPT_OFF, &show_attn, NULL,
363		{
364			"Don't highlight first unread line",
365			"Highlight first unread line after forward-screen",
366			"Highlight first unread line after any forward movement",
367		}
368	},
369	{ 'x', &x_optname,
370		STRING|REPAINT, 0, NULL, opt_x,
371		{
372			"Tab stops: ",
373			"0123456789,",
374			NULL
375		}
376	},
377	{ 'X', &X__optname,
378		BOOL|NO_TOGGLE, OPT_OFF, &no_init, NULL,
379		{
380			"Send init/deinit strings to terminal",
381			"Don't use init/deinit strings",
382			NULL
383		}
384	},
385	{ 'y', &y_optname,
386		NUMBER, -1, &forw_scroll, NULL,
387		{
388			"Forward scroll limit: ",
389			"Forward scroll limit is %d lines",
390			NULL
391		}
392	},
393	{ 'z', &z_optname,
394		NUMBER, -1, &swindow, NULL,
395		{
396			"Scroll window size: ",
397			"Scroll window size is %d lines",
398			NULL
399		}
400	},
401	{ '"', &quote_optname,
402		STRING, 0, NULL, opt_quote,
403		{ "quotes: ", NULL, NULL }
404	},
405	{ '~', &tilde_optname,
406		BOOL|REPAINT, OPT_ON, &twiddle, NULL,
407		{
408			"Don't show tildes after end of file",
409			"Show tildes after end of file",
410			NULL
411		}
412	},
413	{ '?', &query_optname,
414		NOVAR, 0, NULL, opt_query,
415		{ NULL, NULL, NULL }
416	},
417	{ '#', &pound_optname,
418		STRING, 0, NULL, opt_shift,
419		{
420			"Horizontal shift: ",
421			"0123456789.",
422			NULL
423		}
424	},
425	{ OLETTER_NONE, &keypad_optname,
426		BOOL|NO_TOGGLE, OPT_OFF, &no_keypad, NULL,
427		{
428			"Use keypad mode",
429			"Don't use keypad mode",
430			NULL
431		}
432	},
433	{ OLETTER_NONE, &oldbot_optname,
434		BOOL, OPT_OFF, &oldbot, NULL,
435		{
436			"Use new bottom of screen behavior",
437			"Use old bottom of screen behavior",
438			NULL
439		}
440	},
441	{ OLETTER_NONE, &follow_optname,
442		BOOL, FOLLOW_DESC, &follow_mode, NULL,
443		{
444			"F command follows file descriptor",
445			"F command follows file name",
446			NULL
447		}
448	},
449	{ '\0', NULL, NOVAR, 0, NULL, NULL, { NULL, NULL, NULL } }
450};
451
452
453/*
454 * Initialize each option to its default value.
455 */
456	public void
457init_option()
458{
459	register struct loption *o;
460	char *p;
461
462	p = lgetenv("LESS_IS_MORE");
463	if (p != NULL && *p != '\0')
464		less_is_more = 1;
465
466	for (o = option;  o->oletter != '\0';  o++)
467	{
468		/*
469		 * Set each variable to its default.
470		 */
471		if (o->ovar != NULL)
472			*(o->ovar) = o->odefault;
473		if (o->otype & INIT_HANDLER)
474			(*(o->ofunc))(INIT, (char *) NULL);
475	}
476}
477
478/*
479 * Find an option in the option table, given its option letter.
480 */
481	public struct loption *
482findopt(c)
483	int c;
484{
485	register struct loption *o;
486
487	for (o = option;  o->oletter != '\0';  o++)
488	{
489		if (o->oletter == c)
490			return (o);
491		if ((o->otype & TRIPLE) && ASCII_TO_UPPER(o->oletter) == c)
492			return (o);
493	}
494	return (NULL);
495}
496
497/*
498 *
499 */
500	static int
501is_optchar(c)
502	char c;
503{
504	if (ASCII_IS_UPPER(c))
505		return 1;
506	if (ASCII_IS_LOWER(c))
507		return 1;
508	if (c == '-')
509		return 1;
510	return 0;
511}
512
513/*
514 * Find an option in the option table, given its option name.
515 * p_optname is the (possibly partial) name to look for, and
516 * is updated to point after the matched name.
517 * p_oname if non-NULL is set to point to the full option name.
518 */
519	public struct loption *
520findopt_name(p_optname, p_oname, p_err)
521	char **p_optname;
522	char **p_oname;
523	int *p_err;
524{
525	char *optname = *p_optname;
526	register struct loption *o;
527	register struct optname *oname;
528	register int len;
529	int uppercase;
530	struct loption *maxo = NULL;
531	struct optname *maxoname = NULL;
532	int maxlen = 0;
533	int ambig = 0;
534	int exact = 0;
535
536	/*
537	 * Check all options.
538	 */
539	for (o = option;  o->oletter != '\0';  o++)
540	{
541		/*
542		 * Check all names for this option.
543		 */
544		for (oname = o->onames;  oname != NULL;  oname = oname->onext)
545		{
546			/*
547			 * Try normal match first (uppercase == 0),
548			 * then, then if it's a TRIPLE option,
549			 * try uppercase match (uppercase == 1).
550			 */
551			for (uppercase = 0;  uppercase <= 1;  uppercase++)
552			{
553				len = sprefix(optname, oname->oname, uppercase);
554				if (len <= 0 || is_optchar(optname[len]))
555				{
556					/*
557					 * We didn't use all of the option name.
558					 */
559					continue;
560				}
561				if (!exact && len == maxlen)
562					/*
563					 * Already had a partial match,
564					 * and now there's another one that
565					 * matches the same length.
566					 */
567					ambig = 1;
568				else if (len > maxlen)
569				{
570					/*
571					 * Found a better match than
572					 * the one we had.
573					 */
574					maxo = o;
575					maxoname = oname;
576					maxlen = len;
577					ambig = 0;
578					exact = (len == (int)strlen(oname->oname));
579				}
580				if (!(o->otype & TRIPLE))
581					break;
582			}
583		}
584	}
585	if (ambig)
586	{
587		/*
588		 * Name matched more than one option.
589		 */
590		if (p_err != NULL)
591			*p_err = OPT_AMBIG;
592		return (NULL);
593	}
594	*p_optname = optname + maxlen;
595	if (p_oname != NULL)
596		*p_oname = maxoname == NULL ? NULL : maxoname->oname;
597	return (maxo);
598}
599