blob: c72116fa4aff124dd7ee42f6f43e27e8e2e77286 [file] [log] [blame]
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05301/****************************************************************************
micky3879b9f5e72025-07-08 18:04:53 -04002 * Copyright 2020,2021 Thomas E. Dickey *
3 * Copyright 1998-2012,2015 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: Juergen Pfeifer, 1995,1997 *
32 ****************************************************************************/
33
34/***************************************************************************
35* Module m_request_name *
36* Routines to handle external names of menu requests *
37***************************************************************************/
38
39#include "menu.priv.h"
40
micky3879b9f5e72025-07-08 18:04:53 -040041MODULE_ID("$Id: m_req_name.c,v 1.27 2021/06/17 21:11:08 tom Exp $")
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053042
Steve Kondikae271bc2015-11-15 02:50:53 +010043#define DATA(s) { s }
44
45static const char request_names[MAX_MENU_COMMAND - MIN_MENU_COMMAND + 1][14] =
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053046{
Steve Kondikae271bc2015-11-15 02:50:53 +010047 DATA("LEFT_ITEM"),
48 DATA("RIGHT_ITEM"),
49 DATA("UP_ITEM"),
50 DATA("DOWN_ITEM"),
51 DATA("SCR_ULINE"),
52 DATA("SCR_DLINE"),
53 DATA("SCR_DPAGE"),
54 DATA("SCR_UPAGE"),
55 DATA("FIRST_ITEM"),
56 DATA("LAST_ITEM"),
57 DATA("NEXT_ITEM"),
58 DATA("PREV_ITEM"),
59 DATA("TOGGLE_ITEM"),
60 DATA("CLEAR_PATTERN"),
61 DATA("BACK_PATTERN"),
62 DATA("NEXT_MATCH"),
63 DATA("PREV_MATCH")
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053064};
65
66#define A_SIZE (sizeof(request_names)/sizeof(request_names[0]))
67
68/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -040069| Facility : libnmenu
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053070| Function : const char * menu_request_name (int request);
micky3879b9f5e72025-07-08 18:04:53 -040071|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053072| Description : Get the external name of a menu request.
73|
74| Return Values : Pointer to name - on success
75| NULL - on invalid request code
76+--------------------------------------------------------------------------*/
micky3879b9f5e72025-07-08 18:04:53 -040077MENU_EXPORT(const char *)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053078menu_request_name(int request)
79{
80 T((T_CALLED("menu_request_name(%d)"), request));
81 if ((request < MIN_MENU_COMMAND) || (request > MAX_MENU_COMMAND))
82 {
83 SET_ERROR(E_BAD_ARGUMENT);
84 returnCPtr((const char *)0);
85 }
86 else
87 returnCPtr(request_names[request - MIN_MENU_COMMAND]);
88}
89
90/*---------------------------------------------------------------------------
micky3879b9f5e72025-07-08 18:04:53 -040091| Facility : libnmenu
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053092| Function : int menu_request_by_name (const char *str);
micky3879b9f5e72025-07-08 18:04:53 -040093|
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053094| Description : Search for a request with this name.
95|
96| Return Values : Request Id - on success
97| E_NO_MATCH - request not found
98+--------------------------------------------------------------------------*/
micky3879b9f5e72025-07-08 18:04:53 -040099MENU_EXPORT(int)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530100menu_request_by_name(const char *str)
101{
102 /* because the table is so small, it doesn't really hurt
103 to run sequentially through it.
104 */
Steve Kondikae271bc2015-11-15 02:50:53 +0100105 size_t i = 0;
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530106
107 T((T_CALLED("menu_request_by_name(%s)"), _nc_visbuf(str)));
108
Steve Kondikae271bc2015-11-15 02:50:53 +0100109 if (str != 0 && (i = strlen(str)) != 0)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530110 {
micky3879b9f5e72025-07-08 18:04:53 -0400111 char buf[16];
112
Steve Kondikae271bc2015-11-15 02:50:53 +0100113 if (i > sizeof(buf) - 2)
114 i = sizeof(buf) - 2;
115 memcpy(buf, str, i);
116 buf[i] = '\0';
117
118 for (i = 0; buf[i] != '\0'; ++i)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530119 {
Steve Kondikae271bc2015-11-15 02:50:53 +0100120 buf[i] = (char)toupper(UChar(buf[i]));
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530121 }
122
123 for (i = 0; i < A_SIZE; i++)
124 {
Steve Kondikae271bc2015-11-15 02:50:53 +0100125 if (strcmp(request_names[i], buf) == 0)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530126 returnCode(MIN_MENU_COMMAND + (int)i);
127 }
128 }
129 RETURN(E_NO_MATCH);
130}
131
132/* m_req_name.c ends here */