]> code.delx.au - pulseaudio/commitdiff
add new calls pa_replace() and pa_unescape()
authorLennart Poettering <lennart@poettering.net>
Wed, 4 Feb 2009 16:19:15 +0000 (17:19 +0100)
committerLennart Poettering <lennart@poettering.net>
Wed, 4 Feb 2009 16:19:15 +0000 (17:19 +0100)
src/pulsecore/core-util.c
src/pulsecore/core-util.h

index e65b17968fc05f39de2f1434dc53ea857f42f2e7..b7ebdeb74d862d45c873dd02e67212d1ed7cf13e 100644 (file)
@@ -97,6 +97,7 @@
 #include <pulsecore/log.h>
 #include <pulsecore/macro.h>
 #include <pulsecore/thread.h>
+#include <pulsecore/strbuf.h>
 
 #include "core-util.h"
 
@@ -2553,3 +2554,49 @@ unsigned pa_ncpus(void) {
 
     return ncpus <= 0 ? 1 : (unsigned) ncpus;
 }
+
+char *pa_replace(const char*s, const char*a, const char *b) {
+    pa_strbuf *sb;
+    size_t an;
+
+    pa_assert(s);
+    pa_assert(a);
+    pa_assert(b);
+
+    an = strlen(a);
+    sb = pa_strbuf_new();
+
+    for (;;) {
+        const char *p;
+
+        if (!(p = strstr(s, a)))
+            break;
+
+        pa_strbuf_putsn(sb, s, p-s);
+        pa_strbuf_puts(sb, b);
+        s = p + an;
+    }
+
+    pa_strbuf_puts(sb, s);
+
+    return pa_strbuf_tostring_free(sb);
+}
+
+char *pa_unescape(char *p) {
+    char *s, *d;
+    pa_bool_t escaped = FALSE;
+
+    for (s = p, d = p; *s; s++) {
+        if (!escaped && *s == '\\') {
+            escaped = TRUE;
+            continue;
+        }
+
+        *(d++) = *s;
+        escaped = FALSE;
+    }
+
+    *d = 0;
+
+    return p;
+}
index 18901f471961567cc43981301840901ccdfafa26..442815f1c305b2843b04404d502a4d4f8027d155 100644 (file)
@@ -215,4 +215,8 @@ void pa_reduce(unsigned *num, unsigned *den);
 
 unsigned pa_ncpus(void);
 
+char *pa_replace(const char*s, const char*a, const char *b);
+
+char *pa_unescape(char *p);
+
 #endif