You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by an...@apache.org on 2022/04/09 13:52:36 UTC

[jena] branch main updated (60845e081d -> a76d79803b)

This is an automated email from the ASF dual-hosted git repository.

andy pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/jena.git


    from 60845e081d Merge pull request #1247 from epimorphics/fix/jena-2319
     new 7c732cf38f Initial RowSetJSONStreaming implementation and testing
     new edeefc8cca Enhanced RowSetReaderJSONStreaming with a configurable validation system
     new 4bcdf8fcb6 Factored out IteratorRsJSON from RowSetJSONStreaming in order to decouple basic json streaming events from accumulation and validation. Added additional tests and resolved revealed issues.
     new 559b35c007 JENA-2302: Streaming RowSetReaderJSON
     new a76d79803b Merge pull request #1253 from afs/streaming-json-results

The 9806 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 jena-arq/pom.xml                                   |   6 +
 .../jena/riot/rowset/RowSetReaderRegistry.java     |   3 +-
 .../apache/jena/riot/rowset/rw/JSONResultsKW.java  |  50 +-
 .../riot/rowset/rw/RowSetReaderJSONStreaming.java  | 166 ++++++
 ...SetReaderJSON.java => RowSetReaderJSON_V1.java} |  16 +-
 .../jena/riot/rowset/rw/rs_json/ErrorEvent.java    |  56 ++
 .../jena/riot/rowset/rw/rs_json/ErrorHandlers.java |  65 +++
 .../riot/rowset/rw/rs_json/IteratorRsJSON.java     | 165 ++++++
 .../jena/riot/rowset/rw/rs_json/ParserState.java   |  28 +
 .../riot/rowset/rw/rs_json/RowSetBuffered.java     | 170 ++++++
 .../rowset/rw/rs_json/RowSetJSONStreaming.java     | 646 +++++++++++++++++++++
 .../riot/rowset/rw/rs_json/RsJsonEltEncoder.java   |  44 ++
 .../jena/riot/rowset/rw/rs_json/Severity.java      |  34 ++
 .../riot/rowset/rw/rs_json/ValidationSettings.java | 111 ++++
 .../sparql/resultset/TestResultSetFormat2.java     | 156 ++++-
 pom.xml                                            |   7 +
 16 files changed, 1682 insertions(+), 41 deletions(-)
 create mode 100644 jena-arq/src/main/java/org/apache/jena/riot/rowset/rw/RowSetReaderJSONStreaming.java
 rename jena-arq/src/main/java/org/apache/jena/riot/rowset/rw/{RowSetReaderJSON.java => RowSetReaderJSON_V1.java} (96%)
 create mode 100644 jena-arq/src/main/java/org/apache/jena/riot/rowset/rw/rs_json/ErrorEvent.java
 create mode 100644 jena-arq/src/main/java/org/apache/jena/riot/rowset/rw/rs_json/ErrorHandlers.java
 create mode 100644 jena-arq/src/main/java/org/apache/jena/riot/rowset/rw/rs_json/IteratorRsJSON.java
 create mode 100644 jena-arq/src/main/java/org/apache/jena/riot/rowset/rw/rs_json/ParserState.java
 create mode 100644 jena-arq/src/main/java/org/apache/jena/riot/rowset/rw/rs_json/RowSetBuffered.java
 create mode 100644 jena-arq/src/main/java/org/apache/jena/riot/rowset/rw/rs_json/RowSetJSONStreaming.java
 create mode 100644 jena-arq/src/main/java/org/apache/jena/riot/rowset/rw/rs_json/RsJsonEltEncoder.java
 create mode 100644 jena-arq/src/main/java/org/apache/jena/riot/rowset/rw/rs_json/Severity.java
 create mode 100644 jena-arq/src/main/java/org/apache/jena/riot/rowset/rw/rs_json/ValidationSettings.java