blob: 71e584d779ce53aa73c7d531c0d5d995c6da0e70 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002 * Copyright 2020 Thomas E. Dickey *
3 * Copyright 1998-2013,2016 Free Software Foundation, Inc. *
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05304 * *
5 * Permission is hereby granted, free of charge, to any person obtaining a *
6 * copy of this software and associated documentation files (the *
7 * "Software"), to deal in the Software without restriction, including *
8 * without limitation the rights to use, copy, modify, merge, publish, *
9 * distribute, distribute with modifications, sublicense, and/or sell *
10 * copies of the Software, and to permit persons to whom the Software is *
11 * furnished to do so, subject to the following conditions: *
12 * *
13 * The above copyright notice and this permission notice shall be included *
14 * in all copies or substantial portions of the Software. *
15 * *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
17 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
19 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
22 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
23 * *
24 * Except as contained in this notice, the name(s) of the above copyright *
25 * holders shall not be used in advertising or otherwise to promote the *
26 * sale, use or other dealings in this Software without prior written *
27 * authorization. *
28 ****************************************************************************/
29
30/****************************************************************************
31 * Author: Thomas E. Dickey 1999-on *
32 ****************************************************************************/
33
34#include <curses.priv.h>
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053035#include <tic.h>
36
micky3879b9f5e72025-07-08 18:04:53 -040037MODULE_ID("$Id: name_match.c,v 1.25 2020/02/02 23:34:34 tom Exp $")
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053038
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053039#define FirstName _nc_globals.first_name
40
Steve Kondikae271bc2015-11-15 02:50:53 +010041#if NCURSES_USE_TERMCAP && NCURSES_XNAMES
42static const char *
43skip_index(const char *name)
44{
45 if ((_nc_syntax == SYN_TERMCAP) && _nc_user_definable) {
46 const char *bar = strchr(name, '|');
47 if (bar != 0 && (bar - name) == 2)
48 name = bar + 1;
49 }
50 return name;
51}
52#endif
53
54/*
55 * Get the primary name from the given name list. For terminfo, this is the
56 * first name. For termcap, this may be the second name, if the first one
57 * happens to be two characters.
58 */
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053059NCURSES_EXPORT(char *)
60_nc_first_name(const char *const sp)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053061{
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053062#if NO_LEAKS
63 if (sp == 0) {
Steve Kondikae271bc2015-11-15 02:50:53 +010064 if (FirstName != 0) {
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053065 FreeAndNull(FirstName);
Steve Kondikae271bc2015-11-15 02:50:53 +010066 }
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053067 } else
68#endif
69 {
70 if (FirstName == 0)
71 FirstName = typeMalloc(char, MAX_NAME_SIZE + 1);
72
73 if (FirstName != 0) {
micky3879b9f5e72025-07-08 18:04:53 -040074 unsigned n;
Steve Kondikae271bc2015-11-15 02:50:53 +010075 const char *src = sp;
76#if NCURSES_USE_TERMCAP && NCURSES_XNAMES
77 src = skip_index(sp);
78#endif
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053079 for (n = 0; n < MAX_NAME_SIZE; n++) {
Steve Kondikae271bc2015-11-15 02:50:53 +010080 if ((FirstName[n] = src[n]) == '\0'
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053081 || (FirstName[n] == '|'))
82 break;
83 }
84 FirstName[n] = '\0';
85 }
86 }
87 return (FirstName);
88}
89
90/*
Steve Kondikae271bc2015-11-15 02:50:53 +010091 * Is the given name matched in namelist?
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053092 */
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053093NCURSES_EXPORT(int)
94_nc_name_match(const char *const namelst, const char *const name, const char *const delim)
95{
micky3879b9f5e72025-07-08 18:04:53 -040096 const char *s;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053097
98 if ((s = namelst) != 0) {
99 while (*s != '\0') {
micky3879b9f5e72025-07-08 18:04:53 -0400100 const char *d, *t;
101 int code, found;
102
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530103 for (d = name; *d != '\0'; d++) {
104 if (*s != *d)
105 break;
106 s++;
107 }
108 found = FALSE;
109 for (code = TRUE; *s != '\0'; code = FALSE, s++) {
110 for (t = delim; *t != '\0'; t++) {
111 if (*s == *t) {
112 found = TRUE;
113 break;
114 }
115 }
116 if (found)
117 break;
118 }
119 if (code && *d == '\0')
120 return code;
121 if (*s++ == 0)
122 break;
123 }
124 }
125 return FALSE;
126}