package org.autoplot.json; import org.json.JSONArray; import org.json.JSONObject; import java.io.*; import java.util.Iterator; import java.util.NoSuchElementException; import org.json.JSONException; public class JSONJIterator implements Iterator, AutoCloseable { private final BufferedReader reader; private String nextLine; public JSONJIterator(InputStream inputStream) { this.reader = new BufferedReader(new InputStreamReader(inputStream)); advance(); } /** * We observed files from the NEST Thermostat which have oddly-formatted * JSON records. Each record is quoted, and then quotes within the JSONObject * are double-quote-pairs. So: * "{""device_id"":""xxxxxxxxxx"",""structure_id"":""xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"",""interval_start"":""2024-12-01T00:00:00Z""}" * will be rewritten as * {"device_id":"xxxxxxxxxx","structure_id":"xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx","interval_start":"2024-12-01T00:00:00Z"}. * @param rec * @return */ private static String handleOddFileNest( String rec ) { if ( rec.startsWith("\"{\"\"") && rec.endsWith("}\"")) { rec= rec.substring(1,rec.length()-1); rec= rec.replaceAll("\"\"", "\""); } return rec; } private void advance() { try { nextLine = reader.readLine(); if (nextLine == null || ( nextLine=nextLine.trim() ).isEmpty() ) { reader.close(); } } catch (IOException e) { throw new UncheckedIOException(e); } } @Override public boolean hasNext() { return nextLine != null; } @Override public Object next() { if (!hasNext()) { throw new NoSuchElementException(); } String jsonText = nextLine.trim(); if ( jsonText.startsWith("\"") ) { jsonText= handleOddFileNest(jsonText); } Object parsed=null; try { if (jsonText.startsWith("{")) { parsed = new JSONObject(jsonText); } else if (jsonText.startsWith("[")) { parsed = new JSONArray(jsonText); } else { throw new IllegalArgumentException("Invalid JSONJ record: " + jsonText); } } catch ( JSONException ex ) { } advance(); return parsed; } @Override public void close() throws IOException { reader.close(); } public static void main(String[] args) { String jsonj = " {\"name\": \"Alice\", \"age\": 30}\n"+ "{\"name\": \"Bob\", \"age\": 25}\n" + "{\"name\": \"Charlie\", \"age\": 35}\n " + "[1, 2, 3, 4, 5]\n" + ""; try (JSONJIterator iterator = new JSONJIterator(new ByteArrayInputStream(jsonj.getBytes()))) { while (iterator.hasNext()) { Object record = iterator.next(); System.out.println(record.getClass().getSimpleName() + ": " + record); } } catch (IOException e) { e.printStackTrace(); } } }