perf util: Add a function for replacing characters in a string
authorJames Clark <james.clark@arm.com>
Mon, 4 Sep 2023 09:50:45 +0000 (10:50 +0100)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 12 Sep 2023 20:32:00 +0000 (17:32 -0300)
It finds all occurrences of a single character and replaces them with
a multi character string. This will be used in a test in a following
commit.

Reviewed-by: Ian Rogers <irogers@google.com>
Signed-off-by: James Clark <james.clark@arm.com>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Chen Zhongjin <chenzhongjin@huawei.com>
Cc: Eduard Zingerman <eddyz87@gmail.com>
Cc: Haixin Yu <yuhaixin.yhx@linux.alibaba.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Jing Zhang <renyu.zj@linux.alibaba.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: John Garry <john.g.garry@oracle.com>
Cc: Kajol Jain <kjain@linux.ibm.com>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Leo Yan <leo.yan@linaro.org>
Cc: Liam Howlett <liam.howlett@oracle.com>
Cc: Madhavan Srinivasan <maddy@linux.ibm.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mike Leach <mike.leach@linaro.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ravi Bangoria <ravi.bangoria@amd.com>
Cc: Will Deacon <will@kernel.org>
Cc: Yang Jihong <yangjihong1@huawei.com>
Cc: linux-arm-kernel@lists.infradead.org
Link: https://lore.kernel.org/r/20230904095104.1162928-4-james.clark@arm.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/tests/Build
tools/perf/tests/builtin-test.c
tools/perf/tests/tests.h
tools/perf/tests/util.c [new file with mode: 0644]
tools/perf/util/string.c
tools/perf/util/string2.h

index 63d5e6d5f165bfa6704628c402477d0eb29d36c3..2b45ffa462a6c4b9b29629dde2fa8262620bbe61 100644 (file)
@@ -66,6 +66,7 @@ perf-y += dlfilter-test.o
 perf-y += sigtrap.o
 perf-y += event_groups.o
 perf-y += symbols.o
+perf-y += util.o
 
 ifeq ($(SRCARCH),$(filter $(SRCARCH),x86 arm arm64 powerpc))
 perf-$(CONFIG_DWARF_UNWIND) += dwarf-unwind.o
index 0ad18cf6dd2266241d74f00a4f7da24acddced8b..cb6f1dd00dc483a495fdb465067aa33ae6a6be1e 100644 (file)
@@ -123,6 +123,7 @@ static struct test_suite *generic_tests[] = {
        &suite__sigtrap,
        &suite__event_groups,
        &suite__symbols,
+       &suite__util,
        NULL,
 };
 
index f33cfc3c19a4868db80222b8d3117c4e2b6c5b51..b394f3ac2d667bacb2d9e16aca78715c65ab5ed3 100644 (file)
@@ -145,6 +145,7 @@ DECLARE_SUITE(dlfilter);
 DECLARE_SUITE(sigtrap);
 DECLARE_SUITE(event_groups);
 DECLARE_SUITE(symbols);
+DECLARE_SUITE(util);
 
 /*
  * PowerPC and S390 do not support creation of instruction breakpoints using the
diff --git a/tools/perf/tests/util.c b/tools/perf/tests/util.c
new file mode 100644 (file)
index 0000000..6366db5
--- /dev/null
@@ -0,0 +1,31 @@
+// SPDX-License-Identifier: GPL-2.0
+#include "tests.h"
+#include "util/debug.h"
+
+#include <linux/compiler.h>
+#include <stdlib.h>
+#include <string2.h>
+
+static int test_strreplace(char needle, const char *haystack,
+                          const char *replace, const char *expected)
+{
+       char *new = strreplace_chars(needle, haystack, replace);
+       int ret = strcmp(new, expected);
+
+       free(new);
+       return ret == 0;
+}
+
+static int test__util(struct test_suite *t __maybe_unused, int subtest __maybe_unused)
+{
+       TEST_ASSERT_VAL("empty string", test_strreplace(' ', "", "123", ""));
+       TEST_ASSERT_VAL("no match", test_strreplace('5', "123", "4", "123"));
+       TEST_ASSERT_VAL("replace 1", test_strreplace('3', "123", "4", "124"));
+       TEST_ASSERT_VAL("replace 2", test_strreplace('a', "abcabc", "ef", "efbcefbc"));
+       TEST_ASSERT_VAL("replace long", test_strreplace('a', "abcabc", "longlong",
+                                                       "longlongbclonglongbc"));
+
+       return 0;
+}
+
+DEFINE_SUITE("util", util);
index cf05b0b56c57bc417e6ee2bf6b44f411dfd95860..116a642ad99d1284277e4d1ec6b8cd99961f4eb2 100644 (file)
@@ -301,3 +301,51 @@ unsigned int hex(char c)
                return c - 'a' + 10;
        return c - 'A' + 10;
 }
+
+/*
+ * Replace all occurrences of character 'needle' in string 'haystack' with
+ * string 'replace'
+ *
+ * The new string could be longer so a new string is returned which must be
+ * freed.
+ */
+char *strreplace_chars(char needle, const char *haystack, const char *replace)
+{
+       int replace_len = strlen(replace);
+       char *new_s, *to;
+       const char *loc = strchr(haystack, needle);
+       const char *from = haystack;
+       int num = 0;
+
+       /* Count occurrences */
+       while (loc) {
+               loc = strchr(loc + 1, needle);
+               num++;
+       }
+
+       /* Allocate enough space for replacements and reset first location */
+       new_s = malloc(strlen(haystack) + (num * (replace_len - 1) + 1));
+       if (!new_s)
+               return NULL;
+       loc = strchr(haystack, needle);
+       to = new_s;
+
+       while (loc) {
+               /* Copy original string up to found char and update positions */
+               memcpy(to, from, 1 + loc - from);
+               to += loc - from;
+               from = loc + 1;
+
+               /* Copy replacement string and update positions */
+               memcpy(to, replace, replace_len);
+               to += replace_len;
+
+               /* needle next occurrence or end of string */
+               loc = strchr(from, needle);
+       }
+
+       /* Copy any remaining chars + null */
+       strcpy(to, from);
+
+       return new_s;
+}
index 56c30fef9682ff2254c884c268a8e8d9aee4c7af..52cb8ba057c7797139b78cb8b9838ab3df36e194 100644 (file)
@@ -39,5 +39,6 @@ char *strpbrk_esc(char *str, const char *stopset);
 char *strdup_esc(const char *str);
 
 unsigned int hex(char c);
+char *strreplace_chars(char needle, const char *haystack, const char *replace);
 
 #endif /* PERF_STRING_H */