Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
106 commits
Select commit Hold shift + click to select a range
feadf80
Initial commit
Choochmeque Mar 25, 2026
d797611
C++ code formatting
Choochmeque Mar 25, 2026
ec44a32
Add GitHub Actions workflow for Rust project with checks and tests (e…
Choochmeque Mar 25, 2026
daa1adf
Improve error handling in FFI callbacks to suppress panics
Choochmeque Apr 2, 2026
79eec1d
Update README with new FDB API usage examples and correct method calls
Choochmeque Apr 2, 2026
5c27e96
Refactor axes() to use dynamic mapping instead of hardcoded axis names
Choochmeque Apr 2, 2026
014c3de
Add safety comments for thread-safety of various iterators in FDB
Choochmeque Apr 2, 2026
6888dec
Add integration tests for FDB methods: archive_raw, read_uri, read_ur…
Choochmeque Apr 2, 2026
5d43c67
Fix CMake patching error handling and improve seek position calculations
Choochmeque Apr 2, 2026
0886506
Refactor FDB configuration accessors to return Option types for missi…
Choochmeque Apr 2, 2026
5f5b02b
Add concurrent archive and mixed read/write tests for FDB operations
Choochmeque Apr 2, 2026
4320482
Improve exception handling messages in fdb_bridge
Choochmeque Apr 2, 2026
0a4d9b0
Update rust CI workflow
Choochmeque Apr 7, 2026
b9e0404
Refactor FdbHandle to use direct FDB instance instead of unique_ptr
Choochmeque Apr 8, 2026
df834bc
Remove unnecessary drop statements from FDB test cases
Choochmeque Apr 8, 2026
af8d471
Add support for user configuration in FdbHandle initialization and API
Choochmeque Apr 8, 2026
ae1d491
Update iterator methods to return Result<bool> for hasNext checks
Choochmeque Apr 8, 2026
baa976d
Add Cargo configuration and improve control identifier handling in FDB
Choochmeque Apr 8, 2026
cbcc8b7
Update GRIB support and improve URI handling in FDB integration tests
Choochmeque Apr 8, 2026
990cb6e
Remove AxesIteratorHandle and related axes iterator functionality
Choochmeque Apr 8, 2026
0fe11aa
Update log message for empty axes case to clarify request context
Choochmeque Apr 8, 2026
7d2bcc3
Remove debug print statement for FDB name in example code
Choochmeque Apr 8, 2026
3a7672b
Update fdb_list example to format output as key-value pairs in braces
Choochmeque Apr 8, 2026
47ddce5
Remove FDB configuration methods and related data structures to simpl…
Choochmeque Apr 9, 2026
f03a576
Update documentation for HandleInner to clarify FDB instance usage
Choochmeque Apr 9, 2026
826f9e1
Update README to correct FDB name and improve description clarity
Choochmeque Apr 9, 2026
57ef2ed
Update README files to clarify feature flags and build strategies for…
Choochmeque Apr 9, 2026
117cf99
Update README and examples to clarify key requirements for FDB usage
Choochmeque Apr 9, 2026
a53a1c2
Add `memfs` feature to bake eccodes tables into libeccodes for easier…
Choochmeque Apr 9, 2026
1b1c6b5
Refactor version retrieval to use module-level functions instead of m…
Choochmeque Apr 9, 2026
cbddb3b
Replace std::runtime_error with eckit exceptions in DataReader and it…
Choochmeque Apr 9, 2026
76a9c50
Refactor Key struct to use fdb_sys::KeyData
Choochmeque Apr 9, 2026
3582a80
Add function to determine CMake build type based on Cargo profile set…
Choochmeque Apr 9, 2026
9d2cf2d
Update MARS request parsing to use metkit's parser and expansion logic
Choochmeque Apr 9, 2026
a096b5d
Add path-based constructors to FdbHandle for loading configurations d…
Choochmeque Apr 9, 2026
d1311fc
Add clap dependency and implement CLI for fdb_list example tool
Choochmeque Apr 9, 2026
08f099d
Refactor FDB handle creation to use `Fdb::open` instead of `Fdb::new`
Choochmeque Apr 9, 2026
6a9dffc
Add ListOptions struct for improved parameter handling in Fdb methods
Choochmeque Apr 9, 2026
9170f39
Add streaming support for archiving GRIB data from Rust `Read` sources
Choochmeque Apr 9, 2026
2d12394
Add examples for `fdb_read` and `fdb_write` tools with CLI usage inst…
Choochmeque Apr 9, 2026
55b958e
Add detailed index and database statistics reporting in FDB bridge
Choochmeque Apr 9, 2026
027ca66
Refactor DataReaderHandle to eckit::DataHandle shim functions
Choochmeque Apr 9, 2026
ae445d4
Add integration test for FDB axes to validate expected values returned
Choochmeque Apr 9, 2026
fd9b094
Add bindman-utils dependency and refactor build scripts
Choochmeque Apr 11, 2026
39232f3
Add fdb-hammer tool for benchmarking and stress testing FDB performance
Choochmeque Apr 13, 2026
5f86390
Add integration testing workflow for rust-bindings branch in CI
Choochmeque Apr 13, 2026
bfa19e7
Add compact listing functionality to ListIterator for MARS-request ag…
Choochmeque Apr 15, 2026
0834d5c
Remove MoveIterator and related move_data functionality from FDB API
Choochmeque Apr 15, 2026
bd495fd
Enhance rpath handling in fdb build scripts
Choochmeque Apr 15, 2026
1ca42b3
Update README.md to clarify binary execution without environment vari…
Choochmeque Apr 15, 2026
40de393
Update fdb_axes example to use structured argument parsing with clap
Choochmeque Apr 15, 2026
5984a13
Remove unnecessary FDB handle creation logs from examples
Choochmeque Apr 15, 2026
3705937
Add IndexMap dependency and update Request struct for key-value manag…
Choochmeque Apr 16, 2026
c20c3ec
Remove unnecessary FDB_DIR parameter from cmake_find_package call
Choochmeque Apr 16, 2026
4001f5d
Remove branch specification for bindman-utils in Cargo.toml
Choochmeque Apr 16, 2026
17e0fc1
Remove unnecessary integration test steps and update test commands
Choochmeque Apr 16, 2026
902007f
Add mutex lock to serialize GRIB ingest across Fdb instances to preve…
Choochmeque Apr 16, 2026
b519f16
Use eckit/metkit in -sys crate
Choochmeque Apr 20, 2026
dd0a86b
Add metkit as a workspace dependency and update retrieve method to us…
Choochmeque Apr 20, 2026
12144bf
Refactor FDB request handling to use MarsRequestWrapper
Choochmeque Apr 20, 2026
995578e
Refactor FDB to use DataHandleWrapper for data retrieval and reading
Choochmeque Apr 20, 2026
47c8cc0
Refactor FdbHandle constructors to use eckit_bridge::ConfigWrapper fo…
Choochmeque Apr 21, 2026
13fe913
Refactor read handle retrieval to include estimated size in examples …
Choochmeque Apr 21, 2026
d68b4fc
Update FDB benchmarks and tests to use new request building method
Choochmeque Apr 22, 2026
7e8179a
Update build scripts and dependencies for fdb and fdb-sys crates
Choochmeque Apr 22, 2026
e125c92
Fix path for eccodes-sys in Cargo.toml to correct directory structure
Choochmeque Apr 22, 2026
d15b078
Add bindman-utils dependency and update GRIB handling in fdb-hammer
Choochmeque Apr 22, 2026
96cfe4b
Update README files to clarify RPATH setup for binaries on macOS and …
Choochmeque Apr 22, 2026
22554ca
Update eccodes-sys dependency to include additional features for thre…
Choochmeque Apr 23, 2026
941922d
Remove unused LazyLock for mutex serialization in FDB handle operations
Choochmeque Apr 23, 2026
d94833d
Add UserConfig struct for per-instance FDB configuration options
Choochmeque Apr 27, 2026
cc3a6d3
Add MessageArchiverWrapper to interface with fdb5::MessageArchiver fo…
Choochmeque Apr 27, 2026
9a56a13
Add exception generation for fdb-sys to improve error handling integr…
Choochmeque May 14, 2026
df24d47
Merge remote-tracking branch 'origin/develop' into rust-bindings-v1
Choochmeque Jun 3, 2026
8ee4ec8
Remove unused DataReader and Request structs from the FDB crate
Choochmeque Jun 3, 2026
5e695fe
Update dependencies to use Git repositories for eckit and bindman crates
Choochmeque Jun 10, 2026
f790bea
Update metkit-sys dependency to point to the correct repository branch
Choochmeque Jun 11, 2026
e9e4b41
Merge branch 'develop' into rust-bindings-v1
Choochmeque Jun 11, 2026
aceb4e5
Refactor MessageArchiverWrapper constructor and new_message_archiver …
Choochmeque Jun 11, 2026
0d20cb1
Split big file to dedicated modules
Choochmeque Jun 23, 2026
237f1a0
Add reusable Rust CI workflow to main CI configuration
Choochmeque Jun 23, 2026
dffcd91
Add Library class for FDB metadata and initialization handling
Choochmeque Jun 23, 2026
fe7b678
Update documentation for `MarsRequest` to clarify `DataHandle` usage
Choochmeque Jun 23, 2026
dca3a98
Update MarsRequestBuilder example to use 'retrieve' instead of 'list'
Choochmeque Jun 23, 2026
1d2f5df
Add initialization for eckit in the main function of FDB Hammer tool
Choochmeque Jun 23, 2026
dbf4296
Update disable_subtocs argument to require a main config layer
Choochmeque Jun 23, 2026
b897abc
Simplify archive and flush process in integration test for clarity
Choochmeque Jun 23, 2026
9a5da0b
Fix test to assert close() success in fdb_datareader_seek()
Choochmeque Jun 23, 2026
7079283
Refactor tests to use tempdir-backed FDB config for isolation and rel…
Choochmeque Jun 23, 2026
eee476c
Remove unused exception throwing methods and related tests from Excep…
Choochmeque Jun 23, 2026
7076035
Cleanup
Choochmeque Jun 23, 2026
cdb5d26
Merge branch 'develop' into rust-bindings-v1
Choochmeque Aug 6, 2026
267bbba
Update dependencies and refactor MarsRequest usage
Choochmeque Aug 6, 2026
0c933d8
Move cargo config.toml
Choochmeque Aug 6, 2026
5d7a5ab
Update metkit dependencies to use the develop branch
Choochmeque Aug 7, 2026
08b456c
Merge branch 'develop' into rust-bindings-v1
Choochmeque Aug 7, 2026
85be293
Merge branch 'develop' into rust-bindings-v1
Choochmeque Aug 11, 2026
9d74e64
Update build script to use `.std("c++17")` instead of `.flag_if_suppo…
Choochmeque Aug 11, 2026
2007dc1
Merge branch 'develop' into rust-bindings-v1
Choochmeque Aug 12, 2026
815ff02
Merge remote-tracking branch 'origin/develop' into rust-bindings-v1
Choochmeque Aug 12, 2026
80afdcc
Merge remote-tracking branch 'origin/rust-bindings-v1' into rust-bind…
Choochmeque Aug 12, 2026
3cfabd5
Fix eccodes-sys dependency to resolve conflict with eckit-sys branch
Choochmeque Aug 13, 2026
9dc9bef
Merge branch 'develop' into rust-bindings-v1
Choochmeque Aug 13, 2026
7870818
Merge branch 'develop' into rust-bindings-v1
Choochmeque Aug 18, 2026
bba8cf5
Update CI workflow to include documentation generation for Rust project
Choochmeque Aug 25, 2026
361483c
Add rules to deny direct dependencies on *-sys crates in Rust project
Choochmeque Sep 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 0 additions & 79 deletions .github/workflows/ci-rust.yml

This file was deleted.

12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,17 @@ jobs:
third_party
secrets: inherit

# Run Rust CI (fmt + clippy + doc + test) on the rust/ workspace
ci-rust:
name: ci-rust
if: ${{ !github.event.pull_request.head.repo.fork && github.event.action != 'labeled' || github.event.label.name == 'approved-for-ci' }}
uses: ecmwf/reusable-workflows/.github/workflows/ci-rust.yml@main
with:
manifest-path: rust/Cargo.toml
features: --features fdb-sys/vendored
secrets:
private_repos_token: ${{ secrets.GH_REPO_READ_TOKEN }}

# Run CI of private downstream packages on self-hosted runners
private-downstream-ci:
name: private-downstream-ci
Expand Down Expand Up @@ -83,6 +94,7 @@ jobs:
runs-on: ubuntu-latest
needs:
- downstream-ci
- ci-rust
- private-downstream-ci
- downstream-ci-hpc
- private-downstream-ci-hpc
Expand Down
File renamed without changes.
18 changes: 12 additions & 6 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,20 @@ fdb-sys = { path = "crates/fdb-sys" }
fdb = { path = "crates/fdb" }

# Foundation crates
eckit-sys = { git = "ssh://git@github.com/ecmwf/rust-wrappers-playground.git", default-features = false }
metkit-sys = { git = "ssh://git@github.com/ecmwf/rust-wrappers-playground.git", default-features = false }
eccodes-sys = { git = "ssh://git@github.com/ecmwf/rust-wrappers-playground.git", default-features = false }
eckit-sys = { git = "ssh://git@github.com/ecmwf/eckit.git", branch = "develop", default-features = false }

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should probably introduce a reproducable build, which pins certain fixed versions. Depending on develop isn't the best idea.

eckit = { git = "ssh://git@github.com/ecmwf/eckit.git", branch = "develop" }
metkit-sys = { git = "ssh://git@github.com/ecmwf/metkit.git", branch = "develop", default-features = false }
metkit = { git = "ssh://git@github.com/ecmwf/metkit.git", branch = "develop" }
# Pinned to match metkit develop: the playground HEAD and the eccodes-repo
# crate both consume eckit-sys from the rust-bindings branch, which conflicts
# with our eckit-sys develop dependency (links collision). Drop the pin and
# switch to eccodes.git once its eckit-sys dependency moves to develop.
eccodes-sys = { git = "ssh://git@github.com/ecmwf/rust-wrappers-playground.git", rev = "d6b582fd", default-features = false, features = ["vendored", "eccodes-threads"] }

# Build tools
bindman = { git = "ssh://git@github.com/ecmwf/bindman.git" }
bindman-build = { git = "ssh://git@github.com/ecmwf/bindman.git" }
bindman-utils = { git = "ssh://git@github.com/ecmwf/bindman.git" }
bindman = { git = "ssh://git@github.com/ecmwf/bindman.git", rev = "47edf68" }
bindman-build = { git = "ssh://git@github.com/ecmwf/bindman.git", rev = "47edf68" }
bindman-utils = { git = "ssh://git@github.com/ecmwf/bindman.git", rev = "47edf68" }

# External
thiserror = "2"
Expand Down
Loading
Loading