perf util: Add a function for replacing characters in a string
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>
This commit is contained in:
committed by
Arnaldo Carvalho de Melo
parent
f561fc78c5
commit
8a55c1e2c9
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user