[9b26b7]: / third_party / nucleus / io / reader_base.h

Download this file

260 lines (221 with data), 9.2 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
/*
* Copyright 2018 Google LLC.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
#ifndef THIRD_PARTY_NUCLEUS_IO_READER_BASE_H_
#define THIRD_PARTY_NUCLEUS_IO_READER_BASE_H_
#include <algorithm>
#include <iterator>
#include <memory>
#include "absl/synchronization/mutex.h"
#include "third_party/nucleus/util/proto_ptr.h"
#include "third_party/nucleus/core/status.h"
#include "third_party/nucleus/core/statusor.h"
namespace nucleus {
// The classes declared in this file support the functionality of a
// "reader" class that allows iteration over records by a single
// iterator at once.
// IterableBase and Reader are two base classes that are entwined as follows:
// - IterableBase has a reference to a reader, so that we can notify
// the reader when the iterable is destructed, enabling another
// iteration to happen.
// - Reader has a reference to the single live iterable, enabling it
// send a notification if the Reader is destructed before the
// iterable is. This is important for use from Python, where we don't
// control the lifetimes of objects.
class IterableBase; // Forward declaration.
class Reader {
private:
// Weak reference to live extant iterable, or null
mutable IterableBase* live_iterable_ = nullptr;
// Mutex protecting live_iterable_count.
mutable absl::Mutex mutex_;
protected:
// Construct a new Iterable object, *if* we can guarantee that there
// are no other extant Iterable objects for this Reader. If there
// is another extant Iterable, return nullptr. This method should
// be used by subclasses to provide their own methods exposing
// Iterables.
template <class Iterable, class Reader, typename... Args>
std::shared_ptr<Iterable> MakeIterable(Reader* reader, Args&&... args) const {
absl::MutexLock lock(&mutex_);
if (live_iterable_ != nullptr) {
LOG(WARNING) << "Returning null from MakeIterable because there's "
" already an active iterator";
// Wraps |args| so the dtor of Iterable can perform necessary cleanup.
std::make_shared<Iterable>(nullptr, std::forward<Args>(args)...);
return nullptr;
}
Iterable* it = new Iterable(reader, std::forward<Args>(args)...);
live_iterable_ = it;
return std::shared_ptr<Iterable>(it);
}
public:
virtual ~Reader();
friend class IterableBase;
};
class IterableBase {
protected:
const Reader* reader_;
explicit IterableBase(const Reader* reader);
public:
// On destruction, release the reader to be iterated again.
virtual ~IterableBase();
// Method to *explicitly* "release" this iterable to enable another
// iteration to proceed. Returns OK status if the release was successful, or
// an error if not.
nucleus::Status Release();
// Is this iterable alive, in the sense that
// - its reader is still open; and
// - it has not been released?
bool IsAlive() const;
// Iterable implementations should indicate a not-OK status in Next() on
// attempts to iterate on an iterable that is not live. They can call this
// method to do the check and return the status if not OK. The standard usage
// is: NUCLEUS_RETURN_IF_ERROR(CheckIsAlive()) in Next().
nucleus::Status CheckIsAlive() const;
// Python Context manager support---will be wrapped as __enter__ /
// __exit__. This two functions should return an OK status if the enter/exit
// were successful, or an error if not.
nucleus::Status PythonEnter();
nucleus::Status PythonExit();
friend class Reader;
};
// This is the base class that client code should extend.
template <class Record>
class Iterable : public IterableBase {
protected:
explicit Iterable(const Reader* reader) : IterableBase(reader) {}
private:
Record current_record_;
nucleus::Status current_status_ = nucleus::Status();
bool IsOK() { return current_status_.ok(); }
public:
// Abstract interface.
// Next gets the next record.
// Returns:
// true if we successfully got the record (is put in *out);
// false if there are no more records.
virtual StatusOr<bool> Next(Record* record) = 0;
// PythonNext is the same as Next, except the Record is wrapped
// with an EmptyProtoPtr<> template to avoid CLIF copies when being
// called from Python.
StatusOr<bool> PythonNext(EmptyProtoPtr<Record> p) { return Next(p.p_); }
public:
// C++ const iterator class.
class iterator : public std::iterator<std::input_iterator_tag, Record> {
private:
std::shared_ptr<Iterable> iterable_;
bool past_end_;
public:
// Construct an iterator that is either...
// 1) end=false => ...looking at the first record available in the reader
// 2) end=true => ...a sentinel that is "past the end"
explicit iterator(std::shared_ptr<Iterable> iterable, bool end = false)
: iterable_(iterable) {
if (!end) {
past_end_ = false;
++(*this);
} else {
past_end_ = true;
}
}
// Get a "past-the-end" sentinel iterator.
static iterator end(std::shared_ptr<Iterable> iterable) {
return iterator(iterable, true);
}
iterator& operator++() {
if (!past_end_ && iterable_->IsOK()) {
StatusOr<bool> statusor = iterable_->Next(&iterable_->current_record_);
if (statusor.ok()) {
bool advanced = statusor.ValueOrDie();
past_end_ = !advanced;
} else {
iterable_->current_status_ = statusor.status();
}
} else {
past_end_ = true;
}
return *this;
}
iterator operator++(int) {
iterator retval = *this;
++(*this);
return retval;
}
// Note that equality for input iterators needs not be correct for
// comparing iterators neither of which is "past-end".
bool operator==(iterator other) const {
return (iterable_ == other.iterable_) && (past_end_ == other.past_end_);
}
bool operator!=(iterator other) const { return !(*this == other); }
const StatusOr<Record*> operator*() {
if (!iterable_->IsOK()) {
// Something went wrong in the last call to Next(), return its status.
return iterable_->current_status_;
} else if (past_end_) {
// We've attempted to read past the end of the iterator.
return ::nucleus::OutOfRange("iterator past_end_");
} else {
// Normal case: everything is fine, so return the current record.
return &iterable_->current_record_;
}
}
};
public:
// Disable copy.
Iterable(const Iterable&) = delete;
Iterable& operator=(const Iterable&) = delete;
// Enable move.
Iterable(Iterable&&) = default;
Iterable& operator=(Iterable&&) = default;
// begin/end for C++ iterator interface.
// Template parameter A represents the actual Iterable subtype; we
// need to specialize here because there is no input argument
// covariance for shared_ptr.
template <class A>
friend iterator begin(std::shared_ptr<A> iterable) {
// Note it would be better to return a Status or StatusOr here but it seems
// that this is incompatible with iterator interface.
CHECK(iterable)
<< "Invalid Iterable---attempt to iterate multiple times concurrently?";
return iterator(iterable, false);
}
template <class A>
friend iterator end(std::shared_ptr<A> iterable) {
// Note it would be better to return a Status or StatusOr here but it seems
// that this is incompatible with iterator interface.
CHECK(iterable)
<< "Invalid Iterable---attempt to iterate multiple times concurrently?";
return iterator::end(iterable);
}
};
} // namespace nucleus
#endif // THIRD_PARTY_NUCLEUS_IO_READER_BASE_H_