Expand description
Contains declarations to bind to the C Stream Interface.
This module has two main interfaces: One interface maps C ABI to native Rust types, i.e. convert c-pointers, c_char, to native rust. This is handled by FFI_ArrowArrayStream.
The second interface is used to import FFI_ArrowArrayStream as Rust implementation RecordBatch reader.
This is handled by ArrowArrayStreamReader.
β
// create an record batch reader natively
let file = File::open("arrow_file").unwrap();
let reader = Box::new(FileReader::try_new(file).unwrap());
// export it
let mut stream = FFI_ArrowArrayStream::empty();
unsafe { export_reader_into_raw(reader, &mut stream) };
// consumed and used by something else...
// import it
let stream_reader = unsafe { ArrowArrayStreamReader::from_raw(&mut stream).unwrap() };
let imported_schema = stream_reader.schema();
let mut produced_batches = vec![];
for batch in stream_reader {
produced_batches.push(batch.unwrap());
}
Ok(())
}StructsΒ§
- Arrow
Array Stream Reader - A
RecordBatchReaderwhich imports Arrays fromFFI_ArrowArrayStream. - Exported
Array πStream - FFI_
Arrow Array Stream - ABI-compatible struct for
ArrayStreamfrom C Stream Interface See https://arrow.apache.org/docs/format/CStreamInterface.html#structure-definitions This was created by bindgen - Stream
Private πData
FunctionsΒ§
- get_
error_ πcode - get_
last_ π βerror - get_
next π β - get_
schema π β - get_
stream_ πschema - Gets schema from a raw pointer of
FFI_ArrowArrayStream. This is used when constructingArrowArrayStreamReaderto cache schema. - producer_
error π β - Returns the producerβs message for the last failed call on a
FFI_ArrowArrayStream. - release_
stream π β
Type AliasesΒ§
- Result π