Top | ![]() |
![]() |
![]() |
![]() |
guint64 | garrow_seekable_input_stream_get_size () |
gboolean | garrow_seekable_input_stream_get_support_zero_copy () |
GArrowBuffer * | garrow_seekable_input_stream_read_at () |
GArrowTensor * | garrow_seekable_input_stream_read_tensor () |
GArrowBufferInputStream * | garrow_buffer_input_stream_new () |
GArrowBuffer * | garrow_buffer_input_stream_get_buffer () |
GArrowMemoryMappedInputStream * | garrow_memory_mapped_input_stream_new () |
GArrowGIOInputStream * | garrow_gio_input_stream_new () |
GInputStream * | garrow_gio_input_stream_get_raw () |
#define | GARROW_TYPE_INPUT_STREAM |
struct | GArrowInputStreamClass |
#define | GARROW_TYPE_SEEKABLE_INPUT_STREAM |
struct | GArrowSeekableInputStreamClass |
#define | GARROW_TYPE_BUFFER_INPUT_STREAM |
struct | GArrowBufferInputStreamClass |
struct | GArrowMemoryMappedInputStream |
struct | GArrowGIOInputStream |
GObject ╰── GArrowInputStream ╰── GArrowSeekableInputStream ├── GArrowGIOInputStream ╰── GArrowMemoryMappedInputStream
GArrowInputStream is a base class for input stream.
GArrowSeekableInputStream is a base class for input stream that supports random access.
GArrowBufferInputStream is a class to read data on buffer.
GArrowMemoryMappedInputStream is a class to read data in file by mapping the file on memory. It supports zero copy.
GArrowGIOInputStream is a class for GInputStream
based input
stream.
guint64 garrow_seekable_input_stream_get_size (GArrowSeekableInputStream *input_stream
,GError **error
);
gboolean
garrow_seekable_input_stream_get_support_zero_copy
(GArrowSeekableInputStream *input_stream
);
GArrowBuffer * garrow_seekable_input_stream_read_at (GArrowSeekableInputStream *input_stream
,gint64 position
,gint64 n_bytes
,GError **error
);
GArrowTensor * garrow_seekable_input_stream_read_tensor (GArrowSeekableInputStream *input_stream
,gint64 position
,GError **error
);
input_stream |
A GArrowSeekableInputStream. |
|
position |
The read start position. |
|
error |
Return location for a GError or |
[nullable] |
Since: 0.4.0
GArrowBufferInputStream *
garrow_buffer_input_stream_new (GArrowBuffer *buffer
);
GArrowBuffer *
garrow_buffer_input_stream_get_buffer (GArrowBufferInputStream *input_stream
);
GArrowMemoryMappedInputStream * garrow_memory_mapped_input_stream_new (const gchar *path
,GError **error
);
GArrowGIOInputStream *
garrow_gio_input_stream_new (GInputStream *gio_input_stream
);
Since: 0.5.0
GInputStream *
garrow_gio_input_stream_get_raw (GArrowGIOInputStream *input_stream
);
Since: 0.5.0
struct GArrowSeekableInputStreamClass { GArrowInputStreamClass parent_class; };
struct GArrowBufferInputStreamClass { GArrowSeekableInputStreamClass parent_class; };
struct GArrowMemoryMappedInputStream;
It wraps arrow::io::MemoryMappedFile
.