1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
use crate::{CError, CErrorCode};

/// Converts a C-FFI arrow array into a Rust component batch, taking ownership of the underlying arrow data.
///
/// Safety:
/// This must only be ever called once for a given ffi array.
/// Conceptually, this takes ownership of the array, i.e. this should really be a move operation,
/// but since we have typically pass c arrays (ptr + length), we can't actually move out data.
#[allow(unsafe_code)]
#[allow(clippy::result_large_err)]
pub unsafe fn arrow_array_from_c_ffi(
    array: &arrow2::ffi::ArrowArray,
    datatype: arrow2::datatypes::DataType,
) -> Result<arrow::array::ArrayRef, CError> {
    unsafe { arrow2_array_from_c_ffi(array, datatype).map(|array| array.into()) }
}

/// Converts a C-FFI arrow array into a Rust component batch, taking ownership of the underlying arrow data.
///
/// Safety:
/// This must only be ever called once for a given ffi array.
/// Conceptually, this takes ownership of the array, i.e. this should really be a move operation,
/// but since we have typically pass c arrays (ptr + length), we can't actually move out data.
#[allow(unsafe_code)]
#[allow(clippy::result_large_err)]
unsafe fn arrow2_array_from_c_ffi(
    array: &arrow2::ffi::ArrowArray,
    datatype: arrow2::datatypes::DataType,
) -> Result<Box<dyn arrow2::array::Array>, CError> {
    // Arrow2 implements drop for Arrow2Array and Arrow2Schema.
    //
    // Therefore, for things to work correctly we have to take ownership of the array!
    // All methods passing arrow arrays through our C interface are documented to take ownership of the component batch.
    // I.e. the user should NOT call `release`.
    //
    // This makes sense because from here on out we want to manage the lifetime of the underlying schema and array data
    // from the rust side.
    unsafe { arrow2::ffi::import_array_from_c(std::ptr::read(array), datatype) }.map_err(|err| {
        CError::new(
            CErrorCode::ArrowFfiArrayImportError,
            &format!("Failed to import ffi array: {err}"),
        )
    })
}