Generate the facades with the shared JVM code generator#43
Merged
estebanzimanyi merged 1 commit intoJul 16, 2026
Merged
Conversation
Replace the Flink-specific codegen_facades.py + classify_streaming_relevance.py + regen_baseline.sh trio with the single tools/codegen_jvm.py --engine flink, the generator vendored identically by every JVM binding. It emits the MeosOps* forwarder facades over the full JMEOS jar surface (grouped by the catalog object model, with a sequence-only guard derived from returnType.canonical) instead of the streaming-relevance-baseline subset. CI stages the master-derived catalog to tools/meos-idl.json in place of deriving the baseline.
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.
Replace the Flink-specific
codegen_facades.py+classify_streaming_relevance.py+regen_baseline.shtrio with the singletools/codegen_jvm.py --engine flink, the generator vendored identically by every JVM binding (MobilitySpark, MobilityFlink, MobilityKafka), so the generated surface cannot drift between engines.MeosOps*forwarder facades over the full JMEOS jar surface, grouped by the MEOS-API catalog object model (oneMeosOps<Class>per object-model class + oneMeosOpsFree<Header>per source header), with a sequence-only guard derived fromreturnType.canonical— no separate streaming-relevance classifier or baseline.tools/meos-idl.jsonin place of deriving the baseline.The generator file matches MobilitySpark#40. The flink engine emits 187 facade classes / 4529 methods, of which 137 carry the sequence-only guard.