Skip to content
This repository was archived by the owner on Nov 7, 2024. It is now read-only.

Commit 37876d2

Browse files
lukasjm0mus
authored andcommitted
sync change in prettyprinting (#86)
Signed-off-by: Lukas Jungmann <[email protected]>
1 parent 8d3fe0c commit 37876d2

File tree

3 files changed

+36
-5
lines changed

3 files changed

+36
-5
lines changed

impl/src/main/java/org/glassfish/json/JsonGeneratorImpl.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -505,12 +505,16 @@ public JsonGenerator writeEnd() {
505505
}
506506

507507
protected void writeComma() {
508-
if (!currentContext.first && currentContext.scope != Scope.IN_FIELD) {
508+
if (isCommaAllowed()) {
509509
writeChar(',');
510510
}
511511
currentContext.first = false;
512512
}
513513

514+
boolean isCommaAllowed() {
515+
return !currentContext.first && currentContext.scope != Scope.IN_FIELD;
516+
}
517+
514518
protected void writeColon() {
515519
writeChar(':');
516520
}

impl/src/main/java/org/glassfish/json/JsonPrettyGeneratorImpl.java

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
33
*
4-
* Copyright (c) 2012-2017 Oracle and/or its affiliates. All rights reserved.
4+
* Copyright (c) 2012-2018 Oracle and/or its affiliates. All rights reserved.
55
*
66
* The contents of this file are subject to the terms of either the GNU
77
* General Public License Version 2 only ("GPL") or the Common Development
@@ -112,8 +112,10 @@ private void writeIndent() {
112112
@Override
113113
protected void writeComma() {
114114
super.writeComma();
115-
writeChar('\n');
116-
writeIndent();
115+
if (isCommaAllowed()) {
116+
writeChar('\n');
117+
writeIndent();
118+
}
117119
}
118120

119121
@Override

tests/src/test/java/org/glassfish/json/tests/JsonGeneratorTest.java

+26-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
33
*
4-
* Copyright (c) 2012-2017 Oracle and/or its affiliates. All rights reserved.
4+
* Copyright (c) 2012-2018 Oracle and/or its affiliates. All rights reserved.
55
*
66
* The contents of this file are subject to the terms of either the GNU
77
* General Public License Version 2 only ("GPL") or the Common Development
@@ -235,6 +235,31 @@ public void testPrettyObjectWriter() throws Exception {
235235
JsonObjectTest.testPerson(person);
236236
}
237237

238+
public void testPrettyPrinting() throws Exception {
239+
String[][] lines = {{"firstName", "John"}, {"lastName", "Smith"}};
240+
StringWriter writer = new StringWriter();
241+
Map<String, Object> config = new HashMap<>();
242+
config.put(JsonGenerator.PRETTY_PRINTING, true);
243+
JsonGenerator generator = Json.createGeneratorFactory(config)
244+
.createGenerator(writer);
245+
generator.writeStartObject()
246+
.write("firstName", "John")
247+
.write("lastName", "Smith")
248+
.writeEnd();
249+
generator.close();
250+
writer.close();
251+
BufferedReader reader = new BufferedReader(new StringReader(writer.toString().trim()));
252+
int numberOfLines = 0;
253+
String line;
254+
while ((line = reader.readLine()) != null) {
255+
numberOfLines++;
256+
if (numberOfLines > 1 && numberOfLines < 4) {
257+
assertTrue(line.contains("\"" + lines[numberOfLines - 2][0] + "\": \"" + lines[numberOfLines - 2][1] + "\""));
258+
}
259+
}
260+
assertEquals(4, numberOfLines);
261+
}
262+
238263
public void testPrettyObjectStream() throws Exception {
239264
ByteArrayOutputStream out = new ByteArrayOutputStream();
240265
Map<String, Object> config = new HashMap<>();

0 commit comments

Comments
 (0)