Support escaped characters in BasicJsonParser

This commit adds the ability to have escaped characters, like the quote,
when using the BasicJsonParser. It also adds a short test for escaped
quotes.

Closes gh-14521
This commit is contained in:
DevOrc 2018-09-18 20:41:57 -04:00 committed by Stephane Nicoll
parent a91f9b6f17
commit 7daade21c4
2 changed files with 17 additions and 0 deletions

View File

@ -125,9 +125,16 @@ public class BasicJsonParser implements JsonParser {
int inObject = 0;
int inList = 0;
boolean inValue = false;
boolean inEscape = false;
StringBuilder build = new StringBuilder();
while (index < json.length()) {
char current = json.charAt(index);
if (inEscape) {
build.append(current);
index++;
inEscape = false;
continue;
}
if (current == '{') {
inObject++;
}
@ -147,6 +154,9 @@ public class BasicJsonParser implements JsonParser {
list.add(build.toString());
build.setLength(0);
}
else if (current == '\\') {
inEscape = true;
}
else {
build.append(current);
}

View File

@ -170,4 +170,11 @@ public abstract class AbstractJsonParserTests {
this.parser.parseList("\n\t{}");
}
@Test
public void escapeQuote() {
String input = "{\"foo\": \"\\\"bar\\\"\"}";
Map<String, Object> map = this.parser.parseMap(input);
assertThat(map.get("foo")).isEqualTo("\"bar\"");
}
}