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: Thomas E. Dickey <dickey@clark.net> 1997 *
31 ****************************************************************************/
36 ** Functions to manage the tree of partial-completions for keycodes.
40 #include <curses.priv.h>
42 MODULE_ID("$Id: tries.c,v 1.30 2010/08/28 21:08:23 tom Exp $")
45 * Expand a keycode into the string that it corresponds to, returning null if
46 * no match was found, otherwise allocating a string of the result.
48 NCURSES_EXPORT(char *)
49 _nc_expand_try(TRIES
* tree
, unsigned code
, int *count
, size_t len
)
56 if ((result
= _nc_expand_try(ptr
->child
, code
, count
, len
+ 1))
60 if (ptr
->value
== code
) {
63 result
= typeCalloc(char, len
+ 2);
71 if (ptr
!= 0 && (result
[len
] = (char) ptr
->ch
) == 0)
72 *((unsigned char *) (result
+ len
)) = 128;
74 if (len
== 0 && USE_TRACEF(TRACE_MAXIMUM
)) {
75 _tracef("expand_key %s %s",
76 _nc_tracechar(CURRENT_SCREEN
, (int) code
),
78 _nc_unlock_global(tracef
);
86 * Remove a code from the specified tree, freeing the unused nodes. Returns
87 * true if the code was found/removed.
90 _nc_remove_key(TRIES
** tree
, unsigned code
)
92 T((T_CALLED("_nc_remove_key(%p,%d)"), (void *) tree
, code
));
98 if (_nc_remove_key(&(*tree
)->child
, code
)) {
101 if ((*tree
)->value
== code
) {
102 if ((*tree
)->child
) {
103 /* don't cut the whole sub-tree */
106 TRIES
*to_free
= *tree
;
107 *tree
= (*tree
)->sibling
;
112 tree
= &(*tree
)->sibling
;
118 * Remove a string from the specified tree, freeing the unused nodes. Returns
119 * true if the string was found/removed.
122 _nc_remove_string(TRIES
** tree
, const char *string
)
124 T((T_CALLED("_nc_remove_string(%p,%s)"), (void *) tree
, _nc_visbuf(string
)));
126 if (string
== 0 || *string
== 0)
130 if (UChar((*tree
)->ch
) == UChar(*string
)) {
132 returnCode(_nc_remove_string(&(*tree
)->child
, string
+ 1));
133 if ((*tree
)->child
== 0) {
134 TRIES
*to_free
= *tree
;
135 *tree
= (*tree
)->sibling
;
142 tree
= &(*tree
)->sibling
;