"Robert P. J. Day" | 63fc1a9 | 2006-07-02 19:47:05 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Glenn L McGrath | b963875 | 2002-12-02 00:01:36 +0000 | [diff] [blame] | 2 | /* |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 3 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Glenn L McGrath | b963875 | 2002-12-02 00:01:36 +0000 | [diff] [blame] | 4 | */ |
Bernhard Reutner-Fischer | 421d9e5 | 2006-04-03 16:39:31 +0000 | [diff] [blame] | 5 | #include "libbb.h" |
Glenn L McGrath | b963875 | 2002-12-02 00:01:36 +0000 | [diff] [blame] | 6 | |
Bartosz Golaszewski | 0a4d0e8 | 2015-08-25 13:10:00 +0200 | [diff] [blame] | 7 | /* |
| 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 Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 12 | char* 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 Golaszewski | 7448b51 | 2015-08-25 16:36:43 +0200 | [diff] [blame] | 30 | /* |
| 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 | */ |
| 35 | char* 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 Vlasenko | 68acc0f | 2015-08-25 21:47:33 +0200 | [diff] [blame] | 41 | string += len_diff; |
| 42 | if (strcmp(string, key) == 0) { |
| 43 | return (char*)string; |
Bartosz Golaszewski | 7448b51 | 2015-08-25 16:36:43 +0200 | [diff] [blame] | 44 | } |
| 45 | } |
| 46 | |
| 47 | return NULL; |
| 48 | } |
| 49 | |
Denis Vlasenko | 5af906e | 2006-11-05 18:05:09 +0000 | [diff] [blame] | 50 | /* returns the array index of the string */ |
| 51 | /* (index of first match is returned, or -1) */ |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 52 | int FAST_FUNC index_in_str_array(const char *const string_array[], const char *key) |
Glenn L McGrath | b963875 | 2002-12-02 00:01:36 +0000 | [diff] [blame] | 53 | { |
"Vladimir N. Oleynik" | cc34344 | 2005-11-26 10:45:26 +0000 | [diff] [blame] | 54 | int i; |
Glenn L McGrath | b963875 | 2002-12-02 00:01:36 +0000 | [diff] [blame] | 55 | |
| 56 | for (i = 0; string_array[i] != 0; i++) { |
| 57 | if (strcmp(string_array[i], key) == 0) { |
"Vladimir N. Oleynik" | cc34344 | 2005-11-26 10:45:26 +0000 | [diff] [blame] | 58 | return i; |
Glenn L McGrath | b963875 | 2002-12-02 00:01:36 +0000 | [diff] [blame] | 59 | } |
| 60 | } |
Denis Vlasenko | 5af906e | 2006-11-05 18:05:09 +0000 | [diff] [blame] | 61 | return -1; |
Manuel Novoa III | cad5364 | 2003-03-19 09:13:01 +0000 | [diff] [blame] | 62 | } |
| 63 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 64 | int FAST_FUNC index_in_strings(const char *strings, const char *key) |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 65 | { |
Ron Yorston | bcf91d2 | 2021-01-29 13:23:27 +0000 | [diff] [blame] | 66 | int j, idx = 0; |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 67 | |
Denis Vlasenko | d12fcc2 | 2008-05-31 07:34:14 +0000 | [diff] [blame] | 68 | while (*strings) { |
Ron Yorston | bcf91d2 | 2021-01-29 13:23:27 +0000 | [diff] [blame] | 69 | /* Do we see "key\0" at current position in strings? */ |
| 70 | for (j = 0; *strings == key[j]; ++j) { |
| 71 | if (*strings++ == '\0') { |
| 72 | //bb_error_msg("found:'%s' i:%u", key, idx); |
| 73 | return idx; /* yes */ |
| 74 | } |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 75 | } |
Ron Yorston | bcf91d2 | 2021-01-29 13:23:27 +0000 | [diff] [blame] | 76 | /* No. Move to the start of the next string. */ |
| 77 | while (*strings++ != '\0') |
| 78 | continue; |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 79 | idx++; |
| 80 | } |
| 81 | return -1; |
| 82 | } |
| 83 | |
Denis Vlasenko | 5af906e | 2006-11-05 18:05:09 +0000 | [diff] [blame] | 84 | /* returns the array index of the string, even if it matches only a beginning */ |
| 85 | /* (index of first match is returned, or -1) */ |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 86 | #ifdef UNUSED |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 87 | int FAST_FUNC index_in_substr_array(const char *const string_array[], const char *key) |
Denis Vlasenko | 5af906e | 2006-11-05 18:05:09 +0000 | [diff] [blame] | 88 | { |
| 89 | int i; |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 90 | if (key[0]) { |
Bernhard Reutner-Fischer | eceecea | 2007-03-30 14:43:27 +0000 | [diff] [blame] | 91 | for (i = 0; string_array[i] != 0; i++) { |
Denys Vlasenko | 8dff01d | 2015-03-12 17:48:34 +0100 | [diff] [blame] | 92 | if (is_prefixed_with(string_array[i], key)) { |
Bernhard Reutner-Fischer | eceecea | 2007-03-30 14:43:27 +0000 | [diff] [blame] | 93 | return i; |
| 94 | } |
Denis Vlasenko | 5af906e | 2006-11-05 18:05:09 +0000 | [diff] [blame] | 95 | } |
| 96 | } |
| 97 | return -1; |
| 98 | } |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 99 | #endif |
| 100 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 101 | int FAST_FUNC index_in_substrings(const char *strings, const char *key) |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 102 | { |
Denys Vlasenko | 8a659f6 | 2010-04-03 00:52:16 +0200 | [diff] [blame] | 103 | int matched_idx = -1; |
| 104 | const int len = strlen(key); |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 105 | |
| 106 | if (len) { |
| 107 | int idx = 0; |
Denis Vlasenko | d12fcc2 | 2008-05-31 07:34:14 +0000 | [diff] [blame] | 108 | while (*strings) { |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 109 | if (strncmp(strings, key, len) == 0) { |
Denys Vlasenko | 8a659f6 | 2010-04-03 00:52:16 +0200 | [diff] [blame] | 110 | if (strings[len] == '\0') |
| 111 | return idx; /* exact match */ |
| 112 | if (matched_idx >= 0) |
| 113 | return -1; /* ambiguous match */ |
| 114 | matched_idx = idx; |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 115 | } |
| 116 | strings += strlen(strings) + 1; /* skip NUL */ |
| 117 | idx++; |
| 118 | } |
| 119 | } |
Denys Vlasenko | 8a659f6 | 2010-04-03 00:52:16 +0200 | [diff] [blame] | 120 | return matched_idx; |
Denis Vlasenko | 990d0f6 | 2007-07-24 15:54:42 +0000 | [diff] [blame] | 121 | } |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 122 | |
Denis Vlasenko | defc1ea | 2008-06-27 02:52:20 +0000 | [diff] [blame] | 123 | const char* FAST_FUNC nth_string(const char *strings, int n) |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 124 | { |
Denis Vlasenko | 6b40443 | 2008-01-07 16:13:14 +0000 | [diff] [blame] | 125 | while (n) { |
Martin Lewis | c9fc153 | 2020-06-11 15:45:58 -0500 | [diff] [blame] | 126 | if (*strings++ == '\0') { |
| 127 | if (*strings == '\0') /* reached end of strings */ |
| 128 | break; |
| 129 | n--; |
| 130 | } |
Denis Vlasenko | 6b40443 | 2008-01-07 16:13:14 +0000 | [diff] [blame] | 131 | } |
| 132 | return strings; |
Denis Vlasenko | bfc3d82 | 2007-11-04 04:10:17 +0000 | [diff] [blame] | 133 | } |
Denys Vlasenko | 8a659f6 | 2010-04-03 00:52:16 +0200 | [diff] [blame] | 134 | |
| 135 | #ifdef UNUSED_SO_FAR /* only brctl.c needs it yet */ |
| 136 | /* Returns 0 for no, 1 for yes or a negative value on error. */ |
| 137 | smallint FAST_FUNC yesno(const char *str) |
| 138 | { |
| 139 | static const char no_yes[] ALIGN1 = |
| 140 | "0\0" "off\0" "no\0" |
| 141 | "1\0" "on\0" "yes\0"; |
| 142 | int ret = index_in_substrings(no_yes, str); |
| 143 | return ret / 3; |
| 144 | } |
| 145 | #endif |
Bartosz Golaszewski | b432923 | 2015-08-25 13:09:59 +0200 | [diff] [blame] | 146 | |
| 147 | #if ENABLE_UNIT_TEST |
| 148 | |
| 149 | BBUNIT_DEFINE_TEST(is_prefixed_with) |
| 150 | { |
| 151 | BBUNIT_ASSERT_STREQ(" bar", is_prefixed_with("foo bar", "foo")); |
| 152 | BBUNIT_ASSERT_STREQ("bar", is_prefixed_with("foo bar", "foo ")); |
| 153 | BBUNIT_ASSERT_STREQ("", is_prefixed_with("foo", "foo")); |
| 154 | BBUNIT_ASSERT_STREQ("foo", is_prefixed_with("foo", "")); |
| 155 | BBUNIT_ASSERT_STREQ("", is_prefixed_with("", "")); |
| 156 | |
| 157 | BBUNIT_ASSERT_NULL(is_prefixed_with("foo", "bar foo")); |
| 158 | BBUNIT_ASSERT_NULL(is_prefixed_with("foo foo", "bar")); |
| 159 | BBUNIT_ASSERT_NULL(is_prefixed_with("", "foo")); |
| 160 | |
| 161 | BBUNIT_ENDTEST; |
| 162 | } |
| 163 | |
Bartosz Golaszewski | 7448b51 | 2015-08-25 16:36:43 +0200 | [diff] [blame] | 164 | BBUNIT_DEFINE_TEST(is_suffixed_with) |
| 165 | { |
| 166 | BBUNIT_ASSERT_STREQ("bar", is_suffixed_with("foo bar", "bar")); |
| 167 | BBUNIT_ASSERT_STREQ("foo", is_suffixed_with("foo", "foo")); |
| 168 | BBUNIT_ASSERT_STREQ("", is_suffixed_with("foo", "")); |
| 169 | BBUNIT_ASSERT_STREQ("", is_suffixed_with("", "")); |
Tito Ragusa | f085344 | 2015-09-15 23:38:01 +0200 | [diff] [blame] | 170 | BBUNIT_ASSERT_STREQ("foo", is_suffixed_with("barfoofoo", "foo")); |
Bartosz Golaszewski | 7448b51 | 2015-08-25 16:36:43 +0200 | [diff] [blame] | 171 | |
| 172 | BBUNIT_ASSERT_NULL(is_suffixed_with("foo", "bar foo")); |
| 173 | BBUNIT_ASSERT_NULL(is_suffixed_with("foo foo", "bar")); |
| 174 | BBUNIT_ASSERT_NULL(is_suffixed_with("", "foo")); |
| 175 | |
| 176 | BBUNIT_ENDTEST; |
| 177 | } |
| 178 | |
Bartosz Golaszewski | b432923 | 2015-08-25 13:09:59 +0200 | [diff] [blame] | 179 | #endif /* ENABLE_UNIT_TEST */ |