+2018-03-08 Simon Marchi <simon.marchi@polymtl.ca>
+
+ * common/xml-utils.c (xml_escape_text): Move code to...
+ (xml_escape_text_append): ... this new function.
+ * common/xml-utils.h (xml_escape_text_append): New declaration.
+ * unittests/xml-utils-selftests.c (test_xml_escape_text_append):
+ New function.
+ (_initialize_xml_utils): register test_xml_escape_text_append as
+ a selftest.
+
2018-03-07 Alan Hayward <alan.hayward@arm.com>
* defs.h: Remove MAX_REGISTER_SIZE.
#include "common-defs.h"
#include "xml-utils.h"
-/* Return a string with special characters from TEXT replaced by entity
- references. */
+/* See xml-utils.h. */
std::string
xml_escape_text (const char *text)
{
std::string result;
+ xml_escape_text_append (&result, text);
+
+ return result;
+}
+
+/* See xml-utils.h. */
+
+void
+xml_escape_text_append (std::string *result, const char *text)
+{
/* Expand the result. */
for (int i = 0; text[i] != '\0'; i++)
switch (text[i])
{
case '\'':
- result += "'";
+ *result += "'";
break;
case '\"':
- result += """;
+ *result += """;
break;
case '&':
- result += "&";
+ *result += "&";
break;
case '<':
- result += "<";
+ *result += "<";
break;
case '>':
- result += ">";
+ *result += ">";
break;
default:
- result += text[i];
+ *result += text[i];
break;
}
-
- return result;
}
#ifndef XML_UTILS_H
#define XML_UTILS_H
-/* Return a malloc allocated string with special characters from TEXT
- replaced by entity references. */
+/* Return a string with special characters from TEXT replaced by entity
+ references. */
extern std::string xml_escape_text (const char *text);
+/* Append TEXT to RESULT, with special characters replaced by entity
+ references. */
+
+extern void xml_escape_text_append (std::string *result, const char *text);
+
#endif
+2018-03-08 Simon Marchi <simon.marchi@polymtl.ca>
+
+ * linux-low.c (linux_qxfer_libraries_svr4): Use
+ xml_escape_text_append.
+
2018-03-08 Simon Marchi <simon.marchi@polymtl.ca>
* linux-low.c (linux_qxfer_libraries_svr4): Use std::string.
header_done = 1;
}
- std::string name = xml_escape_text ((char *) libname);
- string_appendf (document,
- "<library name=\"%s\" lm=\"0x%lx\" "
+ string_appendf (document, "<library name=\"");
+ xml_escape_text_append (&document, (char *) libname);
+ string_appendf (document, "\" lm=\"0x%lx\" "
"l_addr=\"0x%lx\" l_ld=\"0x%lx\"/>",
- name.c_str (), (unsigned long) lm_addr,
- (unsigned long) l_addr, (unsigned long) l_ld);
+ (unsigned long) lm_addr, (unsigned long) l_addr,
+ (unsigned long) l_ld);
}
}
SELF_CHECK (actual_output == expected_output);
}
+static void test_xml_escape_text_append ()
+{
+ /* Make sure that we do indeed append. */
+ std::string actual_output = "foo<xml>";
+ const char *input = "<this isn't=\"xml\"> &";
+ const char *expected_output
+ = "foo<xml><this isn't="xml"> &";
+ xml_escape_text_append (&actual_output, input);
+
+ SELF_CHECK (actual_output == expected_output);
+}
+
}
}
{
selftests::register_test ("xml_escape_text",
selftests::xml_utils::test_xml_escape_text);
+ selftests::register_test ("xml_escape_text_append",
+ selftests::xml_utils::test_xml_escape_text_append);
}