1 /****************************************************************************
2 * Copyright (c) 1998-2009,2010 Free Software Foundation, Inc. *
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: *
12 * The above copyright notice and this permission notice shall be included *
13 * in all copies or substantial portions of the Software. *
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. *
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 *
27 ****************************************************************************/
29 /****************************************************************************
30 * Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995 *
31 * and: Eric S. Raymond <esr@snark.thyrsus.com> *
32 ****************************************************************************/
34 /******************************************************************************
37 hashmap.c -- fill in scramble vector based on text hashes
40 void _nc_hash_map(void)
43 This code attempts to recognize pairs of old and new lines in the physical
44 and virtual screens. When a line pair is recognized, the old line index is
45 placed in the oldindex member of the virtual screen line, to be used by the
46 vertical-motion optimizer portion of the update logic (see hardscroll.c).
48 Line pairs are recognized by applying a modified Heckel's algorithm,
49 sped up by hashing. If a line hash is unique in both screens, those
50 lines must be a pair. Then if the lines just before or after the pair
51 are the same or similar, they are a pair too.
53 We don't worry about false pairs produced by hash collisions, on the
54 assumption that such cases are rare and will only make the latter stages
55 of update less efficient, not introduce errors.
59 Use the following production:
62 $(CC) -g -DHASHDEBUG hashmap.c hardscroll.c ../objects/lib_trace.o -o hashmap
65 Eric S. Raymond <esr@snark.thyrsus.com>, May 1996
66 Bug fixes and improvements by Alexander V. Lukyanov <lav@yars.free.net>, 1997
68 *****************************************************************************/
70 #include <curses.priv.h>
73 #define CUR SP_TERMTYPE
76 MODULE_ID("$Id: hashmap.c,v 1.62 2010/04/24 23:46:07 tom Exp $")
80 # define _tracef printf
82 # define TR(n, a) if (_nc_tracing & (n)) { _tracef a ; putchar('\n'); }
84 # define screen_lines MAXLINES
86 int oldnums
[MAXLINES
], reallines
[MAXLINES
];
87 static NCURSES_CH_T oldtext
[MAXLINES
][TEXTWIDTH
];
88 static NCURSES_CH_T newtext
[MAXLINES
][TEXTWIDTH
];
89 # define OLDNUM(sp,n) oldnums[n]
90 # define OLDTEXT(sp,n) oldtext[n]
91 # define NEWTEXT(sp,m) newtext[m]
92 # define PENDING(sp,n) 1
94 #else /* !HASHDEBUG */
96 # define OLDNUM(sp,n) (sp)->_oldnum_list[n]
97 # define OLDTEXT(sp,n) CurScreen(sp)->_line[n].text
98 # define NEWTEXT(sp,m) NewScreen(sp)->_line[m].text
99 # define TEXTWIDTH(sp) (CurScreen(sp)->_maxx + 1)
100 # define PENDING(sp,n) (NewScreen(sp)->_line[n].firstchar != _NOCHANGE)
102 #endif /* !HASHDEBUG */
104 #define oldhash(sp) ((sp)->oldhash)
105 #define newhash(sp) ((sp)->newhash)
106 #define hashtab(sp) ((sp)->hashtab)
107 #define lines_alloc(sp) ((sp)->hashtab_len)
109 #if defined(USE_WIDEC_SUPPORT)
110 #define HASH_VAL(ch) (ch.chars[0])
112 #define HASH_VAL(ch) (ch)
115 static const NCURSES_CH_T blankchar
= NewChar(BLANK_TEXT
);
117 static NCURSES_INLINE
unsigned long
118 hash(SCREEN
*sp
, NCURSES_CH_T
* text
)
122 unsigned long result
= 0;
123 for (i
= TEXTWIDTH(sp
); i
> 0; i
--) {
125 result
+= (result
<< 5) + (unsigned long) HASH_VAL(ch
);
130 /* approximate update cost */
132 update_cost(SCREEN
*sp
, NCURSES_CH_T
* from
, NCURSES_CH_T
* to
)
137 for (i
= TEXTWIDTH(sp
); i
> 0; i
--, from
++, to
++)
138 if (!(CharEq(*from
, *to
)))
145 update_cost_from_blank(SCREEN
*sp
, NCURSES_CH_T
* to
)
149 NCURSES_CH_T blank
= blankchar
;
151 if (back_color_erase
)
152 SetPair(blank
, GetPair(stdscr
->_nc_bkgd
));
154 for (i
= TEXTWIDTH(sp
); i
> 0; i
--, to
++)
155 if (!(CharEq(blank
, *to
)))
162 * Returns true when moving line 'from' to line 'to' seems to be cost
163 * effective. 'blank' indicates whether the line 'to' would become blank.
165 static NCURSES_INLINE
bool
166 cost_effective(SCREEN
*sp
, const int from
, const int to
, const bool blank
)
173 new_from
= OLDNUM(sp
, from
);
174 if (new_from
== _NEWINDEX
)
178 * On the left side of >= is the cost before moving;
179 * on the right side -- cost after moving.
181 return (((blank
? update_cost_from_blank(sp
, NEWTEXT(sp
, to
))
182 : update_cost(sp
, OLDTEXT(sp
, to
), NEWTEXT(sp
, to
)))
183 + update_cost(sp
, OLDTEXT(sp
, new_from
), NEWTEXT(sp
, from
)))
184 >= ((new_from
== from
? update_cost_from_blank(sp
, NEWTEXT(sp
, from
))
185 : update_cost(sp
, OLDTEXT(sp
, new_from
), NEWTEXT(sp
, from
)))
186 + update_cost(sp
, OLDTEXT(sp
, from
), NEWTEXT(sp
, to
))))
191 grow_hunks(SCREEN
*sp
)
193 int start
, end
, shift
;
194 int back_limit
, forward_limit
; /* limits for cells to fill */
195 int back_ref_limit
, forward_ref_limit
; /* limits for refrences */
200 * This is tricky part. We have unique pairs to use as anchors.
201 * Use these to deduce the presence of spans of identical lines.
207 while (i
< screen_lines(sp
) && OLDNUM(sp
, i
) == _NEWINDEX
)
209 for (; i
< screen_lines(sp
); i
= next_hunk
) {
211 shift
= OLDNUM(sp
, i
) - i
;
213 /* get forward limit */
215 while (i
< screen_lines(sp
)
216 && OLDNUM(sp
, i
) != _NEWINDEX
217 && OLDNUM(sp
, i
) - i
== shift
)
220 while (i
< screen_lines(sp
) && OLDNUM(sp
, i
) == _NEWINDEX
)
224 if (i
>= screen_lines(sp
) || OLDNUM(sp
, i
) >= i
)
225 forward_ref_limit
= i
;
227 forward_ref_limit
= OLDNUM(sp
, i
);
232 back_limit
= back_ref_limit
+ (-shift
);
233 while (i
>= back_limit
) {
234 if (newhash(sp
)[i
] == oldhash(sp
)[i
+ shift
]
235 || cost_effective(sp
, i
+ shift
, i
, shift
< 0)) {
236 OLDNUM(sp
, i
) = i
+ shift
;
237 TR(TRACE_UPDATE
| TRACE_MOVE
,
238 ("connected new line %d to old line %d (backward continuation)",
241 TR(TRACE_UPDATE
| TRACE_MOVE
,
242 ("not connecting new line %d to old line %d (backward continuation)",
252 forward_limit
= forward_ref_limit
- shift
;
253 while (i
< forward_limit
) {
254 if (newhash(sp
)[i
] == oldhash(sp
)[i
+ shift
]
255 || cost_effective(sp
, i
+ shift
, i
, shift
> 0)) {
256 OLDNUM(sp
, i
) = i
+ shift
;
257 TR(TRACE_UPDATE
| TRACE_MOVE
,
258 ("connected new line %d to old line %d (forward continuation)",
261 TR(TRACE_UPDATE
| TRACE_MOVE
,
262 ("not connecting new line %d to old line %d (forward continuation)",
269 back_ref_limit
= back_limit
= i
;
271 back_ref_limit
+= shift
;
276 NCURSES_SP_NAME(_nc_hash_map
) (NCURSES_SP_DCL0
)
280 int start
, shift
, size
;
282 if (screen_lines(SP_PARM
) > lines_alloc(SP_PARM
)) {
283 if (hashtab(SP_PARM
))
284 free(hashtab(SP_PARM
));
285 hashtab(SP_PARM
) = typeMalloc(HASHMAP
,
286 ((size_t) screen_lines(SP_PARM
) + 1) * 2);
287 if (!hashtab(SP_PARM
)) {
288 if (oldhash(SP_PARM
)) {
289 FreeAndNull(oldhash(SP_PARM
));
291 lines_alloc(SP_PARM
) = 0;
294 lines_alloc(SP_PARM
) = screen_lines(SP_PARM
);
297 if (oldhash(SP_PARM
) && newhash(SP_PARM
)) {
298 /* re-hash only changed lines */
299 for (i
= 0; i
< screen_lines(SP_PARM
); i
++) {
300 if (PENDING(SP_PARM
, i
))
301 newhash(SP_PARM
)[i
] = hash(SP_PARM
, NEWTEXT(SP_PARM
, i
));
305 if (oldhash(SP_PARM
) == 0)
306 oldhash(SP_PARM
) = typeCalloc(unsigned long,
307 (size_t) screen_lines(SP_PARM
));
308 if (newhash(SP_PARM
) == 0)
309 newhash(SP_PARM
) = typeCalloc(unsigned long,
310 (size_t) screen_lines(SP_PARM
));
311 if (!oldhash(SP_PARM
) || !newhash(SP_PARM
))
312 return; /* malloc failure */
313 for (i
= 0; i
< screen_lines(SP_PARM
); i
++) {
314 newhash(SP_PARM
)[i
] = hash(SP_PARM
, NEWTEXT(SP_PARM
, i
));
315 oldhash(SP_PARM
)[i
] = hash(SP_PARM
, OLDTEXT(SP_PARM
, i
));
320 for (i
= 0; i
< screen_lines(SP_PARM
); i
++) {
321 if (newhash(SP_PARM
)[i
] != hash(SP_PARM
, NEWTEXT(SP_PARM
, i
)))
322 fprintf(stderr
, "error in newhash[%d]\n", i
);
323 if (oldhash(SP_PARM
)[i
] != hash(SP_PARM
, OLDTEXT(SP_PARM
, i
)))
324 fprintf(stderr
, "error in oldhash[%d]\n", i
);
329 * Set up and count line-hash values.
331 memset(hashtab(SP_PARM
), '\0',
332 sizeof(*(hashtab(SP_PARM
)))
333 * ((size_t) screen_lines(SP_PARM
) + 1) * 2);
334 for (i
= 0; i
< screen_lines(SP_PARM
); i
++) {
335 unsigned long hashval
= oldhash(SP_PARM
)[i
];
337 for (hsp
= hashtab(SP_PARM
); hsp
->hashval
; hsp
++)
338 if (hsp
->hashval
== hashval
)
340 hsp
->hashval
= hashval
; /* in case this is a new entry */
344 for (i
= 0; i
< screen_lines(SP_PARM
); i
++) {
345 unsigned long hashval
= newhash(SP_PARM
)[i
];
347 for (hsp
= hashtab(SP_PARM
); hsp
->hashval
; hsp
++)
348 if (hsp
->hashval
== hashval
)
350 hsp
->hashval
= hashval
; /* in case this is a new entry */
354 OLDNUM(SP_PARM
, i
) = _NEWINDEX
; /* initialize old indices array */
358 * Mark line pairs corresponding to unique hash pairs.
360 * We don't mark lines with offset 0, because it can make fail
361 * extending hunks by cost_effective. Otherwise, it does not
362 * have any side effects.
364 for (hsp
= hashtab(SP_PARM
); hsp
->hashval
; hsp
++)
365 if (hsp
->oldcount
== 1 && hsp
->newcount
== 1
366 && hsp
->oldindex
!= hsp
->newindex
) {
367 TR(TRACE_UPDATE
| TRACE_MOVE
,
368 ("new line %d is hash-identical to old line %d (unique)",
369 hsp
->newindex
, hsp
->oldindex
));
370 OLDNUM(SP_PARM
, hsp
->newindex
) = hsp
->oldindex
;
376 * Eliminate bad or impossible shifts -- this includes removing
377 * those hunks which could not grow because of conflicts, as well
378 * those which are to be moved too far, they are likely to destroy
381 for (i
= 0; i
< screen_lines(SP_PARM
);) {
382 while (i
< screen_lines(SP_PARM
) && OLDNUM(SP_PARM
, i
) == _NEWINDEX
)
384 if (i
>= screen_lines(SP_PARM
))
387 shift
= OLDNUM(SP_PARM
, i
) - i
;
389 while (i
< screen_lines(SP_PARM
)
390 && OLDNUM(SP_PARM
, i
) != _NEWINDEX
391 && OLDNUM(SP_PARM
, i
) - i
== shift
)
394 if (size
< 3 || size
+ min(size
/ 8, 2) < abs(shift
)) {
396 OLDNUM(SP_PARM
, start
) = _NEWINDEX
;
402 /* After clearing invalid hunks, try grow the rest. */
410 NCURSES_SP_NAME(_nc_hash_map
) (CURRENT_SCREEN
);
415 NCURSES_SP_NAME(_nc_make_oldhash
) (NCURSES_SP_DCLx
int i
)
417 if (oldhash(SP_PARM
))
418 oldhash(SP_PARM
)[i
] = hash(SP_PARM
, OLDTEXT(SP_PARM
, i
));
423 _nc_make_oldhash(int i
)
425 NCURSES_SP_NAME(_nc_make_oldhash
) (CURRENT_SCREEN
, i
);
430 NCURSES_SP_NAME(_nc_scroll_oldhash
) (NCURSES_SP_DCLx
int n
, int top
, int bot
)
435 if (!oldhash(SP_PARM
))
438 size
= sizeof(*(oldhash(SP_PARM
))) * (size_t) (bot
- top
+ 1 - abs(n
));
440 memmove(oldhash(SP_PARM
) + top
, oldhash(SP_PARM
) + top
+ n
, size
);
441 for (i
= bot
; i
> bot
- n
; i
--)
442 oldhash(SP_PARM
)[i
] = hash(SP_PARM
, OLDTEXT(SP_PARM
, i
));
444 memmove(oldhash(SP_PARM
) + top
- n
, oldhash(SP_PARM
) + top
, size
);
445 for (i
= top
; i
< top
- n
; i
++)
446 oldhash(SP_PARM
)[i
] = hash(SP_PARM
, OLDTEXT(SP_PARM
, i
));
452 _nc_scroll_oldhash(int n
, int top
, int bot
)
454 NCURSES_SP_NAME(_nc_scroll_oldhash
) (CURRENT_SCREEN
, n
, top
, bot
);
462 static const char *table
[] =
464 "hashmap test-driver",
467 "l get initial line number vector",
468 "n use following letters as text of new lines",
469 "o use following letters as text of old lines",
470 "d dump state of test arrays",
471 "h apply hash mapper and see scroll optimization",
475 for (n
= 0; n
< sizeof(table
) / sizeof(table
[0]); n
++)
476 fprintf(stderr
, "%s\n", table
[n
]);
480 main(int argc GCC_UNUSED
, char *argv
[]GCC_UNUSED
)
482 char line
[BUFSIZ
], *st
;
485 if (setupterm(NULL
, fileno(stdout
), (int *) 0) == ERR
)
487 (void) _nc_alloc_screen();
489 for (n
= 0; n
< screen_lines
; n
++) {
491 oldnums
[n
] = _NEWINDEX
;
492 CharOf(oldtext
[n
][0]) = CharOf(newtext
[n
][0]) = '.';
495 if (isatty(fileno(stdin
)))
499 _nc_tracing
= TRACE_MOVE
;
502 /* grab a test command */
503 if (fgets(line
, sizeof(line
), stdin
) == (char *) NULL
)
507 case '#': /* comment */
508 (void) fputs(line
, stderr
);
511 case 'l': /* get initial line number vector */
512 for (n
= 0; n
< screen_lines
; n
++) {
514 oldnums
[n
] = _NEWINDEX
;
517 st
= strtok(line
, " ");
519 oldnums
[n
++] = atoi(st
);
521 ((st
= strtok((char *) NULL
, " ")) != 0);
524 case 'n': /* use following letters as text of new lines */
525 for (n
= 0; n
< screen_lines
; n
++)
526 CharOf(newtext
[n
][0]) = '.';
527 for (n
= 0; n
< screen_lines
; n
++)
528 if (line
[n
+ 1] == '\n')
531 CharOf(newtext
[n
][0]) = line
[n
+ 1];
534 case 'o': /* use following letters as text of old lines */
535 for (n
= 0; n
< screen_lines
; n
++)
536 CharOf(oldtext
[n
][0]) = '.';
537 for (n
= 0; n
< screen_lines
; n
++)
538 if (line
[n
+ 1] == '\n')
541 CharOf(oldtext
[n
][0]) = line
[n
+ 1];
544 case 'd': /* dump state of test arrays */
548 (void) fputs("Old lines: [", stdout
);
549 for (n
= 0; n
< screen_lines
; n
++)
550 putchar(CharOf(oldtext
[n
][0]));
553 (void) fputs("New lines: [", stdout
);
554 for (n
= 0; n
< screen_lines
; n
++)
555 putchar(CharOf(newtext
[n
][0]));
560 case 'h': /* apply hash mapper and see scroll optimization */
562 (void) fputs("Result:\n", stderr
);
566 _nc_scroll_optimize();
567 (void) fputs("Done.\n", stderr
);
576 _nc_free_and_exit(EXIT_SUCCESS
);
582 #endif /* HASHDEBUG */
584 /* hashmap.c ends here */