use ISBLANK to test whether CHAR_T represents a blank
[nvi.git] / vi / vs_line.c
bloba7d38fab05fa9b526eafd370b9603d34e48fdd75
1 /*-
2 * Copyright (c) 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1992, 1993, 1994, 1995, 1996
5 * Keith Bostic. All rights reserved.
7 * See the LICENSE file for redistribution information.
8 */
10 #include "config.h"
12 #ifndef lint
13 static const char sccsid[] = "$Id: vs_line.c,v 10.38 2002/01/19 21:59:07 skimo Exp $ (Berkeley) $Date: 2002/01/19 21:59:07 $";
14 #endif /* not lint */
16 #include <sys/types.h>
17 #include <sys/queue.h>
18 #include <sys/time.h>
20 #include <bitstring.h>
21 #include <limits.h>
22 #include <stdio.h>
23 #include <string.h>
25 #include "../common/common.h"
26 #include "vi.h"
28 #ifdef VISIBLE_TAB_CHARS
29 #define TABCH '-'
30 #else
31 #define TABCH ' '
32 #endif
35 * vs_line --
36 * Update one line on the screen.
38 * PUBLIC: int vs_line __P((SCR *, SMAP *, size_t *, size_t *));
40 int
41 vs_line(SCR *sp, SMAP *smp, size_t *yp, size_t *xp)
43 char *kp;
44 GS *gp;
45 SMAP *tsmp;
46 size_t chlen, cno_cnt, cols_per_screen, len, nlen;
47 size_t offset_in_char, offset_in_line, oldx, oldy;
48 size_t scno, skip_cols, skip_screens;
49 int dne, is_cached, is_partial, is_tab, no_draw;
50 int list_tab, list_dollar;
51 CHAR_T *p;
52 CHAR_T *cbp, *ecbp, cbuf[128];
53 CHAR_T ch;
55 #if defined(DEBUG) && 0
56 vtrace(sp, "vs_line: row %u: line: %u off: %u\n",
57 smp - HMAP, smp->lno, smp->off);
58 #endif
60 * If ex modifies the screen after ex output is already on the screen,
61 * don't touch it -- we'll get scrolling wrong, at best.
63 no_draw = 0;
64 if (!F_ISSET(sp, SC_TINPUT_INFO) && VIP(sp)->totalcount > 1)
65 no_draw = 1;
66 if (F_ISSET(sp, SC_SCR_EXWROTE) && smp - HMAP != LASTLINE(sp))
67 no_draw = 1;
70 * Assume that, if the cache entry for the line is filled in, the
71 * line is already on the screen, and all we need to do is return
72 * the cursor position. If the calling routine doesn't need the
73 * cursor position, we can just return.
75 is_cached = SMAP_CACHE(smp);
76 if (yp == NULL && (is_cached || no_draw))
77 return (0);
80 * A nasty side effect of this routine is that it returns the screen
81 * position for the "current" character. Not pretty, but this is the
82 * only routine that really knows what's out there.
84 * Move to the line. This routine can be called by vs_sm_position(),
85 * which uses it to fill in the cache entry so it can figure out what
86 * the real contents of the screen are. Because of this, we have to
87 * return to whereever we started from.
89 gp = sp->gp;
90 (void)gp->scr_cursor(sp, &oldy, &oldx);
91 (void)gp->scr_move(sp, smp - HMAP, 0);
93 /* Get the line. */
94 dne = db_get(sp, smp->lno, 0, &p, &len);
97 * Special case if we're printing the info/mode line. Skip printing
98 * the leading number, as well as other minor setup. The only time
99 * this code paints the mode line is when the user is entering text
100 * for a ":" command, so we can put the code here instead of dealing
101 * with the empty line logic below. This is a kludge, but it's pretty
102 * much confined to this module.
104 * Set the number of columns for this screen.
105 * Set the number of chars or screens to skip until a character is to
106 * be displayed.
108 cols_per_screen = sp->cols;
109 if (O_ISSET(sp, O_LEFTRIGHT)) {
110 skip_screens = 0;
111 skip_cols = smp->coff;
112 } else {
113 skip_screens = smp->soff - 1;
114 skip_cols = skip_screens * cols_per_screen;
117 list_tab = O_ISSET(sp, O_LIST);
118 if (F_ISSET(sp, SC_TINPUT_INFO))
119 list_dollar = 0;
120 else {
121 list_dollar = list_tab;
124 * If O_NUMBER is set, the line doesn't exist and it's line
125 * number 1, i.e., an empty file, display the line number.
127 * If O_NUMBER is set, the line exists and the first character
128 * on the screen is the first character in the line, display
129 * the line number.
131 * !!!
132 * If O_NUMBER set, decrement the number of columns in the
133 * first screen. DO NOT CHANGE THIS -- IT'S RIGHT! The
134 * rest of the code expects this to reflect the number of
135 * columns in the first screen, regardless of the number of
136 * columns we're going to skip.
138 if (O_ISSET(sp, O_NUMBER)) {
139 cols_per_screen -= O_NUMBER_LENGTH;
140 if ((!dne || smp->lno == 1) && skip_cols == 0) {
141 nlen = snprintf((char*)cbuf,
142 sizeof(cbuf), O_NUMBER_FMT, smp->lno);
143 (void)gp->scr_addstr(sp, (char*)cbuf, nlen);
149 * Special case non-existent lines and the first line of an empty
150 * file. In both cases, the cursor position is 0, but corrected
151 * as necessary for the O_NUMBER field, if it was displayed.
153 if (dne || len == 0) {
154 /* Fill in the cursor. */
155 if (yp != NULL && smp->lno == sp->lno) {
156 *yp = smp - HMAP;
157 *xp = sp->cols - cols_per_screen;
160 /* If the line is on the screen, quit. */
161 if (is_cached || no_draw)
162 goto ret1;
164 /* Set line cache information. */
165 smp->c_sboff = smp->c_eboff = 0;
166 smp->c_scoff = smp->c_eclen = 0;
169 * Lots of special cases for empty lines, but they only apply
170 * if we're displaying the first screen of the line.
172 if (skip_cols == 0)
173 if (dne) {
174 if (smp->lno == 1) {
175 if (list_dollar) {
176 ch = L('$');
177 goto empty;
179 } else {
180 ch = L('~');
181 goto empty;
183 } else
184 if (list_dollar) {
185 ch = L('$');
186 empty: (void)gp->scr_addstr(sp,
187 KEY_NAME(sp, ch), KEY_LEN(sp, ch));
190 (void)gp->scr_clrtoeol(sp);
191 (void)gp->scr_move(sp, oldy, oldx);
192 return (0);
195 /* If we shortened this line in another screen, the cursor
196 * position may have fallen off.
198 if (sp->lno == smp->lno && sp->cno >= len)
199 sp->cno = len - 1;
202 * If we just wrote this or a previous line, we cached the starting
203 * and ending positions of that line. The way it works is we keep
204 * information about the lines displayed in the SMAP. If we're
205 * painting the screen in the forward direction, this saves us from
206 * reformatting the physical line for every line on the screen. This
207 * wins big on binary files with 10K lines.
209 * Test for the first screen of the line, then the current screen line,
210 * then the line behind us, then do the hard work. Note, it doesn't
211 * do us any good to have a line in front of us -- it would be really
212 * hard to try and figure out tabs in the reverse direction, i.e. how
213 * many spaces a tab takes up in the reverse direction depends on
214 * what characters preceded it.
216 * Test for the first screen of the line.
218 if (skip_cols == 0) {
219 smp->c_sboff = offset_in_line = 0;
220 smp->c_scoff = offset_in_char = 0;
221 p = &p[offset_in_line];
222 goto display;
225 /* Test to see if we've seen this exact line before. */
226 if (is_cached) {
227 offset_in_line = smp->c_sboff;
228 offset_in_char = smp->c_scoff;
229 p = &p[offset_in_line];
231 /* Set cols_per_screen to 2nd and later line length. */
232 if (O_ISSET(sp, O_LEFTRIGHT) || skip_cols > cols_per_screen)
233 cols_per_screen = sp->cols;
234 goto display;
237 /* Test to see if we saw an earlier part of this line before. */
238 if (smp != HMAP &&
239 SMAP_CACHE(tsmp = smp - 1) && tsmp->lno == smp->lno) {
240 if (tsmp->c_eclen != tsmp->c_ecsize) {
241 offset_in_line = tsmp->c_eboff;
242 offset_in_char = tsmp->c_eclen;
243 } else {
244 offset_in_line = tsmp->c_eboff + 1;
245 offset_in_char = 0;
248 /* Put starting info for this line in the cache. */
249 smp->c_sboff = offset_in_line;
250 smp->c_scoff = offset_in_char;
251 p = &p[offset_in_line];
253 /* Set cols_per_screen to 2nd and later line length. */
254 if (O_ISSET(sp, O_LEFTRIGHT) || skip_cols > cols_per_screen)
255 cols_per_screen = sp->cols;
256 goto display;
259 scno = 0;
260 offset_in_line = 0;
261 offset_in_char = 0;
263 /* Do it the hard way, for leftright scrolling screens. */
264 if (O_ISSET(sp, O_LEFTRIGHT)) {
265 for (; offset_in_line < len; ++offset_in_line) {
266 chlen = (ch = *p++) == L('\t') && !list_tab ?
267 TAB_OFF(scno) : KEY_COL(sp, ch);
268 if ((scno += chlen) >= skip_cols)
269 break;
272 /* Set cols_per_screen to 2nd and later line length. */
273 cols_per_screen = sp->cols;
275 /* Put starting info for this line in the cache. */
276 if (offset_in_line >= len) {
277 smp->c_sboff = offset_in_line;
278 smp->c_scoff = 255;
279 } else if (scno != skip_cols) {
280 smp->c_sboff = offset_in_line;
281 smp->c_scoff =
282 offset_in_char = chlen - (scno - skip_cols);
283 --p;
284 } else {
285 smp->c_sboff = ++offset_in_line;
286 smp->c_scoff = 0;
290 /* Do it the hard way, for historic line-folding screens. */
291 else {
292 for (; offset_in_line < len; ++offset_in_line) {
293 chlen = (ch = *p++) == L('\t') && !list_tab ?
294 TAB_OFF(scno) : KEY_COL(sp, ch);
295 if ((scno += chlen) < cols_per_screen)
296 continue;
297 scno -= cols_per_screen;
299 /* Set cols_per_screen to 2nd and later line length. */
300 cols_per_screen = sp->cols;
303 * If crossed the last skipped screen boundary, start
304 * displaying the characters.
306 if (--skip_screens == 0)
307 break;
310 /* Put starting info for this line in the cache. */
311 if (scno != 0) {
312 smp->c_sboff = offset_in_line;
313 smp->c_scoff = offset_in_char = chlen - scno;
314 --p;
315 } else {
316 smp->c_sboff = ++offset_in_line;
317 smp->c_scoff = 0;
321 display:
323 * Set the number of characters to skip before reaching the cursor
324 * character. Offset by 1 and use 0 as a flag value. Vs_line is
325 * called repeatedly with a valid pointer to a cursor position.
326 * Don't fill anything in unless it's the right line and the right
327 * character, and the right part of the character...
329 if (yp == NULL ||
330 smp->lno != sp->lno || sp->cno < offset_in_line ||
331 offset_in_line + cols_per_screen < sp->cno) {
332 cno_cnt = 0;
333 /* If the line is on the screen, quit. */
334 if (is_cached || no_draw)
335 goto ret1;
336 } else
337 cno_cnt = (sp->cno - offset_in_line) + 1;
339 /* This is the loop that actually displays characters. */
340 ecbp = (cbp = cbuf) + sizeof(cbuf)/sizeof(CHAR_T) - 1;
341 for (is_partial = 0, scno = 0;
342 offset_in_line < len; ++offset_in_line, offset_in_char = 0) {
343 if ((ch = *p++) == L('\t') && !list_tab) {
344 scno += chlen = TAB_OFF(scno) - offset_in_char;
345 is_tab = 1;
346 } else {
347 scno += chlen = KEY_COL(sp, ch) - offset_in_char;
348 is_tab = 0;
352 * Only display up to the right-hand column. Set a flag if
353 * the entire character wasn't displayed for use in setting
354 * the cursor. If reached the end of the line, set the cache
355 * info for the screen. Don't worry about there not being
356 * characters to display on the next screen, its lno/off won't
357 * match up in that case.
359 if (scno >= cols_per_screen) {
360 if (is_tab == 1) {
361 chlen -= scno - cols_per_screen;
362 smp->c_ecsize = smp->c_eclen = chlen;
363 scno = cols_per_screen;
364 } else {
365 smp->c_ecsize = chlen;
366 chlen -= scno - cols_per_screen;
367 smp->c_eclen = chlen;
369 if (scno > cols_per_screen)
370 is_partial = 1;
372 smp->c_eboff = offset_in_line;
374 /* Terminate the loop. */
375 offset_in_line = len;
379 * If the caller wants the cursor value, and this was the
380 * cursor character, set the value. There are two ways to
381 * put the cursor on a character -- if it's normal display
382 * mode, it goes on the last column of the character. If
383 * it's input mode, it goes on the first. In normal mode,
384 * set the cursor only if the entire character was displayed.
386 if (cno_cnt &&
387 --cno_cnt == 0 && (F_ISSET(sp, SC_TINPUT) || !is_partial)) {
388 *yp = smp - HMAP;
389 if (F_ISSET(sp, SC_TINPUT))
390 if (is_partial)
391 *xp = scno - smp->c_ecsize;
392 else
393 *xp = scno - chlen;
394 else
395 *xp = scno - 1;
396 if (O_ISSET(sp, O_NUMBER) &&
397 !F_ISSET(sp, SC_TINPUT_INFO) && skip_cols == 0)
398 *xp += O_NUMBER_LENGTH;
400 /* If the line is on the screen, quit. */
401 if (is_cached || no_draw)
402 goto ret1;
405 /* If the line is on the screen, don't display anything. */
406 if (is_cached || no_draw)
407 continue;
409 #define FLUSH { \
410 *cbp = '\0'; \
411 (void)gp->scr_waddstr(sp, cbuf, cbp - cbuf); \
412 cbp = cbuf; \
415 * Display the character. We do tab expansion here because
416 * the screen interface doesn't have any way to set the tab
417 * length. Note, it's theoretically possible for chlen to
418 * be larger than cbuf, if the user set a impossibly large
419 * tabstop.
421 if (is_tab)
422 while (chlen--) {
423 if (cbp >= ecbp)
424 FLUSH;
425 *cbp++ = TABCH;
427 else {
428 if (cbp + chlen >= ecbp)
429 FLUSH;
431 /* don't display half a wide character */
432 if (is_partial && CHAR_WIDTH(sp, ch) > 1) {
433 *cbp++ = ' ';
434 break;
437 /* XXXX this needs some rethinking */
438 if (INTISWIDE(ch)) {
439 /* Put a space before non-spacing char. */
440 if (!CHAR_WIDTH(sp, ch))
441 *cbp++ = L(' ');
442 *cbp++ = ch;
443 } else
444 for (kp = KEY_NAME(sp, ch) + offset_in_char;
445 chlen--;)
446 *cbp++ = (u_char)*kp++;
450 if (scno < cols_per_screen) {
451 /* If didn't paint the whole line, update the cache. */
452 smp->c_ecsize = smp->c_eclen = KEY_LEN(sp, ch);
453 smp->c_eboff = len - 1;
456 * If not the info/mode line, and O_LIST set, and at the
457 * end of the line, and the line ended on this screen,
458 * add a trailing $.
460 if (list_dollar) {
461 ++scno;
463 chlen = KEY_LEN(sp, '$');
464 if (cbp + chlen >= ecbp)
465 FLUSH;
466 for (kp = KEY_NAME(sp, '$'); chlen--;)
467 *cbp++ = *kp++;
470 /* If still didn't paint the whole line, clear the rest. */
471 if (scno < cols_per_screen)
472 (void)gp->scr_clrtoeol(sp);
475 /* Flush any buffered characters. */
476 if (cbp > cbuf)
477 FLUSH;
479 ret1: (void)gp->scr_move(sp, oldy, oldx);
480 return (0);
484 * vs_number --
485 * Repaint the numbers on all the lines.
487 * PUBLIC: int vs_number __P((SCR *));
490 vs_number(SCR *sp)
492 GS *gp;
493 SMAP *smp;
494 VI_PRIVATE *vip;
495 size_t len, oldy, oldx;
496 int exist;
497 char nbuf[10];
499 gp = sp->gp;
500 vip = VIP(sp);
502 /* No reason to do anything if we're in input mode on the info line. */
503 if (F_ISSET(sp, SC_TINPUT_INFO))
504 return (0);
507 * Try and avoid getting the last line in the file, by getting the
508 * line after the last line in the screen -- if it exists, we know
509 * we have to to number all the lines in the screen. Get the one
510 * after the last instead of the last, so that the info line doesn't
511 * fool us. (The problem is that file_lline will lie, and tell us
512 * that the info line is the last line in the file.) If that test
513 * fails, we have to check each line for existence.
515 exist = db_exist(sp, TMAP->lno + 1);
517 (void)gp->scr_cursor(sp, &oldy, &oldx);
518 for (smp = HMAP; smp <= TMAP; ++smp) {
519 /* Numbers are only displayed for the first screen line. */
520 if (O_ISSET(sp, O_LEFTRIGHT)) {
521 if (smp->coff != 0)
522 continue;
523 } else
524 if (smp->soff != 1)
525 continue;
528 * The first line of an empty file gets numbered, otherwise
529 * number any existing line.
531 if (smp->lno != 1 && !exist && !db_exist(sp, smp->lno))
532 break;
534 (void)gp->scr_move(sp, smp - HMAP, 0);
535 len = snprintf(nbuf, sizeof(nbuf), O_NUMBER_FMT, smp->lno);
536 (void)gp->scr_addstr(sp, nbuf, len);
538 (void)gp->scr_move(sp, oldy, oldx);
539 return (0);