1 /*	$OpenBSD: gs.h,v 1.9 2006/01/08 21:05:39 miod Exp $	*/
2 
3 /*-
4  * Copyright (c) 1993, 1994
5  *	The Regents of the University of California.  All rights reserved.
6  * Copyright (c) 1993, 1994, 1995, 1996
7  *	Keith Bostic.  All rights reserved.
8  *
9  * See the LICENSE file for redistribution information.
10  *
11  *	@(#)gs.h	10.34 (Berkeley) 9/24/96
12  */
13 
14 #define	TEMPORARY_FILE_STRING	"/tmp"	/* Default temporary file name. */
15 
16 /*
17  * File reference structure (FREF).  The structure contains the name of the
18  * file, along with the information that follows the name.
19  *
20  * !!!
21  * The read-only bit follows the file name, not the file itself.
22  */
23 struct _fref {
24 	CIRCLEQ_ENTRY(_fref) q;		/* Linked list of file references. */
25 	char	*name;			/* File name. */
26 	char	*tname;			/* Backing temporary file name. */
27 
28 	recno_t	 lno;			/* 1-N: file cursor line. */
29 	size_t	 cno;			/* 0-N: file cursor column. */
30 
31 #define	FR_CURSORSET	0x0001		/* If lno/cno values valid. */
32 #define	FR_DONTDELETE	0x0002		/* Don't delete the temporary file. */
33 #define	FR_EXNAMED	0x0004		/* Read/write renamed the file. */
34 #define	FR_NAMECHANGE	0x0008		/* If the name changed. */
35 #define	FR_NEWFILE	0x0010		/* File doesn't really exist yet. */
36 #define	FR_RECOVER	0x0020		/* File is being recovered. */
37 #define	FR_TMPEXIT	0x0040		/* Modified temporary file, no exit. */
38 #define	FR_TMPFILE	0x0080		/* If file has no name. */
39 #define	FR_UNLOCKED	0x0100		/* File couldn't be locked. */
40 	u_int16_t flags;
41 };
42 
43 /* Action arguments to scr_exadjust(). */
44 typedef enum { EX_TERM_CE, EX_TERM_SCROLL } exadj_t;
45 
46 /* Screen attribute arguments to scr_attr(). */
47 typedef enum { SA_ALTERNATE, SA_INVERSE } scr_attr_t;
48 
49 /* Key type arguments to scr_keyval(). */
50 typedef enum { KEY_VEOF, KEY_VERASE, KEY_VKILL, KEY_VWERASE } scr_keyval_t;
51 
52 /*
53  * GS:
54  *
55  * Structure that describes global state of the running program.
56  */
57 struct _gs {
58 	char	*progname;		/* Programe name. */
59 
60 	int	 id;			/* Last allocated screen id. */
61 	CIRCLEQ_HEAD(_dqh, _scr) dq;	/* Displayed screens. */
62 	CIRCLEQ_HEAD(_hqh, _scr) hq;	/* Hidden screens. */
63 
64 	SCR	*ccl_sp;		/* Colon command-line screen. */
65 
66 	void	*perl_interp;		/* Perl interpreter. */
67 	void	*tcl_interp;		/* Tcl_Interp *: Tcl interpreter. */
68 
69 	void	*cl_private;		/* Curses support private area. */
70 	void	*ip_private;		/* IP support private area. */
71 	void	*tk_private;		/* Tk/Tcl support private area. */
72 
73 					/* File references. */
74 	CIRCLEQ_HEAD(_frefh, _fref) frefq;
75 
76 #define	GO_COLUMNS	0		/* Global options: columns. */
77 #define	GO_LINES	1		/* Global options: lines. */
78 #define	GO_SECURE	2		/* Global options: secure. */
79 #define	GO_TERM		3		/* Global options: terminal type. */
80 	OPTION	 opts[GO_TERM + 1];
81 
82 	DB	*msg;			/* Message catalog DB. */
83 	MSGH	 msgq;			/* User message list. */
84 #define	DEFAULT_NOPRINT	'\1'		/* Emergency non-printable character. */
85 	CHAR_T	 noprint;		/* Cached, unprintable character. */
86 
87 	char	*tmp_bp;		/* Temporary buffer. */
88 	size_t	 tmp_blen;		/* Temporary buffer size. */
89 
90 	/*
91 	 * Ex command structures (EXCMD).  Defined here because ex commands
92 	 * exist outside of any particular screen or file.
93 	 */
94 #define	EXCMD_RUNNING(gp)	(LIST_FIRST(&(gp)->ecq)->clen != 0)
95 	LIST_HEAD(_excmdh, _excmd) ecq;	/* Ex command linked list. */
96 	EXCMD	 excmd;			/* Default ex command structure. */
97 	char	 *if_name;		/* Current associated file. */
98 	recno_t	  if_lno;		/* Current associated line number. */
99 
100 	char	*c_option;		/* Ex initial, command-line command. */
101 
102 #ifdef DEBUG
103 	FILE	*tracefp;		/* Trace file pointer. */
104 #endif
105 
106 	EVENT	*i_event;		/* Array of input events. */
107 	size_t	 i_nelem;		/* Number of array elements. */
108 	size_t	 i_cnt;			/* Count of events. */
109 	size_t	 i_next;		/* Offset of next event. */
110 
111 	CB	*dcbp;			/* Default cut buffer pointer. */
112 	CB	 dcb_store;		/* Default cut buffer storage. */
113 	LIST_HEAD(_cuth, _cb) cutq;	/* Linked list of cut buffers. */
114 
115 #define	MAX_BIT_SEQ	128		/* Max + 1 fast check character. */
116 	LIST_HEAD(_seqh, _seq) seqq;	/* Linked list of maps, abbrevs. */
117 	bitstr_t bit_decl(seqb, MAX_BIT_SEQ);
118 
119 #define	MAX_FAST_KEY	254		/* Max fast check character.*/
120 #define	KEY_LEN(sp, ch)							\
121 	((unsigned char)(ch) <= MAX_FAST_KEY ?				\
122 	    (sp)->gp->cname[(unsigned char)(ch)].len :			\
123 	    v_key_len((sp), (ch)))
124 #define	KEY_NAME(sp, ch)						\
125 	((unsigned char)(ch) <= MAX_FAST_KEY ?				\
126 	    (sp)->gp->cname[(unsigned char)(ch)].name :			\
127 	    v_key_name((sp), (ch)))
128 	struct {
129 		CHAR_T	 name[MAX_CHARACTER_COLUMNS + 1];
130 		u_int8_t len;
131 	} cname[MAX_FAST_KEY + 1];	/* Fast lookup table. */
132 
133 #define	KEY_VAL(sp, ch)							\
134 	((unsigned char)(ch) <= MAX_FAST_KEY ? 				\
135 	    (sp)->gp->special_key[(unsigned char)(ch)] :		\
136 	    (unsigned char)(ch) > (sp)->gp->max_special ? 0 :		\
137 	    v_key_val((sp),(ch)))
138 	CHAR_T	 max_special;		/* Max special character. */
139 	u_char				/* Fast lookup table. */
140 	    special_key[MAX_FAST_KEY + 1];
141 
142 /* Flags. */
143 #define	G_ABBREV	0x0001		/* If have abbreviations. */
144 #define	G_BELLSCHED	0x0002		/* Bell scheduled. */
145 #define	G_INTERRUPTED	0x0004		/* Interrupted. */
146 #define	G_RECOVER_SET	0x0008		/* Recover system initialized. */
147 #define	G_SCRIPTED	0x0010		/* Ex script session. */
148 #define	G_SCRWIN	0x0020		/* Scripting windows running. */
149 #define	G_SNAPSHOT	0x0040		/* Always snapshot files. */
150 #define	G_SRESTART	0x0080		/* Screen restarted. */
151 #define	G_TMP_INUSE	0x0100		/* Temporary buffer in use. */
152 	u_int32_t flags;
153 
154 	/* Screen interface functions. */
155 					/* Add a string to the screen. */
156 	int	(*scr_addstr)(SCR *, const char *, size_t);
157 					/* Toggle a screen attribute. */
158 	int	(*scr_attr)(SCR *, scr_attr_t, int);
159 					/* Terminal baud rate. */
160 	int	(*scr_baud)(SCR *, u_long *);
161 					/* Beep/bell/flash the terminal. */
162 	int	(*scr_bell)(SCR *);
163 					/* Display a busy message. */
164 	void	(*scr_busy)(SCR *, const char *, busy_t);
165 					/* Clear to the end of the line. */
166 	int	(*scr_clrtoeol)(SCR *);
167 					/* Return the cursor location. */
168 	int	(*scr_cursor)(SCR *, size_t *, size_t *);
169 					/* Delete a line. */
170 	int	(*scr_deleteln)(SCR *);
171 					/* Get a keyboard event. */
172 	int	(*scr_event)(SCR *, EVENT *, u_int32_t, int);
173 					/* Ex: screen adjustment routine. */
174 	int	(*scr_ex_adjust)(SCR *, exadj_t);
175 	int	(*scr_fmap)		/* Set a function key. */
176 (SCR *, seq_t, CHAR_T *, size_t, CHAR_T *, size_t);
177 					/* Get terminal key value. */
178 	int	(*scr_keyval)(SCR *, scr_keyval_t, CHAR_T *, int *);
179 					/* Insert a line. */
180 	int	(*scr_insertln)(SCR *);
181 					/* Handle an option change. */
182 	int	(*scr_optchange)(SCR *, int, char *, u_long *);
183 					/* Move the cursor. */
184 	int	(*scr_move)(SCR *, size_t, size_t);
185 					/* Message or ex output. */
186 	void	(*scr_msg)(SCR *, mtype_t, char *, size_t);
187 					/* Refresh the screen. */
188 	int	(*scr_refresh)(SCR *, int);
189 					/* Rename the file. */
190 	int	(*scr_rename)(SCR *, char *, int);
191 					/* Set the screen type. */
192 	int	(*scr_screen)(SCR *, u_int32_t);
193 					/* Suspend the editor. */
194 	int	(*scr_suspend)(SCR *, int *);
195 					/* Print usage message. */
196 	void	(*scr_usage)(void);
197 };
198 
199 /*
200  * XXX
201  * Block signals if there are asynchronous events.  Used to keep DB system calls
202  * from being interrupted and not restarted, as that will result in consistency
203  * problems.  This should be handled by DB.
204  */
205 #ifdef BLOCK_SIGNALS
206 #include <signal.h>
207 extern sigset_t	__sigblockset;
208 #define	SIGBLOCK \
209 	(void)sigprocmask(SIG_BLOCK, &__sigblockset, NULL)
210 #define	SIGUNBLOCK \
211 	(void)sigprocmask(SIG_UNBLOCK, &__sigblockset, NULL);
212 #else
213 #define	SIGBLOCK
214 #define	SIGUNBLOCK
215 #endif
216