From 7606810b356e9b3fbe1fbf7c7ca6da2e15e32a0e Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Tue, 3 Apr 2007 20:48:02 +0000 Subject: [PATCH 1/1] encode/decode in fromString/toString so colons and other special characters will be saved correctly. This will break existing service references with a % in their path, but that shouldn't hurt too much. --- lib/service/service.cpp | 54 ++++++++++++++++++++++++++++++++++++++--- 1 file changed, 51 insertions(+), 3 deletions(-) diff --git a/lib/service/service.cpp b/lib/service/service.cpp index f4094236..a044c66a 100644 --- a/lib/service/service.cpp +++ b/lib/service/service.cpp @@ -6,6 +6,51 @@ #include #include +static std::string encode(const std::string s) +{ + int len = s.size(); + std::string res; + int i; + for (i=0; i= len) + break; + char s[3] = {s[i - 1], s[i], 0}; + unsigned char r = strtoul(s, 0, 0x10); + if (r) + res += r; + } + } + return res; +} + + eServiceReference::eServiceReference(const std::string &string) { const char *c=string.c_str(); @@ -35,6 +80,9 @@ eServiceReference::eServiceReference(const std::string &string) else path=pathstr; } + + path = decode(path); + name = decode(name); } std::string eServiceReference::toString() const @@ -45,9 +93,9 @@ std::string eServiceReference::toString() const ret += getNum(flags); for (unsigned int i=0; i