This is an automated email from the ASF dual-hosted git repository.
jinterrante pushed a change to branch runtime2-2202
in repository https://gitbox.apache.org/repos/asf/daffodil.git.
discard e73310c Fix ratcheck
discard 5bc9cb0 Make more changes in response to reviewer requests
discard 519b8f5 Refactor into add_diagnostic
discard b84dd05 Make some daffodil-runtime2 improvements
omit 7aa12ce Fix SonarCloud Scan error
omit 9b35efa Don't setup Java in SonarCloud workflow
omit b547722 Fix test failures after rebase
omit 57b3c89 Fix compilation errors after rebase
omit 48858f8 Support booleans, arrays of complex types, fixed values, fill
bytes
omit 80a9570 Support choices in runtime2 code generator with restrictions
omit 1061804 Support arrays, real numbers, and improve TDML processing
omit be9cf97 Test all integer sizes, signs, and byte orders
omit 3f96471 Expand C code generator to handle more integer types
omit daa4f46 Reorganize C source files
omit 8a2c1f4 WIP: Add runtime2 backend with C code generator
add 7faeb04 Allow custom debuggers through SAPI and JAPI
add abf5422 Update woodstox-core to 6.2.5
add bbdc372 Update sbt to 1.4.9
add 66dda26 Update jansi to 2.3.2 and JLine to 3.19.0
add 2e0586b Enabled calendar tests that now work
add 4ca4bee Update icu4j to 69.1
add 8a40595 Updated test to check for both '.' or ','
add 2d701f8 Update sbt to 1.5.0
add 04beffc New variable instances should inherit external values
add 08c49aa Update jackson-core to 2.12.3
add 420401b Fix breakages due to JLine3 upgrade
add 1fcf9f7 Changes to support Java 16
add d9e2839 Change release candidate --dry-run option to accept an
optional repo/branch
new 32ea29a Add C code generator and runtime2 backend
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (e73310c)
\
N -- N -- N refs/heads/runtime2-2202 (32ea29a)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
The 1 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:
.github/workflows/main.yml | 17 +-
.github/workflows/sonarcloud.yml | 2 +-
BUILD.md | 104 ++++++++----
README.md | 39 +++--
build.sbt | 57 ++++---
.../release-candidate/daffodil-release-candidate | 56 ++++---
containers/release-candidate/setup-container.sh | 2 +-
daffodil-cli/bin.LICENSE | 8 +-
daffodil-cli/build.sbt | 86 +++++-----
.../apache/daffodil/debugger/TestCLIDebugger.scala | 7 +-
.../apache/daffodil/parsing/TestCLIParsing.scala | 2 +-
.../src/main/scala/org/apache/daffodil/Main.scala | 1 +
.../daffodil/debugger/CLIDebuggerRunner.scala | 97 +++++++++--
daffodil-cli/src/templates/bash-template | 1 -
.../apache/daffodil/dsom/DFDLDefineVariable.scala | 2 +-
.../org/apache/daffodil/dsom/ElementBase.scala | 7 +-
.../grammar/primitives/ElementCombinator.scala | 9 +-
.../primitives/PrimitivesBinaryNumber.scala | 1 -
.../grammar/primitives/SequenceChild.scala | 11 +-
.../grammar/primitives/SpecifiedLength.scala | 1 +
.../daffodil/dsom/TestExternalVariablesNew.scala | 9 +-
.../externalvars/TestExternalVariablesLoader.scala | 132 ---------------
.../TestExternalVariablesLoaderNew.scala | 66 --------
.../org/apache/daffodil/layers/TestLayers.scala | 4 +
.../main/scala/org/apache/daffodil/io/Dump.scala | 54 +++---
.../scala/org/apache/daffodil/io/TestDump.scala | 105 ++++++------
daffodil-japi/build.sbt | 2 +-
.../scala/org/apache/daffodil/japi/Daffodil.scala | 20 ++-
.../daffodil/example/TestCustomDebuggerAPI.java | 79 +++++++++
.../org/apache/daffodil/example/TestJavaAPI.java | 14 +-
.../org/apache/daffodil/util/TestLogger.scala | 2 +-
.../unparsers/ExpressionEvaluatingUnparsers.scala | 28 ++--
.../daffodil/debugger/InteractiveDebugger.scala | 87 ----------
.../org/apache/daffodil/dpath/DPathRuntime.scala | 10 +-
.../apache/daffodil/layers/GZipTransformer.scala | 83 +++++++++-
.../apache/daffodil/processors/DataProcessor.scala | 7 +
.../apache/daffodil/processors/RuntimeData.scala | 27 +--
.../apache/daffodil/processors/VariableMap1.scala | 182 +++++++++------------
.../parsers/ExpressionEvaluatingParsers.scala | 13 +-
.../daffodil/processors/parsers/PState.scala | 6 +-
.../apache/daffodil/runtime2/CodeGenerator.scala | 4 +-
.../scala/org/apache/daffodil/sapi/Daffodil.scala | 20 ++-
.../daffodil/example/TestCustomDebuggerAPI.scala | 62 +++++++
.../org/apache/daffodil/example/TestScalaAPI.scala | 16 +-
.../org/apache/daffodil/tdml/TDMLRunner.scala | 7 +-
.../test/scala/org/apache/daffodil/IBMTests.scala | 3 +-
.../test/scala/org/apache/daffodil/IBMTests3.scala | 2 -
.../org/apache/daffodil/layers/layers.tdml | 4 +-
.../section05/simple_types/SimpleTypes.tdml | 15 +-
.../external_variables/external_variables.tdml | 105 +++++++++++-
.../daffodil/section07/variables/variables.tdml | 30 ++++
.../daffodil/functionality/TestFunctionality.scala | 2 +-
.../section05/simple_types/TestSimpleTypes.scala | 8 +-
.../external_variables/TestExternalVariables.scala | 12 ++
.../section07/variables/TestVariables.scala | 1 +
project/Dependencies.scala | 14 +-
project/build.properties | 2 +-
57 files changed, 972 insertions(+), 775 deletions(-)
delete mode 100644
daffodil-core/src/test/scala/org/apache/daffodil/externalvars/TestExternalVariablesLoader.scala
delete mode 100644
daffodil-core/src/test/scala/org/apache/daffodil/externalvars/TestExternalVariablesLoaderNew.scala
create mode 100644
daffodil-japi/src/test/java/org/apache/daffodil/example/TestCustomDebuggerAPI.java
create mode 100644
daffodil-sapi/src/test/scala/org/apache/daffodil/example/TestCustomDebuggerAPI.scala