]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tty/hardscroll.c
ncurses 5.6 - patch 20061230
[ncurses.git] / ncurses / tty / hardscroll.c
1 /****************************************************************************
2  * Copyright (c) 1998-2000,2006 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  ****************************************************************************/
33
34 /******************************************************************************
35
36 NAME
37    hardscroll.c -- hardware-scrolling optimization for ncurses
38
39 SYNOPSIS
40    void _nc_scroll_optimize(void)
41
42 DESCRIPTION
43                         OVERVIEW
44
45 This algorithm for computes optimum hardware scrolling to transform an
46 old screen (curscr) into a new screen (newscr) via vertical line moves.
47
48 Because the screen has a `grain' (there are insert/delete/scroll line
49 operations but no insert/delete/scroll column operations), it is efficient
50 break the update algorithm into two pieces: a first stage that does only line
51 moves, optimizing the end product of user-invoked insertions, deletions, and
52 scrolls; and a second phase (corresponding to the present doupdate code in
53 ncurses) that does only line transformations.
54
55 The common case we want hardware scrolling for is to handle line insertions
56 and deletions in screen-oriented text-editors.  This two-stage approach will
57 accomplish that at a low computation and code-size cost.
58
59                         LINE-MOVE COMPUTATION
60
61 Now, to a discussion of the line-move computation.
62
63 For expository purposes, consider the screen lines to be represented by
64 integers 0..23 (with the understanding that the value of 23 may vary).
65 Let a new line introduced by insertion, scrolling, or at the bottom of
66 the screen following a line delete be given the index -1.
67
68 Assume that the real screen starts with lines 0..23.  Now, we have
69 the following possible line-oriented operations on the screen:
70
71 Insertion: inserts a line at a given screen row, forcing all lines below
72 to scroll forward.  The last screen line is lost.  For example, an insertion
73 at line 5 would produce: 0..4 -1 5..23.
74
75 Deletion: deletes a line at a given screen row, forcing all lines below
76 to scroll forward.  The last screen line is made new.  For example, a deletion
77 at line 7 would produce: 0..6 8..23 -1.
78
79 Scroll up: move a range of lines up 1.  The bottom line of the range
80 becomes new.  For example, scrolling up the region from 9 to 14 will
81 produce 0..8 10..14 -1 15..23.
82
83 Scroll down: move a range of lines down 1.  The top line of the range
84 becomes new.  For example, scrolling down the region from 12 to 16 will produce
85 0..11 -1 12..15 17..23.
86
87 Now, an obvious property of all these operations is that they preserve the
88 order of old lines, though not their position in the sequence.
89
90 The key trick of this algorithm is that the original line indices described
91 above are actually maintained as _line[].oldindex fields in the window
92 structure, and stick to each line through scroll and insert/delete operations.
93
94 Thus, it is possible at update time to look at the oldnum fields and compute
95 an optimal set of il/dl/scroll operations that will take the real screen
96 lines to the virtual screen lines.  Once these vertical moves have been done,
97 we can hand off to the second stage of the update algorithm, which does line
98 transformations.
99
100 Note that the move computation does not need to have the full generality
101 of a diff algorithm (which it superficially resembles) because lines cannot
102 be moved out of order.
103
104                         THE ALGORITHM
105
106 The scrolling is done in two passes. The first pass is from top to bottom
107 scroling hunks UP. The second one is from bottom to top scrolling hunks DOWN.
108 Obviously enough, no lines to be scrolled will be destroyed. (lav)
109
110 HOW TO TEST THIS:
111
112 Use the following production:
113
114 hardscroll: hardscroll.c
115         $(CC) -g -DSCROLLDEBUG hardscroll.c -o hardscroll
116
117 Then just type scramble vectors and watch.  The following test loads are
118 a representative sample of cases:
119
120 -----------------------------  CUT HERE ------------------------------------
121 # No lines moved
122  0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
123 #
124 # A scroll up
125  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 -1
126 #
127 # A scroll down
128 -1  0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22
129 #
130 # An insertion (after line 12)
131  0  1  2  3  4  5  6  7  8  9 10 11 12 -1 13 14 15 16 17 18 19 20 21 22
132 #
133 # A simple deletion (line 10)
134  0  1  2  3  4  5  6  7  8  9  11 12 13 14 15 16 17 18 19 20 21 22 23 -1
135 #
136 # A more complex case
137 -1 -1 -1 -1 -1  3  4  5  6  7  -1 -1  8  9 10 11 12 13 14 15 16 17 -1 -1
138 -----------------------------  CUT HERE ------------------------------------
139
140 AUTHOR
141     Eric S. Raymond <esr@snark.thyrsus.com>, November 1994
142     New algorithm by Alexander V. Lukyanov <lav@yars.free.net>, Aug 1997
143
144 *****************************************************************************/
145
146 #include <curses.priv.h>
147
148 MODULE_ID("$Id: hardscroll.c,v 1.38 2006/12/30 22:19:34 tom Exp $")
149
150 #if defined(SCROLLDEBUG) || defined(HASHDEBUG)
151
152 # undef screen_lines
153 # define screen_lines MAXLINES
154 NCURSES_EXPORT_VAR(int)
155 oldnums[MAXLINES];
156 # define OLDNUM(n)      oldnums[n]
157 # define _tracef        printf
158 # undef TR
159 # define TR(n, a)       if (_nc_tracing & (n)) { _tracef a ; putchar('\n'); }
160
161 #else /* no debug */
162
163 /* OLDNUM(n) indicates which line will be shifted to the position n.
164    if OLDNUM(n) == _NEWINDEX, then the line n in new, not shifted from
165    somewhere. */
166 NCURSES_EXPORT_VAR(int *)
167 _nc_oldnums = 0;                /* obsolete: keep for ABI compat */
168
169 # if USE_HASHMAP
170 #  define oldnums       SP->_oldnum_list
171 #  define OLDNUM(n)     oldnums[n]
172 # else                          /* !USE_HASHMAP */
173 #  define OLDNUM(n)     newscr->_line[n].oldindex
174 # endif                         /* !USE_HASHMAP */
175
176 #define OLDNUM_SIZE     SP->_oldnum_size
177
178 #endif /* defined(SCROLLDEBUG) || defined(HASHDEBUG) */
179
180 NCURSES_EXPORT(void)
181 _nc_scroll_optimize(void)
182 /* scroll optimization to transform curscr to newscr */
183 {
184     int i;
185     int start, end, shift;
186
187     TR(TRACE_ICALLS, ("_nc_scroll_optimize() begins"));
188
189 #if !defined(SCROLLDEBUG) && !defined(HASHDEBUG)
190 #if USE_HASHMAP
191     /* get enough storage */
192     if (OLDNUM_SIZE < screen_lines) {
193         int *new_oldnums = typeRealloc(int, screen_lines, oldnums);
194         if (!new_oldnums)
195             return;
196         oldnums = new_oldnums;
197         OLDNUM_SIZE = screen_lines;
198     }
199     /* calculate the indices */
200     _nc_hash_map();
201 #endif
202 #endif /* !defined(SCROLLDEBUG) && !defined(HASHDEBUG) */
203
204 #ifdef TRACE
205     if (_nc_tracing & (TRACE_UPDATE | TRACE_MOVE))
206         _nc_linedump();
207 #endif /* TRACE */
208
209     /* pass 1 - from top to bottom scrolling up */
210     for (i = 0; i < screen_lines;) {
211         while (i < screen_lines && (OLDNUM(i) == _NEWINDEX || OLDNUM(i) <= i))
212             i++;
213         if (i >= screen_lines)
214             break;
215
216         shift = OLDNUM(i) - i;  /* shift > 0 */
217         start = i;
218
219         i++;
220         while (i < screen_lines && OLDNUM(i) != _NEWINDEX && OLDNUM(i) - i
221                == shift)
222             i++;
223         end = i - 1 + shift;
224
225         TR(TRACE_UPDATE | TRACE_MOVE, ("scroll [%d, %d] by %d", start, end, shift));
226 #if !defined(SCROLLDEBUG) && !defined(HASHDEBUG)
227         if (_nc_scrolln(shift, start, end, screen_lines - 1) == ERR) {
228             TR(TRACE_UPDATE | TRACE_MOVE, ("unable to scroll"));
229             continue;
230         }
231 #endif /* !defined(SCROLLDEBUG) && !defined(HASHDEBUG) */
232     }
233
234     /* pass 2 - from bottom to top scrolling down */
235     for (i = screen_lines - 1; i >= 0;) {
236         while (i >= 0 && (OLDNUM(i) == _NEWINDEX || OLDNUM(i) >= i))
237             i--;
238         if (i < 0)
239             break;
240
241         shift = OLDNUM(i) - i;  /* shift < 0 */
242         end = i;
243
244         i--;
245         while (i >= 0 && OLDNUM(i) != _NEWINDEX && OLDNUM(i) - i == shift)
246             i--;
247         start = i + 1 - (-shift);
248
249         TR(TRACE_UPDATE | TRACE_MOVE, ("scroll [%d, %d] by %d", start, end, shift));
250 #if !defined(SCROLLDEBUG) && !defined(HASHDEBUG)
251         if (_nc_scrolln(shift, start, end, screen_lines - 1) == ERR) {
252             TR(TRACE_UPDATE | TRACE_MOVE, ("unable to scroll"));
253             continue;
254         }
255 #endif /* !defined(SCROLLDEBUG) && !defined(HASHDEBUG) */
256     }
257 }
258
259 #if defined(TRACE) || defined(SCROLLDEBUG) || defined(HASHDEBUG)
260 NCURSES_EXPORT(void)
261 _nc_linedump(void)
262 /* dump the state of the real and virtual oldnum fields */
263 {
264     int n;
265     char *buf = 0;
266     size_t want = (screen_lines + 1) * 4;
267
268     buf = typeMalloc(char, want);
269
270     (void) strcpy(buf, "virt");
271     for (n = 0; n < screen_lines; n++)
272         (void) sprintf(buf + strlen(buf), " %02d", OLDNUM(n));
273     TR(TRACE_UPDATE | TRACE_MOVE, (buf));
274     free(buf);
275 }
276 #endif /* defined(TRACE) || defined(SCROLLDEBUG) */
277
278 #ifdef SCROLLDEBUG
279
280 int
281 main(int argc GCC_UNUSED, char *argv[]GCC_UNUSED)
282 {
283     char line[BUFSIZ], *st;
284
285 #ifdef TRACE
286     _nc_tracing = TRACE_MOVE;
287 #endif
288     for (;;) {
289         int n;
290
291         for (n = 0; n < screen_lines; n++)
292             oldnums[n] = _NEWINDEX;
293
294         /* grab the test vector */
295         if (fgets(line, sizeof(line), stdin) == (char *) NULL)
296             exit(EXIT_SUCCESS);
297
298         /* parse it */
299         n = 0;
300         if (line[0] == '#') {
301             (void) fputs(line, stderr);
302             continue;
303         }
304         st = strtok(line, " ");
305         do {
306             oldnums[n++] = atoi(st);
307         } while
308             ((st = strtok((char *) NULL, " ")) != 0);
309
310         /* display it */
311         (void) fputs("Initial input:\n", stderr);
312         _nc_linedump();
313
314         _nc_scroll_optimize();
315     }
316 }
317
318 #endif /* SCROLLDEBUG */
319
320 /* hardscroll.c ends here */