blob: a06e57d3ddeed396321c53924a65974fb49412ff [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Glenn L McGrathb9638752002-12-02 00:01:36 +00002/*
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02003 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Glenn L McGrathb9638752002-12-02 00:01:36 +00004 */
Bernhard Reutner-Fischer421d9e52006-04-03 16:39:31 +00005#include "libbb.h"
Glenn L McGrathb9638752002-12-02 00:01:36 +00006
Bartosz Golaszewski0a4d0e82015-08-25 13:10:00 +02007/*
8 * Return NULL if string is not prefixed with key. Return pointer to the
9 * first character in string after the prefix key. If key is an empty string,
10 * return pointer to the beginning of string.
11 */
Denys Vlasenko8dff01d2015-03-12 17:48:34 +010012char* FAST_FUNC is_prefixed_with(const char *string, const char *key)
13{
14#if 0 /* Two passes over key - probably slower */
15 int len = strlen(key);
16 if (strncmp(string, key, len) == 0)
17 return string + len;
18 return NULL;
19#else /* Open-coded */
20 while (*key != '\0') {
21 if (*key != *string)
22 return NULL;
23 key++;
24 string++;
25 }
26 return (char*)string;
27#endif
28}
29
Bartosz Golaszewski7448b512015-08-25 16:36:43 +020030/*
31 * Return NULL if string is not suffixed with key. Return pointer to the
32 * beginning of prefix key in string. If key is an empty string return pointer
33 * to the end of string.
34 */
35char* FAST_FUNC is_suffixed_with(const char *string, const char *key)
36{
37 size_t key_len = strlen(key);
38 ssize_t len_diff = strlen(string) - key_len;
39
40 if (len_diff >= 0) {
Denys Vlasenko68acc0f2015-08-25 21:47:33 +020041 string += len_diff;
42 if (strcmp(string, key) == 0) {
43 return (char*)string;
Bartosz Golaszewski7448b512015-08-25 16:36:43 +020044 }
45 }
46
47 return NULL;
48}
49
Denis Vlasenko5af906e2006-11-05 18:05:09 +000050/* returns the array index of the string */
51/* (index of first match is returned, or -1) */
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000052int FAST_FUNC index_in_str_array(const char *const string_array[], const char *key)
Glenn L McGrathb9638752002-12-02 00:01:36 +000053{
"Vladimir N. Oleynik"cc343442005-11-26 10:45:26 +000054 int i;
Glenn L McGrathb9638752002-12-02 00:01:36 +000055
56 for (i = 0; string_array[i] != 0; i++) {
57 if (strcmp(string_array[i], key) == 0) {
"Vladimir N. Oleynik"cc343442005-11-26 10:45:26 +000058 return i;
Glenn L McGrathb9638752002-12-02 00:01:36 +000059 }
60 }
Denis Vlasenko5af906e2006-11-05 18:05:09 +000061 return -1;
Manuel Novoa III cad53642003-03-19 09:13:01 +000062}
63
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000064int FAST_FUNC index_in_strings(const char *strings, const char *key)
Denis Vlasenko990d0f62007-07-24 15:54:42 +000065{
66 int idx = 0;
67
Denis Vlasenkod12fcc22008-05-31 07:34:14 +000068 while (*strings) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +000069 if (strcmp(strings, key) == 0) {
70 return idx;
71 }
72 strings += strlen(strings) + 1; /* skip NUL */
73 idx++;
74 }
75 return -1;
76}
77
Denis Vlasenko5af906e2006-11-05 18:05:09 +000078/* returns the array index of the string, even if it matches only a beginning */
79/* (index of first match is returned, or -1) */
Denis Vlasenko990d0f62007-07-24 15:54:42 +000080#ifdef UNUSED
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000081int FAST_FUNC index_in_substr_array(const char *const string_array[], const char *key)
Denis Vlasenko5af906e2006-11-05 18:05:09 +000082{
83 int i;
Denys Vlasenko8dff01d2015-03-12 17:48:34 +010084 if (key[0]) {
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +000085 for (i = 0; string_array[i] != 0; i++) {
Denys Vlasenko8dff01d2015-03-12 17:48:34 +010086 if (is_prefixed_with(string_array[i], key)) {
Bernhard Reutner-Fischereceecea2007-03-30 14:43:27 +000087 return i;
88 }
Denis Vlasenko5af906e2006-11-05 18:05:09 +000089 }
90 }
91 return -1;
92}
Denis Vlasenko990d0f62007-07-24 15:54:42 +000093#endif
94
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000095int FAST_FUNC index_in_substrings(const char *strings, const char *key)
Denis Vlasenko990d0f62007-07-24 15:54:42 +000096{
Denys Vlasenko8a659f62010-04-03 00:52:16 +020097 int matched_idx = -1;
98 const int len = strlen(key);
Denis Vlasenko990d0f62007-07-24 15:54:42 +000099
100 if (len) {
101 int idx = 0;
Denis Vlasenkod12fcc22008-05-31 07:34:14 +0000102 while (*strings) {
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000103 if (strncmp(strings, key, len) == 0) {
Denys Vlasenko8a659f62010-04-03 00:52:16 +0200104 if (strings[len] == '\0')
105 return idx; /* exact match */
106 if (matched_idx >= 0)
107 return -1; /* ambiguous match */
108 matched_idx = idx;
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000109 }
110 strings += strlen(strings) + 1; /* skip NUL */
111 idx++;
112 }
113 }
Denys Vlasenko8a659f62010-04-03 00:52:16 +0200114 return matched_idx;
Denis Vlasenko990d0f62007-07-24 15:54:42 +0000115}
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000116
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +0000117const char* FAST_FUNC nth_string(const char *strings, int n)
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000118{
Denis Vlasenko6b404432008-01-07 16:13:14 +0000119 while (n) {
Martin Lewisc9fc1532020-06-11 15:45:58 -0500120 if (*strings++ == '\0') {
121 if (*strings == '\0') /* reached end of strings */
122 break;
123 n--;
124 }
Denis Vlasenko6b404432008-01-07 16:13:14 +0000125 }
126 return strings;
Denis Vlasenkobfc3d822007-11-04 04:10:17 +0000127}
Denys Vlasenko8a659f62010-04-03 00:52:16 +0200128
129#ifdef UNUSED_SO_FAR /* only brctl.c needs it yet */
130/* Returns 0 for no, 1 for yes or a negative value on error. */
131smallint FAST_FUNC yesno(const char *str)
132{
133 static const char no_yes[] ALIGN1 =
134 "0\0" "off\0" "no\0"
135 "1\0" "on\0" "yes\0";
136 int ret = index_in_substrings(no_yes, str);
137 return ret / 3;
138}
139#endif
Bartosz Golaszewskib4329232015-08-25 13:09:59 +0200140
141#if ENABLE_UNIT_TEST
142
143BBUNIT_DEFINE_TEST(is_prefixed_with)
144{
145 BBUNIT_ASSERT_STREQ(" bar", is_prefixed_with("foo bar", "foo"));
146 BBUNIT_ASSERT_STREQ("bar", is_prefixed_with("foo bar", "foo "));
147 BBUNIT_ASSERT_STREQ("", is_prefixed_with("foo", "foo"));
148 BBUNIT_ASSERT_STREQ("foo", is_prefixed_with("foo", ""));
149 BBUNIT_ASSERT_STREQ("", is_prefixed_with("", ""));
150
151 BBUNIT_ASSERT_NULL(is_prefixed_with("foo", "bar foo"));
152 BBUNIT_ASSERT_NULL(is_prefixed_with("foo foo", "bar"));
153 BBUNIT_ASSERT_NULL(is_prefixed_with("", "foo"));
154
155 BBUNIT_ENDTEST;
156}
157
Bartosz Golaszewski7448b512015-08-25 16:36:43 +0200158BBUNIT_DEFINE_TEST(is_suffixed_with)
159{
160 BBUNIT_ASSERT_STREQ("bar", is_suffixed_with("foo bar", "bar"));
161 BBUNIT_ASSERT_STREQ("foo", is_suffixed_with("foo", "foo"));
162 BBUNIT_ASSERT_STREQ("", is_suffixed_with("foo", ""));
163 BBUNIT_ASSERT_STREQ("", is_suffixed_with("", ""));
Tito Ragusaf0853442015-09-15 23:38:01 +0200164 BBUNIT_ASSERT_STREQ("foo", is_suffixed_with("barfoofoo", "foo"));
Bartosz Golaszewski7448b512015-08-25 16:36:43 +0200165
166 BBUNIT_ASSERT_NULL(is_suffixed_with("foo", "bar foo"));
167 BBUNIT_ASSERT_NULL(is_suffixed_with("foo foo", "bar"));
168 BBUNIT_ASSERT_NULL(is_suffixed_with("", "foo"));
169
170 BBUNIT_ENDTEST;
171}
172
Bartosz Golaszewskib4329232015-08-25 13:09:59 +0200173#endif /* ENABLE_UNIT_TEST */