Print this page
12212 typos in some section 3tecla man pages
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/man/man3tecla/gl_io_mode.3tecla
+++ new/usr/src/man/man3tecla/gl_io_mode.3tecla
1 1 '\" te
2 2 .\" Copyright (c) 2000, 2001, 2002, 2003, 2004 by Martin C. Shepherd.
3 3 .\" All Rights Reserved.
4 4 .\" Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the
5 5 .\" "Software"), to deal in the Software without restriction, including
6 6 .\" without limitation the rights to use, copy, modify, merge, publish,
7 7 .\" distribute, and/or sell copies of the Software, and to permit persons
8 8 .\" to whom the Software is furnished to do so, provided that the above
9 9 .\" copyright notice(s) and this permission notice appear in all copies of
10 10 .\" the Software and that both the above copyright notice(s) and this
11 11 .\" permission notice appear in supporting documentation.
12 12 .\"
13 13 .\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
14 14 .\" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
15 15 .\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
16 16 .\" OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
17 17 .\" HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
↓ open down ↓ |
17 lines elided |
↑ open up ↑ |
18 18 .\" INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
19 19 .\" FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
20 20 .\" NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
21 21 .\" WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22 22 .\"
23 23 .\" Except as contained in this notice, the name of a copyright holder
24 24 .\" shall not be used in advertising or otherwise to promote the sale, use
25 25 .\" or other dealings in this Software without prior written authorization
26 26 .\" of the copyright holder.
27 27 .\" Portions Copyright (c) 2007, Sun Microsystems, Inc. All Rights Reserved.
28 -.TH GL_IO_MODE 3TECLA "Jun 1, 2004"
28 +.TH GL_IO_MODE 3TECLA "January 18, 2020"
29 29 .SH NAME
30 30 gl_io_mode, gl_raw_io, gl_normal_io, gl_tty_signals, gl_abandon_line,
31 31 gl_handle_signal, gl_pending_io \- use \fBgl_get_line()\fR from an external
32 32 event loop
33 33 .SH SYNOPSIS
34 -.LP
35 34 .nf
36 35 cc [ \fIflag\fR\&.\|.\|. ] \fIfile\fR\&.\|.\|. \fB-ltecla\fR [ \fIlibrary\fR\&.\|.\|. ]
37 36 #include <libtecla.h>
38 37
39 38 \fBint\fR \fBgl_io_mode\fR(\fBGetLine *\fR\fIgl\fR, \fBGlIOMode\fR \fImode\fR);
40 39 .fi
41 40
42 41 .LP
43 42 .nf
44 43 \fBint\fR \fBgl_raw_io\fR(\fBGetLine *\fR\fIgl\fR);
45 44 .fi
46 45
47 46 .LP
48 47 .nf
49 48 \fBint\fR \fBgl_normal_io\fR(\fBGetLine *\fR\fIgl\fR);
50 49 .fi
51 50
52 51 .LP
53 52 .nf
54 53 \fBint\fR \fBgl_tty_signals\fR(\fBvoid (*\fR\fIterm_handler\fR)(int), \fBvoid (*\fR\fIsusp_handler\fR)(int),
55 54 \fBvoid (*\fR\fIcont_handler\fR)(int), \fBvoid (*\fR\fIsize_handler\fR)(int));
56 55 .fi
57 56
58 57 .LP
59 58 .nf
60 59 \fBvoid\fR \fBgl_abandon_line\fR(\fBGetLine *\fR\fIgl\fR);
61 60 .fi
62 61
63 62 .LP
↓ open down ↓ |
19 lines elided |
↑ open up ↑ |
64 63 .nf
65 64 \fBvoid\fR \fBgl_handle_signal\fR(\fBint\fR \fIsigno\fR, \fBGetLine *\fR\fIgl\fR, \fBint\fR \fIngl\fR);
66 65 .fi
67 66
68 67 .LP
69 68 .nf
70 69 \fBGlPendingIO\fR \fBgl_pending_io\fR(\fBGetLine *\fR\fIgl\fR);
71 70 .fi
72 71
73 72 .SH DESCRIPTION
74 -.sp
75 -.LP
76 73 The \fBgl_get_line\fR(3TECLA) function supports two different I/O modes. These
77 74 are selected by calling the \fBgl_io_mode()\fR function. The \fImode\fR
78 75 argument of \fBgl_io_mode()\fR specifies the new I/O mode and must be one of
79 76 the following.
80 77 .sp
81 78 .ne 2
82 79 .na
83 80 \fB\fBGL_NORMAL_MODE\fR\fR
84 81 .ad
85 82 .RS 18n
86 83 Select the normal blocking-I/O mode. In this mode \fBgl_get_line()\fR does not
87 84 return until either an error occurs of the user finishes entering a new line.
88 85 .RE
89 86
90 87 .sp
91 88 .ne 2
92 89 .na
93 90 \fB\fBGL_SERVER_MODE\fR\fR
94 91 .ad
95 92 .RS 18n
↓ open down ↓ |
10 lines elided |
↑ open up ↑ |
96 93 Select non-blocking server I/O mode. In this mode, since non-blocking terminal
97 94 I/O is used, the entry of each new input line typically requires many calls to
98 95 \fBgl_get_line()\fR from an external I/O-driven event loop.
99 96 .RE
100 97
101 98 .sp
102 99 .LP
103 100 Newly created GetLine objects start in normal I/O mode, so to switch to
104 101 non-blocking server mode requires an initial call to \fBgl_io_mode()\fR.
105 102 .SS "Server I/O Mode"
106 -.sp
107 -.LP
108 103 In non-blocking server I/O mode, the application is required to have an event
109 104 loop that calls \fBgl_get_line()\fR whenever the terminal file descriptor can
110 -perform the type I/O that \fBgl_get_line()\fR is waiting for. To determine
105 +perform the type of I/O that \fBgl_get_line()\fR is waiting for. To determine
111 106 which type of I/O \fBgl_get_line()\fR is waiting for, the application calls the
112 107 \fBgl_pending_io()\fR function. The return value is one of the following two
113 108 enumerated values.
114 109 .sp
115 110 .ne 2
116 111 .na
117 112 \fB\fBGLP_READ\fR\fR
118 113 .ad
119 114 .RS 13n
120 115 \fBgl_get_line()\fR is waiting to write a character to the terminal.
121 116 .RE
122 117
123 118 .sp
124 119 .ne 2
125 120 .na
126 121 \fB\fBGLP_WRITE\fR\fR
127 122 .ad
128 123 .RS 13n
129 -\fBgl_get_line()\fR is waiting to read a character from the keyboad.
124 +\fBgl_get_line()\fR is waiting to read a character from the keyboard.
130 125 .RE
131 126
132 127 .sp
133 128 .LP
134 129 If the application is using either the \fBselect\fR(3C) or \fBpoll\fR(2)
135 130 function to watch for I/O on a group of file descriptors, then it should call
136 131 the \fBgl_pending_io()\fR function before each call to these functions to
137 132 determine which direction of I/O it should tell them to watch for, and
138 133 configure their arguments accordingly. In the case of the \fBselect()\fR
139 134 function, this means using the \fBFD_SET()\fR macro to add the terminal file
140 135 descriptor either to the set of file descriptors to be watched for readability
141 136 or the set to be watched for writability.
142 137 .sp
143 138 .LP
144 139 As in normal I/O mode, the return value of \fBgl_get_line()\fR is either a
145 140 pointer to a completed input line or \fINULL\fR. However, whereas in normal I/O
146 141 mode a \fINULL\fR return value always means that an error occurred, in
147 142 non-blocking server mode, \fINULL\fR is also returned when \fBgl_get_line()\fR
148 143 cannot read or write to the terminal without blocking. Thus in non-blocking
149 144 server mode, in order to determine when a \fINULL\fR return value signifies
150 145 that an error occurred or not, it is necessary to call the
151 146 \fBgl_return_status()\fR function. If this function returns the enumerated
152 147 value \fBGLR_BLOCKED\fR, \fBgl_get_line()\fR is waiting for I/O and no error
153 148 has occurred.
154 149 .sp
↓ open down ↓ |
15 lines elided |
↑ open up ↑ |
155 150 .LP
156 151 When \fBgl_get_line()\fR returns \fINULL\fR and \fBgl_return_status()\fR
157 152 indicates that this is due to blocked terminal I/O, the application should call
158 153 \fBgl_get_line()\fR again when the type of I/O reported by
159 154 \fBgl_pending_io()\fR becomes possible. The \fIprompt\fR, \fIstart_line\fR and
160 155 \fIstart_pos\fR arguments of \fBgl_get_line()\fR will be ignored on these
161 156 calls. If you need to change the prompt of the line that is currently being
162 157 edited, you can call the \fBgl_replace_prompt\fR(3TECLA) function between calls
163 158 to \fBgl_get_line()\fR.
164 159 .SS "Giving Up The Terminal"
165 -.sp
166 -.LP
167 160 A complication that is unique to non-blocking server mode is that it requires
168 161 that the terminal be left in raw mode between calls to \fBgl_get_line()\fR. If
169 162 this were not the case, the external event loop would not be able to detect
170 163 individual key-presses, and the basic line editing implemented by the terminal
171 164 driver would clash with the editing provided by \fBgl_get_line()\fR. When the
172 165 terminal needs to be used for purposes other than entering a new input line
173 166 with \fBgl_get_line()\fR, it needs to be restored to a usable state. In
174 167 particular, whenever the process is suspended or terminated, the terminal must
175 168 be returned to a normal state. If this is not done, then depending on the
176 169 characteristics of the shell that was used to invoke the program, the user
177 170 could end up with a hung terminal. To this end, the \fBgl_normal_io()\fR
178 171 function is provided for switching the terminal back to the state that it was
179 172 in when raw mode was last established.
180 173 .sp
181 174 .LP
182 175 The \fBgl_normal_io()\fR function first flushes any pending output to the
183 176 terminal, then moves the cursor to the start of the terminal line which follows
184 177 the end of the incompletely entered input line. At this point it is safe to
185 178 suspend or terminate the process, and it is safe for the application to read
186 179 and write to the terminal. To resume entry of the input line, the application
187 180 should call the \fBgl_raw_io()\fR function.
188 181 .sp
189 182 .LP
190 183 The \fBgl_normal_io()\fR function starts a new line, redisplays the partially
191 184 completed input line (if any), restores the cursor position within this line to
↓ open down ↓ |
15 lines elided |
↑ open up ↑ |
192 185 where it was when \fBgl_normal_io()\fR was called, then switches back to raw,
193 186 non-blocking terminal mode ready to continue entry of the input line when
194 187 \fBgl_get_line()\fR is next called.
195 188 .sp
196 189 .LP
197 190 Note that in non-blocking server mode, if \fBgl_get_line()\fR is called after a
198 191 call to \fBgl_normal_io()\fR, without an intervening call to \fBgl_raw_io()\fR,
199 192 \fBgl_get_line()\fR will call \fBgl_raw_mode()\fR itself, and the terminal will
200 193 remain in this mode when \fBgl_get_line()\fR returns.
201 194 .SS "Signal Handling"
202 -.sp
203 -.LP
204 195 In the previous section it was pointed out that in non-blocking server mode,
205 196 the terminal must be restored to a sane state whenever a signal is received
206 197 that either suspends or terminates the process. In normal I/O mode, this is
207 198 done for you by \fBgl_get_line()\fR, but in non-blocking server mode, since the
208 199 terminal is left in raw mode between calls to \fBgl_get_line()\fR, this signal
209 200 handling has to be done by the application. Since there are many signals that
210 201 can suspend or terminate a process, as well as other signals that are important
211 202 to \fBgl_get_line()\fR, such as the \fBSIGWINCH\fR signal, which tells it when
212 203 the terminal size has changed, the \fBgl_tty_signals()\fR function is provided
213 204 for installing signal handlers for all pertinent signals.
214 205 .sp
215 206 .LP
216 207 The \fBgl_tty_signals()\fR function uses \fBgl_get_line()\fR's internal list of
217 208 signals to assign specified signal handlers to groups of signals. The arguments
218 209 of this function are as follows.
219 210 .sp
220 211 .ne 2
221 212 .na
222 213 \fB\fIterm_handler\fR\fR
223 214 .ad
224 215 .RS 16n
225 216 This is the signal handler that is used to trap signals that by default
226 217 terminate any process that receives them (for example, \fBSIGINT\fR or
227 218 \fBSIGTERM\fR).
228 219 .RE
229 220
230 221 .sp
231 222 .ne 2
232 223 .na
233 224 \fB\fIsusp_handler\fR\fR
234 225 .ad
235 226 .RS 16n
236 227 This is the signal handler that is used to trap signals that by default suspend
237 228 any process that receives them, (for example, \fBSIGTSTP\fR or \fBSIGTTOU\fR).
238 229 .RE
239 230
240 231 .sp
241 232 .ne 2
242 233 .na
243 234 \fB\fIcont_handler\fR\fR
244 235 .ad
245 236 .RS 16n
246 237 This is the signal handler that is used to trap signals that are usually sent
247 238 when a process resumes after being suspended (usually \fBSIGCONT\fR). Beware
248 239 that there is nothing to stop a user from sending one of these signals at other
249 240 times.
250 241 .RE
251 242
252 243 .sp
253 244 .ne 2
254 245 .na
255 246 \fB\fIsize_handler\fR\fR
256 247 .ad
257 248 .RS 16n
258 249 This signal handler is used to trap signals that are sent to processes when
259 250 their controlling terminals are resized by the user (for example,
260 251 \fBSIGWINCH\fR).
261 252 .RE
262 253
263 254 .sp
264 255 .LP
265 256 These arguments can all be the same, if so desired, and \fBSIG_IGN\fR (ignore
266 257 this signal) or \fBSIG_DFL\fR (use the system-provided default signal handler)
267 258 can be specified instead of a function where pertinent. In particular, it is
268 259 rarely useful to trap \fBSIGCONT\fR, so the \fIcont_handler\fR argument will
269 260 usually be \fBSIG_DFL\fR or \fBSIG_IGN\fR.
270 261 .sp
271 262 .LP
272 263 The \fBgl_tty_signals()\fR function uses the POSIX \fBsigaction\fR(2) function
273 264 to install these signal handlers, and it is careful to use the \fIsa_mask\fR
274 265 member of each \fBsigaction\fR structure to ensure that only one of these
275 266 signals is ever delivered at a time. This guards against different instances of
276 267 these signal handlers from simultaneously trying to write to common global
277 268 data, such as a shared \fBsigsetjmp\fR(3C) buffer or a signal-received flag.
278 269 The signal handlers installed by this function should call the
279 270 \fBgl_handle_signal()\fR.
280 271 .sp
281 272 .LP
↓ open down ↓ |
68 lines elided |
↑ open up ↑ |
282 273 The \fIsigno\fR argument tells this function which signal it is being asked to
283 274 respond to, and the \fIgl\fR argument should be a pointer to the first element
284 275 of an array of \fIngl\fR \fBGetLine\fR objects. If your application has only
285 276 one of these objects, pass its pointer as the \fIgl\fR argument and specify
286 277 \fIngl\fR as 1.
287 278 .sp
288 279 .LP
289 280 Depending on the signal that is being handled, this function does different
290 281 things.
291 282 .SS "Process termination signals"
292 -.sp
293 -.LP
294 283 If the signal that was caught is one of those that by default terminates any
295 284 process that receives it, then \fBgl_handle_signal()\fR does the following
296 285 steps.
297 286 .RS +4
298 287 .TP
299 288 1.
300 289 First it blocks the delivery of all signals that can be blocked (ie.
301 290 \fBSIGKILL\fR and \fBSIGSTOP\fR cannot be blocked).
302 291 .RE
303 292 .RS +4
304 293 .TP
305 294 2.
306 295 Next it calls \fBgl_normal_io()\fR for each of the ngl GetLine objects. Note
307 296 that this does nothing to any of the GetLine objects that are not currently in
308 297 raw mode.
309 298 .RE
310 299 .RS +4
311 300 .TP
312 301 3.
313 302 Next it sets the signal handler of the signal to its default,
314 303 process-termination disposition.
315 304 .RE
316 305 .RS +4
317 306 .TP
↓ open down ↓ |
14 lines elided |
↑ open up ↑ |
318 307 4.
319 308 Next it re-sends the process the signal that was caught.
320 309 .RE
321 310 .RS +4
322 311 .TP
323 312 5.
324 313 Finally it unblocks delivery of this signal, which results in the process
325 314 being terminated.
326 315 .RE
327 316 .SS "Process suspension signals"
328 -.sp
329 -.LP
330 317 If the default disposition of the signal is to suspend the process, the same
331 318 steps are executed as for process termination signals, except that when the
332 319 process is later resumed, \fBgl_handle_signal()\fR continues, and does the
333 320 following steps.
334 321 .RS +4
335 322 .TP
336 323 1.
337 324 It re-blocks delivery of the signal.
338 325 .RE
339 326 .RS +4
340 327 .TP
341 328 2.
342 329 It reinstates the signal handler of the signal to the one that was displaced
343 330 when its default disposition was substituted.
344 331 .RE
345 332 .RS +4
346 333 .TP
347 334 3.
348 335 For any of the GetLine objects that were in raw mode when
349 336 \fBgl_handle_signal()\fR was called, \fBgl_handle_signal()\fR then calls
350 337 \fBgl_raw_io()\fR, to resume entry of the input lines on those terminals.
351 338 .RE
352 339 .RS +4
353 340 .TP
354 341 4.
355 342 Finally, it restores the signal process mask to how it was when
356 343 \fBgl_handle_signal()\fR was called.
357 344 .RE
358 345 .sp
359 346 .LP
↓ open down ↓ |
20 lines elided |
↑ open up ↑ |
360 347 Note that the process is suspended or terminated using the original signal that
361 348 was caught, rather than using the uncatchable \fBSIGSTOP\fR and \fBSIGKILL\fR
362 349 signals. This is important, because when a process is suspended or terminated,
363 350 the parent of the process may wish to use the status value returned by the wait
364 351 system call to figure out which signal was responsible. In particular, most
365 352 shells use this information to print a corresponding message to the terminal.
366 353 Users would be rightly confused if when their process received a \fBSIGPIPE\fR
367 354 signal, the program responded by sending itself a \fBSIGKILL\fR signal, and the
368 355 shell then printed out the provocative statement, "Killed!".
369 356 .SS "Interrupting The Event Loop"
370 -.sp
371 -.LP
372 357 If a signal is caught and handled when the application's event loop is waiting
373 358 in \fBselect()\fR or \fBpoll()\fR, these functions will be aborted with
374 359 \fBerrno\fR set to \fBEINTR\fR. When this happens the event loop should call
375 360 \fBgl_pending_io()\fR before calling \fBselect()\fR or \fBpoll()\fR again. It
376 361 should then arrange for \fBselect()\fR or \fBpoll()\fR to wait for the type of
377 362 I/O that \fBgl_pending_io()\fR reports. This is necessary because any signal
378 363 handler that calls \fBgl_handle_signal()\fR will frequently change the type of
379 364 I/O that \fBgl_get_line()\fR is waiting for.
380 365 .sp
381 366 .LP
382 367 If a signal arrives between the statements that configure the arguments of
383 368 \fBselect()\fR or \fBpoll()\fR and the calls to these functions, the signal
384 369 will not be seen by these functions, which will then not be aborted. If these
385 370 functions are waiting for keyboard input from the user when the signal is
386 371 received, and the signal handler arranges to redraw the input line to
387 372 accommodate a terminal resize or the resumption of the process. This redisplay
388 373 will be delayed until the user presses the next key. Apart from puzzling the
389 374 user, this clearly is not a serious problem. However there is a way, albeit
390 375 complicated, to completely avoid this race condition. The following steps
391 376 illustrate this.
392 377 .RS +4
393 378 .TP
394 379 1.
395 380 Block all of the signals that \fBgl_get_line()\fR catches, by passing the
396 381 signal set returned by \fBgl_list_signals()\fR to \fBsigprocmask\fR(2).
397 382 .RE
398 383 .RS +4
399 384 .TP
400 385 2.
401 386 Call \fBgl_pending_io()\fR and set up the arguments of \fBselect()\fR or
402 387 \fBpoll()\fR accordingly.
403 388 .RE
404 389 .RS +4
405 390 .TP
406 391 3.
407 392 Call \fBsigsetjmp\fR(3C) with a non-zero \fIsavemask\fR argument.
408 393 .RE
409 394 .RS +4
410 395 .TP
411 396 4.
412 397 Initially this \fBsigsetjmp()\fR statement will return zero, indicating that
413 398 control is not resuming there after a matching call to \fBsiglongjmp\fR(3C).
414 399 .RE
415 400 .RS +4
416 401 .TP
417 402 5.
418 403 Replace all of the handlers of the signals that \fBgl_get_line()\fR is
419 404 configured to catch, with a signal handler that first records the number of the
420 405 signal that was caught, in a file-scope variable, then calls \fBsiglongjmp()\fR
421 406 with a non-zero \fIval\fR argument, to return execution to the above
422 407 \fBsigsetjmp()\fR statement. Registering these signal handlers can conveniently
423 408 be done using the \fBgl_tty_signals()\fR function.
424 409 .RE
425 410 .RS +4
426 411 .TP
427 412 6.
428 413 Set the file-scope variable that the above signal handler uses to record any
429 414 signal that is caught to -1, so that we can check whether a signal was caught
430 415 by seeing if it contains a valid signal number.
431 416 .RE
432 417 .RS +4
433 418 .TP
434 419 7.
435 420 Now unblock the signals that were blocked in step 1. Any signal that was
436 421 received by the process in between step 1 and now will now be delivered, and
437 422 trigger our signal handler, as will any signal that is received until we block
438 423 these signals again.
439 424 .RE
440 425 .RS +4
441 426 .TP
442 427 8.
443 428 Now call \fBselect()\fR or \fBpoll()\fR.
444 429 .RE
445 430 .RS +4
446 431 .TP
447 432 9.
448 433 When select returns, again block the signals that were unblocked in step 7.
449 434 .sp
450 435 If a signal is arrived any time during the above steps, our signal handler will
451 436 be triggered and cause control to return to the \fBsigsetjmp()\fR statement,
452 437 where this time, \fBsigsetjmp()\fR will return non-zero, indicating that a
453 438 signal was caught. When this happens we simply skip the above block of
454 439 statements, and continue with the following statements, which are executed
455 440 regardless of whether or not a signal is caught. Note that when
456 441 \fBsigsetjmp()\fR returns, regardless of why it returned, the process signal
457 442 mask is returned to how it was when \fBsigsetjmp()\fR was called. Thus the
↓ open down ↓ |
76 lines elided |
↑ open up ↑ |
458 443 following statements are always executed with all of our signals blocked.
459 444 .RE
460 445 .RS +4
461 446 .TP
462 447 10.
463 448 Reinstate the signal handlers that were displaced in step 5.
464 449 .RE
465 450 .RS +4
466 451 .TP
467 452 11.
468 -Check wether a signal was caught, by checking the file-scope variable that
453 +Check whether a signal was caught, by checking the file-scope variable that
469 454 the signal handler records signal numbers in.
470 455 .RE
471 456 .RS +4
472 457 .TP
473 458 12.
474 459 If a signal was caught, send this signal to the application again and
475 460 unblock only this signal so that it invokes the signal handler which was just
476 461 reinstated in step 10.
477 462 .RE
478 463 .RS +4
479 464 .TP
480 465 13.
481 466 Unblock all of the signals that were blocked in step 7.
482 467 .RE
483 468 .SS "Signals Caught By \fBgl_get_line()\fR"
484 -.sp
485 -.LP
486 469 Since the application is expected to handle signals in non-blocking server
487 470 mode, \fBgl_get_line()\fR does not attempt to duplicate this when it is being
488 471 called. If one of the signals that it is configured to catch is sent to the
489 472 application while \fBgl_get_line()\fR is being called, \fBgl_get_line()\fR
490 473 reinstates the caller's signal handlers, then immediately before returning,
491 474 re-sends the signal to the process to let the application's signal handler
492 475 handle it. If the process is not terminated by this signal, \fBgl_get_line()\fR
493 476 returns \fINULL\fR, and a following call to \fBgl_return_status()\fR returns
494 477 the enumerated value \fBGLR_SIGNAL\fR.
495 478 .SS "Aborting Line Input"
496 -.sp
497 -.LP
498 479 Often, rather than letting it terminate the process, applications respond to
499 480 the \fBSIGINT\fR user-interrupt signal by aborting the current input line. This
500 481 can be accomplished in non-blocking server-I/O mode by not calling
501 482 \fBgl_handle_signal()\fR when this signal is caught, but by calling instead the
502 483 \fBgl_abandon_line()\fR function. This function arranges that when
503 484 \fBgl_get_line()\fR is next called, it first flushes any pending output to the
504 -terminal, discardes the current input line, outputs a new prompt on the next
485 +terminal, discards the current input line, outputs a new prompt on the next
505 486 line, and finally starts accepting input of a new input line from the user.
506 487 .SS "Signal Safe Functions"
507 -.sp
508 -.LP
509 488 Provided that certain rules are followed, the \fBgl_normal_io()\fR,
510 489 \fBgl_raw_io()\fR, \fBgl_handle_signal()\fR, and \fBgl_abandon_line()\fR
511 490 functions can be written to be safely callable from signal handlers. Other
512 491 functions in this library should not be called from signal handlers. For this
513 492 to be true, all signal handlers that call these functions must be registered in
514 493 such a way that only one instance of any one of them can be running at one
515 494 time. The way to do this is to use the POSIX \fBsigaction()\fR function to
516 495 register all signal handlers, and when doing this, use the \fIsa_mask\fR member
517 496 of the corresponding \fBsigaction\fR structure to indicate that all of the
518 497 signals whose handlers invoke the above functions should be blocked when the
519 498 current signal is being handled. This prevents two signal handlers from
520 499 operating on a \fBGetLine\fR object at the same time.
521 500 .sp
522 501 .LP
↓ open down ↓ |
4 lines elided |
↑ open up ↑ |
523 502 To prevent signal handlers from accessing a \fBGetLine\fR object while
524 503 \fBgl_get_line()\fR or any of its associated public functions are operating on
525 504 it, all public functions associated with \fBgl_get_line()\fR, including
526 505 \fBgl_get_line()\fR itself, temporarily block the delivery of signals when they
527 506 are accessing \fBGetLine\fR objects. Beware that the only signals that they
528 507 block are the signals that \fBgl_get_line()\fR is currently configured to
529 508 catch, so be sure that if you call any of the above functions from signal
530 509 handlers, that the signals that these handlers are assigned to are configured
531 510 to be caught by \fBgl_get_line()\fR. See \fBgl_trap_signal\fR(3TECLA).
532 511 .SS "Using Timeouts To Poll"
533 -.sp
534 -.LP
535 512 If instead of using \fBselect()\fR or \fBpoll()\fR to wait for I/O your
536 513 application needs only to get out of \fBgl_get_line()\fR periodically to
537 514 briefly do something else before returning to accept input from the user, use
538 515 the \fBgl_inactivity_timeout\fR(3TECLA) function in non-blocking server mode to
539 516 specify that a callback function that returns \fBGLTO_CONTINUE\fR should be
540 517 called whenever \fBgl_get_line()\fR has been waiting for I/O for more than a
541 518 specified amount of time. When this callback is triggered, \fBgl_get_line()\fR
542 519 will return \fINULL\fR and a following call to \fBgl_return_status()\fR will
543 520 return \fBGLR_BLOCKED\fR.
544 521 .sp
545 522 .LP
546 523 The \fBgl_get_line()\fR function will not return until the user has not typed a
547 524 key for the specified interval, so if the interval is long and the user keeps
548 525 typing, \fBgl_get_line()\fR might not return for a while. There is no guarantee
549 526 that it will return in the time specified.
550 527 .SH ATTRIBUTES
551 -.sp
552 -.LP
553 528 See \fBattributes\fR(5) for descriptions of the following attributes:
554 529 .sp
555 530
556 531 .sp
557 532 .TS
558 533 box;
559 534 c | c
560 535 l | l .
561 536 ATTRIBUTE TYPE ATTRIBUTE VALUE
562 537 _
563 538 Interface Stability Evolving
564 539 _
565 540 MT-Level MT-Safe
566 541 .TE
567 542
568 543 .SH SEE ALSO
569 -.sp
570 -.LP
571 544 \fBcpl_complete_word\fR(3TECLA), \fBef_expand_file\fR(3TECLA),
572 545 \fBgl_get_line\fR(3TECLA), \fBlibtecla\fR(3LIB), \fBpca_lookup_file\fR(3TECLA),
573 546 \fBattributes\fR(5), \fBtecla\fR(5)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX