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 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
|
/*
* Copyright 2018-2019, Intel Corporation
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* * 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.
*
* * 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
* OWNER 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.
*/
/**
* @file
* Iterators for pmem::obj::array
*/
#ifndef LIBPMEMOBJ_CPP_ARRAY_ITERATOR_HPP
#define LIBPMEMOBJ_CPP_ARRAY_ITERATOR_HPP
#include <algorithm>
#include <cassert>
#include <functional>
#include <libpmemobj++/detail/common.hpp>
namespace pmem
{
namespace obj
{
namespace experimental
{
/**
* Base class for iterators which satisfies RandomAccessIterator
* and operate on contiguous memory.
*/
template <typename Iterator, typename Reference, typename Pointer>
struct contiguous_iterator {
/**
* Constructor taking a pointer.
*/
constexpr contiguous_iterator(Pointer begin) : ptr(begin)
{
}
/**
* Dereference operator.
*/
Reference operator*() const
{
return *ptr;
}
/**
* Arrow operator.
*/
Pointer operator->() const
{
return ptr;
}
/**
* Prefix increment operator.
*/
Iterator &
operator++()
{
static_cast<Iterator *>(this)->change_by(1);
return *static_cast<Iterator *>(this);
}
/**
* Postfix increment operator.
*/
Iterator
operator++(int)
{
Iterator tmp(*static_cast<Iterator *>(this));
static_cast<Iterator *>(this)->change_by(1);
return tmp;
}
/**
* Prefix decrement operator.
*/
Iterator &
operator--()
{
static_cast<Iterator *>(this)->change_by(-1);
return *static_cast<Iterator *>(this);
}
/**
* Postfix decrement operator.
*/
Iterator
operator--(int)
{
Iterator tmp(*static_cast<Iterator *>(this));
static_cast<Iterator *>(this)->change_by(-1);
return tmp;
}
/**
* Addition assignment operator.
*/
Iterator &
operator+=(std::ptrdiff_t n)
{
static_cast<Iterator *>(this)->change_by(n);
return *static_cast<Iterator *>(this);
}
/**
* Subtraction assignment operator.
*/
Iterator &
operator-=(std::ptrdiff_t n)
{
static_cast<Iterator *>(this)->change_by(-n);
return *static_cast<Iterator *>(this);
}
/**
* Addition operator.
*/
Iterator
operator+(std::ptrdiff_t n)
{
Iterator tmp(*static_cast<Iterator *>(this));
tmp += n;
return tmp;
}
/**
* Subtraction operator overload for integral type.
*/
Iterator
operator-(std::ptrdiff_t n)
{
Iterator tmp(*static_cast<Iterator *>(this));
tmp -= n;
return tmp;
}
/**
* Subtraction operator overload Iterator type.
*/
friend std::ptrdiff_t
operator-(const Iterator &lhs, const Iterator &rhs)
{
return lhs.ptr - rhs.ptr;
}
/**
* Element access operator.
*/
Reference operator[](std::size_t n)
{
return ptr[n];
}
Pointer
get_ptr() const
{
return ptr;
}
protected:
/**
* Function for changing underlying pointer.
* This is where static polymorphism is used. Derived classes
* can override this method and snapshot data if necessary.
*/
void
change_by(std::ptrdiff_t n)
{
ptr += n;
}
Pointer ptr;
};
template <typename T>
struct const_contiguous_iterator;
/**
* This struct provides comparison operators between const_contiguous_iterator
* for specified type (as all iterators can be converted to const_iterator this
* allows to compare all of them).
*/
template <typename T>
struct operator_base {
/**
* Non-member equal operator.
*/
friend bool
operator==(const const_contiguous_iterator<T> &lhs,
const const_contiguous_iterator<T> &rhs)
{
return lhs.get_ptr() == rhs.get_ptr();
}
/**
* Non-member not equal operator.
*/
friend bool
operator!=(const const_contiguous_iterator<T> &lhs,
const const_contiguous_iterator<T> &rhs)
{
return !(lhs == rhs);
}
/**
* Non-member less than operator.
*/
friend bool
operator<(const const_contiguous_iterator<T> &lhs,
const const_contiguous_iterator<T> &rhs)
{
return lhs.get_ptr() < rhs.get_ptr();
}
/**
* Non-member greater than operator.
*/
friend bool
operator>(const const_contiguous_iterator<T> &lhs,
const const_contiguous_iterator<T> &rhs)
{
return lhs.get_ptr() > rhs.get_ptr();
}
/**
* Non-member less or equal operator.
*/
friend bool
operator<=(const const_contiguous_iterator<T> &lhs,
const const_contiguous_iterator<T> &rhs)
{
return !(lhs > rhs);
}
/**
* Non-member greater or equal operator.
*/
friend bool
operator>=(const const_contiguous_iterator<T> &lhs,
const const_contiguous_iterator<T> &rhs)
{
return !(lhs < rhs);
}
};
/**
* Non-const iterator which adds elements to a transaction in a bulk.
*
* This is done by dividing underlying array into ranges of specified
* (snapshot_size) size. If iterator is incremented/decremented/etc.
* so that it is moved to another range, this new range is added to
* a transaction.
*
* For example, let's assume snapshot_size = 2, N = 6. This gives us:
* 0 1 | 2 3 | 4 5
*
* If iterator is moved from 1 to 3, that means it is now in another
* range, and that range must be added to a transaction
* (elements 2 and 3).
*/
template <typename T>
struct range_snapshotting_iterator
: public contiguous_iterator<range_snapshotting_iterator<T>, T &, T *>,
public operator_base<T> {
using iterator_category = std::random_access_iterator_tag;
using value_type = T;
using difference_type = std::ptrdiff_t;
using reference = T &;
using pointer = T *;
using base_type = contiguous_iterator<range_snapshotting_iterator<T>,
reference, pointer>;
/**
* Constructor taking pointer to data, pointer to the beginning
* of the array and snapshot_size.
*/
range_snapshotting_iterator(pointer ptr = nullptr,
pointer data = nullptr,
std::size_t size = 0,
std::size_t snapshot_size = 1)
: base_type(ptr),
data(data),
size(size),
snapshot_size(snapshot_size)
{
assert(data <= ptr);
if (snapshot_size > 0)
snapshot_range(ptr);
}
/**
* Element access operator.
*
* Adds element to a transaction.
*/
reference operator[](std::size_t n)
{
detail::conditional_add_to_tx(&this->ptr[n]);
return base_type::operator[](n);
}
/**
* Non-member swap function.
*/
friend void
swap(range_snapshotting_iterator &lhs, range_snapshotting_iterator &rhs)
{
std::swap(lhs.ptr, rhs.ptr);
std::swap(lhs.data, rhs.data);
std::swap(lhs.size, rhs.size);
std::swap(lhs.snapshot_size, rhs.snapshot_size);
}
template <typename Iterator, typename Reference, typename Pointer>
friend struct contiguous_iterator;
protected:
void
change_by(std::ptrdiff_t n)
{
conditional_snapshot_range(this->ptr, n);
base_type::change_by(n);
}
private:
/*
* Conditionally snapshot range of length snapshot_size,
* which contain address equal to ptr + diff.
*/
void
conditional_snapshot_range(pointer ptr, difference_type diff)
{
if (snapshot_size == 0)
return;
auto new_ptr = ptr + diff;
/* if new pointer is outside of the array */
if (new_ptr < data || new_ptr >= data + size)
return;
/* if new pointer is in the same range */
if (static_cast<std::size_t>(ptr - data) / snapshot_size ==
static_cast<std::size_t>(new_ptr - data) / snapshot_size)
return;
snapshot_range(new_ptr);
}
void
snapshot_range(pointer ptr)
{
/* align index to snapshot_size */
auto range_begin =
ptr - static_cast<uint64_t>(ptr - data) % snapshot_size;
auto range_size = snapshot_size;
if (range_begin + range_size > data + size)
range_size = static_cast<uint64_t>(data + size -
range_begin);
#ifndef NDEBUG
verify_range(range_begin, range_size);
#endif
detail::conditional_add_to_tx(range_begin, range_size);
}
#ifndef NDEBUG
void
verify_range(pointer range_begin, uint64_t range_size)
{
auto range_offset = static_cast<uint64_t>(range_begin - data);
assert(range_begin >= data);
assert(range_offset % snapshot_size == 0);
assert((range_offset + range_size) % snapshot_size == 0 ||
range_begin + range_size == data + size);
}
#endif
pointer data;
std::size_t size;
std::size_t snapshot_size;
};
/**
* Default non-const iterator which adds element to a transaction
* on every access.
*/
template <typename T>
struct basic_contiguous_iterator
: public contiguous_iterator<basic_contiguous_iterator<T>, T &, T *>,
public operator_base<T> {
using iterator_category = std::random_access_iterator_tag;
using value_type = T;
using difference_type = std::ptrdiff_t;
using reference = T &;
using pointer = T *;
using base_type = contiguous_iterator<basic_contiguous_iterator<T>,
reference, pointer>;
/**
* Constructor taking pointer and snapshotting function as
* arguments.
*/
basic_contiguous_iterator(pointer ptr = nullptr) : base_type(ptr)
{
}
/**
* Dereference operator which adds dereferenced element to
* a transaction.
*/
reference operator*() const
{
detail::conditional_add_to_tx(this->ptr);
return base_type::operator*();
}
/**
* Arrow operator which adds underlying element to
* a transactions.
*/
pointer operator->() const
{
detail::conditional_add_to_tx(this->ptr);
return base_type::operator->();
}
/**
* Element access operator.
*
* Adds range containing specified element to a transaction.
*/
reference operator[](std::size_t n)
{
detail::conditional_add_to_tx(&this->ptr[n]);
return base_type::operator[](n);
}
/**
* Non-member swap function.
*/
friend void
swap(basic_contiguous_iterator &lhs, basic_contiguous_iterator &rhs)
{
std::swap(lhs.ptr, rhs.ptr);
}
};
/**
* Const iterator.
*/
template <typename T>
struct const_contiguous_iterator
: public contiguous_iterator<const_contiguous_iterator<T>, const T &,
const T *>,
public operator_base<T> {
using iterator_category = std::random_access_iterator_tag;
using value_type = T;
using difference_type = std::ptrdiff_t;
using reference = const T &;
using pointer = const T *;
using base_type = contiguous_iterator<const_contiguous_iterator<T>,
reference, pointer>;
/**
* Constructor taking pointer as argument.
*/
const_contiguous_iterator(pointer ptr = nullptr) : base_type(ptr)
{
}
/**
* Conversion operator from non-const iterator.
*/
const_contiguous_iterator(const basic_contiguous_iterator<T> &other)
: base_type(other.get_ptr())
{
}
/**
* Conversion operator from non-const iterator.
*/
const_contiguous_iterator(const range_snapshotting_iterator<T> &other)
: base_type(other.get_ptr())
{
}
/**
* Non-member swap function.
*/
friend void
swap(const_contiguous_iterator &lhs, const_contiguous_iterator &rhs)
{
std::swap(lhs.ptr, rhs.ptr);
}
};
} /* namespace experimental */
} /* namespace obj */
} /* namespace pmem */
#endif /* LIBPMEMOBJ_CPP_ARRAY_ITERATOR_HPP */
|