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ยง
- A
RecordBatchReader
which imports Arrays fromFFI_ArrowArrayStream
. - Exported
Array ๐Stream - ABI-compatible struct for
ArrayStream
from C Stream Interface See https://arrow.apache.org/docs/format/CStreamInterface.html#structure-definitions This was created by bindgen - Stream
Private ๐Data
Constantsยง
Functionsยง
- export_
reader_ โinto_ raw Deprecated Exports a record batch reader to raw pointer of the C Stream Interface provided by the consumer. - get_
error_ ๐code - get_
last_ ๐ โerror - get_
next ๐ โ - get_
schema ๐ โ - get_
stream_ ๐schema Gets schema from a raw pointer ofFFI_ArrowArrayStream
. This is used when constructingArrowArrayStreamReader
to cache schema. - release_
stream ๐ โ
Type Aliasesยง
- Result ๐