140 std::pair<const Slab_*, Index_>
next(Ifunction_ identify, Cfunction_ create, Pfunction_ populate) {
141 Index_ index = this->
next();
142 auto slab_info = identify(index);
143 if (slab_info.first == my_last_slab_id && my_last_slab) {
144 return std::make_pair(my_last_slab, slab_info.second);
146 my_last_slab_id = slab_info.first;
149 if (my_counter - 1 == my_refresh_point) {
153 my_future_cache[slab_info.first] = NULL;
154 my_in_need.push_back(slab_info.first);
155 size_t used_slabs = 1;
156 auto last_future_slab_id = slab_info.first;
158 while (++my_refresh_point < my_total) {
159 auto future_index = my_oracle->get(my_refresh_point);
160 auto future_slab_info = identify(future_index);
161 if (last_future_slab_id == future_slab_info.first) {
165 last_future_slab_id = future_slab_info.first;
166 if (my_future_cache.find(future_slab_info.first) != my_future_cache.end()) {
170 if (used_slabs == my_max_slabs) {
175 auto ccIt = my_current_cache.find(future_slab_info.first);
176 if (ccIt == my_current_cache.end()) {
177 my_future_cache[future_slab_info.first] = NULL;
178 my_in_need.push_back(future_slab_info.first);
181 auto slab_ptr = ccIt->second;
182 my_future_cache[future_slab_info.first] = slab_ptr;
183 my_current_cache.erase(ccIt);
184 if constexpr(track_reuse_) {
185 my_to_reuse.emplace_back(future_slab_info.first, slab_ptr);
190 auto cIt = my_current_cache.begin();
191 for (
auto a : my_in_need) {
192 if (cIt != my_current_cache.end()) {
193 my_to_populate.emplace_back(a, cIt->second);
194 my_future_cache[a] = cIt->second;
199 my_all_slabs.push_back(create());
200 auto slab_ptr = &(my_all_slabs.back());
201 my_to_populate.emplace_back(a, slab_ptr);
202 my_future_cache[a] = slab_ptr;
207 if constexpr(track_reuse_) {
208 populate(my_to_populate, my_to_reuse);
210 populate(my_to_populate);
213 my_to_populate.clear();
214 if constexpr(track_reuse_) {
226 my_current_cache.clear();
227 my_current_cache.swap(my_future_cache);
231 auto ccIt = my_current_cache.find(slab_info.first);
232 my_last_slab = ccIt->second;
233 return std::make_pair(my_last_slab, slab_info.second);