Add a one-command refresh against upstream MEOS - #49
Merged
estebanzimanyi merged 1 commit intoJul 28, 2026
Merged
Conversation
tools/refresh-from-master.sh refreshes the MeosOps* facades against upstream MEOS in one command: it runs the shared MEOS-API refresh-jvm-chain.sh over this repo, deriving libmeos and the catalog from MobilityDB master, building the JMEOS jar, and regenerating the facades. tools/refresh.conf holds this consumer last leg (the binding module, the org.jmeos:meos:1.0 coordinates, the mvn command). GENERATION.md leads with the one-liner; the module it builds is binding, matching the current layout. .gitignore excludes the wrapper .meos-chain scratch dir.
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.
What
tools/refresh-from-master.shrefreshes theMeosOps*facades against upstream MEOS in one command:It runs the shared
MobilityDB/MEOS-APIrefresh-jvm-chain.shover this repo — deriving libmeos and the catalog from MobilityDB master, building the JMEOS jar, and regenerating the facades — so a developer runs one command instead of walking four repos by hand. All of that script's options pass through (e.g.--mdb ~/src/MobilityDBto refresh against a local MobilityDB branch,--skip-tests).Files
tools/refresh.conf— this consumer's last leg: thebindingMaven module, theorg.jmeos:meos:1.0jar coordinates, and themvn … clean testcommand.tools/refresh-from-master.sh— the thin wrapper that locates the shared script (cloning MEOS-API master the first time) and calls it.GENERATION.mdleads with the one-liner; the module it names isbinding, matching the current layout..gitignoreexcludes the wrapper's.meos-chain/scratch dir.Proof
A local run over this repo derives libmeos + catalog, builds the JMEOS jar, and regenerates the Flink facades: 116 facade classes / 4136 methods, and the
mobility-flink-bindingmodule builds.Note
The one-liner uses
refresh-jvm-chain.shandprovision-meos.shfrom MEOS-API; the wrapper clones MEOS-API master to obtain them, so this PR is self-contained.