Skip to content

Commit ec77d85

Browse files
committed
Implement RecordBatchFileReader::readRecordBatchAtIndex(...)
1 parent 35c7cad commit ec77d85

File tree

3 files changed

+44
-2
lines changed

3 files changed

+44
-2
lines changed

matlab/src/cpp/arrow/matlab/error/error.h

+2
Original file line numberDiff line numberDiff line change
@@ -244,5 +244,7 @@ static const char* C_EXPORT_FAILED = "arrow:c:export:ExportFailed";
244244
static const char* C_IMPORT_FAILED = "arrow:c:import:ImportFailed";
245245
static const char* IPC_RECORD_BATCH_WRITE_FAILED = "arrow:io:ipc:FailedToWriteRecordBatch";
246246
static const char* IPC_RECORD_BATCH_READER_OPEN_FAILED = "arrow:io:ipc:FailedToOpenRecordBatchReader";
247+
static const char* IPC_RECORD_BATCH_READ_INVALID_INDEX = "arrow:io:ipc:InvalidIndex";
248+
static const char* IPC_RECORD_BATCH_READ_FAILED = "arrow:io:ipc:ReadFailed";
247249

248250
} // namespace arrow::matlab::error

matlab/src/cpp/arrow/matlab/io/ipc/proxy/record_batch_file_reader.cc

+39-2
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,31 @@
1818
#include "arrow/io/file.h"
1919
#include "arrow/matlab/error/error.h"
2020
#include "arrow/matlab/io/ipc/proxy/record_batch_file_reader.h"
21+
#include "arrow/matlab/tabular/proxy/record_batch.h"
2122
#include "arrow/matlab/tabular/proxy/schema.h"
2223
#include "arrow/util/utf8.h"
2324

2425
#include "libmexclass/proxy/ProxyManager.h"
2526

2627
namespace arrow::matlab::io::ipc::proxy {
2728

29+
namespace {
30+
libmexclass::error::Error makeInvalidNumericIndexError(const int32_t matlab_index,
31+
const int32_t num_batches) {
32+
std::stringstream error_message_stream;
33+
error_message_stream << "Invalid record batch index: ";
34+
error_message_stream << matlab_index;
35+
error_message_stream << ". Record batch index must be between 1 and the number of record batches (";
36+
error_message_stream << num_batches;
37+
error_message_stream << ").";
38+
return libmexclass::error::Error{error::IPC_RECORD_BATCH_READ_INVALID_INDEX, error_message_stream.str()};
39+
}
40+
}
41+
2842
RecordBatchFileReader::RecordBatchFileReader(const std::shared_ptr<arrow::ipc::RecordBatchFileReader> reader)
2943
: reader{std::move(reader)} {
3044
REGISTER_METHOD(RecordBatchFileReader, getNumRecordBatches);
3145
REGISTER_METHOD(RecordBatchFileReader, getSchema);
32-
3346
}
3447

3548
libmexclass::proxy::MakeResult RecordBatchFileReader::make(const libmexclass::proxy::FunctionArguments& constructor_arguments) {
@@ -75,9 +88,33 @@ void RecordBatchFileReader::getSchema(libmexclass::proxy::method::Context& conte
7588
mda::ArrayFactory factory;
7689
const auto schema_proxy_id_mda = factory.createScalar(schema_proxy_id);
7790
context.outputs[0] = schema_proxy_id_mda;
78-
7991
}
8092

93+
void RecordBatchFileReader::readRecordBatchAtIndex(libmexclass::proxy::method::Context& context) {
94+
namespace mda = ::matlab::data;
95+
using RecordBatchProxy = arrow::matlab::tabular::proxy::RecordBatch;
96+
97+
mda::StructArray opts = context.inputs[0];
98+
const mda::TypedArray<int32_t> matlab_index_mda = opts[0]["Index"];
99+
100+
const auto matlab_index = matlab_index_mda[0];
101+
const auto num_record_batches = reader->num_record_batches();
102+
if (matlab_index < 1 || matlab_index > num_record_batches) {
103+
context.error = makeInvalidNumericIndexError(matlab_index, num_record_batches);
104+
return;
105+
}
106+
const auto arrow_index = matlab_index - 1;
107+
108+
MATLAB_ASSIGN_OR_ERROR_WITH_CONTEXT(const auto record_batch, reader->ReadRecordBatch(arrow_index),
109+
context, error::IPC_RECORD_BATCH_READ_FAILED);
110+
111+
auto record_batch_proxy = std::make_shared<RecordBatchProxy>(std::move(record_batch));
112+
const auto record_batch_proxy_id = libmexclass::proxy::ProxyManager::manageProxy(record_batch_proxy);
113+
114+
mda::ArrayFactory factory;
115+
const auto record_batch_proxyy_id_mda = factory.createScalar(record_batch_proxy_id);
116+
context.outputs[0] = record_batch_proxyy_id_mda;
117+
}
81118

82119

83120

matlab/src/cpp/arrow/matlab/io/ipc/proxy/record_batch_file_reader.h

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ class RecordBatchFileReader : public libmexclass::proxy::Proxy {
3737

3838
void getSchema(libmexclass::proxy::method::Context& context);
3939

40+
void readRecordBatchAtIndex(libmexclass::proxy::method::Context& context);
41+
42+
4043

4144
};
4245

0 commit comments

Comments
 (0)