19
19
#include " arrow/io/file.h"
20
20
#include " arrow/matlab/error/error.h"
21
21
#include " arrow/matlab/tabular/proxy/record_batch.h"
22
- #include " arrow/matlab/tabular/proxy/table.h"
23
22
#include " arrow/matlab/tabular/proxy/schema.h"
23
+ #include " arrow/matlab/tabular/proxy/table.h"
24
24
#include " arrow/util/utf8.h"
25
25
26
26
#include " libmexclass/proxy/ProxyManager.h"
@@ -39,7 +39,8 @@ RecordBatchStreamReader::RecordBatchStreamReader(
39
39
libmexclass::proxy::MakeResult RecordBatchStreamReader::make (
40
40
const libmexclass::proxy::FunctionArguments& constructor_arguments) {
41
41
namespace mda = ::matlab::data;
42
- using RecordBatchStreamReaderProxy = arrow::matlab::io::ipc::proxy::RecordBatchStreamReader;
42
+ using RecordBatchStreamReaderProxy =
43
+ arrow::matlab::io::ipc::proxy::RecordBatchStreamReader;
43
44
44
45
const mda::StructArray opts = constructor_arguments[0 ];
45
46
@@ -74,12 +75,12 @@ void RecordBatchStreamReader::getSchema(libmexclass::proxy::method::Context& con
74
75
context.outputs [0 ] = schema_proxy_id_mda;
75
76
}
76
77
77
- void RecordBatchStreamReader::readTable (
78
- libmexclass::proxy::method::Context& context) {
78
+ void RecordBatchStreamReader::readTable (libmexclass::proxy::method::Context& context) {
79
79
namespace mda = ::matlab::data;
80
80
using TableProxy = arrow::matlab::tabular::proxy::Table;
81
81
82
- MATLAB_ASSIGN_OR_ERROR_WITH_CONTEXT (auto table, reader->ToTable (), context, error::IPC_TABLE_READ_FAILED);
82
+ MATLAB_ASSIGN_OR_ERROR_WITH_CONTEXT (auto table, reader->ToTable (), context,
83
+ error::IPC_TABLE_READ_FAILED);
83
84
auto table_proxy = std::make_shared<TableProxy>(table);
84
85
const auto table_proxy_id = libmexclass::proxy::ProxyManager::manageProxy (table_proxy);
85
86
@@ -93,20 +94,27 @@ void RecordBatchStreamReader::readRecordBatch(
93
94
namespace mda = ::matlab::data;
94
95
using RecordBatchProxy = arrow::matlab::tabular::proxy::RecordBatch;
95
96
using namespace libmexclass ::error;
96
- // If we don't have a "pre-cached" record batch to return, then try reading another record batch
97
- // from the IPC Stream. If there are no more record batches in the stream, then error.
97
+ // If we don't have a "pre-cached" record batch to return, then try reading another
98
+ // record batch from the IPC Stream. If there are no more record batches in the stream,
99
+ // then error.
98
100
if (!nextRecordBatch) {
99
- MATLAB_ASSIGN_OR_ERROR_WITH_CONTEXT (nextRecordBatch, reader->Next (), context, error::IPC_RECORD_BATCH_READ_FAILED);
101
+ MATLAB_ASSIGN_OR_ERROR_WITH_CONTEXT (nextRecordBatch, reader->Next (), context,
102
+ error::IPC_RECORD_BATCH_READ_FAILED);
100
103
}
101
- // Even if the read was "successful", the resulting record batch may be empty, signalling the end of the stream.
104
+ // Even if the read was "successful", the resulting record batch may be empty,
105
+ // signalling the end of the stream.
102
106
if (!nextRecordBatch) {
103
- context.error = Error{" arrow:io:ipc:EndOfStream" , " Reached end of Arrow IPC Stream. No more record batches to read." };
104
- return ;
107
+ context.error =
108
+ Error{" arrow:io:ipc:EndOfStream" ,
109
+ " Reached end of Arrow IPC Stream. No more record batches to read." };
110
+ return ;
105
111
}
106
112
auto record_batch_proxy = std::make_shared<RecordBatchProxy>(nextRecordBatch);
107
- const auto record_batch_proxy_id = libmexclass::proxy::ProxyManager::manageProxy (record_batch_proxy);
113
+ const auto record_batch_proxy_id =
114
+ libmexclass::proxy::ProxyManager::manageProxy (record_batch_proxy);
108
115
// Once we have "consumed" the next RecordBatch, set nextRecordBatch to nullptr
109
- // so that the next call to hasNextRecordBatch correctly checks whether there are more record batches remaining in the IPC Stream.
116
+ // so that the next call to hasNextRecordBatch correctly checks whether there are more
117
+ // record batches remaining in the IPC Stream.
110
118
nextRecordBatch = nullptr ;
111
119
mda::ArrayFactory factory;
112
120
const auto record_batch_proxy_id_mda = factory.createScalar (record_batch_proxy_id);
@@ -118,25 +126,25 @@ void RecordBatchStreamReader::hasNextRecordBatch(
118
126
namespace mda = ::matlab::data;
119
127
bool has_next_record_batch = true ;
120
128
if (!nextRecordBatch) {
121
- // Try to read another RecordBatch from the
122
- // IPC Stream.
123
- auto maybe_record_batch = reader->Next ();
124
- if (!maybe_record_batch.ok ()) {
125
- has_next_record_batch = false ;
126
- } else {
127
- // If we read a RecordBatch successfully,
128
- // then "cache" the RecordBatch
129
- // so that we can return it on the next
130
- // call to readRecordBatch.
131
- nextRecordBatch = *maybe_record_batch;
132
-
133
- // Even if the read was "successful", the resulting
134
- // record batch may be empty, signaling that
135
- // the end of the IPC stream has been reached.
136
- if (!nextRecordBatch) {
137
- has_next_record_batch = false ;
138
- }
139
- }
129
+ // Try to read another RecordBatch from the
130
+ // IPC Stream.
131
+ auto maybe_record_batch = reader->Next ();
132
+ if (!maybe_record_batch.ok ()) {
133
+ has_next_record_batch = false ;
134
+ } else {
135
+ // If we read a RecordBatch successfully,
136
+ // then "cache" the RecordBatch
137
+ // so that we can return it on the next
138
+ // call to readRecordBatch.
139
+ nextRecordBatch = *maybe_record_batch;
140
+
141
+ // Even if the read was "successful", the resulting
142
+ // record batch may be empty, signaling that
143
+ // the end of the IPC stream has been reached.
144
+ if (!nextRecordBatch) {
145
+ has_next_record_batch = false ;
146
+ }
147
+ }
140
148
}
141
149
142
150
mda::ArrayFactory factory;
0 commit comments