xref: /freebsd/contrib/less/less.h (revision 0957b409)
1 /*
2  * Copyright (C) 1984-2017  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 #define NEWBOT 1
11 
12 /*
13  * Standard include file for "less".
14  */
15 
16 /*
17  * Defines for MSDOS_COMPILER.
18  */
19 #define	MSOFTC		1	/* Microsoft C */
20 #define	BORLANDC	2	/* Borland C */
21 #define	WIN32C		3	/* Windows (Borland C or Microsoft C) */
22 #define	DJGPPC		4	/* DJGPP C */
23 
24 /*
25  * Include the file of compile-time options.
26  * The <> make cc search for it in -I., not srcdir.
27  */
28 #include <defines.h>
29 
30 #ifdef _SEQUENT_
31 /*
32  * Kludge for Sequent Dynix systems that have sigsetmask, but
33  * it's not compatible with the way less calls it.
34  * {{ Do other systems need this? }}
35  */
36 #undef HAVE_SIGSETMASK
37 #endif
38 
39 /*
40  * Language details.
41  */
42 #if HAVE_ANSI_PROTOS
43 #define LESSPARAMS(a) a
44 #else
45 #define LESSPARAMS(a) ()
46 #endif
47 #if HAVE_VOID
48 #define	VOID_POINTER	void *
49 #define	VOID_PARAM	void
50 #else
51 #define	VOID_POINTER	char *
52 #define	VOID_PARAM
53 #define	void  int
54 #endif
55 #if HAVE_CONST
56 #define	constant	const
57 #else
58 #define	constant
59 #endif
60 
61 #define	public		/* PUBLIC FUNCTION */
62 
63 /* Library function declarations */
64 
65 #if HAVE_SYS_TYPES_H
66 #include <sys/types.h>
67 #endif
68 #if HAVE_STDIO_H
69 #include <stdio.h>
70 #endif
71 #if HAVE_FCNTL_H
72 #include <fcntl.h>
73 #endif
74 #if HAVE_UNISTD_H
75 #include <unistd.h>
76 #endif
77 #if HAVE_CTYPE_H
78 #include <ctype.h>
79 #endif
80 #if HAVE_WCTYPE_H
81 #include <wctype.h>
82 #endif
83 #if HAVE_LIMITS_H
84 #include <limits.h>
85 #endif
86 #if HAVE_STDLIB_H
87 #include <stdlib.h>
88 #endif
89 #if HAVE_STRING_H
90 #include <string.h>
91 #endif
92 
93 /* OS-specific includes */
94 #ifdef _OSK
95 #include <modes.h>
96 #include <strings.h>
97 #endif
98 
99 #ifdef __TANDEM
100 #include <floss.h>
101 #endif
102 
103 #if MSDOS_COMPILER==WIN32C || OS2
104 #include <io.h>
105 #endif
106 
107 #if MSDOS_COMPILER==DJGPPC
108 #include <io.h>
109 #include <sys/exceptn.h>
110 #include <conio.h>
111 #include <pc.h>
112 #endif
113 
114 #if !HAVE_STDLIB_H
115 char *getenv();
116 off_t lseek();
117 VOID_POINTER calloc();
118 void free();
119 #endif
120 
121 /*
122  * Simple lowercase test which can be used during option processing
123  * (before options are parsed which might tell us what charset to use).
124  */
125 #define ASCII_IS_UPPER(c)	((c) >= 'A' && (c) <= 'Z')
126 #define ASCII_IS_LOWER(c)	((c) >= 'a' && (c) <= 'z')
127 #define	ASCII_TO_UPPER(c)	((c) - 'a' + 'A')
128 #define	ASCII_TO_LOWER(c)	((c) - 'A' + 'a')
129 
130 #undef IS_UPPER
131 #undef IS_LOWER
132 #undef TO_UPPER
133 #undef TO_LOWER
134 #undef IS_SPACE
135 #undef IS_DIGIT
136 
137 #if HAVE_WCTYPE
138 #define	IS_UPPER(c)	iswupper(c)
139 #define	IS_LOWER(c)	iswlower(c)
140 #define	TO_UPPER(c)	towupper(c)
141 #define	TO_LOWER(c)	towlower(c)
142 #else
143 #if HAVE_UPPER_LOWER
144 #define	IS_UPPER(c)	isupper((unsigned char) (c))
145 #define	IS_LOWER(c)	islower((unsigned char) (c))
146 #define	TO_UPPER(c)	toupper((unsigned char) (c))
147 #define	TO_LOWER(c)	tolower((unsigned char) (c))
148 #else
149 #define	IS_UPPER(c)	ASCII_IS_UPPER(c)
150 #define	IS_LOWER(c)	ASCII_IS_LOWER(c)
151 #define	TO_UPPER(c)	ASCII_TO_UPPER(c)
152 #define	TO_LOWER(c)	ASCII_TO_LOWER(c)
153 #endif
154 #endif
155 
156 #ifdef isspace
157 #define IS_SPACE(c)	isspace((unsigned char)(c))
158 #else
159 #define IS_SPACE(c)	((c) == ' ' || (c) == '\t' || (c) == '\n' || (c) == '\r' || (c) == '\f')
160 #endif
161 
162 #ifdef isdigit
163 #define IS_DIGIT(c)	isdigit((unsigned char)(c))
164 #else
165 #define IS_DIGIT(c)	((c) >= '0' && (c) <= '9')
166 #endif
167 
168 #define IS_CSI_START(c)	(((LWCHAR)(c)) == ESC || (((LWCHAR)(c)) == CSI))
169 
170 #ifndef NULL
171 #define	NULL	0
172 #endif
173 
174 #ifndef TRUE
175 #define	TRUE		1
176 #endif
177 #ifndef FALSE
178 #define	FALSE		0
179 #endif
180 
181 #define	OPT_OFF		0
182 #define	OPT_ON		1
183 #define	OPT_ONPLUS	2
184 
185 #if !HAVE_MEMCPY
186 #ifndef memcpy
187 #define	memcpy(to,from,len)	bcopy((from),(to),(len))
188 #endif
189 #endif
190 
191 #if HAVE_SNPRINTF
192 #define SNPRINTF1(str, size, fmt, v1)             snprintf((str), (size), (fmt), (v1))
193 #define SNPRINTF2(str, size, fmt, v1, v2)         snprintf((str), (size), (fmt), (v1), (v2))
194 #define SNPRINTF3(str, size, fmt, v1, v2, v3)     snprintf((str), (size), (fmt), (v1), (v2), (v3))
195 #define SNPRINTF4(str, size, fmt, v1, v2, v3, v4) snprintf((str), (size), (fmt), (v1), (v2), (v3), (v4))
196 #else
197 /* Use unsafe sprintf if we don't have snprintf. */
198 #define SNPRINTF1(str, size, fmt, v1)             sprintf((str), (fmt), (v1))
199 #define SNPRINTF2(str, size, fmt, v1, v2)         sprintf((str), (fmt), (v1), (v2))
200 #define SNPRINTF3(str, size, fmt, v1, v2, v3)     sprintf((str), (fmt), (v1), (v2), (v3))
201 #define SNPRINTF4(str, size, fmt, v1, v2, v3, v4) sprintf((str), (fmt), (v1), (v2), (v3), (v4))
202 #endif
203 
204 #define	BAD_LSEEK	((off_t)-1)
205 
206 #ifndef SEEK_SET
207 #define SEEK_SET 0
208 #endif
209 #ifndef SEEK_END
210 #define SEEK_END 2
211 #endif
212 
213 #ifndef CHAR_BIT
214 #define CHAR_BIT 8
215 #endif
216 
217 /*
218  * Upper bound on the string length of an integer converted to string.
219  * 302 / 1000 is ceil (log10 (2.0)).  Subtract 1 for the sign bit;
220  * add 1 for integer division truncation; add 1 more for a minus sign.
221  */
222 #define INT_STRLEN_BOUND(t) ((sizeof(t) * CHAR_BIT - 1) * 302 / 1000 + 1 + 1)
223 
224 /*
225  * Special types and constants.
226  */
227 typedef unsigned long LWCHAR;
228 typedef off_t		POSITION;
229 typedef off_t		LINENUM;
230 #define MIN_LINENUM_WIDTH  7	/* Min printing width of a line number */
231 #define MAX_UTF_CHAR_LEN   6	/* Max bytes in one UTF-8 char */
232 
233 #define	NULL_POSITION	((POSITION)(-1))
234 
235 /*
236  * Flags for open()
237  */
238 #if MSDOS_COMPILER || OS2
239 #define	OPEN_READ	(O_RDONLY|O_BINARY)
240 #else
241 #ifdef _OSK
242 #define	OPEN_READ	(S_IREAD)
243 #else
244 #ifdef O_RDONLY
245 #define	OPEN_READ	(O_RDONLY)
246 #else
247 #define	OPEN_READ	(0)
248 #endif
249 #endif
250 #endif
251 
252 #if defined(O_WRONLY) && defined(O_APPEND)
253 #define	OPEN_APPEND	(O_APPEND|O_WRONLY)
254 #else
255 #ifdef _OSK
256 #define OPEN_APPEND	(S_IWRITE)
257 #else
258 #define	OPEN_APPEND	(1)
259 #endif
260 #endif
261 
262 /*
263  * Set a file descriptor to binary mode.
264  */
265 #if MSDOS_COMPILER==MSOFTC
266 #define	SET_BINARY(f)	_setmode(f, _O_BINARY);
267 #else
268 #if MSDOS_COMPILER || OS2
269 #define	SET_BINARY(f)	setmode(f, O_BINARY)
270 #else
271 #define	SET_BINARY(f)
272 #endif
273 #endif
274 
275 /*
276  * Does the shell treat "?" as a metacharacter?
277  */
278 #if MSDOS_COMPILER || OS2 || _OSK
279 #define	SHELL_META_QUEST 0
280 #else
281 #define	SHELL_META_QUEST 1
282 #endif
283 
284 #define	SPACES_IN_FILENAMES 1
285 
286 /*
287  * An IFILE represents an input file.
288  */
289 #define	IFILE		VOID_POINTER
290 #define	NULL_IFILE	((IFILE)NULL)
291 
292 /*
293  * The structure used to represent a "screen position".
294  * This consists of a file position, and a screen line number.
295  * The meaning is that the line starting at the given file
296  * position is displayed on the ln-th line of the screen.
297  * (Screen lines before ln are empty.)
298  */
299 struct scrpos
300 {
301 	POSITION pos;
302 	int ln;
303 };
304 
305 /*
306  * A mark is an ifile (input file) plus a position within the file.
307  */
308 struct mark
309 {
310 	IFILE m_ifile;
311 	struct scrpos m_scrpos;
312 };
313 
314 typedef union parg
315 {
316 	char *p_string;
317 	int p_int;
318 	LINENUM p_linenum;
319 } PARG;
320 
321 #define	NULL_PARG	((PARG *)NULL)
322 
323 struct textlist
324 {
325 	char *string;
326 	char *endstring;
327 };
328 
329 struct wchar_range
330 {
331 	LWCHAR first, last;
332 };
333 
334 struct wchar_range_table
335 {
336 	struct wchar_range *table;
337 	int count;
338 };
339 
340 #define	EOI		(-1)
341 
342 #define	READ_INTR	(-2)
343 
344 /* A fraction is represented by an int n; the fraction is n/NUM_FRAC_DENOM */
345 #define NUM_FRAC_DENOM			1000000
346 #define NUM_LOG_FRAC_DENOM		6
347 
348 /* How quiet should we be? */
349 #define	NOT_QUIET	0	/* Ring bell at eof and for errors */
350 #define	LITTLE_QUIET	1	/* Ring bell only for errors */
351 #define	VERY_QUIET	2	/* Never ring bell */
352 
353 /* How should we prompt? */
354 #define	PR_SHORT	0	/* Prompt with colon */
355 #define	PR_MEDIUM	1	/* Prompt with message */
356 #define	PR_LONG		2	/* Prompt with longer message */
357 
358 /* How should we handle backspaces? */
359 #define	BS_SPECIAL	0	/* Do special things for underlining and bold */
360 #define	BS_NORMAL	1	/* \b treated as normal char; actually output */
361 #define	BS_CONTROL	2	/* \b treated as control char; prints as ^H */
362 
363 /* How should we search? */
364 #define	SRCH_FORW       (1 << 0)  /* Search forward from current position */
365 #define	SRCH_BACK       (1 << 1)  /* Search backward from current position */
366 #define SRCH_NO_MOVE    (1 << 2)  /* Highlight, but don't move */
367 #define SRCH_FIND_ALL   (1 << 4)  /* Find and highlight all matches */
368 #define SRCH_NO_MATCH   (1 << 8)  /* Search for non-matching lines */
369 #define SRCH_PAST_EOF   (1 << 9)  /* Search past end-of-file, into next file */
370 #define SRCH_FIRST_FILE (1 << 10) /* Search starting at the first file */
371 #define SRCH_NO_REGEX   (1 << 12) /* Don't use regular expressions */
372 #define SRCH_FILTER     (1 << 13) /* Search is for '&' (filter) command */
373 #define SRCH_AFTER_TARGET (1 << 14) /* Start search after the target line */
374 
375 #define	SRCH_REVERSE(t)	(((t) & SRCH_FORW) ? \
376 				(((t) & ~SRCH_FORW) | SRCH_BACK) : \
377 				(((t) & ~SRCH_BACK) | SRCH_FORW))
378 
379 /* */
380 #define	NO_MCA		0
381 #define	MCA_DONE	1
382 #define	MCA_MORE	2
383 
384 #define	CC_OK		0	/* Char was accepted & processed */
385 #define	CC_QUIT		1	/* Char was a request to abort current cmd */
386 #define	CC_ERROR	2	/* Char could not be accepted due to error */
387 #define	CC_PASS		3	/* Char was rejected (internal) */
388 
389 #define CF_QUIT_ON_ERASE 0001   /* Abort cmd if its entirely erased */
390 
391 /* Special char bit-flags used to tell put_line() to do something special */
392 #define	AT_NORMAL	(0)
393 #define	AT_UNDERLINE	(1 << 0)
394 #define	AT_BOLD		(1 << 1)
395 #define	AT_BLINK	(1 << 2)
396 #define	AT_STANDOUT	(1 << 3)
397 #define	AT_ANSI		(1 << 4)  /* Content-supplied "ANSI" escape sequence */
398 #define	AT_BINARY	(1 << 5)  /* LESS*BINFMT representation */
399 #define	AT_HILITE	(1 << 6)  /* Internal highlights (e.g., for search) */
400 
401 #if '0' == 240
402 #define IS_EBCDIC_HOST 1
403 #endif
404 
405 #if IS_EBCDIC_HOST
406 /*
407  * Long definition for EBCDIC.
408  * Since the argument is usually a constant, this macro normally compiles
409  * into a constant.
410  */
411 #define CONTROL(c) ( \
412 	(c)=='[' ? '\047' : \
413 	(c)=='a' ? '\001' : \
414 	(c)=='b' ? '\002' : \
415 	(c)=='c' ? '\003' : \
416 	(c)=='d' ? '\067' : \
417 	(c)=='e' ? '\055' : \
418 	(c)=='f' ? '\056' : \
419 	(c)=='g' ? '\057' : \
420 	(c)=='h' ? '\026' : \
421 	(c)=='i' ? '\005' : \
422 	(c)=='j' ? '\025' : \
423 	(c)=='k' ? '\013' : \
424 	(c)=='l' ? '\014' : \
425 	(c)=='m' ? '\015' : \
426 	(c)=='n' ? '\016' : \
427 	(c)=='o' ? '\017' : \
428 	(c)=='p' ? '\020' : \
429 	(c)=='q' ? '\021' : \
430 	(c)=='r' ? '\022' : \
431 	(c)=='s' ? '\023' : \
432 	(c)=='t' ? '\074' : \
433 	(c)=='u' ? '\075' : \
434 	(c)=='v' ? '\062' : \
435 	(c)=='w' ? '\046' : \
436 	(c)=='x' ? '\030' : \
437 	(c)=='y' ? '\031' : \
438 	(c)=='z' ? '\077' : \
439 	(c)=='A' ? '\001' : \
440 	(c)=='B' ? '\002' : \
441 	(c)=='C' ? '\003' : \
442 	(c)=='D' ? '\067' : \
443 	(c)=='E' ? '\055' : \
444 	(c)=='F' ? '\056' : \
445 	(c)=='G' ? '\057' : \
446 	(c)=='H' ? '\026' : \
447 	(c)=='I' ? '\005' : \
448 	(c)=='J' ? '\025' : \
449 	(c)=='K' ? '\013' : \
450 	(c)=='L' ? '\014' : \
451 	(c)=='M' ? '\015' : \
452 	(c)=='N' ? '\016' : \
453 	(c)=='O' ? '\017' : \
454 	(c)=='P' ? '\020' : \
455 	(c)=='Q' ? '\021' : \
456 	(c)=='R' ? '\022' : \
457 	(c)=='S' ? '\023' : \
458 	(c)=='T' ? '\074' : \
459 	(c)=='U' ? '\075' : \
460 	(c)=='V' ? '\062' : \
461 	(c)=='W' ? '\046' : \
462 	(c)=='X' ? '\030' : \
463 	(c)=='Y' ? '\031' : \
464 	(c)=='Z' ? '\077' : \
465 	(c)=='|' ? '\031' : \
466 	(c)=='\\' ? '\034' : \
467 	(c)=='^' ? '\036' : \
468 	(c)&077)
469 #else
470 #define	CONTROL(c)	((c)&037)
471 #endif /* IS_EBCDIC_HOST */
472 
473 #define	ESC		CONTROL('[')
474 #define	CSI		((unsigned char)'\233')
475 #define	CHAR_END_COMMAND 0x40000000
476 
477 #if _OSK_MWC32
478 #define	LSIGNAL(sig,func)	os9_signal(sig,func)
479 #else
480 #define	LSIGNAL(sig,func)	signal(sig,func)
481 #endif
482 
483 #if HAVE_SIGPROCMASK
484 #if HAVE_SIGSET_T
485 #else
486 #undef HAVE_SIGPROCMASK
487 #endif
488 #endif
489 #if HAVE_SIGPROCMASK
490 #if HAVE_SIGEMPTYSET
491 #else
492 #undef  sigemptyset
493 #define sigemptyset(mp) *(mp) = 0
494 #endif
495 #endif
496 
497 #define	S_INTERRUPT	01
498 #define	S_STOP		02
499 #define S_WINCH		04
500 #define	ABORT_SIGS()	(sigs & (S_INTERRUPT|S_STOP))
501 
502 #define	QUIT_OK		0
503 #define	QUIT_ERROR	1
504 #define	QUIT_INTERRUPT	2
505 #define	QUIT_SAVED_STATUS (-1)
506 
507 #define FOLLOW_DESC     0
508 #define FOLLOW_NAME     1
509 
510 /* filestate flags */
511 #define	CH_CANSEEK	001
512 #define	CH_KEEPOPEN	002
513 #define	CH_POPENED	004
514 #define	CH_HELPFILE	010
515 #define	CH_NODATA  	020	/* Special case for zero length files */
516 
517 #define	ch_zero()	((POSITION)0)
518 
519 #define	FAKE_HELPFILE	"@/\\less/\\help/\\file/\\@"
520 #define FAKE_EMPTYFILE	"@/\\less/\\empty/\\file/\\@"
521 
522 /* Flags for cvt_text */
523 #define	CVT_TO_LC	01	/* Convert upper-case to lower-case */
524 #define	CVT_BS		02	/* Do backspace processing */
525 #define	CVT_CRLF	04	/* Remove CR after LF */
526 #define	CVT_ANSI	010	/* Remove ANSI escape sequences */
527 
528 #if HAVE_TIME_T
529 #define time_type	time_t
530 #else
531 #define	time_type	long
532 #endif
533 
534 struct mlist;
535 struct loption;
536 struct hilite_tree;
537 #include "pattern.h"
538 #include "funcs.h"
539 
540 /* Functions not included in funcs.h */
541 void postoa LESSPARAMS ((POSITION, char*));
542 void linenumtoa LESSPARAMS ((LINENUM, char*));
543 void inttoa LESSPARAMS ((int, char*));
544