-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Implement CatalogProviderList in FFI #18657
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
timsaucer
merged 2 commits into
apache:main
from
timsaucer:feat/ffi-catalog-listing-provider
Nov 20, 2025
+428
−30
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,283 @@ | ||
| // Licensed to the Apache Software Foundation (ASF) under one | ||
| // or more contributor license agreements. See the NOTICE file | ||
| // distributed with this work for additional information | ||
| // regarding copyright ownership. The ASF licenses this file | ||
| // to you under the Apache License, Version 2.0 (the | ||
| // "License"); you may not use this file except in compliance | ||
| // with the License. You may obtain a copy of the License at | ||
| // | ||
| // http://www.apache.org/licenses/LICENSE-2.0 | ||
| // | ||
| // Unless required by applicable law or agreed to in writing, | ||
| // software distributed under the License is distributed on an | ||
| // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
| // KIND, either express or implied. See the License for the | ||
| // specific language governing permissions and limitations | ||
| // under the License. | ||
|
|
||
| use std::{any::Any, ffi::c_void, sync::Arc}; | ||
|
|
||
| use abi_stable::{ | ||
| std_types::{ROption, RString, RVec}, | ||
| StableAbi, | ||
| }; | ||
| use datafusion::catalog::{CatalogProvider, CatalogProviderList}; | ||
| use tokio::runtime::Handle; | ||
|
|
||
| use crate::catalog_provider::{FFI_CatalogProvider, ForeignCatalogProvider}; | ||
|
|
||
| /// A stable struct for sharing [`CatalogProviderList`] across FFI boundaries. | ||
| #[repr(C)] | ||
| #[derive(Debug, StableAbi)] | ||
| #[allow(non_camel_case_types)] | ||
| pub struct FFI_CatalogProviderList { | ||
| /// Register a catalog | ||
| pub register_catalog: unsafe extern "C" fn( | ||
| &Self, | ||
| name: RString, | ||
| catalog: &FFI_CatalogProvider, | ||
timsaucer marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| ) -> ROption<FFI_CatalogProvider>, | ||
|
|
||
| /// List of existing catalogs | ||
| pub catalog_names: unsafe extern "C" fn(&Self) -> RVec<RString>, | ||
timsaucer marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| /// Access a catalog | ||
| pub catalog: | ||
timsaucer marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| unsafe extern "C" fn(&Self, name: RString) -> ROption<FFI_CatalogProvider>, | ||
|
|
||
| /// Used to create a clone on the provider. This should only need to be called | ||
| /// by the receiver of the plan. | ||
| pub clone: unsafe extern "C" fn(plan: &Self) -> Self, | ||
|
|
||
| /// Release the memory of the private data when it is no longer being used. | ||
| pub release: unsafe extern "C" fn(arg: &mut Self), | ||
|
|
||
| /// Return the major DataFusion version number of this provider. | ||
| pub version: unsafe extern "C" fn() -> u64, | ||
|
|
||
| /// Internal data. This is only to be accessed by the provider of the plan. | ||
| /// A [`ForeignCatalogProviderList`] should never attempt to access this data. | ||
| pub private_data: *mut c_void, | ||
| } | ||
|
|
||
| unsafe impl Send for FFI_CatalogProviderList {} | ||
| unsafe impl Sync for FFI_CatalogProviderList {} | ||
|
|
||
| struct ProviderPrivateData { | ||
| provider: Arc<dyn CatalogProviderList + Send>, | ||
| runtime: Option<Handle>, | ||
| } | ||
|
|
||
| impl FFI_CatalogProviderList { | ||
| unsafe fn inner(&self) -> &Arc<dyn CatalogProviderList + Send> { | ||
| let private_data = self.private_data as *const ProviderPrivateData; | ||
| &(*private_data).provider | ||
| } | ||
|
|
||
| unsafe fn runtime(&self) -> Option<Handle> { | ||
| let private_data = self.private_data as *const ProviderPrivateData; | ||
| (*private_data).runtime.clone() | ||
| } | ||
| } | ||
|
|
||
| unsafe extern "C" fn catalog_names_fn_wrapper( | ||
| provider: &FFI_CatalogProviderList, | ||
| ) -> RVec<RString> { | ||
| let names = provider.inner().catalog_names(); | ||
| names.into_iter().map(|s| s.into()).collect() | ||
| } | ||
|
|
||
| unsafe extern "C" fn register_catalog_fn_wrapper( | ||
timsaucer marked this conversation as resolved.
Show resolved
Hide resolved
timsaucer marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| provider: &FFI_CatalogProviderList, | ||
| name: RString, | ||
| catalog: &FFI_CatalogProvider, | ||
| ) -> ROption<FFI_CatalogProvider> { | ||
| let runtime = provider.runtime(); | ||
| let provider = provider.inner(); | ||
| let catalog = Arc::new(ForeignCatalogProvider::from(catalog)); | ||
|
|
||
| provider | ||
| .register_catalog(name.into(), catalog) | ||
| .map(|catalog| FFI_CatalogProvider::new(catalog, runtime)) | ||
| .into() | ||
| } | ||
|
|
||
| unsafe extern "C" fn catalog_fn_wrapper( | ||
| provider: &FFI_CatalogProviderList, | ||
| name: RString, | ||
| ) -> ROption<FFI_CatalogProvider> { | ||
| let runtime = provider.runtime(); | ||
| let provider = provider.inner(); | ||
| provider | ||
| .catalog(name.as_str()) | ||
| .map(|catalog| FFI_CatalogProvider::new(catalog, runtime)) | ||
| .into() | ||
| } | ||
|
|
||
| unsafe extern "C" fn release_fn_wrapper(provider: &mut FFI_CatalogProviderList) { | ||
| let private_data = Box::from_raw(provider.private_data as *mut ProviderPrivateData); | ||
| drop(private_data); | ||
| } | ||
|
|
||
| unsafe extern "C" fn clone_fn_wrapper( | ||
| provider: &FFI_CatalogProviderList, | ||
| ) -> FFI_CatalogProviderList { | ||
| let old_private_data = provider.private_data as *const ProviderPrivateData; | ||
| let runtime = (*old_private_data).runtime.clone(); | ||
|
|
||
| let private_data = Box::into_raw(Box::new(ProviderPrivateData { | ||
| provider: Arc::clone(&(*old_private_data).provider), | ||
| runtime, | ||
| })) as *mut c_void; | ||
|
|
||
| FFI_CatalogProviderList { | ||
| register_catalog: register_catalog_fn_wrapper, | ||
| catalog_names: catalog_names_fn_wrapper, | ||
| catalog: catalog_fn_wrapper, | ||
| clone: clone_fn_wrapper, | ||
| release: release_fn_wrapper, | ||
| version: super::version, | ||
| private_data, | ||
| } | ||
| } | ||
|
|
||
| impl Drop for FFI_CatalogProviderList { | ||
| fn drop(&mut self) { | ||
| unsafe { (self.release)(self) } | ||
| } | ||
| } | ||
|
|
||
| impl FFI_CatalogProviderList { | ||
| /// Creates a new [`FFI_CatalogProviderList`]. | ||
| pub fn new( | ||
| provider: Arc<dyn CatalogProviderList + Send>, | ||
| runtime: Option<Handle>, | ||
| ) -> Self { | ||
| let private_data = Box::new(ProviderPrivateData { provider, runtime }); | ||
|
|
||
| Self { | ||
| register_catalog: register_catalog_fn_wrapper, | ||
| catalog_names: catalog_names_fn_wrapper, | ||
| catalog: catalog_fn_wrapper, | ||
| clone: clone_fn_wrapper, | ||
| release: release_fn_wrapper, | ||
| version: super::version, | ||
| private_data: Box::into_raw(private_data) as *mut c_void, | ||
| } | ||
| } | ||
| } | ||
|
|
||
| /// This wrapper struct exists on the receiver side of the FFI interface, so it has | ||
| /// no guarantees about being able to access the data in `private_data`. Any functions | ||
| /// defined on this struct must only use the stable functions provided in | ||
| /// FFI_CatalogProviderList to interact with the foreign catalog provider list. | ||
| #[derive(Debug)] | ||
| pub struct ForeignCatalogProviderList(FFI_CatalogProviderList); | ||
|
|
||
| unsafe impl Send for ForeignCatalogProviderList {} | ||
| unsafe impl Sync for ForeignCatalogProviderList {} | ||
|
|
||
| impl From<&FFI_CatalogProviderList> for ForeignCatalogProviderList { | ||
| fn from(provider: &FFI_CatalogProviderList) -> Self { | ||
| Self(provider.clone()) | ||
| } | ||
| } | ||
|
|
||
| impl Clone for FFI_CatalogProviderList { | ||
| fn clone(&self) -> Self { | ||
| unsafe { (self.clone)(self) } | ||
| } | ||
| } | ||
|
|
||
| impl CatalogProviderList for ForeignCatalogProviderList { | ||
| fn as_any(&self) -> &dyn Any { | ||
| self | ||
| } | ||
|
|
||
| fn register_catalog( | ||
| &self, | ||
| name: String, | ||
| catalog: Arc<dyn CatalogProvider>, | ||
| ) -> Option<Arc<dyn CatalogProvider>> { | ||
| unsafe { | ||
| let catalog = match catalog.as_any().downcast_ref::<ForeignCatalogProvider>() | ||
| { | ||
| Some(s) => &s.0, | ||
| None => &FFI_CatalogProvider::new(catalog, None), | ||
| }; | ||
|
|
||
| (self.0.register_catalog)(&self.0, name.into(), catalog) | ||
| .map(|s| Arc::new(ForeignCatalogProvider(s)) as Arc<dyn CatalogProvider>) | ||
| .into() | ||
| } | ||
| } | ||
|
|
||
| fn catalog_names(&self) -> Vec<String> { | ||
| unsafe { | ||
| (self.0.catalog_names)(&self.0) | ||
| .into_iter() | ||
| .map(Into::into) | ||
| .collect() | ||
| } | ||
| } | ||
|
|
||
| fn catalog(&self, name: &str) -> Option<Arc<dyn CatalogProvider>> { | ||
| unsafe { | ||
| (self.0.catalog)(&self.0, name.into()) | ||
| .map(|catalog| { | ||
| Arc::new(ForeignCatalogProvider(catalog)) as Arc<dyn CatalogProvider> | ||
| }) | ||
| .into() | ||
| } | ||
| } | ||
| } | ||
|
|
||
| #[cfg(test)] | ||
| mod tests { | ||
| use datafusion::catalog::{MemoryCatalogProvider, MemoryCatalogProviderList}; | ||
|
|
||
| use super::*; | ||
|
|
||
| #[test] | ||
| fn test_round_trip_ffi_catalog_provider_list() { | ||
| let prior_catalog = Arc::new(MemoryCatalogProvider::new()); | ||
|
|
||
| let catalog_list = Arc::new(MemoryCatalogProviderList::new()); | ||
| assert!(catalog_list | ||
| .as_ref() | ||
| .register_catalog("prior_catalog".to_owned(), prior_catalog) | ||
| .is_none()); | ||
|
|
||
| let ffi_catalog_list = FFI_CatalogProviderList::new(catalog_list, None); | ||
|
|
||
| let foreign_catalog_list: ForeignCatalogProviderList = (&ffi_catalog_list).into(); | ||
|
|
||
| let prior_catalog_names = foreign_catalog_list.catalog_names(); | ||
| assert_eq!(prior_catalog_names.len(), 1); | ||
| assert_eq!(prior_catalog_names[0], "prior_catalog"); | ||
|
|
||
| // Replace an existing catalog with one of the same name | ||
| let returned_catalog = foreign_catalog_list.register_catalog( | ||
| "prior_catalog".to_owned(), | ||
| Arc::new(MemoryCatalogProvider::new()), | ||
| ); | ||
| assert!(returned_catalog.is_some()); | ||
| assert_eq!(foreign_catalog_list.catalog_names().len(), 1); | ||
|
|
||
| // Add a new catalog | ||
| let returned_catalog = foreign_catalog_list.register_catalog( | ||
| "second_catalog".to_owned(), | ||
| Arc::new(MemoryCatalogProvider::new()), | ||
| ); | ||
| assert!(returned_catalog.is_none()); | ||
| assert_eq!(foreign_catalog_list.catalog_names().len(), 2); | ||
|
|
||
| // Retrieve non-existent catalog | ||
| let returned_catalog = foreign_catalog_list.catalog("non_existent_catalog"); | ||
| assert!(returned_catalog.is_none()); | ||
|
|
||
| // Retrieve valid catalog | ||
| let returned_catalog = foreign_catalog_list.catalog("second_catalog"); | ||
| assert!(returned_catalog.is_some()); | ||
| } | ||
| } | ||
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.