]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/tinfo/name_match.c
ncurses 5.9 - patch 20120826
[ncurses.git] / ncurses / tinfo / name_match.c
1 /****************************************************************************
2  * Copyright (c) 1999-2008,2011 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: Thomas E. Dickey                    1999-on                     *
31  ****************************************************************************/
32
33 #include <curses.priv.h>
34 #include <tic.h>
35
36 MODULE_ID("$Id: name_match.c,v 1.21 2011/08/13 20:23:12 tom Exp $")
37
38 #define FirstName _nc_globals.first_name
39
40 #if USE_TERMCAP && NCURSES_XNAMES
41 static const char *
42 skip_index(const char *name)
43 {
44     if ((_nc_syntax == SYN_TERMCAP) && _nc_user_definable) {
45         const char *bar = strchr(name, '|');
46         if (bar != 0 && (bar - name) == 2)
47             name = bar + 1;
48     }
49     return name;
50 }
51 #endif
52
53 /*
54  * Get the primary name from the given name list.  For terminfo, this is the
55  * first name.  For termcap, this may be the second name, if the first one
56  * happens to be two characters.
57  */
58 NCURSES_EXPORT(char *)
59 _nc_first_name(const char *const sp)
60 {
61     unsigned n;
62
63 #if NO_LEAKS
64     if (sp == 0) {
65         if (FirstName != 0)
66             FreeAndNull(FirstName);
67     } else
68 #endif
69     {
70         if (FirstName == 0)
71             FirstName = typeMalloc(char, MAX_NAME_SIZE + 1);
72
73         if (FirstName != 0) {
74             const char *src = sp;
75 #if USE_TERMCAP && NCURSES_XNAMES
76             src = skip_index(sp);
77 #endif
78             for (n = 0; n < MAX_NAME_SIZE; n++) {
79                 if ((FirstName[n] = src[n]) == '\0'
80                     || (FirstName[n] == '|'))
81                     break;
82             }
83             FirstName[n] = '\0';
84         }
85     }
86     return (FirstName);
87 }
88
89 /*
90  * Is the given name matched in namelist?
91  */
92 NCURSES_EXPORT(int)
93 _nc_name_match(const char *const namelst, const char *const name, const char *const delim)
94 {
95     const char *s, *d, *t;
96     int code, found;
97
98     if ((s = namelst) != 0) {
99         while (*s != '\0') {
100             for (d = name; *d != '\0'; d++) {
101                 if (*s != *d)
102                     break;
103                 s++;
104             }
105             found = FALSE;
106             for (code = TRUE; *s != '\0'; code = FALSE, s++) {
107                 for (t = delim; *t != '\0'; t++) {
108                     if (*s == *t) {
109                         found = TRUE;
110                         break;
111                     }
112                 }
113                 if (found)
114                     break;
115             }
116             if (code && *d == '\0')
117                 return code;
118             if (*s++ == 0)
119                 break;
120         }
121     }
122     return FALSE;
123 }