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 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/base/list_container.h"
#include <stddef.h>
#include <algorithm>
#include <array>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "testing/gtest/include/gtest/gtest.h"
namespace cc {
namespace {
// Element class having derived classes.
class DerivedElement {
public:
virtual ~DerivedElement() = default;
protected:
bool bool_values[1];
char char_values[1];
int int_values[1];
long long_values[1];
};
class DerivedElement1 : public DerivedElement {
protected:
bool bool_values1[1];
char char_values1[1];
int int_values1[1];
long long_values1[1];
};
class DerivedElement2 : public DerivedElement {
protected:
bool bool_values2[2];
char char_values2[2];
int int_values2[2];
long long_values2[2];
};
class DerivedElement3 : public DerivedElement {
protected:
bool bool_values3[3];
char char_values3[3];
int int_values3[3];
long long_values3[3];
};
const size_t kLargestDerivedElementSize = sizeof(DerivedElement3);
const size_t kLargestDerivedElementAlign = alignof(DerivedElement3);
static_assert(sizeof(DerivedElement1) <= kLargestDerivedElementSize,
"Largest Derived Element size needs update. DerivedElement1 is "
"currently largest.");
static_assert(sizeof(DerivedElement2) <= kLargestDerivedElementSize,
"Largest Derived Element size needs update. DerivedElement2 is "
"currently largest.");
static_assert(alignof(DerivedElement1) <= kLargestDerivedElementSize,
"Largest Derived Element align needs update. DerivedElement1 is "
"currently largest.");
static_assert(alignof(DerivedElement2) <= kLargestDerivedElementSize,
"Largest Derived Element align needs update. DerivedElement2 is "
"currently largest.");
// Element class having no derived classes.
class NonDerivedElement {
public:
NonDerivedElement() = default;
~NonDerivedElement() = default;
int int_values[1];
};
bool isConstNonDerivedElementPointer(const NonDerivedElement* ptr) {
return true;
}
bool isConstNonDerivedElementPointer(NonDerivedElement* ptr) {
return false;
}
const int kMagicNumberToUseForSimpleDerivedElementOne = 42;
const int kMagicNumberToUseForSimpleDerivedElementTwo = 314;
const int kMagicNumberToUseForSimpleDerivedElementThree = 1618;
class SimpleDerivedElement : public DerivedElement {
public:
SimpleDerivedElement() = default;
explicit SimpleDerivedElement(int val) { value = val; }
~SimpleDerivedElement() override = default;
void set_value(int val) { value = val; }
int get_value() { return value; }
private:
int value;
};
class SimpleDerivedElementConstructMagicNumberOne
: public SimpleDerivedElement {
public:
SimpleDerivedElementConstructMagicNumberOne() {
set_value(kMagicNumberToUseForSimpleDerivedElementOne);
}
~SimpleDerivedElementConstructMagicNumberOne() override = default;
};
class SimpleDerivedElementConstructMagicNumberTwo
: public SimpleDerivedElement {
public:
SimpleDerivedElementConstructMagicNumberTwo() {
set_value(kMagicNumberToUseForSimpleDerivedElementTwo);
}
~SimpleDerivedElementConstructMagicNumberTwo() override = default;
};
class SimpleDerivedElementConstructMagicNumberThree
: public SimpleDerivedElement {
public:
SimpleDerivedElementConstructMagicNumberThree() {
set_value(kMagicNumberToUseForSimpleDerivedElementThree);
}
~SimpleDerivedElementConstructMagicNumberThree() override = default;
};
// This class' instances are moved by ListContainer via memcpy(). This behavior
// is not supported by gmock's FunctionMocker, so this class must roll its own
// mocking code.
class MockDerivedElement : public SimpleDerivedElementConstructMagicNumberOne {
public:
~MockDerivedElement() override {
DestructorCalled();
CheckDestructExpectation();
}
void SetExpectedDestructorCalls(size_t expected_calls) {
expected_destructor_calls_ = expected_calls;
has_expected_destructor_calls_ = true;
}
private:
void DestructorCalled() { ++destructor_calls_; }
void CheckDestructExpectation() {
if (!has_expected_destructor_calls_)
return;
EXPECT_EQ(expected_destructor_calls_, destructor_calls_)
<< "element destructor called the wrong number of times";
}
// Not using std::optional<size_t> here in order to get a precise destructor
// behavior. The tests below need the ability to catch multiple destructor
// calls, and std::optional's destructor might make has_value() return false.
size_t expected_destructor_calls_;
bool has_expected_destructor_calls_ = false;
size_t destructor_calls_ = 0;
};
class MockDerivedElementSubclass : public MockDerivedElement {
public:
MockDerivedElementSubclass() {
set_value(kMagicNumberToUseForSimpleDerivedElementTwo);
}
};
const size_t kCurrentLargestDerivedElementSize =
std::max(kLargestDerivedElementSize, sizeof(MockDerivedElementSubclass));
const size_t kCurrentLargestDerivedElementAlign =
std::max(kLargestDerivedElementAlign, alignof(MockDerivedElementSubclass));
TEST(ListContainerTest, ConstructorCalledInAllocateAndConstruct) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
size_t size = 2;
SimpleDerivedElementConstructMagicNumberOne* de_1 =
list.AllocateAndConstruct<SimpleDerivedElementConstructMagicNumberOne>();
SimpleDerivedElementConstructMagicNumberTwo* de_2 =
list.AllocateAndConstruct<SimpleDerivedElementConstructMagicNumberTwo>();
EXPECT_EQ(size, list.size());
EXPECT_EQ(de_1, list.front());
EXPECT_EQ(de_2, list.back());
EXPECT_EQ(kMagicNumberToUseForSimpleDerivedElementOne, de_1->get_value());
EXPECT_EQ(kMagicNumberToUseForSimpleDerivedElementTwo, de_2->get_value());
}
TEST(ListContainerTest, DestructorCalled) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
size_t size = 1;
MockDerivedElement* de_1 = list.AllocateAndConstruct<MockDerivedElement>();
de_1->SetExpectedDestructorCalls(1);
EXPECT_EQ(size, list.size());
EXPECT_EQ(de_1, list.front());
}
TEST(ListContainerTest, DestructorCalledOnceWhenClear) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
size_t size = 1;
MockDerivedElement* de_1 = list.AllocateAndConstruct<MockDerivedElement>();
EXPECT_EQ(size, list.size());
EXPECT_EQ(de_1, list.front());
// Make sure destructor is called exactly once during clear.
de_1->SetExpectedDestructorCalls(1);
list.clear();
}
TEST(ListContainerTest, ClearDoesNotMalloc) {
const size_t reserve = 10;
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize,
reserve);
// Memory from the initial inner list that should be re-used after clear().
std::vector<DerivedElement*> reserved_element_pointers;
for (size_t i = 0; i < reserve; i++) {
DerivedElement* element = list.AllocateAndConstruct<DerivedElement>();
reserved_element_pointers.push_back(element);
}
EXPECT_EQ(0u, list.AvailableSizeWithoutAnotherAllocationForTesting());
// Allocate more than the reserve count, forcing new capacity to be added.
list.AllocateAndConstruct<DerivedElement>();
EXPECT_NE(0u, list.AvailableSizeWithoutAnotherAllocationForTesting());
// Clear should free all memory except the first |reserve| elements.
list.clear();
EXPECT_EQ(reserve, list.AvailableSizeWithoutAnotherAllocationForTesting());
// Verify the first |reserve| elements are re-used after clear().
for (size_t i = 0; i < reserve; i++) {
DerivedElement* element = list.AllocateAndConstruct<DerivedElement>();
EXPECT_EQ(element, reserved_element_pointers[i]);
}
EXPECT_EQ(0u, list.AvailableSizeWithoutAnotherAllocationForTesting());
// Verify that capacity can still grow properly.
list.AllocateAndConstruct<DerivedElement>();
EXPECT_NE(0u, list.AvailableSizeWithoutAnotherAllocationForTesting());
}
TEST(ListContainerTest, ReplaceExistingElement) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
size_t size = 1;
MockDerivedElement* de_1 = list.AllocateAndConstruct<MockDerivedElement>();
EXPECT_EQ(size, list.size());
EXPECT_EQ(de_1, list.front());
// Make sure destructor is called exactly once during clear.
de_1->SetExpectedDestructorCalls(1);
list.ReplaceExistingElement<MockDerivedElementSubclass>(list.begin());
EXPECT_EQ(kMagicNumberToUseForSimpleDerivedElementTwo, de_1->get_value());
list.clear();
}
TEST(ListContainerTest, DestructorCalledOnceWhenErase) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
size_t size = 1;
MockDerivedElement* de_1 = list.AllocateAndConstruct<MockDerivedElement>();
EXPECT_EQ(size, list.size());
EXPECT_EQ(de_1, list.front());
// Make sure destructor is called exactly once during clear.
de_1->SetExpectedDestructorCalls(1);
list.EraseAndInvalidateAllPointers(list.begin());
}
TEST(ListContainerTest, SimpleIndexAccessNonDerivedElement) {
ListContainer<NonDerivedElement> list(alignof(NonDerivedElement),
sizeof(NonDerivedElement), 0);
size_t size = 3;
NonDerivedElement* nde_1 = list.AllocateAndConstruct<NonDerivedElement>();
NonDerivedElement* nde_2 = list.AllocateAndConstruct<NonDerivedElement>();
NonDerivedElement* nde_3 = list.AllocateAndConstruct<NonDerivedElement>();
EXPECT_EQ(size, list.size());
EXPECT_EQ(nde_1, list.front());
EXPECT_EQ(nde_3, list.back());
EXPECT_EQ(list.front(), list.ElementAt(0));
EXPECT_EQ(nde_2, list.ElementAt(1));
EXPECT_EQ(list.back(), list.ElementAt(2));
}
TEST(ListContainerTest, SimpleInsertionNonDerivedElement) {
ListContainer<NonDerivedElement> list(alignof(NonDerivedElement),
sizeof(NonDerivedElement), 0);
size_t size = 3;
NonDerivedElement* nde_1 = list.AllocateAndConstruct<NonDerivedElement>();
list.AllocateAndConstruct<NonDerivedElement>();
NonDerivedElement* nde_3 = list.AllocateAndConstruct<NonDerivedElement>();
EXPECT_EQ(size, list.size());
EXPECT_EQ(nde_1, list.front());
EXPECT_EQ(nde_3, list.back());
}
TEST(ListContainerTest, SimpleInsertionAndClearNonDerivedElement) {
ListContainer<NonDerivedElement> list(alignof(NonDerivedElement),
sizeof(NonDerivedElement), 0);
EXPECT_TRUE(list.empty());
EXPECT_EQ(0u, list.size());
size_t size = 3;
NonDerivedElement* nde_1 = list.AllocateAndConstruct<NonDerivedElement>();
list.AllocateAndConstruct<NonDerivedElement>();
NonDerivedElement* nde_3 = list.AllocateAndConstruct<NonDerivedElement>();
EXPECT_EQ(size, list.size());
EXPECT_EQ(nde_1, list.front());
EXPECT_EQ(nde_3, list.back());
EXPECT_FALSE(list.empty());
list.clear();
EXPECT_TRUE(list.empty());
EXPECT_EQ(0u, list.size());
}
TEST(ListContainerTest, SimpleInsertionClearAndInsertAgainNonDerivedElement) {
ListContainer<NonDerivedElement> list(alignof(NonDerivedElement),
sizeof(NonDerivedElement), 0);
EXPECT_TRUE(list.empty());
EXPECT_EQ(0u, list.size());
size_t size = 2;
NonDerivedElement* nde_front = list.AllocateAndConstruct<NonDerivedElement>();
NonDerivedElement* nde_back = list.AllocateAndConstruct<NonDerivedElement>();
EXPECT_EQ(size, list.size());
EXPECT_EQ(nde_front, list.front());
EXPECT_EQ(nde_back, list.back());
EXPECT_FALSE(list.empty());
list.clear();
EXPECT_TRUE(list.empty());
EXPECT_EQ(0u, list.size());
size = 3;
nde_front = list.AllocateAndConstruct<NonDerivedElement>();
list.AllocateAndConstruct<NonDerivedElement>();
nde_back = list.AllocateAndConstruct<NonDerivedElement>();
EXPECT_EQ(size, list.size());
EXPECT_EQ(nde_front, list.front());
EXPECT_EQ(nde_back, list.back());
EXPECT_FALSE(list.empty());
}
// This test is used to test when there is more than one allocation needed
// for, ListContainer can still perform like normal vector.
TEST(ListContainerTest,
SimpleInsertionTriggerMoreThanOneAllocationNonDerivedElement) {
ListContainer<NonDerivedElement> list(alignof(NonDerivedElement),
sizeof(NonDerivedElement), 2);
std::vector<NonDerivedElement*> nde_list;
size_t size = 10;
for (size_t i = 0; i < size; ++i) {
nde_list.push_back(list.AllocateAndConstruct<NonDerivedElement>());
}
EXPECT_EQ(size, list.size());
ListContainer<NonDerivedElement>::Iterator iter = list.begin();
for (std::vector<NonDerivedElement*>::const_iterator nde_iter =
nde_list.begin();
nde_iter != nde_list.end(); ++nde_iter) {
EXPECT_EQ(*nde_iter, *iter);
++iter;
}
}
TEST(ListContainerTest,
CorrectAllocationSizeForMoreThanOneAllocationNonDerivedElement) {
// Constructor sets the allocation size to 2. Every time ListContainer needs
// to allocate again, it doubles allocation size. In this test, 10 elements is
// needed, thus ListContainerShould allocate spaces 2, 4 and 8 elements.
ListContainer<NonDerivedElement> list(alignof(NonDerivedElement),
sizeof(NonDerivedElement), 2);
std::vector<NonDerivedElement*> nde_list;
size_t size = 10;
for (size_t i = 0; i < size; ++i) {
// Before asking for a new element, space available without another
// allocation follows.
switch (i) {
case 2:
case 6:
EXPECT_EQ(0u, list.AvailableSizeWithoutAnotherAllocationForTesting());
break;
case 1:
case 5:
EXPECT_EQ(1u, list.AvailableSizeWithoutAnotherAllocationForTesting());
break;
case 0:
case 4:
EXPECT_EQ(2u, list.AvailableSizeWithoutAnotherAllocationForTesting());
break;
case 3:
EXPECT_EQ(3u, list.AvailableSizeWithoutAnotherAllocationForTesting());
break;
case 9:
EXPECT_EQ(5u, list.AvailableSizeWithoutAnotherAllocationForTesting());
break;
case 8:
EXPECT_EQ(6u, list.AvailableSizeWithoutAnotherAllocationForTesting());
break;
case 7:
EXPECT_EQ(7u, list.AvailableSizeWithoutAnotherAllocationForTesting());
break;
default:
break;
}
nde_list.push_back(list.AllocateAndConstruct<NonDerivedElement>());
// After asking for a new element, space available without another
// allocation follows.
switch (i) {
case 1:
case 5:
EXPECT_EQ(0u, list.AvailableSizeWithoutAnotherAllocationForTesting());
break;
case 0:
case 4:
EXPECT_EQ(1u, list.AvailableSizeWithoutAnotherAllocationForTesting());
break;
case 3:
EXPECT_EQ(2u, list.AvailableSizeWithoutAnotherAllocationForTesting());
break;
case 2:
EXPECT_EQ(3u, list.AvailableSizeWithoutAnotherAllocationForTesting());
break;
case 9:
EXPECT_EQ(4u, list.AvailableSizeWithoutAnotherAllocationForTesting());
break;
case 8:
EXPECT_EQ(5u, list.AvailableSizeWithoutAnotherAllocationForTesting());
break;
case 7:
EXPECT_EQ(6u, list.AvailableSizeWithoutAnotherAllocationForTesting());
break;
case 6:
EXPECT_EQ(7u, list.AvailableSizeWithoutAnotherAllocationForTesting());
break;
default:
break;
}
}
EXPECT_EQ(size, list.size());
ListContainer<NonDerivedElement>::Iterator iter = list.begin();
for (std::vector<NonDerivedElement*>::const_iterator nde_iter =
nde_list.begin();
nde_iter != nde_list.end(); ++nde_iter) {
EXPECT_EQ(*nde_iter, *iter);
++iter;
}
}
TEST(ListContainerTest, SimpleIterationNonDerivedElement) {
ListContainer<NonDerivedElement> list(alignof(NonDerivedElement),
sizeof(NonDerivedElement), 0);
std::vector<NonDerivedElement*> nde_list;
size_t size = 10;
for (size_t i = 0; i < size; ++i) {
nde_list.push_back(list.AllocateAndConstruct<NonDerivedElement>());
}
EXPECT_EQ(size, list.size());
size_t num_iters_in_list = 0;
{
std::vector<NonDerivedElement*>::const_iterator nde_iter = nde_list.begin();
for (ListContainer<NonDerivedElement>::Iterator iter = list.begin();
iter != list.end(); ++iter) {
EXPECT_EQ(*nde_iter, *iter);
++num_iters_in_list;
++nde_iter;
}
}
size_t num_iters_in_vector = 0;
{
ListContainer<NonDerivedElement>::Iterator iter = list.begin();
for (std::vector<NonDerivedElement*>::const_iterator nde_iter =
nde_list.begin();
nde_iter != nde_list.end(); ++nde_iter) {
EXPECT_EQ(*nde_iter, *iter);
++num_iters_in_vector;
++iter;
}
}
EXPECT_EQ(num_iters_in_vector, num_iters_in_list);
}
TEST(ListContainerTest, SimpleConstIteratorIterationNonDerivedElement) {
ListContainer<NonDerivedElement> list(alignof(NonDerivedElement),
sizeof(NonDerivedElement), 0);
std::vector<const NonDerivedElement*> nde_list;
size_t size = 10;
for (size_t i = 0; i < size; ++i) {
nde_list.push_back(list.AllocateAndConstruct<NonDerivedElement>());
}
EXPECT_EQ(size, list.size());
{
std::vector<const NonDerivedElement*>::const_iterator nde_iter =
nde_list.begin();
for (ListContainer<NonDerivedElement>::ConstIterator iter = list.begin();
iter != list.end(); ++iter) {
EXPECT_TRUE(isConstNonDerivedElementPointer(*iter));
EXPECT_EQ(*nde_iter, *iter);
++nde_iter;
}
}
{
std::vector<const NonDerivedElement*>::const_iterator nde_iter =
nde_list.begin();
for (ListContainer<NonDerivedElement>::Iterator iter = list.begin();
iter != list.end(); ++iter) {
EXPECT_FALSE(isConstNonDerivedElementPointer(*iter));
EXPECT_EQ(*nde_iter, *iter);
++nde_iter;
}
}
{
ListContainer<NonDerivedElement>::ConstIterator iter = list.begin();
for (std::vector<const NonDerivedElement*>::const_iterator nde_iter =
nde_list.begin();
nde_iter != nde_list.end(); ++nde_iter) {
EXPECT_EQ(*nde_iter, *iter);
++iter;
}
}
}
TEST(ListContainerTest, SimpleReverseInsertionNonDerivedElement) {
ListContainer<NonDerivedElement> list(alignof(NonDerivedElement),
sizeof(NonDerivedElement), 0);
std::vector<NonDerivedElement*> nde_list;
size_t size = 10;
for (size_t i = 0; i < size; ++i) {
nde_list.push_back(list.AllocateAndConstruct<NonDerivedElement>());
}
EXPECT_EQ(size, list.size());
{
std::vector<NonDerivedElement*>::const_reverse_iterator nde_iter =
nde_list.rbegin();
for (ListContainer<NonDerivedElement>::ReverseIterator iter = list.rbegin();
iter != list.rend(); ++iter) {
EXPECT_EQ(*nde_iter, *iter);
++nde_iter;
}
}
{
ListContainer<NonDerivedElement>::ReverseIterator iter = list.rbegin();
for (auto nde_iter = nde_list.rbegin(); nde_iter != nde_list.rend();
++nde_iter) {
EXPECT_EQ(*nde_iter, *iter);
++iter;
}
}
}
TEST(ListContainerTest, SimpleDeletion) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
std::vector<SimpleDerivedElement*> sde_list;
int size = 10;
for (int i = 0; i < size; ++i) {
sde_list.push_back(list.AllocateAndConstruct<SimpleDerivedElement>());
sde_list.back()->set_value(i);
}
EXPECT_EQ(static_cast<size_t>(size), list.size());
list.EraseAndInvalidateAllPointers(list.begin());
--size;
EXPECT_EQ(static_cast<size_t>(size), list.size());
int i = 1;
for (ListContainer<DerivedElement>::Iterator iter = list.begin();
iter != list.end(); ++iter) {
EXPECT_EQ(i, static_cast<SimpleDerivedElement*>(*iter)->get_value());
++i;
}
}
TEST(ListContainerTest, DeletionAllInAllocation) {
const size_t kReserve = 10;
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize,
kReserve);
std::vector<SimpleDerivedElement*> sde_list;
// Add enough elements to cause another allocation.
for (size_t i = 0; i < kReserve + 1; ++i) {
sde_list.push_back(list.AllocateAndConstruct<SimpleDerivedElement>());
sde_list.back()->set_value(static_cast<int>(i));
}
EXPECT_EQ(kReserve + 1, list.size());
// Remove everything in the first allocation.
for (size_t i = 0; i < kReserve; ++i)
list.EraseAndInvalidateAllPointers(list.begin());
EXPECT_EQ(1u, list.size());
// The last element is left.
SimpleDerivedElement* de = static_cast<SimpleDerivedElement*>(*list.begin());
EXPECT_EQ(static_cast<int>(kReserve), de->get_value());
// Remove the element from the 2nd allocation.
list.EraseAndInvalidateAllPointers(list.begin());
EXPECT_EQ(0u, list.size());
}
TEST(ListContainerTest, DeletionAllInAllocationReversed) {
const size_t kReserve = 10;
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize,
kReserve);
std::vector<SimpleDerivedElement*> sde_list;
// Add enough elements to cause another allocation.
for (size_t i = 0; i < kReserve + 1; ++i) {
sde_list.push_back(list.AllocateAndConstruct<SimpleDerivedElement>());
sde_list.back()->set_value(static_cast<int>(i));
}
EXPECT_EQ(kReserve + 1, list.size());
// Remove everything in the 2nd allocation.
auto it = list.begin();
for (size_t i = 0; i < kReserve; ++i)
++it;
list.EraseAndInvalidateAllPointers(it);
// The 2nd-last element is next, and the rest of the elements exist.
size_t i = kReserve - 1;
for (auto reverse_it = list.rbegin(); reverse_it != list.rend();
++reverse_it) {
SimpleDerivedElement* de = static_cast<SimpleDerivedElement*>(*reverse_it);
EXPECT_EQ(static_cast<int>(i), de->get_value());
--i;
}
// Can forward iterate too.
i = 0;
for (it = list.begin(); it != list.end(); ++it) {
SimpleDerivedElement* de = static_cast<SimpleDerivedElement*>(*it);
EXPECT_EQ(static_cast<int>(i), de->get_value());
++i;
}
// Remove the last thing from the 1st allocation.
it = list.begin();
for (i = 0; i < kReserve - 1; ++i)
++it;
list.EraseAndInvalidateAllPointers(it);
// The 2nd-last element is next, and the rest of the elements exist.
i = kReserve - 2;
for (auto reverse_it = list.rbegin(); reverse_it != list.rend();
++reverse_it) {
SimpleDerivedElement* de = static_cast<SimpleDerivedElement*>(*reverse_it);
EXPECT_EQ(static_cast<int>(i), de->get_value());
--i;
}
// Can forward iterate too.
i = 0;
for (it = list.begin(); it != list.end(); ++it) {
SimpleDerivedElement* de = static_cast<SimpleDerivedElement*>(*it);
EXPECT_EQ(static_cast<int>(i), de->get_value());
++i;
}
}
TEST(ListContainerTest, DeletionWhileIterating) {
ListContainer<SimpleDerivedElement> list(
kCurrentLargestDerivedElementAlign, kCurrentLargestDerivedElementSize, 0);
for (int i = 0; i < 4; ++i)
list.AllocateAndConstruct<SimpleDerivedElement>()->set_value(i);
// Delete odd elements.
for (auto it = list.begin(); it != list.end();) {
if ((*it)->get_value() % 2)
it = list.EraseAndInvalidateAllPointers(it);
else
++it;
}
EXPECT_EQ(2u, list.size());
EXPECT_EQ(0, list.front()->get_value());
EXPECT_EQ(2, list.back()->get_value());
// Erase all elements.
for (auto it = list.begin(); it != list.end();)
it = list.EraseAndInvalidateAllPointers(it);
EXPECT_TRUE(list.empty());
}
TEST(ListContainerTest, InsertCopyBeforeBegin) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
const int size = 4;
for (int i = 0; i < size; ++i) {
SimpleDerivedElement* element =
list.AllocateAndConstruct<SimpleDerivedElement>();
element->set_value(i);
}
EXPECT_EQ(static_cast<size_t>(size), list.size());
const int count = 2;
auto insert_element = SimpleDerivedElement(100);
auto iter = list.InsertBeforeAndInvalidateAllPointers<SimpleDerivedElement>(
list.begin(), count, insert_element);
const auto expected_result = std::to_array<int>({100, 100, 0, 1, 2, 3});
int iter_index = 0;
for (iter = list.begin(); iter != list.end(); ++iter) {
EXPECT_EQ(expected_result[iter_index],
static_cast<SimpleDerivedElement*>(*iter)->get_value());
++iter_index;
}
EXPECT_EQ(size + count, iter_index);
}
TEST(ListContainerTest, InsertCopyBeforeEnd) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
const int size = 4;
for (int i = 0; i < size; ++i) {
SimpleDerivedElement* element =
list.AllocateAndConstruct<SimpleDerivedElement>();
element->set_value(i);
}
EXPECT_EQ(static_cast<size_t>(size), list.size());
const int count = 3;
auto insert_element = SimpleDerivedElement(100);
auto iter = list.InsertBeforeAndInvalidateAllPointers<SimpleDerivedElement>(
list.end(), count, insert_element);
const auto expected_result = std::to_array<int>({0, 1, 2, 3, 100, 100, 100});
int iter_index = 0;
for (iter = list.begin(); iter != list.end(); ++iter) {
EXPECT_EQ(expected_result[iter_index],
static_cast<SimpleDerivedElement*>(*iter)->get_value());
++iter_index;
}
EXPECT_EQ(size + count, iter_index);
}
TEST(ListContainerTest, InsertCopyBeforeEmpty) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
const int count = 3;
auto insert_element = SimpleDerivedElement(100);
auto iter = list.InsertBeforeAndInvalidateAllPointers<SimpleDerivedElement>(
list.end(), count, insert_element);
const auto expected_result = std::to_array<int>({100, 100, 100});
int iter_index = 0;
for (iter = list.begin(); iter != list.end(); ++iter) {
EXPECT_EQ(expected_result[iter_index],
static_cast<SimpleDerivedElement*>(*iter)->get_value());
++iter_index;
}
EXPECT_EQ(count, iter_index);
}
TEST(ListContainerTest, InsertCopyBeforeMany) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
// Create a partial list of 1,...,9.
int initial_list[] = {0, 1, 4, 5, 7, 9};
for (const auto& initial_list_element : initial_list) {
SimpleDerivedElement* element =
list.AllocateAndConstruct<SimpleDerivedElement>();
element->set_value(initial_list_element);
}
EXPECT_EQ(std::size(initial_list), list.size());
// Insert the missing elements.
auto iter = list.begin();
while (iter != list.end()) {
auto iter_next = iter;
++iter_next;
int value = static_cast<SimpleDerivedElement*>(*iter)->get_value();
int value_next =
iter_next != list.end()
? static_cast<SimpleDerivedElement*>(*iter_next)->get_value()
: 10;
int count = value_next - value - 1;
iter = list.InsertBeforeAndInvalidateAllPointers<SimpleDerivedElement>(
iter_next, count, SimpleDerivedElement(100));
for (int i = 0; i < count; i++)
iter++;
}
const auto expected_result =
std::to_array<int>({0, 1, 100, 100, 4, 5, 100, 7, 100, 9});
int iter_index = 0;
for (iter = list.begin(); iter != list.end(); ++iter) {
EXPECT_EQ(expected_result[iter_index],
static_cast<SimpleDerivedElement*>(*iter)->get_value());
++iter_index;
}
EXPECT_EQ(10, iter_index);
}
TEST(ListContainerTest, InsertBeforeBegin) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
const int size = 4;
for (int i = 0; i < size; ++i) {
SimpleDerivedElement* element =
list.AllocateAndConstruct<SimpleDerivedElement>();
element->set_value(i);
}
EXPECT_EQ(static_cast<size_t>(size), list.size());
const int count = 2;
auto iter = list.InsertBeforeAndInvalidateAllPointers<SimpleDerivedElement>(
list.begin(), count);
for (int i = 0; i < count; ++i) {
static_cast<SimpleDerivedElement*>(*iter)->set_value(100 + i);
++iter;
}
const auto expected_result = std::to_array<int>({100, 101, 0, 1, 2, 3});
int iter_index = 0;
for (iter = list.begin(); iter != list.end(); ++iter) {
EXPECT_EQ(expected_result[iter_index],
static_cast<SimpleDerivedElement*>(*iter)->get_value());
++iter_index;
}
EXPECT_EQ(size + count, iter_index);
}
TEST(ListContainerTest, InsertBeforeEnd) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
const int size = 4;
for (int i = 0; i < size; ++i) {
SimpleDerivedElement* element =
list.AllocateAndConstruct<SimpleDerivedElement>();
element->set_value(i);
}
EXPECT_EQ(static_cast<size_t>(size), list.size());
const int count = 3;
auto iter = list.InsertBeforeAndInvalidateAllPointers<SimpleDerivedElement>(
list.end(), count);
for (int i = 0; i < count; ++i) {
static_cast<SimpleDerivedElement*>(*iter)->set_value(100 + i);
++iter;
}
const auto expected_result = std::to_array<int>({0, 1, 2, 3, 100, 101, 102});
int iter_index = 0;
for (iter = list.begin(); iter != list.end(); ++iter) {
EXPECT_EQ(expected_result[iter_index],
static_cast<SimpleDerivedElement*>(*iter)->get_value());
++iter_index;
}
EXPECT_EQ(size + count, iter_index);
}
TEST(ListContainerTest, InsertBeforeEmpty) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
const int count = 3;
auto iter = list.InsertBeforeAndInvalidateAllPointers<SimpleDerivedElement>(
list.end(), count);
for (int i = 0; i < count; ++i) {
static_cast<SimpleDerivedElement*>(*iter)->set_value(100 + i);
++iter;
}
const auto expected_result = std::to_array<int>({100, 101, 102});
int iter_index = 0;
for (iter = list.begin(); iter != list.end(); ++iter) {
EXPECT_EQ(expected_result[iter_index],
static_cast<SimpleDerivedElement*>(*iter)->get_value());
++iter_index;
}
EXPECT_EQ(count, iter_index);
}
TEST(ListContainerTest, InsertBeforeMany) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
// Create a partial list of 1,...,99.
auto initial_list = std::to_array<int>({
0, 1, 4, 5, 6, 7, 8, 9, 11, 12, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, 27, 28, 29, 30, 32, 34, 36, 37, 51, 52, 54, 56,
60, 64, 65, 70, 75, 76, 80, 81, 83, 86, 87, 90, 93, 95, 97, 98,
});
const size_t size = std::size(initial_list);
for (size_t i = 0; i < size; ++i) {
SimpleDerivedElement* element =
list.AllocateAndConstruct<SimpleDerivedElement>();
element->set_value(initial_list[i]);
}
EXPECT_EQ(static_cast<size_t>(size), list.size());
// Insert the missing elements.
auto iter = list.begin();
while (iter != list.end()) {
auto iter_next = iter;
++iter_next;
int value = static_cast<SimpleDerivedElement*>(*iter)->get_value();
int value_next =
iter_next != list.end()
? static_cast<SimpleDerivedElement*>(*iter_next)->get_value()
: 100;
int count = value_next - value - 1;
iter = list.InsertBeforeAndInvalidateAllPointers<SimpleDerivedElement>(
iter_next, count);
for (int i = value + 1; i < value_next; ++i) {
static_cast<SimpleDerivedElement*>(*iter)->set_value(i);
++iter;
}
}
int iter_index = 0;
for (iter = list.begin(); iter != list.end(); ++iter) {
EXPECT_EQ(iter_index,
static_cast<SimpleDerivedElement*>(*iter)->get_value());
++iter_index;
}
EXPECT_EQ(100, iter_index);
}
TEST(ListContainerTest, InsertAfterBegin) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
const int size = 4;
for (int i = 0; i < size; ++i) {
SimpleDerivedElement* element =
list.AllocateAndConstruct<SimpleDerivedElement>();
element->set_value(i);
}
EXPECT_EQ(static_cast<size_t>(size), list.size());
const int count = 2;
auto iter = list.InsertAfterAndInvalidateAllPointers<SimpleDerivedElement>(
list.begin(), count);
for (int i = 0; i < count; ++i) {
static_cast<SimpleDerivedElement*>(*iter)->set_value(100 + i);
++iter;
}
const auto expected_result = std::to_array<int>({0, 100, 101, 1, 2, 3});
int iter_index = 0;
for (iter = list.begin(); iter != list.end(); ++iter) {
EXPECT_EQ(expected_result[iter_index],
static_cast<SimpleDerivedElement*>(*iter)->get_value());
++iter_index;
}
EXPECT_EQ(size + count, iter_index);
}
TEST(ListContainerTest, InsertAfterEnd) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
const int size = 4;
for (int i = 0; i < size; ++i) {
SimpleDerivedElement* element =
list.AllocateAndConstruct<SimpleDerivedElement>();
element->set_value(i);
}
EXPECT_EQ(static_cast<size_t>(size), list.size());
const int count = 3;
auto iter = list.InsertAfterAndInvalidateAllPointers<SimpleDerivedElement>(
list.end(), count);
for (int i = 0; i < count; ++i) {
static_cast<SimpleDerivedElement*>(*iter)->set_value(100 + i);
++iter;
}
const auto expected_result = std::to_array<int>({0, 1, 2, 3, 100, 101, 102});
int iter_index = 0;
for (iter = list.begin(); iter != list.end(); ++iter) {
EXPECT_EQ(expected_result[iter_index],
static_cast<SimpleDerivedElement*>(*iter)->get_value());
++iter_index;
}
EXPECT_EQ(size + count, iter_index);
}
TEST(ListContainerTest, InsertAfterEmpty) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
const int count = 3;
auto iter = list.InsertAfterAndInvalidateAllPointers<SimpleDerivedElement>(
list.end(), count);
for (int i = 0; i < count; ++i) {
static_cast<SimpleDerivedElement*>(*iter)->set_value(100 + i);
++iter;
}
const auto expected_result = std::to_array<int>({100, 101, 102});
int iter_index = 0;
for (iter = list.begin(); iter != list.end(); ++iter) {
EXPECT_EQ(expected_result[iter_index],
static_cast<SimpleDerivedElement*>(*iter)->get_value());
++iter_index;
}
EXPECT_EQ(count, iter_index);
}
TEST(ListContainerTest, InsertAfterMany) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
// Create a partial list of 1,...,99.
auto initial_list = std::to_array<int>({
0, 1, 4, 5, 6, 7, 8, 9, 11, 12, 17, 18, 19, 20, 21, 22,
23, 24, 25, 26, 27, 28, 29, 30, 32, 34, 36, 37, 51, 52, 54, 56,
60, 64, 65, 70, 75, 76, 80, 81, 83, 86, 87, 90, 93, 95, 97, 98,
});
const size_t size = std::size(initial_list);
for (size_t i = 0; i < size; ++i) {
SimpleDerivedElement* element =
list.AllocateAndConstruct<SimpleDerivedElement>();
element->set_value(initial_list[i]);
}
EXPECT_EQ(static_cast<size_t>(size), list.size());
// Insert the missing elements.
auto iter = list.begin();
while (iter != list.end()) {
auto iter_next = iter;
++iter_next;
int value = static_cast<SimpleDerivedElement*>(*iter)->get_value();
int value_next =
iter_next != list.end()
? static_cast<SimpleDerivedElement*>(*iter_next)->get_value()
: 100;
int count = value_next - value - 1;
iter = list.InsertAfterAndInvalidateAllPointers<SimpleDerivedElement>(
iter, count);
for (int i = value + 1; i < value_next; ++i) {
static_cast<SimpleDerivedElement*>(*iter)->set_value(i);
++iter;
}
}
int iter_index = 0;
for (iter = list.begin(); iter != list.end(); ++iter) {
EXPECT_EQ(iter_index,
static_cast<SimpleDerivedElement*>(*iter)->get_value());
++iter_index;
}
EXPECT_EQ(100, iter_index);
}
TEST(ListContainerTest, SimpleManipulationWithIndexSimpleDerivedElement) {
ListContainer<DerivedElement> list(kCurrentLargestDerivedElementAlign,
kCurrentLargestDerivedElementSize, 0);
std::vector<SimpleDerivedElement*> de_list;
int size = 10;
for (int i = 0; i < size; ++i) {
de_list.push_back(list.AllocateAndConstruct<SimpleDerivedElement>());
}
EXPECT_EQ(static_cast<size_t>(size), list.size());
for (int i = 0; i < size; ++i) {
static_cast<SimpleDerivedElement*>(list.ElementAt(i))->set_value(i);
}
int i = 0;
for (std::vector<SimpleDerivedElement*>::const_iterator
de_iter = de_list.begin();
de_iter != de_list.end(); ++de_iter, ++i) {
EXPECT_EQ(i, (*de_iter)->get_value());
}
}
TEST(ListContainerTest,
SimpleManipulationWithIndexMoreThanOneAllocationSimpleDerivedElement) {
ListContainer<DerivedElement> list(kLargestDerivedElementAlign,
kLargestDerivedElementSize, 2);
std::vector<SimpleDerivedElement*> de_list;
int size = 10;
for (int i = 0; i < size; ++i) {
de_list.push_back(list.AllocateAndConstruct<SimpleDerivedElement>());
}
EXPECT_EQ(static_cast<size_t>(size), list.size());
for (int i = 0; i < size; ++i) {
static_cast<SimpleDerivedElement*>(list.ElementAt(i))->set_value(i);
}
int i = 0;
for (std::vector<SimpleDerivedElement*>::const_iterator
de_iter = de_list.begin();
de_iter != de_list.end(); ++de_iter, ++i) {
EXPECT_EQ(i, (*de_iter)->get_value());
}
}
TEST(ListContainerTest,
SimpleIterationAndReverseIterationWithIndexNonDerivedElement) {
ListContainer<NonDerivedElement> list(alignof(NonDerivedElement),
sizeof(NonDerivedElement), 0);
std::vector<NonDerivedElement*> nde_list;
size_t size = 10;
for (size_t i = 0; i < size; ++i) {
nde_list.push_back(list.AllocateAndConstruct<NonDerivedElement>());
}
EXPECT_EQ(size, list.size());
size_t i = 0;
for (ListContainer<NonDerivedElement>::Iterator iter = list.begin();
iter != list.end(); ++iter) {
EXPECT_EQ(i, iter.index());
++i;
}
i = 0;
for (ListContainer<NonDerivedElement>::ReverseIterator iter = list.rbegin();
iter != list.rend(); ++iter) {
EXPECT_EQ(i, iter.index());
++i;
}
}
// Increments an int when constructed (or the counter pointer is supplied) and
// decrements when destructed.
class InstanceCounter {
public:
InstanceCounter() : counter_(nullptr) {}
explicit InstanceCounter(int* counter) { SetCounter(counter); }
~InstanceCounter() {
if (counter_)
--*counter_;
}
void SetCounter(int* counter) {
counter_ = counter;
++*counter_;
}
private:
raw_ptr<int> counter_;
};
TEST(ListContainerTest, RemoveLastDestruction) {
// We keep an explicit instance count to make sure that the destructors are
// indeed getting called.
int counter = 0;
ListContainer<InstanceCounter> list(alignof(InstanceCounter),
sizeof(InstanceCounter), 1);
EXPECT_EQ(0, counter);
EXPECT_EQ(0u, list.size());
// We should be okay to add one and then go back to zero.
list.AllocateAndConstruct<InstanceCounter>()->SetCounter(&counter);
EXPECT_EQ(1, counter);
EXPECT_EQ(1u, list.size());
list.RemoveLast();
EXPECT_EQ(0, counter);
EXPECT_EQ(0u, list.size());
// We should also be okay to remove the last multiple times, as long as there
// are enough elements in the first place.
list.AllocateAndConstruct<InstanceCounter>()->SetCounter(&counter);
list.AllocateAndConstruct<InstanceCounter>()->SetCounter(&counter);
list.AllocateAndConstruct<InstanceCounter>()->SetCounter(&counter);
list.AllocateAndConstruct<InstanceCounter>()->SetCounter(&counter);
list.AllocateAndConstruct<InstanceCounter>()->SetCounter(&counter);
list.AllocateAndConstruct<InstanceCounter>()->SetCounter(&counter);
list.RemoveLast();
list.RemoveLast();
EXPECT_EQ(4, counter); // Leaves one in the last list.
EXPECT_EQ(4u, list.size());
list.RemoveLast();
EXPECT_EQ(3, counter); // Removes an inner list from before.
EXPECT_EQ(3u, list.size());
}
// TODO(jbroman): std::equal would work if ListContainer iterators satisfied the
// usual STL iterator constraints. We should fix that.
template <typename It1, typename It2>
bool Equal(It1 it1, const It1& end1, It2 it2) {
for (; it1 != end1; ++it1, ++it2) {
if (!(*it1 == *it2))
return false;
}
return true;
}
TEST(ListContainerTest, RemoveLastIteration) {
struct SmallStruct {
char dummy[16];
};
ListContainer<SmallStruct> list(alignof(SmallStruct), sizeof(SmallStruct), 1);
std::vector<SmallStruct*> pointers;
// Utilities which keep these two lists in sync and check that their iteration
// order matches.
auto push = [&list, &pointers]() {
pointers.push_back(list.AllocateAndConstruct<SmallStruct>());
};
auto pop = [&list, &pointers]() {
pointers.pop_back();
list.RemoveLast();
};
auto check_equal = [&list, &pointers]() {
// They should be of the same size, and compare equal with all four kinds of
// iteration.
// Apparently Mac doesn't have vector::cbegin and vector::crbegin?
const auto& const_pointers = pointers;
ASSERT_EQ(list.size(), pointers.size());
ASSERT_TRUE(Equal(list.begin(), list.end(), pointers.begin()));
ASSERT_TRUE(Equal(list.cbegin(), list.cend(), const_pointers.begin()));
ASSERT_TRUE(Equal(list.rbegin(), list.rend(), pointers.rbegin()));
ASSERT_TRUE(Equal(list.crbegin(), list.crend(), const_pointers.rbegin()));
};
check_equal(); // Initially empty.
push();
check_equal(); // One full inner list.
push();
check_equal(); // One full, one partially full.
push();
push();
check_equal(); // Two full, one partially full.
pop();
check_equal(); // Two full, one empty.
pop();
check_equal(); // One full, one partially full, one empty.
pop();
check_equal(); // One full, one empty.
push();
pop();
pop();
ASSERT_TRUE(list.empty());
check_equal(); // Empty.
}
TEST(ListContainerTest, Swap) {
ListContainer<SimpleDerivedElement> list_1(
kCurrentLargestDerivedElementAlign, kCurrentLargestDerivedElementSize, 0);
list_1.AllocateAndConstruct<SimpleDerivedElementConstructMagicNumberOne>();
ListContainer<SimpleDerivedElement> list_2(
kCurrentLargestDerivedElementAlign, kCurrentLargestDerivedElementSize, 0);
list_2.AllocateAndConstruct<SimpleDerivedElementConstructMagicNumberTwo>();
list_2.AllocateAndConstruct<SimpleDerivedElementConstructMagicNumberThree>();
SimpleDerivedElement* pre_swap_list_1_front = list_1.front();
EXPECT_EQ(kMagicNumberToUseForSimpleDerivedElementOne,
list_1.front()->get_value());
EXPECT_EQ(1u, list_1.size());
EXPECT_EQ(kMagicNumberToUseForSimpleDerivedElementTwo,
list_2.front()->get_value());
EXPECT_EQ(kMagicNumberToUseForSimpleDerivedElementThree,
list_2.back()->get_value());
EXPECT_EQ(2u, list_2.size());
list_2.swap(list_1);
EXPECT_EQ(kMagicNumberToUseForSimpleDerivedElementTwo,
list_1.front()->get_value());
EXPECT_EQ(kMagicNumberToUseForSimpleDerivedElementThree,
list_1.back()->get_value());
EXPECT_EQ(2u, list_1.size());
EXPECT_EQ(kMagicNumberToUseForSimpleDerivedElementOne,
list_2.front()->get_value());
EXPECT_EQ(1u, list_2.size());
// Ensure pointers are still valid after swapping.
EXPECT_EQ(pre_swap_list_1_front, list_2.front());
}
TEST(ListContainerTest, GetCapacityInBytes) {
const int iterations = 500;
const size_t initial_capacity = 10;
const size_t upper_bound_on_min_capacity = initial_capacity;
// At time of writing, removing elements from the end can cause up to 7x the
// memory required to be consumed, in the worst case, since we can have up to
// two trailing inner lists that are empty (for 2*size + 4*size in unused
// memory, due to the exponential growth strategy).
const size_t max_waste_factor = 8;
ListContainer<DerivedElement> list(kLargestDerivedElementAlign,
kLargestDerivedElementSize,
initial_capacity);
// The capacity should grow with the list.
for (int i = 0; i < iterations; i++) {
size_t capacity = list.GetCapacityInBytes();
ASSERT_GE(capacity, list.size() * kLargestDerivedElementSize);
ASSERT_LE(capacity, std::max(list.size(), upper_bound_on_min_capacity) *
max_waste_factor * kLargestDerivedElementSize);
list.AllocateAndConstruct<DerivedElement1>();
}
// The capacity should shrink with the list.
for (int i = 0; i < iterations; i++) {
size_t capacity = list.GetCapacityInBytes();
ASSERT_GE(capacity, list.size() * kLargestDerivedElementSize);
ASSERT_LE(capacity, std::max(list.size(), upper_bound_on_min_capacity) *
max_waste_factor * kLargestDerivedElementSize);
list.RemoveLast();
}
}
} // namespace
} // namespace cc
|