Skip to content

Commit fb8a5c6

Browse files
committed
native: add unescapedValue node to StringLiteral
Now native Java AST contains both - escapedValue - unescapedValue obtained from JDT parser. That is similar to what javasript driver does and allows to avoid having language-spacific escape sequence handling on the Go side that can be different from Go one. See bblfsh#111 (comment) for details. Signed-off-by: Alexander Bezzubov <[email protected]>
1 parent 14e9019 commit fb8a5c6

File tree

4 files changed

+40
-5
lines changed

4 files changed

+40
-5
lines changed

native/src/main/java/bblfsh/CompilationUnitSerializer.java

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
import org.eclipse.jdt.core.dom.ASTNode;
77
import org.eclipse.jdt.core.dom.Comment;
88
import org.eclipse.jdt.core.dom.CompilationUnit;
9+
import org.eclipse.jdt.core.dom.StringLiteral;
910
import org.eclipse.jdt.core.dom.StructuralPropertyDescriptor;
1011

1112
import java.io.IOException;
@@ -50,6 +51,11 @@ private void serializeAll(CompilationUnit cu, ASTNode node, JsonGenerator jG, Se
5051
jG.writeFieldName("@type");
5152
jG.writeString(ClassName);
5253

54+
if (node instanceof StringLiteral) { // add un-quoted & un-escaped StringLiteral
55+
jG.writeFieldName("unescapedValue");
56+
jG.writeString(((StringLiteral) node).getLiteralValue());
57+
}
58+
5359
for (StructuralPropertyDescriptor descriptor : descriptorList) {
5460
Object child = node.getStructuralProperty(descriptor);
5561
if (child instanceof List) {

native/src/main/java/bblfsh/Driver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
public class Driver {
1212

1313
private final RequestReader reader;
14-
private final ResponseWriter writer;
14+
final ResponseWriter writer;
1515
private final EclipseParser parser;
1616

1717
public Driver(final RequestReader reader, final ResponseWriter writer) {

native/src/main/java/bblfsh/ResponseWriter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
public class ResponseWriter {
1515

16-
private final OutputStream out;
16+
final OutputStream out;
1717
private final ObjectMapper mapper;
1818
private String content;
1919
private CompilationUnitSerializer cu;

native/src/test/java/bblfsh/DriverTest.java

+32-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@
44

55
import java.io.ByteArrayInputStream;
66
import java.io.ByteArrayOutputStream;
7+
import java.io.IOException;
78
import java.io.InputStream;
89

10+
import com.fasterxml.jackson.core.JsonProcessingException;
11+
import com.fasterxml.jackson.databind.JsonNode;
12+
import com.fasterxml.jackson.databind.ObjectMapper;
13+
import com.fasterxml.jackson.databind.node.ObjectNode;
14+
915
import static org.fest.assertions.Assertions.*;
1016

1117
public class DriverTest {
@@ -75,14 +81,37 @@ public void processInvalid() throws DriverException, CloseException {
7581
@Test
7682
public void processComment() throws DriverException, CloseException {
7783
final String input = "{\"content\":\"class EOF_Test { public void method() {\\r\\n /*\\r\\n*/ } }\"}";
84+
final Driver driver = process(input);
85+
driver.processOne();
86+
// TODO: check output
87+
}
88+
89+
@Test
90+
public void processStringLiteral() throws DriverException, IOException {
91+
// give
92+
final String input = "{\"content\":\"class String_Test { String s = \\\"b\\\\nc\\\\41\\\"; \\r\\n }\"}";
93+
final Driver driver = process(input);
94+
95+
// when
96+
driver.processOne();
97+
98+
// then check a new node is present \w normalized value
99+
String json = driver.writer.out.toString();
100+
final ObjectNode node = new ObjectMapper().readValue(json, ObjectNode.class);
101+
JsonNode newNode = node.findPath("unescapedValue");
102+
103+
assertThat(newNode.isMissingNode()).isFalse();
104+
assertThat(newNode.asText()).isEqualTo("b\nc!");
105+
}
106+
107+
public Driver process(String input) {
78108
final InputStream in = new ByteArrayInputStream(input.getBytes());
79109
final RequestReader reader = new RequestReader(in);
80110

81111
final ByteArrayOutputStream out = new ByteArrayOutputStream();
82112
final ResponseWriter writer = new ResponseWriter(out);
83113

84-
final Driver driver = new Driver(reader, writer);
85-
driver.processOne();
86-
// TODO: check output
114+
return new Driver(reader, writer);
87115
}
116+
88117
}

0 commit comments

Comments
 (0)