]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tty/lib_mvcur.c
ncurses 5.6 - patch 20080628
[ncurses.git] / ncurses / tty / lib_mvcur.c
1 /****************************************************************************
2  * Copyright (c) 1998-2007,2008 Free Software Foundation, Inc.              *
3  *                                                                          *
4  * Permission is hereby granted, free of charge, to any person obtaining a  *
5  * copy of this software and associated documentation files (the            *
6  * "Software"), to deal in the Software without restriction, including      *
7  * without limitation the rights to use, copy, modify, merge, publish,      *
8  * distribute, distribute with modifications, sublicense, and/or sell       *
9  * copies of the Software, and to permit persons to whom the Software is    *
10  * furnished to do so, subject to the following conditions:                 *
11  *                                                                          *
12  * The above copyright notice and this permission notice shall be included  *
13  * in all copies or substantial portions of the Software.                   *
14  *                                                                          *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
17  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
18  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
19  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
20  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
21  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
22  *                                                                          *
23  * Except as contained in this notice, the name(s) of the above copyright   *
24  * holders shall not be used in advertising or otherwise to promote the     *
25  * sale, use or other dealings in this Software without prior written       *
26  * authorization.                                                           *
27  ****************************************************************************/
28
29 /****************************************************************************
30  *  Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995               *
31  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
32  *     and: Thomas E. Dickey                        1996-on                 *
33  ****************************************************************************/
34
35 /*
36 **      lib_mvcur.c
37 **
38 **      The routines for moving the physical cursor and scrolling:
39 **
40 **              void _nc_mvcur_init(void)
41 **
42 **              void _nc_mvcur_resume(void)
43 **
44 **              int mvcur(int old_y, int old_x, int new_y, int new_x)
45 **
46 **              void _nc_mvcur_wrap(void)
47 **
48 ** Comparisons with older movement optimizers:
49 **    SVr3 curses mvcur() can't use cursor_to_ll or auto_left_margin.
50 **    4.4BSD curses can't use cuu/cud/cuf/cub/hpa/vpa/tab/cbt for local
51 ** motions.  It doesn't use tactics based on auto_left_margin.  Weirdly
52 ** enough, it doesn't use its own hardware-scrolling routine to scroll up
53 ** destination lines for out-of-bounds addresses!
54 **    old ncurses optimizer: less accurate cost computations (in fact,
55 ** it was broken and had to be commented out!).
56 **
57 ** Compile with -DMAIN to build an interactive tester/timer for the movement
58 ** optimizer.  You can use it to investigate the optimizer's behavior.
59 ** You can also use it for tuning the formulas used to determine whether
60 ** or not full optimization is attempted.
61 **
62 ** This code has a nasty tendency to find bugs in terminfo entries, because it
63 ** exercises the non-cup movement capabilities heavily.  If you think you've
64 ** found a bug, try deleting subsets of the following capabilities (arranged
65 ** in decreasing order of suspiciousness): it, tab, cbt, hpa, vpa, cuu, cud,
66 ** cuf, cub, cuu1, cud1, cuf1, cub1.  It may be that one or more are wrong.
67 **
68 ** Note: you should expect this code to look like a resource hog in a profile.
69 ** That's because it does a lot of I/O, through the tputs() calls.  The I/O
70 ** cost swamps the computation overhead (and as machines get faster, this
71 ** will become even more true).  Comments in the test exerciser at the end
72 ** go into detail about tuning and how you can gauge the optimizer's
73 ** effectiveness.
74 **/
75
76 /****************************************************************************
77  *
78  * Constants and macros for optimizer tuning.
79  *
80  ****************************************************************************/
81
82 /*
83  * The average overhead of a full optimization computation in character
84  * transmission times.  If it's too high, the algorithm will be a bit
85  * over-biased toward using cup rather than local motions; if it's too
86  * low, the algorithm may spend more time than is strictly optimal
87  * looking for non-cup motions.  Profile the optimizer using the `t'
88  * command of the exerciser (see below), and round to the nearest integer.
89  *
90  * Yes, I (esr) thought about computing expected overhead dynamically, say
91  * by derivation from a running average of optimizer times.  But the
92  * whole point of this optimization is to *decrease* the frequency of
93  * system calls. :-)
94  */
95 #define COMPUTE_OVERHEAD        1       /* I use a 90MHz Pentium @ 9.6Kbps */
96
97 /*
98  * LONG_DIST is the distance we consider to be just as costly to move over as a
99  * cup sequence is to emit.  In other words, it's the length of a cup sequence
100  * adjusted for average computation overhead.  The magic number is the length
101  * of "\033[yy;xxH", the typical cup sequence these days.
102  */
103 #define LONG_DIST               (8 - COMPUTE_OVERHEAD)
104
105 /*
106  * Tell whether a motion is optimizable by local motions.  Needs to be cheap to
107  * compute. In general, all the fast moves go to either the right or left edge
108  * of the screen.  So any motion to a location that is (a) further away than
109  * LONG_DIST and (b) further inward from the right or left edge than LONG_DIST,
110  * we'll consider nonlocal.
111  */
112 #define NOT_LOCAL(fy, fx, ty, tx)       ((tx > LONG_DIST) \
113                  && (tx < screen_columns - 1 - LONG_DIST) \
114                  && (abs(ty-fy) + abs(tx-fx) > LONG_DIST))
115
116 /****************************************************************************
117  *
118  * External interfaces
119  *
120  ****************************************************************************/
121
122 /*
123  * For this code to work OK, the following components must live in the
124  * screen structure:
125  *
126  *      int             _char_padding;  // cost of character put
127  *      int             _cr_cost;       // cost of (carriage_return)
128  *      int             _cup_cost;      // cost of (cursor_address)
129  *      int             _home_cost;     // cost of (cursor_home)
130  *      int             _ll_cost;       // cost of (cursor_to_ll)
131  *#if USE_HARD_TABS
132  *      int             _ht_cost;       // cost of (tab)
133  *      int             _cbt_cost;      // cost of (back_tab)
134  *#endif USE_HARD_TABS
135  *      int             _cub1_cost;     // cost of (cursor_left)
136  *      int             _cuf1_cost;     // cost of (cursor_right)
137  *      int             _cud1_cost;     // cost of (cursor_down)
138  *      int             _cuu1_cost;     // cost of (cursor_up)
139  *      int             _cub_cost;      // cost of (parm_cursor_left)
140  *      int             _cuf_cost;      // cost of (parm_cursor_right)
141  *      int             _cud_cost;      // cost of (parm_cursor_down)
142  *      int             _cuu_cost;      // cost of (parm_cursor_up)
143  *      int             _hpa_cost;      // cost of (column_address)
144  *      int             _vpa_cost;      // cost of (row_address)
145  *      int             _ech_cost;      // cost of (erase_chars)
146  *      int             _rep_cost;      // cost of (repeat_char)
147  *
148  * The USE_HARD_TABS switch controls whether it is reliable to use tab/backtabs
149  * for local motions.  On many systems, it's not, due to uncertainties about
150  * tab delays and whether or not tabs will be expanded in raw mode.  If you
151  * have parm_right_cursor, tab motions don't win you a lot anyhow.
152  */
153
154 #include <curses.priv.h>
155 #include <term.h>
156 #include <ctype.h>
157
158 MODULE_ID("$Id: lib_mvcur.c,v 1.112 2008/06/28 12:50:46 tom Exp $")
159
160 #define WANT_CHAR(y, x) SP->_newscr->_line[y].text[x]   /* desired state */
161 #define BAUDRATE        cur_term->_baudrate     /* bits per second */
162
163 #if defined(MAIN) || defined(NCURSES_TEST)
164 #include <sys/time.h>
165
166 static bool profiling = FALSE;
167 static float diff;
168 #endif /* MAIN */
169
170 #define OPT_SIZE 512
171
172 static int normalized_cost(const char *const cap, int affcnt);
173
174 /****************************************************************************
175  *
176  * Initialization/wrapup (including cost pre-computation)
177  *
178  ****************************************************************************/
179
180 #ifdef TRACE
181 static int
182 trace_cost_of(const char *capname, const char *cap, int affcnt)
183 {
184     int result = _nc_msec_cost(cap, affcnt);
185     TR(TRACE_CHARPUT | TRACE_MOVE,
186        ("CostOf %s %d %s", capname, result, _nc_visbuf(cap)));
187     return result;
188 }
189 #define CostOf(cap,affcnt) trace_cost_of(#cap,cap,affcnt);
190
191 static int
192 trace_normalized_cost(const char *capname, const char *cap, int affcnt)
193 {
194     int result = normalized_cost(cap, affcnt);
195     TR(TRACE_CHARPUT | TRACE_MOVE,
196        ("NormalizedCost %s %d %s", capname, result, _nc_visbuf(cap)));
197     return result;
198 }
199 #define NormalizedCost(cap,affcnt) trace_normalized_cost(#cap,cap,affcnt);
200
201 #else
202
203 #define CostOf(cap,affcnt) _nc_msec_cost(cap,affcnt);
204 #define NormalizedCost(cap,affcnt) normalized_cost(cap,affcnt);
205
206 #endif
207
208 NCURSES_EXPORT(int)
209 _nc_msec_cost(const char *const cap, int affcnt)
210 /* compute the cost of a given operation */
211 {
212     if (cap == 0)
213         return (INFINITY);
214     else {
215         const char *cp;
216         float cum_cost = 0.0;
217
218         for (cp = cap; *cp; cp++) {
219             /* extract padding, either mandatory or required */
220             if (cp[0] == '$' && cp[1] == '<' && strchr(cp, '>')) {
221                 float number = 0.0;
222
223                 for (cp += 2; *cp != '>'; cp++) {
224                     if (isdigit(UChar(*cp)))
225                         number = number * 10 + (*cp - '0');
226                     else if (*cp == '*')
227                         number *= affcnt;
228                     else if (*cp == '.' && (*++cp != '>') && isdigit(UChar(*cp)))
229                         number += (*cp - '0') / 10.0;
230                 }
231
232 #if NCURSES_NO_PADDING
233                 if (!GetNoPadding(SP))
234 #endif
235                     cum_cost += number * 10;
236             } else
237                 cum_cost += SP->_char_padding;
238         }
239
240         return ((int) cum_cost);
241     }
242 }
243
244 static int
245 normalized_cost(const char *const cap, int affcnt)
246 /* compute the effective character-count for an operation (round up) */
247 {
248     int cost = _nc_msec_cost(cap, affcnt);
249     if (cost != INFINITY)
250         cost = (cost + SP->_char_padding - 1) / SP->_char_padding;
251     return cost;
252 }
253
254 static void
255 reset_scroll_region(void)
256 /* Set the scroll-region to a known state (the default) */
257 {
258     if (change_scroll_region) {
259         TPUTS_TRACE("change_scroll_region");
260         putp(TPARM_2(change_scroll_region, 0, screen_lines - 1));
261     }
262 }
263
264 NCURSES_EXPORT(void)
265 _nc_mvcur_resume(void)
266 /* what to do at initialization time and after each shellout */
267 {
268     /* initialize screen for cursor access */
269     if (enter_ca_mode) {
270         TPUTS_TRACE("enter_ca_mode");
271         putp(enter_ca_mode);
272     }
273
274     /*
275      * Doing this here rather than in _nc_mvcur_wrap() ensures that
276      * ncurses programs will see a reset scroll region even if a
277      * program that messed with it died ungracefully.
278      *
279      * This also undoes the effects of terminal init strings that assume
280      * they know the screen size.  This is useful when you're running
281      * a vt100 emulation through xterm.
282      */
283     reset_scroll_region();
284     SP->_cursrow = SP->_curscol = -1;
285
286     /* restore cursor shape */
287     if (SP->_cursor != -1) {
288         int cursor = SP->_cursor;
289         SP->_cursor = -1;
290         curs_set(cursor);
291     }
292 }
293
294 NCURSES_EXPORT(void)
295 _nc_mvcur_init(void)
296 /* initialize the cost structure */
297 {
298     if (isatty(fileno(SP->_ofp)))
299         SP->_char_padding = ((BAUDBYTE * 1000 * 10)
300                              / (BAUDRATE > 0 ? BAUDRATE : 9600));
301     else
302         SP->_char_padding = 1;  /* must be nonzero */
303     if (SP->_char_padding <= 0)
304         SP->_char_padding = 1;  /* must be nonzero */
305     TR(TRACE_CHARPUT | TRACE_MOVE, ("char_padding %d msecs", SP->_char_padding));
306
307     /* non-parameterized local-motion strings */
308     SP->_cr_cost = CostOf(carriage_return, 0);
309     SP->_home_cost = CostOf(cursor_home, 0);
310     SP->_ll_cost = CostOf(cursor_to_ll, 0);
311 #if USE_HARD_TABS
312     if (getenv("NCURSES_NO_HARD_TABS") == 0) {
313         SP->_ht_cost = CostOf(tab, 0);
314         SP->_cbt_cost = CostOf(back_tab, 0);
315     } else {
316         SP->_ht_cost = INFINITY;
317         SP->_cbt_cost = INFINITY;
318     }
319 #endif /* USE_HARD_TABS */
320     SP->_cub1_cost = CostOf(cursor_left, 0);
321     SP->_cuf1_cost = CostOf(cursor_right, 0);
322     SP->_cud1_cost = CostOf(cursor_down, 0);
323     SP->_cuu1_cost = CostOf(cursor_up, 0);
324
325     SP->_smir_cost = CostOf(enter_insert_mode, 0);
326     SP->_rmir_cost = CostOf(exit_insert_mode, 0);
327     SP->_ip_cost = 0;
328     if (insert_padding) {
329         SP->_ip_cost = CostOf(insert_padding, 0);
330     }
331
332     /*
333      * Assumption: if the terminal has memory_relative addressing, the
334      * initialization strings or smcup will set single-page mode so we
335      * can treat it like absolute screen addressing.  This seems to be true
336      * for all cursor_mem_address terminal types in the terminfo database.
337      */
338     SP->_address_cursor = cursor_address ? cursor_address : cursor_mem_address;
339
340     /*
341      * Parametrized local-motion strings.  This static cost computation
342      * depends on the following assumptions:
343      *
344      * (1) They never have * padding.  In the entire master terminfo database
345      *     as of March 1995, only the obsolete Zenith Z-100 pc violates this.
346      *     (Proportional padding is found mainly in insert, delete and scroll
347      *     capabilities).
348      *
349      * (2) The average case of cup has two two-digit parameters.  Strictly,
350      *     the average case for a 24 * 80 screen has ((10*10*(1 + 1)) +
351      *     (14*10*(1 + 2)) + (10*70*(2 + 1)) + (14*70*4)) / (24*80) = 3.458
352      *     digits of parameters.  On a 25x80 screen the average is 3.6197.
353      *     On larger screens the value gets much closer to 4.
354      *
355      * (3) The average case of cub/cuf/hpa/ech/rep has 2 digits of parameters
356      *     (strictly, (((10 * 1) + (70 * 2)) / 80) = 1.8750).
357      *
358      * (4) The average case of cud/cuu/vpa has 2 digits of parameters
359      *     (strictly, (((10 * 1) + (14 * 2)) / 24) = 1.5833).
360      *
361      * All these averages depend on the assumption that all parameter values
362      * are equally probable.
363      */
364     SP->_cup_cost = CostOf(TPARM_2(SP->_address_cursor, 23, 23), 1);
365     SP->_cub_cost = CostOf(TPARM_1(parm_left_cursor, 23), 1);
366     SP->_cuf_cost = CostOf(TPARM_1(parm_right_cursor, 23), 1);
367     SP->_cud_cost = CostOf(TPARM_1(parm_down_cursor, 23), 1);
368     SP->_cuu_cost = CostOf(TPARM_1(parm_up_cursor, 23), 1);
369     SP->_hpa_cost = CostOf(TPARM_1(column_address, 23), 1);
370     SP->_vpa_cost = CostOf(TPARM_1(row_address, 23), 1);
371
372     /* non-parameterized screen-update strings */
373     SP->_ed_cost = NormalizedCost(clr_eos, 1);
374     SP->_el_cost = NormalizedCost(clr_eol, 1);
375     SP->_el1_cost = NormalizedCost(clr_bol, 1);
376     SP->_dch1_cost = NormalizedCost(delete_character, 1);
377     SP->_ich1_cost = NormalizedCost(insert_character, 1);
378
379     /*
380      * If this is a bce-terminal, we want to bias the choice so we use clr_eol
381      * rather than spaces at the end of a line.
382      */
383     if (back_color_erase)
384         SP->_el_cost = 0;
385
386     /* parameterized screen-update strings */
387     SP->_dch_cost = NormalizedCost(TPARM_1(parm_dch, 23), 1);
388     SP->_ich_cost = NormalizedCost(TPARM_1(parm_ich, 23), 1);
389     SP->_ech_cost = NormalizedCost(TPARM_1(erase_chars, 23), 1);
390     SP->_rep_cost = NormalizedCost(TPARM_2(repeat_char, ' ', 23), 1);
391
392     SP->_cup_ch_cost = NormalizedCost(TPARM_2(SP->_address_cursor, 23, 23), 1);
393     SP->_hpa_ch_cost = NormalizedCost(TPARM_1(column_address, 23), 1);
394     SP->_cuf_ch_cost = NormalizedCost(TPARM_1(parm_right_cursor, 23), 1);
395     SP->_inline_cost = min(SP->_cup_ch_cost,
396                            min(SP->_hpa_ch_cost,
397                                SP->_cuf_ch_cost));
398
399     /*
400      * If save_cursor is used within enter_ca_mode, we should not use it for
401      * scrolling optimization, since the corresponding restore_cursor is not
402      * nested on the various terminals (vt100, xterm, etc.) which use this
403      * feature.
404      */
405     if (save_cursor != 0
406         && enter_ca_mode != 0
407         && strstr(enter_ca_mode, save_cursor) != 0) {
408         T(("...suppressed sc/rc capability due to conflict with smcup/rmcup"));
409         save_cursor = 0;
410         restore_cursor = 0;
411     }
412
413     /*
414      * A different, possibly better way to arrange this would be to set
415      * SP->_endwin = TRUE at window initialization time and let this be
416      * called by doupdate's return-from-shellout code.
417      */
418     _nc_mvcur_resume();
419 }
420
421 NCURSES_EXPORT(void)
422 _nc_mvcur_wrap(void)
423 /* wrap up cursor-addressing mode */
424 {
425     /* leave cursor at screen bottom */
426     mvcur(-1, -1, screen_lines - 1, 0);
427
428     /* set cursor to normal mode */
429     if (SP->_cursor != -1) {
430         int cursor = SP->_cursor;
431         curs_set(1);
432         SP->_cursor = cursor;
433     }
434
435     if (exit_ca_mode) {
436         TPUTS_TRACE("exit_ca_mode");
437         putp(exit_ca_mode);
438     }
439     /*
440      * Reset terminal's tab counter.  There's a long-time bug that
441      * if you exit a "curses" program such as vi or more, tab
442      * forward, and then backspace, the cursor doesn't go to the
443      * right place.  The problem is that the kernel counts the
444      * escape sequences that reset things as column positions.
445      * Utter a \r to reset this invisibly.
446      */
447     _nc_outch('\r');
448 }
449
450 /****************************************************************************
451  *
452  * Optimized cursor movement
453  *
454  ****************************************************************************/
455
456 /*
457  * Perform repeated-append, returning cost
458  */
459 static NCURSES_INLINE int
460 repeated_append(string_desc * target, int total, int num, int repeat, const char *src)
461 {
462     size_t need = repeat * strlen(src);
463
464     if (need < target->s_size) {
465         while (repeat-- > 0) {
466             if (_nc_safe_strcat(target, src)) {
467                 total += num;
468             } else {
469                 total = INFINITY;
470                 break;
471             }
472         }
473     } else {
474         total = INFINITY;
475     }
476     return total;
477 }
478
479 #ifndef NO_OPTIMIZE
480 #define NEXTTAB(fr)     (fr + init_tabs - (fr % init_tabs))
481
482 /*
483  * Assume back_tab (CBT) does not wrap backwards at the left margin, return
484  * a negative value at that point to simplify the loop.
485  */
486 #define LASTTAB(fr)     ((fr > 0) ? ((fr - 1) / init_tabs) * init_tabs : -1)
487
488 static int
489 relative_move(string_desc * target, int from_y, int from_x, int to_y, int
490               to_x, bool ovw)
491 /* move via local motions (cuu/cuu1/cud/cud1/cub1/cub/cuf1/cuf/vpa/hpa) */
492 {
493     string_desc save;
494     int n, vcost = 0, hcost = 0;
495
496     (void) _nc_str_copy(&save, target);
497
498     if (to_y != from_y) {
499         vcost = INFINITY;
500
501         if (row_address != 0
502             && _nc_safe_strcat(target, TPARM_1(row_address, to_y))) {
503             vcost = SP->_vpa_cost;
504         }
505
506         if (to_y > from_y) {
507             n = (to_y - from_y);
508
509             if (parm_down_cursor
510                 && SP->_cud_cost < vcost
511                 && _nc_safe_strcat(_nc_str_copy(target, &save),
512                                    TPARM_1(parm_down_cursor, n))) {
513                 vcost = SP->_cud_cost;
514             }
515
516             if (cursor_down
517                 && (*cursor_down != '\n' || SP->_nl)
518                 && (n * SP->_cud1_cost < vcost)) {
519                 vcost = repeated_append(_nc_str_copy(target, &save), 0,
520                                         SP->_cud1_cost, n, cursor_down);
521             }
522         } else {                /* (to_y < from_y) */
523             n = (from_y - to_y);
524
525             if (parm_up_cursor
526                 && SP->_cuu_cost < vcost
527                 && _nc_safe_strcat(_nc_str_copy(target, &save),
528                                    TPARM_1(parm_up_cursor, n))) {
529                 vcost = SP->_cuu_cost;
530             }
531
532             if (cursor_up && (n * SP->_cuu1_cost < vcost)) {
533                 vcost = repeated_append(_nc_str_copy(target, &save), 0,
534                                         SP->_cuu1_cost, n, cursor_up);
535             }
536         }
537
538         if (vcost == INFINITY)
539             return (INFINITY);
540     }
541
542     save = *target;
543
544     if (to_x != from_x) {
545         char str[OPT_SIZE];
546         string_desc check;
547
548         hcost = INFINITY;
549
550         if (column_address
551             && _nc_safe_strcat(_nc_str_copy(target, &save),
552                                TPARM_1(column_address, to_x))) {
553             hcost = SP->_hpa_cost;
554         }
555
556         if (to_x > from_x) {
557             n = to_x - from_x;
558
559             if (parm_right_cursor
560                 && SP->_cuf_cost < hcost
561                 && _nc_safe_strcat(_nc_str_copy(target, &save),
562                                    TPARM_1(parm_right_cursor, n))) {
563                 hcost = SP->_cuf_cost;
564             }
565
566             if (cursor_right) {
567                 int lhcost = 0;
568
569                 (void) _nc_str_init(&check, str, sizeof(str));
570
571 #if USE_HARD_TABS
572                 /* use hard tabs, if we have them, to do as much as possible */
573                 if (init_tabs > 0 && tab) {
574                     int nxt, fr;
575
576                     for (fr = from_x; (nxt = NEXTTAB(fr)) <= to_x; fr = nxt) {
577                         lhcost = repeated_append(&check, lhcost,
578                                                  SP->_ht_cost, 1, tab);
579                         if (lhcost == INFINITY)
580                             break;
581                     }
582
583                     n = to_x - fr;
584                     from_x = fr;
585                 }
586 #endif /* USE_HARD_TABS */
587
588                 if (n <= 0 || n >= (int) check.s_size)
589                     ovw = FALSE;
590 #if BSD_TPUTS
591                 /*
592                  * If we're allowing BSD-style padding in tputs, don't generate
593                  * a string with a leading digit.  Otherwise, that will be
594                  * interpreted as a padding value rather than sent to the
595                  * screen.
596                  */
597                 if (ovw
598                     && n > 0
599                     && n < (int) check.s_size
600                     && vcost == 0
601                     && str[0] == '\0') {
602                     int wanted = CharOf(WANT_CHAR(to_y, from_x));
603                     if (is8bits(wanted) && isdigit(wanted))
604                         ovw = FALSE;
605                 }
606 #endif
607                 /*
608                  * If we have no attribute changes, overwrite is cheaper.
609                  * Note: must suppress this by passing in ovw = FALSE whenever
610                  * WANT_CHAR would return invalid data.  In particular, this
611                  * is true between the time a hardware scroll has been done
612                  * and the time the structure WANT_CHAR would access has been
613                  * updated.
614                  */
615                 if (ovw) {
616                     int i;
617
618                     for (i = 0; i < n; i++) {
619                         NCURSES_CH_T ch = WANT_CHAR(to_y, from_x + i);
620                         if (!SameAttrOf(ch, SCREEN_ATTRS(SP))
621 #if USE_WIDEC_SUPPORT
622                             || !Charable(ch)
623 #endif
624                             ) {
625                             ovw = FALSE;
626                             break;
627                         }
628                     }
629                 }
630                 if (ovw) {
631                     int i;
632
633                     for (i = 0; i < n; i++)
634                         *check.s_tail++ = CharOf(WANT_CHAR(to_y, from_x + i));
635                     *check.s_tail = '\0';
636                     check.s_size -= n;
637                     lhcost += n * SP->_char_padding;
638                 } else {
639                     lhcost = repeated_append(&check, lhcost, SP->_cuf1_cost,
640                                              n, cursor_right);
641                 }
642
643                 if (lhcost < hcost
644                     && _nc_safe_strcat(_nc_str_copy(target, &save), str)) {
645                     hcost = lhcost;
646                 }
647             }
648         } else {                /* (to_x < from_x) */
649             n = from_x - to_x;
650
651             if (parm_left_cursor
652                 && SP->_cub_cost < hcost
653                 && _nc_safe_strcat(_nc_str_copy(target, &save),
654                                    TPARM_1(parm_left_cursor, n))) {
655                 hcost = SP->_cub_cost;
656             }
657
658             if (cursor_left) {
659                 int lhcost = 0;
660
661                 (void) _nc_str_init(&check, str, sizeof(str));
662
663 #if USE_HARD_TABS
664                 if (init_tabs > 0 && back_tab) {
665                     int nxt, fr;
666
667                     for (fr = from_x; (nxt = LASTTAB(fr)) >= to_x; fr = nxt) {
668                         lhcost = repeated_append(&check, lhcost,
669                                                  SP->_cbt_cost, 1, back_tab);
670                         if (lhcost == INFINITY)
671                             break;
672                     }
673
674                     n = fr - to_x;
675                 }
676 #endif /* USE_HARD_TABS */
677
678                 lhcost = repeated_append(&check, lhcost, SP->_cub1_cost, n, cursor_left);
679
680                 if (lhcost < hcost
681                     && _nc_safe_strcat(_nc_str_copy(target, &save), str)) {
682                     hcost = lhcost;
683                 }
684             }
685         }
686
687         if (hcost == INFINITY)
688             return (INFINITY);
689     }
690
691     return (vcost + hcost);
692 }
693 #endif /* !NO_OPTIMIZE */
694
695 /*
696  * With the machinery set up above, it's conceivable that
697  * onscreen_mvcur could be modified into a recursive function that does
698  * an alpha-beta search of motion space, as though it were a chess
699  * move tree, with the weight function being boolean and the search
700  * depth equated to length of string.  However, this would jack up the
701  * computation cost a lot, especially on terminals without a cup
702  * capability constraining the search tree depth.  So we settle for
703  * the simpler method below.
704  */
705
706 static NCURSES_INLINE int
707 onscreen_mvcur(int yold, int xold, int ynew, int xnew, bool ovw)
708 /* onscreen move from (yold, xold) to (ynew, xnew) */
709 {
710     string_desc result;
711     char buffer[OPT_SIZE];
712     int tactic = 0, newcost, usecost = INFINITY;
713     int t5_cr_cost;
714
715 #if defined(MAIN) || defined(NCURSES_TEST)
716     struct timeval before, after;
717
718     gettimeofday(&before, NULL);
719 #endif /* MAIN */
720
721 #define NullResult _nc_str_null(&result, sizeof(buffer))
722 #define InitResult _nc_str_init(&result, buffer, sizeof(buffer))
723
724     /* tactic #0: use direct cursor addressing */
725     if (_nc_safe_strcpy(InitResult, TPARM_2(SP->_address_cursor, ynew, xnew))) {
726         tactic = 0;
727         usecost = SP->_cup_cost;
728
729 #if defined(TRACE) || defined(NCURSES_TEST)
730         if (!(_nc_optimize_enable & OPTIMIZE_MVCUR))
731             goto nonlocal;
732 #endif /* TRACE */
733
734         /*
735          * We may be able to tell in advance that the full optimization
736          * will probably not be worth its overhead.  Also, don't try to
737          * use local movement if the current attribute is anything but
738          * A_NORMAL...there are just too many ways this can screw up
739          * (like, say, local-movement \n getting mapped to some obscure
740          * character because A_ALTCHARSET is on).
741          */
742         if (yold == -1 || xold == -1 || NOT_LOCAL(yold, xold, ynew, xnew)) {
743 #if defined(MAIN) || defined(NCURSES_TEST)
744             if (!profiling) {
745                 (void) fputs("nonlocal\n", stderr);
746                 goto nonlocal;  /* always run the optimizer if profiling */
747             }
748 #else
749             goto nonlocal;
750 #endif /* MAIN */
751         }
752     }
753 #ifndef NO_OPTIMIZE
754     /* tactic #1: use local movement */
755     if (yold != -1 && xold != -1
756         && ((newcost = relative_move(NullResult, yold, xold, ynew, xnew,
757                                      ovw)) != INFINITY)
758         && newcost < usecost) {
759         tactic = 1;
760         usecost = newcost;
761     }
762
763     /* tactic #2: use carriage-return + local movement */
764     if (yold != -1 && carriage_return
765         && ((newcost = relative_move(NullResult, yold, 0, ynew, xnew, ovw))
766             != INFINITY)
767         && SP->_cr_cost + newcost < usecost) {
768         tactic = 2;
769         usecost = SP->_cr_cost + newcost;
770     }
771
772     /* tactic #3: use home-cursor + local movement */
773     if (cursor_home
774         && ((newcost = relative_move(NullResult, 0, 0, ynew, xnew, ovw)) != INFINITY)
775         && SP->_home_cost + newcost < usecost) {
776         tactic = 3;
777         usecost = SP->_home_cost + newcost;
778     }
779
780     /* tactic #4: use home-down + local movement */
781     if (cursor_to_ll
782         && ((newcost = relative_move(NullResult, screen_lines - 1, 0, ynew,
783                                      xnew, ovw)) != INFINITY)
784         && SP->_ll_cost + newcost < usecost) {
785         tactic = 4;
786         usecost = SP->_ll_cost + newcost;
787     }
788
789     /*
790      * tactic #5: use left margin for wrap to right-hand side,
791      * unless strange wrap behavior indicated by xenl might hose us.
792      */
793     t5_cr_cost = (xold > 0 ? SP->_cr_cost : 0);
794     if (auto_left_margin && !eat_newline_glitch
795         && yold > 0 && cursor_left
796         && ((newcost = relative_move(NullResult, yold - 1, screen_columns -
797                                      1, ynew, xnew, ovw)) != INFINITY)
798         && t5_cr_cost + SP->_cub1_cost + newcost < usecost) {
799         tactic = 5;
800         usecost = t5_cr_cost + SP->_cub1_cost + newcost;
801     }
802
803     /*
804      * These cases are ordered by estimated relative frequency.
805      */
806     if (tactic)
807         InitResult;
808     switch (tactic) {
809     case 1:
810         (void) relative_move(&result, yold, xold, ynew, xnew, ovw);
811         break;
812     case 2:
813         (void) _nc_safe_strcpy(&result, carriage_return);
814         (void) relative_move(&result, yold, 0, ynew, xnew, ovw);
815         break;
816     case 3:
817         (void) _nc_safe_strcpy(&result, cursor_home);
818         (void) relative_move(&result, 0, 0, ynew, xnew, ovw);
819         break;
820     case 4:
821         (void) _nc_safe_strcpy(&result, cursor_to_ll);
822         (void) relative_move(&result, screen_lines - 1, 0, ynew, xnew, ovw);
823         break;
824     case 5:
825         if (xold > 0)
826             (void) _nc_safe_strcat(&result, carriage_return);
827         (void) _nc_safe_strcat(&result, cursor_left);
828         (void) relative_move(&result, yold - 1, screen_columns - 1, ynew,
829                              xnew, ovw);
830         break;
831     }
832 #endif /* !NO_OPTIMIZE */
833
834   nonlocal:
835 #if defined(MAIN) || defined(NCURSES_TEST)
836     gettimeofday(&after, NULL);
837     diff = after.tv_usec - before.tv_usec
838         + (after.tv_sec - before.tv_sec) * 1000000;
839     if (!profiling)
840         (void) fprintf(stderr,
841                        "onscreen: %d microsec, %f 28.8Kbps char-equivalents\n",
842                        (int) diff, diff / 288);
843 #endif /* MAIN */
844
845     if (usecost != INFINITY) {
846         TPUTS_TRACE("mvcur");
847         tputs(buffer, 1, _nc_outch);
848         SP->_cursrow = ynew;
849         SP->_curscol = xnew;
850         return (OK);
851     } else
852         return (ERR);
853 }
854
855 NCURSES_EXPORT(int)
856 mvcur(int yold, int xold, int ynew, int xnew)
857 /* optimized cursor move from (yold, xold) to (ynew, xnew) */
858 {
859     NCURSES_CH_T oldattr;
860     int code;
861
862     TR(TRACE_CALLS | TRACE_MOVE, (T_CALLED("mvcur(%d,%d,%d,%d)"),
863                                   yold, xold, ynew, xnew));
864
865     if (SP == 0) {
866         code = ERR;
867     } else if (yold == ynew && xold == xnew) {
868         code = OK;
869     } else {
870
871         /*
872          * Most work here is rounding for terminal boundaries getting the
873          * column position implied by wraparound or the lack thereof and
874          * rolling up the screen to get ynew on the screen.
875          */
876         if (xnew >= screen_columns) {
877             ynew += xnew / screen_columns;
878             xnew %= screen_columns;
879         }
880
881         /*
882          * Force restore even if msgr is on when we're in an alternate
883          * character set -- these have a strong tendency to screw up the CR &
884          * LF used for local character motions!
885          */
886         oldattr = SCREEN_ATTRS(SP);
887         if ((AttrOf(oldattr) & A_ALTCHARSET)
888             || (AttrOf(oldattr) && !move_standout_mode)) {
889             TR(TRACE_CHARPUT, ("turning off (%#lx) %s before move",
890                                (unsigned long) AttrOf(oldattr),
891                                _traceattr(AttrOf(oldattr))));
892             (void) VIDATTR(A_NORMAL, 0);
893         }
894
895         if (xold >= screen_columns) {
896             int l;
897
898             if (SP->_nl) {
899                 l = (xold + 1) / screen_columns;
900                 yold += l;
901                 if (yold >= screen_lines)
902                     l -= (yold - screen_lines - 1);
903
904                 if (l > 0) {
905                     if (carriage_return) {
906                         TPUTS_TRACE("carriage_return");
907                         putp(carriage_return);
908                     } else
909                         _nc_outch('\r');
910                     xold = 0;
911
912                     while (l > 0) {
913                         if (newline) {
914                             TPUTS_TRACE("newline");
915                             putp(newline);
916                         } else
917                             _nc_outch('\n');
918                         l--;
919                     }
920                 }
921             } else {
922                 /*
923                  * If caller set nonl(), we cannot really use newlines to
924                  * position to the next row.
925                  */
926                 xold = -1;
927                 yold = -1;
928             }
929         }
930
931         if (yold > screen_lines - 1)
932             yold = screen_lines - 1;
933         if (ynew > screen_lines - 1)
934             ynew = screen_lines - 1;
935
936         /* destination location is on screen now */
937         code = onscreen_mvcur(yold, xold, ynew, xnew, TRUE);
938
939         /*
940          * Restore attributes if we disabled them before moving.
941          */
942         if (!SameAttrOf(oldattr, SCREEN_ATTRS(SP))) {
943             TR(TRACE_CHARPUT, ("turning on (%#lx) %s after move",
944                                (unsigned long) AttrOf(oldattr),
945                                _traceattr(AttrOf(oldattr))));
946             (void) VIDATTR(AttrOf(oldattr), GetPair(oldattr));
947         }
948     }
949     returnCode(code);
950 }
951
952 #if defined(TRACE) || defined(NCURSES_TEST)
953 NCURSES_EXPORT_VAR(int) _nc_optimize_enable = OPTIMIZE_ALL;
954 #endif
955
956 #if defined(MAIN) || defined(NCURSES_TEST)
957 /****************************************************************************
958  *
959  * Movement optimizer test code
960  *
961  ****************************************************************************/
962
963 #include <tic.h>
964 #include <dump_entry.h>
965 #include <time.h>
966
967 NCURSES_EXPORT_VAR(const char *) _nc_progname = "mvcur";
968
969 static unsigned long xmits;
970
971 /* these override lib_tputs.c */
972 NCURSES_EXPORT(int)
973 tputs(const char *string, int affcnt GCC_UNUSED, int (*outc) (int) GCC_UNUSED)
974 /* stub tputs() that dumps sequences in a visible form */
975 {
976     if (profiling)
977         xmits += strlen(string);
978     else
979         (void) fputs(_nc_visbuf(string), stdout);
980     return (OK);
981 }
982
983 NCURSES_EXPORT(int)
984 putp(const char *string)
985 {
986     return (tputs(string, 1, _nc_outch));
987 }
988
989 NCURSES_EXPORT(int)
990 _nc_outch(int ch)
991 {
992     putc(ch, stdout);
993     return OK;
994 }
995
996 NCURSES_EXPORT(int)
997 delay_output(int ms GCC_UNUSED)
998 {
999     return OK;
1000 }
1001
1002 static char tname[PATH_MAX];
1003
1004 static void
1005 load_term(void)
1006 {
1007     (void) setupterm(tname, STDOUT_FILENO, NULL);
1008 }
1009
1010 static int
1011 roll(int n)
1012 {
1013     int i, j;
1014
1015     i = (RAND_MAX / n) * n;
1016     while ((j = rand()) >= i)
1017         continue;
1018     return (j % n);
1019 }
1020
1021 int
1022 main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
1023 {
1024     strcpy(tname, getenv("TERM"));
1025     load_term();
1026     _nc_setupscreen(lines, columns, stdout, FALSE, 0);
1027     baudrate();
1028
1029     _nc_mvcur_init();
1030     NC_BUFFERED(FALSE);
1031
1032     (void) puts("The mvcur tester.  Type ? for help");
1033
1034     fputs("smcup:", stdout);
1035     putchar('\n');
1036
1037     for (;;) {
1038         int fy, fx, ty, tx, n, i;
1039         char buf[BUFSIZ], capname[BUFSIZ];
1040
1041         (void) fputs("> ", stdout);
1042         (void) fgets(buf, sizeof(buf), stdin);
1043
1044         if (buf[0] == '?') {
1045             (void) puts("?                -- display this help message");
1046             (void)
1047                 puts("fy fx ty tx      -- (4 numbers) display (fy,fx)->(ty,tx) move");
1048             (void) puts("s[croll] n t b m -- display scrolling sequence");
1049             (void)
1050                 printf("r[eload]         -- reload terminal info for %s\n",
1051                        termname());
1052             (void)
1053                 puts("l[oad] <term>    -- load terminal info for type <term>");
1054             (void) puts("d[elete] <cap>   -- delete named capability");
1055             (void) puts("i[nspect]        -- display terminal capabilities");
1056             (void)
1057                 puts("c[ost]           -- dump cursor-optimization cost table");
1058             (void) puts("o[optimize]      -- toggle movement optimization");
1059             (void)
1060                 puts("t[orture] <num>  -- torture-test with <num> random moves");
1061             (void) puts("q[uit]           -- quit the program");
1062         } else if (sscanf(buf, "%d %d %d %d", &fy, &fx, &ty, &tx) == 4) {
1063             struct timeval before, after;
1064
1065             putchar('"');
1066
1067             gettimeofday(&before, NULL);
1068             mvcur(fy, fx, ty, tx);
1069             gettimeofday(&after, NULL);
1070
1071             printf("\" (%ld msec)\n",
1072                    (long) (after.tv_usec - before.tv_usec
1073                            + (after.tv_sec - before.tv_sec)
1074                            * 1000000));
1075         } else if (sscanf(buf, "s %d %d %d %d", &fy, &fx, &ty, &tx) == 4) {
1076             struct timeval before, after;
1077
1078             putchar('"');
1079
1080             gettimeofday(&before, NULL);
1081             _nc_scrolln(fy, fx, ty, tx);
1082             gettimeofday(&after, NULL);
1083
1084             printf("\" (%ld msec)\n",
1085                    (long) (after.tv_usec - before.tv_usec + (after.tv_sec -
1086                                                              before.tv_sec)
1087                            * 1000000));
1088         } else if (buf[0] == 'r') {
1089             (void) strcpy(tname, termname());
1090             load_term();
1091         } else if (sscanf(buf, "l %s", tname) == 1) {
1092             load_term();
1093         } else if (sscanf(buf, "d %s", capname) == 1) {
1094             struct name_table_entry const *np = _nc_find_entry(capname,
1095                                                                _nc_get_hash_table(FALSE));
1096
1097             if (np == NULL)
1098                 (void) printf("No such capability as \"%s\"\n", capname);
1099             else {
1100                 switch (np->nte_type) {
1101                 case BOOLEAN:
1102                     cur_term->type.Booleans[np->nte_index] = FALSE;
1103                     (void)
1104                         printf("Boolean capability `%s' (%d) turned off.\n",
1105                                np->nte_name, np->nte_index);
1106                     break;
1107
1108                 case NUMBER:
1109                     cur_term->type.Numbers[np->nte_index] = ABSENT_NUMERIC;
1110                     (void) printf("Number capability `%s' (%d) set to -1.\n",
1111                                   np->nte_name, np->nte_index);
1112                     break;
1113
1114                 case STRING:
1115                     cur_term->type.Strings[np->nte_index] = ABSENT_STRING;
1116                     (void) printf("String capability `%s' (%d) deleted.\n",
1117                                   np->nte_name, np->nte_index);
1118                     break;
1119                 }
1120             }
1121         } else if (buf[0] == 'i') {
1122             dump_init((char *) NULL, F_TERMINFO, S_TERMINFO, 70, 0, FALSE);
1123             dump_entry(&cur_term->type, FALSE, TRUE, 0, 0);
1124             putchar('\n');
1125         } else if (buf[0] == 'o') {
1126             if (_nc_optimize_enable & OPTIMIZE_MVCUR) {
1127                 _nc_optimize_enable &= ~OPTIMIZE_MVCUR;
1128                 (void) puts("Optimization is now off.");
1129             } else {
1130                 _nc_optimize_enable |= OPTIMIZE_MVCUR;
1131                 (void) puts("Optimization is now on.");
1132             }
1133         }
1134         /*
1135          * You can use the `t' test to profile and tune the movement
1136          * optimizer.  Use iteration values in three digits or more.
1137          * At above 5000 iterations the profile timing averages are stable
1138          * to within a millisecond or three.
1139          *
1140          * The `overhead' field of the report will help you pick a
1141          * COMPUTE_OVERHEAD figure appropriate for your processor and
1142          * expected line speed.  The `total estimated time' is
1143          * computation time plus a character-transmission time
1144          * estimate computed from the number of transmits and the baud
1145          * rate.
1146          *
1147          * Use this together with the `o' command to get a read on the
1148          * optimizer's effectiveness.  Compare the total estimated times
1149          * for `t' runs of the same length in both optimized and un-optimized
1150          * modes.  As long as the optimized times are less, the optimizer
1151          * is winning.
1152          */
1153         else if (sscanf(buf, "t %d", &n) == 1) {
1154             float cumtime = 0.0, perchar;
1155             int speeds[] =
1156             {2400, 9600, 14400, 19200, 28800, 38400, 0};
1157
1158             srand((unsigned) (getpid() + time((time_t *) 0)));
1159             profiling = TRUE;
1160             xmits = 0;
1161             for (i = 0; i < n; i++) {
1162                 /*
1163                  * This does a move test between two random locations,
1164                  * Random moves probably short-change the optimizer,
1165                  * which will work better on the short moves probably
1166                  * typical of doupdate()'s usage pattern.  Still,
1167                  * until we have better data...
1168                  */
1169 #ifdef FIND_COREDUMP
1170                 int from_y = roll(lines);
1171                 int to_y = roll(lines);
1172                 int from_x = roll(columns);
1173                 int to_x = roll(columns);
1174
1175                 printf("(%d,%d) -> (%d,%d)\n", from_y, from_x, to_y, to_x);
1176                 mvcur(from_y, from_x, to_y, to_x);
1177 #else
1178                 mvcur(roll(lines), roll(columns), roll(lines), roll(columns));
1179 #endif /* FIND_COREDUMP */
1180                 if (diff)
1181                     cumtime += diff;
1182             }
1183             profiling = FALSE;
1184
1185             /*
1186              * Average milliseconds per character optimization time.
1187              * This is the key figure to watch when tuning the optimizer.
1188              */
1189             perchar = cumtime / n;
1190
1191             (void) printf("%d moves (%ld chars) in %d msec, %f msec each:\n",
1192                           n, xmits, (int) cumtime, perchar);
1193
1194             for (i = 0; speeds[i]; i++) {
1195                 /*
1196                  * Total estimated time for the moves, computation and
1197                  * transmission both. Transmission time is an estimate
1198                  * assuming 9 bits/char, 8 bits + 1 stop bit.
1199                  */
1200                 float totalest = cumtime + xmits * 9 * 1e6 / speeds[i];
1201
1202                 /*
1203                  * Per-character optimization overhead in character transmits
1204                  * at the current speed.  Round this to the nearest integer
1205                  * to figure COMPUTE_OVERHEAD for the speed.
1206                  */
1207                 float overhead = speeds[i] * perchar / 1e6;
1208
1209                 (void)
1210                     printf("%6d bps: %3.2f char-xmits overhead; total estimated time %15.2f\n",
1211                            speeds[i], overhead, totalest);
1212             }
1213         } else if (buf[0] == 'c') {
1214             (void) printf("char padding: %d\n", SP->_char_padding);
1215             (void) printf("cr cost: %d\n", SP->_cr_cost);
1216             (void) printf("cup cost: %d\n", SP->_cup_cost);
1217             (void) printf("home cost: %d\n", SP->_home_cost);
1218             (void) printf("ll cost: %d\n", SP->_ll_cost);
1219 #if USE_HARD_TABS
1220             (void) printf("ht cost: %d\n", SP->_ht_cost);
1221             (void) printf("cbt cost: %d\n", SP->_cbt_cost);
1222 #endif /* USE_HARD_TABS */
1223             (void) printf("cub1 cost: %d\n", SP->_cub1_cost);
1224             (void) printf("cuf1 cost: %d\n", SP->_cuf1_cost);
1225             (void) printf("cud1 cost: %d\n", SP->_cud1_cost);
1226             (void) printf("cuu1 cost: %d\n", SP->_cuu1_cost);
1227             (void) printf("cub cost: %d\n", SP->_cub_cost);
1228             (void) printf("cuf cost: %d\n", SP->_cuf_cost);
1229             (void) printf("cud cost: %d\n", SP->_cud_cost);
1230             (void) printf("cuu cost: %d\n", SP->_cuu_cost);
1231             (void) printf("hpa cost: %d\n", SP->_hpa_cost);
1232             (void) printf("vpa cost: %d\n", SP->_vpa_cost);
1233         } else if (buf[0] == 'x' || buf[0] == 'q')
1234             break;
1235         else
1236             (void) puts("Invalid command.");
1237     }
1238
1239     (void) fputs("rmcup:", stdout);
1240     _nc_mvcur_wrap();
1241     putchar('\n');
1242
1243     return (0);
1244 }
1245
1246 #endif /* MAIN */
1247
1248 /* lib_mvcur.c ends here */