Fix separator not backtracked when complex-typed array element fails - #1716
Open
olabusayoT wants to merge 2 commits into
Open
Fix separator not backtracked when complex-typed array element fails#1716olabusayoT wants to merge 2 commits into
olabusayoT wants to merge 2 commits into
Conversation
olabusayoT
force-pushed
the
daf-3094-absentrep-backtrack
branch
from
September 3, 2026 18:05
6f67018 to
8ae8dbb
Compare
For a maxOccurs-bounded occursCountKind="implicit" array whose element type is complex with no possible zero-length representation (e.g. every branch of a choice requires a distinct non-empty initiator), the speculative attempt at an occurrence beyond the real data would parse its preceding separator successfully, then fail the content entirely with zero bits consumed. anyTypeElementFailedParseAttemptStatus classified this as AbsentRep, whose contract is to retain the bit position (keep the separator consumed); that is correct for a genuinely empty representation, but wrong here since there is no occurrence at all. This let the separator leak into whatever sequence child comes next, causing spurious "separator not found" / "terminator not found" errors. Gate the AbsentRep classification on isEmptyRepZeroLength for complex types, so a structurally-impossible zero-length failure returns MissingItem instead, which forces the caller to fully backtrack the point of uncertainty including the separator. Added tests to exercise. DAFFODIL-3094
olabusayoT
force-pushed
the
daf-3094-absentrep-backtrack
branch
from
September 4, 2026 19:16
8ae8dbb to
1848c10
Compare
…backtracking The prior fix gated AbsentRep vs MissingItem on the static isEmptyRepZeroLength flag, but that only describes whether some successful parse of the type could be zero-length, not whether this particular failed attempt was genuinely empty. A choice whose real branch matches part of its content then fails nets zero bits once backed out, indistinguishable from a genuine empty match by bit position alone. Track this via pointOfUncertaintyResetCount, which counts resets that actually undo bit position movement, and a mark stack letting a sequence child's attempt check, via hadPointOfUncertaintyResetSinceMark, whether such a reset happened during it. Added tests for both cases. DAFFODIL-3094
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
For a maxOccurs-bounded occursCountKind="implicit" array whose element type is complex with no possible zero-length representation (e.g. every branch of a choice requires a distinct non-empty initiator), the speculative attempt at an occurrence beyond the real data would parse its preceding separator successfully, then fail the content entirely with zero bits consumed. anyTypeElementFailedParseAttemptStatus classified this as AbsentRep, whose contract is to retain the bit position (keep the separator consumed); that is correct for a genuinely empty representation, but wrong here since there is no occurrence at all. This let the separator leak into whatever sequence child comes next, causing spurious "separator not found" / "terminator not found" errors.
Gate the AbsentRep classification on isEmptyRepZeroLength for complex types, so a structurally-impossible zero-length failure returns MissingItem instead, which forces the caller to fully backtrack the point of uncertainty including the separator.
DAFFODIL-3094