summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Slebodnik <lslebodn@redhat.com>2014-07-25 10:22:59 +0200
committerJakub Hrozek <jhrozek@redhat.com>2014-07-28 10:20:48 +0200
commit50d24652b5321f4cc5709bc0877dde5da4e67f08 (patch)
tree31193ac66e4e184d646d5241789951004c1f901d
parent31cd021079212a78ebeb6ec2f10d66acc160f89b (diff)
downloadsssd-50d24652b5321f4cc5709bc0877dde5da4e67f08.tar.gz
sssd-50d24652b5321f4cc5709bc0877dde5da4e67f08.tar.xz
sssd-50d24652b5321f4cc5709bc0877dde5da4e67f08.zip
UTIL: Add functions for replacing whitespaces.
Reviewed-by: Pavel Reichl <preichl@redhat.com> Reviewed-by: Michal Židek <mzidek@redhat.com> (cherry picked from commit 022c6b90bb37851c0e8704c0e5388ebc113c6470) Conflicts: Makefile.am src/util/util.h
-rw-r--r--Makefile.am12
-rw-r--r--src/tests/cmocka/test_string_utils.c150
-rw-r--r--src/tests/cmocka/test_utils.c2
-rw-r--r--src/tests/cmocka/test_utils.h4
-rw-r--r--src/util/string_utils.c150
-rw-r--r--src/util/util.h8
6 files changed, 323 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index ae19e3f42..9d972f901 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -615,7 +615,12 @@ libsss_util_la_SOURCES = \
src/util/util_errors.c \
src/util/sss_ini.c \
src/util/io.c \
- src/util/util_sss_idmap.c
+ src/util/util_sss_idmap.c \
+ src/util/string_utils.c \
+ $(NULL)
+libsss_util_la_CFLAGS = \
+ $(AM_CFLAGS) \
+ $(SYSTEMD_LOGIN_CFLAGS)
libsss_util_la_LIBADD = \
$(SSSD_LIBS) \
$(UNICODE_LIBS)
@@ -1555,8 +1560,9 @@ test_ipa_idmap_LDADD = \
test_utils_SOURCES = \
src/tests/cmocka/test_utils.c \
- src/tests/cmocka/test_sss_ssh.c
-
+ src/tests/cmocka/test_sss_ssh.c \
+ src/tests/cmocka/test_string_utils.c \
+ $(NULL)
test_utils_CFLAGS = \
$(AM_CFLAGS)
test_utils_LDADD = \
diff --git a/src/tests/cmocka/test_string_utils.c b/src/tests/cmocka/test_string_utils.c
new file mode 100644
index 000000000..d10c3be47
--- /dev/null
+++ b/src/tests/cmocka/test_string_utils.c
@@ -0,0 +1,150 @@
+/*
+ Authors:
+ Lukas Slebodnik <slebodnikl@redhat.com>
+
+ Copyright (C) 2014 Red Hat
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "util/util.h"
+#include "tests/cmocka/common_mock.h"
+
+void test_replace_whitespaces(void **state)
+{
+ TALLOC_CTX *mem_ctx;
+ const char *input_str = "Lorem ipsum dolor sit amet";
+ const char *res;
+ size_t i;
+
+ struct {
+ const char *input;
+ const char *output;
+ const char *replace_string;
+ } data_set[] = {
+ { "", "", "-" },
+ { " ", "-", "-" },
+ { "\t", "-", "-" },
+ { "\n", "-", "-" },
+ { " \t\n ", "----", "-" },
+ { "abcd", "abcd", "-" },
+ { "a b c d", "a-b-c-d", "-" },
+ { " a b c d ", "-a-b-c-d-", "-" },
+ { " ", "^", "^" },
+ { "\t", "^", "^" },
+ { "\n", "^", "^" },
+ { " \t\n ", "^^^^", "^" },
+ { "abcd", "abcd", "^" },
+ { "a b c d", "a^b^c^d", "^" },
+ { " a b c d ", "^a^b^c^d^", "^" },
+ { " ", "^", "^" },
+ { "\t", ";-)", ";-)" },
+ { "\n", ";-)", ";-)" },
+ { " \t\n ", ";-);-);-);-)", ";-)" },
+ { "abcd", "abcd", ";-)" },
+ { "a b c d", "a;-)b;-)c;-)d", ";-)" },
+ { " a b c d ", ";-)a;-)b;-)c;-)d;-)", ";-)" },
+ { " ", " ", " " },
+ { " ", " ", " " },
+ { "abcd", "abcd", " " },
+ { "a b c d", "a b c d", " " },
+ { " a b c d ", " a b c d ", " " },
+ { " ", " \t", " \t" },
+ { " ", " \t \t \t \t", " \t" },
+ { "abcd", "abcd", " \t" },
+ { "a b c d", "a \tb \tc \td", " \t" },
+ { " a b c d ", " \ta \tb \tc \td \t", " \t" },
+ { NULL, NULL, NULL },
+ };
+
+ mem_ctx = talloc_new(NULL);
+ assert_non_null(mem_ctx);
+ check_leaks_push(mem_ctx);
+
+ res = sss_replace_whitespaces(mem_ctx, input_str, NULL);
+ assert_true(res == input_str);
+
+ res = sss_replace_whitespaces(mem_ctx, input_str, "");
+ assert_true(res == input_str);
+
+ for (i=0; data_set[i].input != NULL; ++i) {
+ res = sss_replace_whitespaces(mem_ctx, data_set[i].input,
+ data_set[i].replace_string);
+ assert_non_null(res);
+ assert_string_equal(res, data_set[i].output);
+ talloc_zfree(res);
+ }
+
+ assert_true(check_leaks_pop(mem_ctx) == true);
+ talloc_free(mem_ctx);
+}
+
+void test_reverse_replace_whitespaces(void **state)
+{
+ TALLOC_CTX *mem_ctx;
+ char *input_str = discard_const_p(char, "Lorem ipsum dolor sit amet");
+ char *res;
+ size_t i;
+
+ struct {
+ const char *input;
+ const char *output;
+ const char *replace_string;
+ } data_set[] = {
+ { "", "", "-" },
+ { "-", " ", "-" },
+ { "----", " ", "-" },
+ { "abcd", "abcd", "-" },
+ { "a-b-c-d", "a b c d", "-" },
+ { "-a-b-c-d-", " a b c d ", "-" },
+ { "^", " ", "^" },
+ { "^^^^", " ", "^" },
+ { "abcd", "abcd", "^" },
+ { "a^b^c^d", "a b c d", "^" },
+ { "^a^b^c^d^", " a b c d ", "^" },
+ { ";-)", " ", ";-)" },
+ { ";-);-);-);-)", " ", ";-)" },
+ { "abcd", "abcd", ";-)" },
+ { "a;-)b;-)c;-)d", "a b c d", ";-)" },
+ { ";-)a;-)b;-)c;-)d;-)", " a b c d ", ";-)" },
+ { " ", " ", " " },
+ { " ", " ", " " },
+ { "abcd", "abcd", " " },
+ { "a b c d", "a b c d", " " },
+ { " a b c d ", " a b c d ", " " },
+ { NULL, NULL, NULL },
+ };
+
+ mem_ctx = talloc_new(NULL);
+ assert_non_null(mem_ctx);
+ check_leaks_push(mem_ctx);
+
+ res = sss_reverse_replace_whitespaces(mem_ctx, input_str, NULL);
+ assert_true(res == input_str);
+
+ res = sss_reverse_replace_whitespaces(mem_ctx, input_str, "");
+ assert_true(res == input_str);
+
+ for (i=0; data_set[i].input != NULL; ++i) {
+ input_str = discard_const_p(char, data_set[i].input);
+ res = sss_reverse_replace_whitespaces(mem_ctx, input_str,
+ data_set[i].replace_string);
+ assert_non_null(res);
+ assert_string_equal(res, data_set[i].output);
+ talloc_zfree(res);
+ }
+
+ assert_true(check_leaks_pop(mem_ctx) == true);
+ talloc_free(mem_ctx);
+}
diff --git a/src/tests/cmocka/test_utils.c b/src/tests/cmocka/test_utils.c
index aacdca52e..695283118 100644
--- a/src/tests/cmocka/test_utils.c
+++ b/src/tests/cmocka/test_utils.c
@@ -425,6 +425,8 @@ int main(int argc, const char *argv[])
unit_test_setup_teardown(test_expand_homedir_template,
setup_homedir_ctx, teardown_homedir_ctx),
unit_test(test_textual_public_key),
+ unit_test(test_replace_whitespaces),
+ unit_test(test_reverse_replace_whitespaces),
};
/* Set debug level to invalid value so we can deside if -d 0 was used. */
diff --git a/src/tests/cmocka/test_utils.h b/src/tests/cmocka/test_utils.h
index 8f6269305..f85ac2f2b 100644
--- a/src/tests/cmocka/test_utils.h
+++ b/src/tests/cmocka/test_utils.h
@@ -26,4 +26,8 @@
/* from src/tests/cmocka/test_sss_ssh.c */
void test_textual_public_key(void **state);
+/* from src/tests/cmocka/test_string_utils.c */
+void test_replace_whitespaces(void **state);
+void test_reverse_replace_whitespaces(void **state);
+
#endif /* __TESTS__CMOCKA__TEST_UTILS_H__ */
diff --git a/src/util/string_utils.c b/src/util/string_utils.c
new file mode 100644
index 000000000..8d878923f
--- /dev/null
+++ b/src/util/string_utils.c
@@ -0,0 +1,150 @@
+/*
+ SSSD
+
+ Authors:
+ Lukas Slebodnik <slebodnikl@redhat.com>
+
+ Copyright (C) 2014 Red Hat
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "util/util.h"
+
+const char * sss_replace_whitespaces(TALLOC_CTX *mem_ctx,
+ const char *orig_name,
+ const char *replace_string)
+{
+ char *new_name;
+ const char *ptr;
+ size_t replace_string_len;
+ TALLOC_CTX *tmp_ctx;
+
+ if (replace_string == NULL || replace_string[0] == '\0') {
+ return orig_name;
+ }
+
+ replace_string_len = strlen(replace_string);
+ /* faster implementations without multiple allocations */
+ if (replace_string_len == 1) {
+ char *p;
+ new_name = talloc_strdup(mem_ctx, orig_name);
+ if (new_name == NULL) {
+ return NULL;
+ }
+
+ for (p = new_name; *p != '\0'; ++p) {
+ if (isspace(*p)) {
+ *p = replace_string[0];
+ }
+ }
+
+ return new_name;
+ }
+
+ tmp_ctx = talloc_new(NULL);
+ if (tmp_ctx == NULL) {
+ return NULL;
+ }
+
+ new_name = talloc_strdup(tmp_ctx, "");
+ if (new_name == NULL) {
+ goto done;
+ }
+
+ ptr = orig_name;
+ while (*ptr != '\0') {
+ if (isspace(*ptr)) {
+ new_name = talloc_asprintf_append(new_name, "%s", replace_string);
+ } else {
+ new_name = talloc_asprintf_append(new_name, "%c", *ptr);
+ }
+ if (new_name == NULL) {
+ goto done;;
+ }
+
+ ++ptr;
+ }
+
+ new_name = talloc_steal(mem_ctx, new_name);
+done:
+ talloc_free(tmp_ctx);
+ return new_name;
+}
+
+char * sss_reverse_replace_whitespaces(TALLOC_CTX *mem_ctx,
+ char *orig_name,
+ const char *replace_string)
+{
+ TALLOC_CTX *tmp_ctx;
+ char *substr;
+ char *new_name;
+ const char *ptr = orig_name;
+ size_t replace_string_len;
+
+ if (replace_string == NULL || replace_string[0] == '\0') {
+ return orig_name;
+ }
+
+ replace_string_len = strlen(replace_string);
+ /* faster implementations without multiple allocations */
+ if (replace_string_len == 1) {
+ char *p;
+ new_name = talloc_strdup(mem_ctx, orig_name);
+ if (new_name == NULL) {
+ return NULL;
+ }
+
+ for (p = new_name; *p != '\0'; ++p) {
+ if (*p == replace_string[0] ) {
+ *p = ' ';
+ }
+ }
+
+ return new_name;
+ }
+
+ tmp_ctx = talloc_new(NULL);
+ if (tmp_ctx == NULL) {
+ return NULL;
+ }
+
+ new_name = talloc_strdup(tmp_ctx, "");
+ if (new_name == NULL) {
+ goto done;
+ }
+
+ do {
+ substr = strstr(ptr, replace_string);
+ if (substr != NULL) {
+ new_name = talloc_asprintf_append(new_name, "%.*s ",
+ (int)(substr - ptr), ptr);
+ if (new_name == NULL) {
+ goto done;
+ }
+ ptr += substr - ptr;
+ ptr += replace_string_len;
+ } else {
+ new_name = talloc_asprintf_append(new_name, "%s", ptr);
+ if (new_name == NULL) {
+ goto done;
+ }
+ }
+ } while (substr != NULL);
+
+ new_name = talloc_steal(mem_ctx, new_name);
+done:
+ talloc_free(tmp_ctx);
+ return new_name;
+}
diff --git a/src/util/util.h b/src/util/util.h
index df754608e..7b53972de 100644
--- a/src/util/util.h
+++ b/src/util/util.h
@@ -535,4 +535,12 @@ errno_t sss_br_lock_file(int fd, size_t start, size_t len,
#define BUILD_WITH_PAC_RESPONDER false
#endif
+/* from string_utils.c */
+const char * sss_replace_whitespaces(TALLOC_CTX *mem_ctx,
+ const char *orig_name,
+ const char *replace_string);
+char * sss_reverse_replace_whitespaces(TALLOC_CTX *mem_ctx,
+ char *orig_name,
+ const char *replace_string);
+
#endif /* __SSSD_UTIL_H__ */