@@ -68,8 +68,7 @@ class TileBase {
68
68
const Datatype type,
69
69
const uint64_t cell_size,
70
70
const uint64_t size,
71
- tdb::pmr::memory_resource* resource,
72
- const bool skip_waiting_on_io_task);
71
+ tdb::pmr::memory_resource* resource);
73
72
74
73
DISABLE_COPY_AND_COPY_ASSIGN (TileBase);
75
74
DISABLE_MOVE_AND_MOVE_ASSIGN (TileBase);
@@ -182,11 +181,6 @@ class TileBase {
182
181
183
182
/* * The tile data type. */
184
183
Datatype type_;
185
-
186
- /* *
187
- * Whether to block waiting for io data to be ready before accessing data()
188
- */
189
- const bool skip_waiting_on_io_task_;
190
184
};
191
185
192
186
/* *
@@ -220,9 +214,6 @@ class Tile : public TileBase {
220
214
* @param filtered_size The filtered size to allocate.
221
215
* @param memory_tracker The memory resource to use.
222
216
* @param filtered_data_io_task The I/O task to wait on for data to be valid.
223
- * @param skip_waiting_on_io_task whether to skip waiting on I/O tasks and
224
- * directly access data() or block. By default is false, so by default we
225
- * block waiting. Used when we create generic tiles or in testing.
226
217
*/
227
218
Tile (
228
219
const format_version_t format_version,
@@ -233,8 +224,7 @@ class Tile : public TileBase {
233
224
void * filtered_data,
234
225
uint64_t filtered_size,
235
226
shared_ptr<MemoryTracker> memory_tracker,
236
- ThreadPool::SharedTask filtered_data_io_task,
237
- const bool skip_waiting_on_io_task = false );
227
+ std::optional<ThreadPool::SharedTask> filtered_data_io_task);
238
228
239
229
/* *
240
230
* Constructor.
@@ -249,9 +239,6 @@ class Tile : public TileBase {
249
239
* @param filtered_size The filtered size to allocate.
250
240
* @param resource The memory resource to use.
251
241
* @param filtered_data_io_task The I/O task to wait on for data to be valid.
252
- * @param skip_waiting_on_io_task whether to skip waiting on I/O tasks and
253
- * directly access data() or block. By default is false, so by default we
254
- * block waiting. Used when we create generic tiles or in testing.
255
242
*/
256
243
Tile (
257
244
const format_version_t format_version,
@@ -262,8 +249,7 @@ class Tile : public TileBase {
262
249
void * filtered_data,
263
250
uint64_t filtered_size,
264
251
tdb::pmr::memory_resource* resource,
265
- ThreadPool::SharedTask filtered_data_io_task,
266
- const bool skip_waiting_on_io_task = false );
252
+ std::optional<ThreadPool::SharedTask> filtered_data_io_task);
267
253
268
254
DISABLE_MOVE_AND_MOVE_ASSIGN (Tile);
269
255
DISABLE_COPY_AND_COPY_ASSIGN (Tile);
@@ -295,10 +281,10 @@ class Tile : public TileBase {
295
281
296
282
/* * Returns the buffer that contains the filtered, on-disk format. */
297
283
inline char * filtered_data () {
298
- if (!skip_waiting_on_io_task_) {
299
- std::scoped_lock<std::recursive_mutex> lock{filtered_data_io_task_mtx_};
300
- if (filtered_data_io_task_.valid ()) {
301
- throw_if_not_ok (filtered_data_io_task_.wait ());
284
+ std::scoped_lock<std::recursive_mutex> lock{filtered_data_io_task_mtx_};
285
+ if (filtered_data_io_task_. has_value ()) {
286
+ if (filtered_data_io_task_.value (). valid ()) {
287
+ throw_if_not_ok (filtered_data_io_task_.value (). wait ());
302
288
} else {
303
289
throw std::future_error (std::future_errc::no_state);
304
290
}
@@ -310,21 +296,23 @@ class Tile : public TileBase {
310
296
template <class T >
311
297
inline T* filtered_data_as () {
312
298
std::scoped_lock<std::recursive_mutex> lock{filtered_data_io_task_mtx_};
313
- if (filtered_data_io_task_.valid ()) {
314
- throw_if_not_ok (filtered_data_io_task_.wait ());
315
- } else {
316
- throw std::future_error (std::future_errc::no_state);
299
+ if (filtered_data_io_task_.has_value ()) {
300
+ if (filtered_data_io_task_.value ().valid ()) {
301
+ throw_if_not_ok (filtered_data_io_task_.value ().wait ());
302
+ } else {
303
+ throw std::future_error (std::future_errc::no_state);
304
+ }
317
305
}
318
306
319
307
return static_cast <T*>(filtered_data_);
320
308
}
321
309
322
310
/* * Clears the filtered buffer. */
323
311
void clear_filtered_buffer () {
324
- if (!skip_waiting_on_io_task_) {
325
- std::scoped_lock<std::recursive_mutex> lock{filtered_data_io_task_mtx_};
326
- if (filtered_data_io_task_.valid ()) {
327
- throw_if_not_ok (filtered_data_io_task_.wait ());
312
+ std::scoped_lock<std::recursive_mutex> lock{filtered_data_io_task_mtx_};
313
+ if (filtered_data_io_task_. has_value ()) {
314
+ if (filtered_data_io_task_.value (). valid ()) {
315
+ throw_if_not_ok (filtered_data_io_task_.value (). wait ());
328
316
} else {
329
317
throw std::future_error (std::future_errc::no_state);
330
318
}
@@ -425,7 +413,7 @@ class Tile : public TileBase {
425
413
uint64_t filtered_size_;
426
414
427
415
/* * I/O task to check and block on if filtered data is ready. */
428
- mutable ThreadPool::SharedTask filtered_data_io_task_;
416
+ mutable std::optional< ThreadPool::SharedTask> filtered_data_io_task_;
429
417
430
418
/* *
431
419
* Lock for checking task, since this tile can be used by multiple threads.
@@ -484,8 +472,7 @@ class WriterTile : public TileBase {
484
472
const Datatype type,
485
473
const uint64_t cell_size,
486
474
const uint64_t size,
487
- shared_ptr<MemoryTracker> memory_tracker,
488
- const bool skip_waiting_on_io_task = false );
475
+ shared_ptr<MemoryTracker> memory_tracker);
489
476
490
477
/* *
491
478
* Constructor.
@@ -501,8 +488,7 @@ class WriterTile : public TileBase {
501
488
const Datatype type,
502
489
const uint64_t cell_size,
503
490
const uint64_t size,
504
- tdb::pmr::memory_resource* resource,
505
- const bool skip_waiting_on_io_task = false );
491
+ tdb::pmr::memory_resource* resource);
506
492
507
493
DISABLE_COPY_AND_COPY_ASSIGN (WriterTile);
508
494
DISABLE_MOVE_AND_MOVE_ASSIGN (WriterTile);
0 commit comments