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 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#pragma once
#include "cmConfigure.h" // IWYU pragma: keep
#include <algorithm>
#include <cstddef>
#include <initializer_list>
#include <iterator>
#include <memory>
#include <stdexcept>
#include <string>
#include <utility>
#include <vector>
#include <cm/string_view>
#include <cm/type_traits>
#include <cmext/iterator>
#include "cmValue.h"
template <typename T>
class BT;
/**
* CMake lists management
* A CMake list is a string where list elements are separated by the ';'
* character.
*
* For all operations, input arguments (single value like cm::string_view or
* multiple values specified through pair of iterators) are, by default,
* expanded. The expansion can be controlled by the cmList::ExpandElements
* option.
*
* There ate some exceptions to this rule:
* * When the input argument is a cmList instance, the value is not expanded.
* * The following methods do not expand their argument: cmList::push_back,
* cmList::emplace and cmList::emplace_back.
*/
class cmList
{
public:
using container_type = std::vector<std::string>;
using value_type = container_type::value_type;
using allocator_type = container_type::allocator_type;
using index_type = std::ptrdiff_t;
using size_type = container_type::size_type;
using difference_type = container_type::difference_type;
using reference = container_type::reference;
using const_reference = container_type::const_reference;
using iterator = container_type::iterator;
using const_iterator = container_type::const_iterator;
using reverse_iterator = container_type::reverse_iterator;
using const_reverse_iterator = container_type::const_reverse_iterator;
static const size_type npos = static_cast<size_type>(-1);
static cm::string_view element_separator;
enum class EmptyElements
{
No,
Yes,
};
enum class ExpandElements
{
No,
Yes,
};
cmList() = default;
cmList(const cmList&) = default;
cmList(cmList&&) = default;
cmList(cm::string_view value,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
this->assign(value, expandElements, emptyElements);
}
cmList(cm::string_view value, EmptyElements emptyElements)
: cmList(value, ExpandElements::Yes, emptyElements)
{
}
cmList(std::string const& value,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
this->assign(value, expandElements, emptyElements);
}
cmList(std::string const& value, EmptyElements emptyElements)
: cmList(value, ExpandElements::Yes, emptyElements)
{
}
cmList(cmValue list, ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
if (list) {
this->assign(*list, expandElements, emptyElements);
}
}
cmList(cmValue list, EmptyElements emptyElements)
: cmList(list, ExpandElements::Yes, emptyElements)
{
}
template <typename InputIterator>
cmList(InputIterator first, InputIterator last,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
this->assign(first, last, expandElements, emptyElements);
}
template <typename InputIterator>
cmList(InputIterator first, InputIterator last, EmptyElements emptyElements)
: cmList(first, last, ExpandElements::Yes, emptyElements)
{
}
cmList(const container_type& init,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
: cmList(init.begin(), init.end(), expandElements, emptyElements)
{
}
cmList(const container_type& init, EmptyElements emptyElements)
: cmList(init, ExpandElements::Yes, emptyElements)
{
}
cmList(container_type&& init,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
: cmList(std::make_move_iterator(init.begin()),
std::make_move_iterator(init.end()), expandElements,
emptyElements)
{
init.clear();
}
cmList(container_type&& init, EmptyElements emptyElements)
: cmList(std::move(init), ExpandElements::Yes, emptyElements)
{
}
cmList(std::initializer_list<std::string> init) { this->assign(init); }
~cmList() = default;
cmList& operator=(const cmList&) = default;
cmList& operator=(cmList&&) = default;
cmList& operator=(cm::string_view value)
{
this->assign(value);
return *this;
}
cmList& operator=(std::string const& value)
{
this->assign(value);
return *this;
}
cmList& operator=(cmValue value)
{
if (value) {
this->operator=(*value);
} else {
this->clear();
}
return *this;
}
cmList& operator=(const container_type& init)
{
this->assign(init);
return *this;
}
cmList& operator=(container_type&& init)
{
this->assign(std::move(init));
return *this;
}
cmList& operator=(std::initializer_list<std::string> init)
{
this->assign(init);
return *this;
}
void assign(cm::string_view value,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
this->clear();
this->append(value, expandElements, emptyElements);
}
void assign(cm::string_view value, EmptyElements emptyElements)
{
this->assign(value, ExpandElements::Yes, emptyElements);
}
void assign(std::string const& value,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
this->clear();
this->append(value, expandElements, emptyElements);
}
void assign(std::string const& value, EmptyElements emptyElements)
{
this->assign(value, ExpandElements::Yes, emptyElements);
}
void assign(cmValue value,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
if (value) {
this->assign(*value, expandElements, emptyElements);
} else {
this->clear();
}
}
void assign(cmValue value, EmptyElements emptyElements)
{
this->assign(value, ExpandElements::Yes, emptyElements);
}
template <typename InputIterator>
void assign(InputIterator first, InputIterator last,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
this->clear();
this->append(first, last, expandElements, emptyElements);
}
template <typename InputIterator>
void assign(InputIterator first, InputIterator last,
EmptyElements emptyElements)
{
this->assign(first, last, ExpandElements::Yes, emptyElements);
}
void assign(const cmList& init,
ExpandElements expandElements = ExpandElements::No,
EmptyElements emptyElements = EmptyElements::No)
{
this->assign(init.begin(), init.end(), expandElements, emptyElements);
}
void assign(const cmList& init, EmptyElements emptyElements)
{
this->assign(init, ExpandElements::No, emptyElements);
}
void assign(cmList&& init,
ExpandElements expandElements = ExpandElements::No,
EmptyElements emptyElements = EmptyElements::No)
{
this->assign(std::make_move_iterator(init.begin()),
std::make_move_iterator(init.end()), expandElements,
emptyElements);
init.clear();
}
void assign(cmList&& init, EmptyElements emptyElements)
{
this->assign(std::move(init), ExpandElements::No, emptyElements);
}
void assign(const container_type& init,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
this->assign(init.begin(), init.end(), expandElements, emptyElements);
}
void assign(const container_type& init, EmptyElements emptyElements)
{
this->assign(init, ExpandElements::Yes, emptyElements);
}
void assign(container_type&& init,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
this->assign(std::make_move_iterator(init.begin()),
std::make_move_iterator(init.end()), expandElements,
emptyElements);
init.clear();
}
void assign(container_type&& init, EmptyElements emptyElements)
{
this->assign(std::move(init), ExpandElements::Yes, emptyElements);
}
void assign(std::initializer_list<std::string> init)
{
this->assign(init.begin(), init.end());
}
// Conversions
std::string to_string() const
{
return this->join(cmList::element_separator);
}
operator container_type&() & noexcept { return this->Values; }
operator const container_type&() const& noexcept { return this->Values; }
operator container_type&&() && noexcept { return std::move(this->Values); }
// Element access
reference at(size_type pos) { return this->Values.at(pos); }
const_reference at(size_type pos) const { return this->Values.at(pos); }
reference operator[](size_type pos) { return this->Values[pos]; }
const_reference operator[](size_type pos) const { return this->Values[pos]; }
reference get_item(index_type pos)
{
return this->Values.at(this->ComputeIndex(pos));
}
const_reference get_item(index_type pos) const
{
return this->Values.at(this->ComputeIndex(pos));
}
reference front() { return this->Values.front(); }
const_reference front() const { return this->Values.front(); }
reference back() { return this->Values.back(); }
const_reference back() const { return this->Values.back(); }
// extract sublist in range [first, last)
cmList sublist(const_iterator first, const_iterator last) const
{
return cmList{ first, last, ExpandElements::No, EmptyElements::Yes };
}
// Extract sublist in range [first, last)
// Throw std::out_of_range if pos is invalid
cmList sublist(size_type pos = 0, size_type length = npos) const;
// Returns the list of elements
// Throw std::out_of_range if any index is invalid
cmList get_items(std::initializer_list<index_type> indexes) const
{
return this->GetItems(
std::vector<index_type>{ indexes.begin(), indexes.end() });
}
template <typename InputIterator>
cmList get_items(InputIterator first, InputIterator last) const
{
return this->GetItems(std::vector<index_type>{ first, last });
}
size_type find(cm::string_view value) const;
size_type find(cmValue value) const
{
if (value) {
return this->find(*value);
}
return npos;
}
container_type& data() noexcept { return this->Values; }
const container_type& data() const noexcept { return this->Values; }
// Iterators
iterator begin() noexcept { return this->Values.begin(); }
const_iterator begin() const noexcept { return this->Values.begin(); }
const_iterator cbegin() const noexcept { return this->Values.cbegin(); }
iterator end() noexcept { return this->Values.end(); }
const_iterator end() const noexcept { return this->Values.end(); }
const_iterator cend() const noexcept { return this->Values.cend(); }
reverse_iterator rbegin() noexcept { return this->Values.rbegin(); }
const_reverse_iterator rbegin() const noexcept
{
return this->Values.rbegin();
}
const_reverse_iterator crbegin() const noexcept
{
return this->Values.crbegin();
}
reverse_iterator rend() noexcept { return this->Values.rend(); }
const_reverse_iterator rend() const noexcept { return this->Values.rend(); }
const_reverse_iterator crend() const noexcept
{
return this->Values.crend();
}
// Capacity
bool empty() const noexcept { return this->Values.empty(); }
size_type size() const noexcept { return this->Values.size(); }
// Modifiers
void clear() noexcept { this->Values.clear(); }
iterator insert(const_iterator pos, cm::string_view value,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
return cmList::Insert(this->Values, pos, std::string(value),
expandElements, emptyElements);
}
iterator insert(const_iterator pos, cm::string_view value,
EmptyElements emptyElements)
{
return this->insert(pos, value, ExpandElements::Yes, emptyElements);
}
iterator insert(const_iterator pos, std::string const& value,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
return cmList::Insert(this->Values, pos, value, expandElements,
emptyElements);
}
iterator insert(const_iterator pos, std::string const& value,
EmptyElements emptyElements)
{
return this->insert(pos, value, ExpandElements::Yes, emptyElements);
}
iterator insert(const_iterator pos, cmValue value,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
if (value) {
return this->insert(pos, *value, expandElements, emptyElements);
}
auto delta = std::distance(this->cbegin(), pos);
return this->begin() + delta;
}
iterator insert(const_iterator pos, cmValue value,
EmptyElements emptyElements)
{
return this->insert(pos, value, ExpandElements::Yes, emptyElements);
}
template <typename InputIterator>
iterator insert(const_iterator pos, InputIterator first, InputIterator last,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
return cmList::Insert(this->Values, pos, first, last, expandElements,
emptyElements);
}
template <typename InputIterator>
iterator insert(const_iterator pos, InputIterator first, InputIterator last,
EmptyElements emptyElements)
{
return this->insert(pos, first, last, ExpandElements::Yes, emptyElements);
}
iterator insert(const_iterator pos, const cmList& values,
ExpandElements expandElements = ExpandElements::No,
EmptyElements emptyElements = EmptyElements::No)
{
return this->insert(pos, values.begin(), values.end(), expandElements,
emptyElements);
}
iterator insert(const_iterator pos, const cmList& values,
EmptyElements emptyElements)
{
return this->insert(pos, values, ExpandElements::No, emptyElements);
}
iterator insert(const_iterator pos, cmList&& values,
ExpandElements expandElements = ExpandElements::No,
EmptyElements emptyElements = EmptyElements::No)
{
auto result = this->insert(pos, std::make_move_iterator(values.begin()),
std::make_move_iterator(values.end()),
expandElements, emptyElements);
values.clear();
return result;
}
iterator insert(const_iterator pos, cmList&& values,
EmptyElements emptyElements)
{
return this->insert(pos, std::move(values), ExpandElements::No,
emptyElements);
}
iterator insert(const_iterator pos, const container_type& values,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
return this->insert(pos, values.begin(), values.end(), expandElements,
emptyElements);
}
iterator insert(const_iterator pos, const container_type& values,
EmptyElements emptyElements)
{
return this->insert(pos, values, ExpandElements::Yes, emptyElements);
}
iterator insert(const_iterator pos, container_type&& values,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
auto result = this->insert(pos, std::make_move_iterator(values.begin()),
std::make_move_iterator(values.end()),
expandElements, emptyElements);
values.clear();
return result;
}
iterator insert(const_iterator pos, container_type&& values,
EmptyElements emptyElements)
{
return this->insert(pos, std::move(values), ExpandElements::Yes,
emptyElements);
}
iterator insert(const_iterator pos, std::initializer_list<std::string> ilist)
{
return this->insert(pos, ilist.begin(), ilist.end());
}
iterator append(cm::string_view value,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
return this->insert(this->cend(), value, expandElements, emptyElements);
}
iterator append(cm::string_view value, EmptyElements emptyElements)
{
return this->append(value, ExpandElements::Yes, emptyElements);
}
iterator append(std::string const& value,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
return this->insert(this->cend(), value, expandElements, emptyElements);
}
iterator append(std::string const& value, EmptyElements emptyElements)
{
return this->append(value, ExpandElements::Yes, emptyElements);
}
iterator append(cmValue value,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
if (value) {
return this->append(*value, expandElements, emptyElements);
}
return this->end();
}
iterator append(cmValue value, EmptyElements emptyElements)
{
return this->append(value, ExpandElements::Yes, emptyElements);
}
template <typename InputIterator>
iterator append(InputIterator first, InputIterator last,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
return this->insert(this->cend(), first, last, expandElements,
emptyElements);
}
template <typename InputIterator>
iterator append(InputIterator first, InputIterator last,
EmptyElements emptyElements)
{
return this->append(first, last, ExpandElements::Yes, emptyElements);
}
iterator append(const cmList& values,
ExpandElements expandElements = ExpandElements::No,
EmptyElements emptyElements = EmptyElements::No)
{
return this->append(values.begin(), values.end(), expandElements,
emptyElements);
}
iterator append(const cmList& values, EmptyElements emptyElements)
{
return this->append(values, ExpandElements::No, emptyElements);
}
iterator append(cmList&& values,
ExpandElements expandElements = ExpandElements::No,
EmptyElements emptyElements = EmptyElements::No)
{
auto result = this->append(std::make_move_iterator(values.begin()),
std::make_move_iterator(values.end()),
expandElements, emptyElements);
values.clear();
return result;
}
iterator append(cmList&& values, EmptyElements emptyElements)
{
return this->append(std::move(values), ExpandElements::No, emptyElements);
}
iterator append(const container_type& values,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
return this->append(values.begin(), values.end(), expandElements,
emptyElements);
}
iterator append(const container_type& values, EmptyElements emptyElements)
{
return this->append(values, ExpandElements::Yes, emptyElements);
}
iterator append(container_type&& values,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
auto result = this->append(std::make_move_iterator(values.begin()),
std::make_move_iterator(values.end()),
expandElements, emptyElements);
values.clear();
return result;
}
iterator append(container_type&& values, EmptyElements emptyElements)
{
return this->append(std::move(values), ExpandElements::Yes, emptyElements);
}
iterator append(std::initializer_list<std::string> ilist)
{
return this->insert(this->cend(), ilist);
}
iterator prepend(cm::string_view value,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
return this->insert(this->cbegin(), value, expandElements, emptyElements);
}
iterator prepend(cm::string_view value, EmptyElements emptyElements)
{
return this->prepend(value, ExpandElements::Yes, emptyElements);
}
iterator prepend(std::string const& value,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
return this->insert(this->cbegin(), value, expandElements, emptyElements);
}
iterator prepend(std::string const& value, EmptyElements emptyElements)
{
return this->prepend(value, ExpandElements::Yes, emptyElements);
}
iterator prepend(cmValue value,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
if (value) {
return this->prepend(*value, expandElements, emptyElements);
}
return this->begin();
}
iterator prepend(cmValue value, EmptyElements emptyElements)
{
return this->prepend(value, ExpandElements::Yes, emptyElements);
}
template <typename InputIterator>
iterator prepend(InputIterator first, InputIterator last,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
return this->insert(this->cbegin(), first, last, expandElements,
emptyElements);
}
template <typename InputIterator>
iterator prepend(InputIterator first, InputIterator last,
EmptyElements emptyElements)
{
return this->prepend(first, last, ExpandElements::Yes, emptyElements);
}
iterator prepend(const cmList& values,
ExpandElements expandElements = ExpandElements::No,
EmptyElements emptyElements = EmptyElements::No)
{
return this->prepend(values.begin(), values.end(), expandElements,
emptyElements);
}
iterator prepend(const cmList& values, EmptyElements emptyElements)
{
return this->prepend(values, ExpandElements::No, emptyElements);
}
iterator prepend(cmList&& values,
ExpandElements expandElements = ExpandElements::No,
EmptyElements emptyElements = EmptyElements::No)
{
auto result = this->prepend(std::make_move_iterator(values.begin()),
std::make_move_iterator(values.end()),
expandElements, emptyElements);
values.clear();
return result;
}
iterator prepend(cmList&& values, EmptyElements emptyElements)
{
return this->prepend(std::move(values), ExpandElements::No, emptyElements);
}
iterator prepend(const container_type& values,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
return this->prepend(values.begin(), values.end(), expandElements,
emptyElements);
}
iterator prepend(const container_type& values, EmptyElements emptyElements)
{
return this->prepend(values, ExpandElements::Yes, emptyElements);
}
iterator prepend(container_type&& values,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
auto result = this->prepend(std::make_move_iterator(values.begin()),
std::make_move_iterator(values.end()),
expandElements, emptyElements);
values.clear();
return result;
}
iterator prepend(container_type&& values, EmptyElements emptyElements)
{
return this->prepend(std::move(values), ExpandElements::Yes,
emptyElements);
}
iterator prepend(std::initializer_list<std::string> ilist)
{
return this->insert(this->cbegin(), ilist);
}
void push_back(std::string const& value) { this->Values.push_back(value); }
void push_back(cm::string_view value)
{
this->Values.push_back(std::string{ value });
}
void push_back(std::string&& value)
{
this->Values.push_back(std::move(value));
}
template <typename... Args>
iterator emplace(const_iterator pos, Args&&... args)
{
return this->Values.emplace(pos, std::forward<Args>(args)...);
}
template <typename... Args>
void emplace_back(Args&&... args)
{
this->Values.emplace_back(std::forward<Args>(args)...);
}
// Inserts elements in the list
// Throw std::out_of_range if index is invalid
template <typename InputIterator>
cmList& insert_items(index_type index, InputIterator first,
InputIterator last,
ExpandElements expandElements = ExpandElements::Yes,
EmptyElements emptyElements = EmptyElements::No)
{
auto const offset =
static_cast<difference_type>(this->ComputeInsertIndex(index));
this->insert(this->begin() + offset, first, last, expandElements,
emptyElements);
return *this;
}
template <typename InputIterator>
cmList& insert_items(index_type index, InputIterator first,
InputIterator last, EmptyElements emptyElements)
{
this->insert(this->begin() + this->ComputeInsertIndex(index), first, last,
ExpandElements::Yes, emptyElements);
return *this;
}
cmList& insert_items(index_type index,
std::initializer_list<std::string> values)
{
return this->insert_items(index, values.begin(), values.end());
}
iterator erase(const_iterator pos)
{
// convert const_iterator in iterator to please non standard c++11
// compilers (gcc 4.8 for example)
auto pos2 =
this->Values.begin() + std::distance(this->Values.cbegin(), pos);
return this->Values.erase(pos2);
}
iterator erase(const_iterator first, const_iterator last)
{
// convert const_iterator in iterator to please non standard c++11
// compilers (gcc 4.8 for example)
auto first2 =
this->Values.begin() + std::distance(this->Values.cbegin(), first);
auto last2 =
this->Values.begin() + std::distance(this->Values.cbegin(), last);
return this->Values.erase(first2, last2);
}
void pop_back() { this->Values.pop_back(); }
void pop_front() { this->Values.erase(this->begin()); }
// Removes elements from the list
// Throw std::out_of_range if any index is invalid
cmList& remove_items(std::initializer_list<index_type> indexes)
{
return this->RemoveItems(
std::vector<index_type>{ indexes.begin(), indexes.end() });
}
cmList& remove_items(std::initializer_list<std::string> values)
{
return this->RemoveItems(
std::vector<std::string>{ values.begin(), values.end() });
}
template <typename InputIterator>
cmList& remove_items(InputIterator first, InputIterator last)
{
return this->RemoveItems(
std::vector<typename InputIterator::value_type>{ first, last });
}
cmList& remove_duplicates();
void resize(size_type count) { this->Values.resize(count); }
enum class FilterMode
{
INCLUDE,
EXCLUDE
};
// Includes or removes items from the list
// Throw std::invalid_argument if regular expression is invalid
cmList& filter(cm::string_view regex, FilterMode mode);
cmList& reverse()
{
std::reverse(this->Values.begin(), this->Values.end());
return *this;
}
struct SortConfiguration
{
enum class OrderMode
{
DEFAULT,
ASCENDING,
DESCENDING,
} Order = OrderMode::DEFAULT;
enum class CompareMethod
{
DEFAULT,
STRING,
FILE_BASENAME,
NATURAL,
} Compare = CompareMethod::DEFAULT;
enum class CaseSensitivity
{
DEFAULT,
SENSITIVE,
INSENSITIVE,
} Case = CaseSensitivity::DEFAULT;
// declare the default constructor to work-around clang bug
SortConfiguration();
SortConfiguration(OrderMode order, CompareMethod compare,
CaseSensitivity caseSensitivity)
: Order(order)
, Compare(compare)
, Case(caseSensitivity)
{
}
};
cmList& sort(const SortConfiguration& config = SortConfiguration{});
// exception raised on error during transform operations
class transform_error : public std::runtime_error
{
public:
transform_error(const std::string& error)
: std::runtime_error(error)
{
}
};
class TransformSelector
{
public:
using index_type = cmList::index_type;
// define some structs used as template selector
struct AT;
struct FOR;
struct REGEX;
virtual ~TransformSelector() = default;
virtual const std::string& GetTag() = 0;
// method NEW is used to allocate a selector of the needed type.
// For example:
// cmList::TransformSelector::New<AT>({1, 2, 5, 6});
// or
// cmList::TransformSelector::New<REGEX>("^XX.*");
template <typename Type>
static std::unique_ptr<TransformSelector> New(
std::initializer_list<index_type>);
template <typename Type>
static std::unique_ptr<TransformSelector> New(
std::vector<index_type> const&);
template <typename Type>
static std::unique_ptr<TransformSelector> New(std::vector<index_type>&&);
template <typename Type>
static std::unique_ptr<TransformSelector> New(std::string const&);
template <typename Type>
static std::unique_ptr<TransformSelector> New(std::string&&);
private:
static std::unique_ptr<TransformSelector> NewAT(
std::initializer_list<index_type> init);
static std::unique_ptr<TransformSelector> NewAT(
std::vector<index_type> const& init);
static std::unique_ptr<TransformSelector> NewAT(
std::vector<index_type>&& init);
static std::unique_ptr<TransformSelector> NewFOR(
std::initializer_list<index_type> init);
static std::unique_ptr<TransformSelector> NewFOR(
std::vector<index_type> const& init);
static std::unique_ptr<TransformSelector> NewFOR(
std::vector<index_type>&& init);
static std::unique_ptr<TransformSelector> NewREGEX(
std::string const& init);
static std::unique_ptr<TransformSelector> NewREGEX(std::string&& init);
};
enum class TransformAction
{
APPEND,
PREPEND,
TOLOWER,
TOUPPER,
STRIP,
GENEX_STRIP,
REPLACE
};
// Transforms the list by applying an action
// Throw std::transform_error is any of arguments specified are invalid
cmList& transform(TransformAction action,
std::unique_ptr<TransformSelector> = {});
cmList& transform(TransformAction action, std::string const& arg,
std::unique_ptr<TransformSelector> = {});
cmList& transform(TransformAction action, std::string const& arg1,
std::string const& arg2,
std::unique_ptr<TransformSelector> = {});
cmList& transform(TransformAction action,
std::vector<std::string> const& args,
std::unique_ptr<TransformSelector> = {});
std::string join(cm::string_view glue) const
{
return cmList::Join(this->Values, glue);
}
void swap(cmList& other) noexcept { this->Values.swap(other.Values); }
// static members
// ==============
// these methods can be used to store CMake list expansion directly in a
// std::vector.
static void assign(std::vector<std::string>& container,
cm::string_view value,
EmptyElements emptyElements = EmptyElements::No)
{
container.clear();
cmList::append(container, value, emptyElements);
}
static void assign(std::vector<std::string>& container,
std::string const& value,
EmptyElements emptyElements = EmptyElements::No)
{
container.clear();
cmList::append(container, value, emptyElements);
}
static void assign(std::vector<std::string>& container, cmValue value,
EmptyElements emptyElements = EmptyElements::No)
{
if (value) {
cmList::assign(container, *value, emptyElements);
} else {
container.clear();
}
}
template <typename InputIterator>
static void assign(std::vector<std::string>& container, InputIterator first,
InputIterator last,
EmptyElements emptyElements = EmptyElements::No)
{
container.clear();
cmList::append(container, first, last, emptyElements);
}
static std::vector<std::string>::iterator insert(
std::vector<std::string>& container,
std::vector<std::string>::const_iterator pos, cm::string_view value,
EmptyElements emptyElements = EmptyElements::No)
{
return cmList::Insert(container, pos, std::string(value),
ExpandElements::Yes, emptyElements);
}
static std::vector<std::string>::iterator insert(
std::vector<std::string>& container,
std::vector<std::string>::const_iterator pos, std::string const& value,
EmptyElements emptyElements = EmptyElements::No)
{
return cmList::Insert(container, pos, value, ExpandElements::Yes,
emptyElements);
}
static std::vector<std::string>::iterator insert(
std::vector<std::string>& container,
std::vector<std::string>::const_iterator pos, cmValue value,
EmptyElements emptyElements = EmptyElements::No)
{
if (value) {
return cmList::insert(container, pos, *value, emptyElements);
}
auto delta = std::distance(container.cbegin(), pos);
return container.begin() + delta;
}
template <typename InputIterator>
static std::vector<std::string>::iterator insert(
std::vector<std::string>& container,
std::vector<std::string>::const_iterator pos, InputIterator first,
InputIterator last, EmptyElements emptyElements = EmptyElements::No)
{
return cmList::Insert(container, pos, first, last, ExpandElements::Yes,
emptyElements);
}
static std::vector<std::string>::iterator append(
std::vector<std::string>& container, cm::string_view value,
EmptyElements emptyElements = EmptyElements::No)
{
return cmList::insert(container, container.cend(), value, emptyElements);
}
static std::vector<std::string>::iterator append(
std::vector<std::string>& container, std::string const& value,
EmptyElements emptyElements = EmptyElements::No)
{
return cmList::insert(container, container.cend(), value, emptyElements);
}
static std::vector<std::string>::iterator append(
std::vector<std::string>& container, cmValue value,
EmptyElements emptyElements = EmptyElements::No)
{
if (value) {
return cmList::append(container, *value, emptyElements);
}
return container.end();
}
template <typename InputIterator>
static std::vector<std::string>::iterator append(
std::vector<std::string>& container, InputIterator first,
InputIterator last, EmptyElements emptyElements = EmptyElements::No)
{
return cmList::insert(container, container.cend(), first, last,
emptyElements);
}
static std::vector<std::string>::iterator prepend(
std::vector<std::string>& container, cm::string_view value,
EmptyElements emptyElements = EmptyElements::No)
{
return cmList::insert(container, container.cbegin(), value, emptyElements);
}
static std::vector<std::string>::iterator prepend(
std::vector<std::string>& container, std::string const& value,
EmptyElements emptyElements = EmptyElements::No)
{
return cmList::insert(container, container.cbegin(), value, emptyElements);
}
static std::vector<std::string>::iterator prepend(
std::vector<std::string>& container, cmValue value,
EmptyElements emptyElements = EmptyElements::No)
{
if (value) {
return cmList::prepend(container, *value, emptyElements);
}
return container.begin();
}
template <typename InputIterator>
static std::vector<std::string>::iterator prepend(
std::vector<std::string>& container, InputIterator first,
InputIterator last, EmptyElements emptyElements = EmptyElements::No)
{
return cmList::insert(container, container.cbegin(), first, last,
emptyElements);
}
// The following methods offer the possibility to extend a CMake list
// but without any intermediate expansion. So the operation is simply a
// string concatenation with special handling for the CMake list item
// separator
static std::string& append(std::string& list, std::string&& value);
static std::string& append(std::string& list, cm::string_view value);
template <typename InputIterator>
static std::string& append(std::string& list, InputIterator first,
InputIterator last)
{
if (first == last) {
return list;
}
return cmList::append(
list, cmList::Join(first, last, cmList::element_separator));
}
static std::string& prepend(std::string& list, std::string&& value);
static std::string& prepend(std::string& list, cm::string_view value);
template <typename InputIterator>
static std::string& prepend(std::string& list, InputIterator first,
InputIterator last)
{
if (first == last) {
return list;
}
return cmList::prepend(
list, cmList::Join(first, last, cmList::element_separator));
}
template <typename Range,
cm::enable_if_t<cm::is_range<Range>::value, int> = 0>
static std::string to_string(Range const& r)
{
return cmList::Join(r, cmList::element_separator);
}
// Non-members
// ===========
friend inline bool operator==(const cmList& lhs, const cmList& rhs) noexcept
{
return lhs.Values == rhs.Values;
}
friend inline bool operator!=(const cmList& lhs, const cmList& rhs) noexcept
{
return lhs.Values != rhs.Values;
}
private:
size_type ComputeIndex(index_type pos, bool boundCheck = true) const;
size_type ComputeInsertIndex(index_type pos, bool boundCheck = true) const;
cmList GetItems(std::vector<index_type>&& indexes) const;
cmList& RemoveItems(std::vector<index_type>&& indexes);
cmList& RemoveItems(std::vector<std::string>&& items);
static container_type::iterator Insert(container_type& container,
container_type::const_iterator pos,
std::string&& value,
ExpandElements expandElements,
EmptyElements emptyElements);
static container_type::iterator Insert(container_type& container,
container_type::const_iterator pos,
const std::string& value,
ExpandElements expandElements,
EmptyElements emptyElements)
{
auto tmp = value;
return cmList::Insert(container, pos, std::move(tmp), expandElements,
emptyElements);
}
template <typename InputIterator>
static container_type::iterator Insert(container_type& container,
container_type::const_iterator pos,
InputIterator first,
InputIterator last,
ExpandElements expandElements,
EmptyElements emptyElements)
{
auto delta = std::distance(container.cbegin(), pos);
if (first == last) {
return container.begin() + delta;
}
auto insertPos = container.begin() + delta;
if (expandElements == ExpandElements::Yes) {
for (; first != last; ++first) {
auto size = container.size();
insertPos = cmList::Insert(container, insertPos, *first,
expandElements, emptyElements);
insertPos += static_cast<decltype(delta)>(container.size() - size);
}
} else {
for (; first != last; ++first) {
if (!(*first).empty() || emptyElements == EmptyElements::Yes) {
insertPos = container.insert(insertPos, *first);
++insertPos;
}
}
}
return container.begin() + delta;
}
static std::string const& ToString(std::string const& s) { return s; }
static std::string ToString(cm::string_view s) { return std::string{ s }; }
static std::string const& ToString(BT<std::string> const&);
template <typename Range>
static std::string Join(Range const& r, cm::string_view glue)
{
if (cm::size(r) == 0) {
return std::string{};
}
return cmList::Join(std::begin(r), std::end(r), glue);
}
template <typename InputIterator>
static std::string Join(InputIterator first, InputIterator last,
cm::string_view glue)
{
if (first == last) {
return std::string{};
}
const auto sep = std::string{ glue };
std::string joined = cmList::ToString(*first);
for (auto it = std::next(first); it != last; ++it) {
joined += sep;
joined += cmList::ToString(*it);
}
return joined;
}
container_type Values;
};
// specializations for cmList::TransformSelector allocators
// ========================================================
template <>
inline std::unique_ptr<cmList::TransformSelector>
cmList::TransformSelector::New<cmList::TransformSelector::AT>(
std::initializer_list<index_type> init)
{
return cmList::TransformSelector::NewAT(init);
}
template <>
inline std::unique_ptr<cmList::TransformSelector>
cmList::TransformSelector::New<cmList::TransformSelector::AT>(
std::vector<index_type> const& init)
{
return cmList::TransformSelector::NewAT(init);
}
template <>
inline std::unique_ptr<cmList::TransformSelector>
cmList::TransformSelector::New<cmList::TransformSelector::AT>(
std::vector<index_type>&& init)
{
return cmList::TransformSelector::NewAT(std::move(init));
}
template <>
inline std::unique_ptr<cmList::TransformSelector>
cmList::TransformSelector::New<cmList::TransformSelector::FOR>(
std::initializer_list<index_type> init)
{
return cmList::TransformSelector::NewFOR(init);
}
template <>
inline std::unique_ptr<cmList::TransformSelector>
cmList::TransformSelector::New<cmList::TransformSelector::FOR>(
std::vector<index_type> const& init)
{
return cmList::TransformSelector::NewFOR(init);
}
template <>
inline std::unique_ptr<cmList::TransformSelector>
cmList::TransformSelector::New<cmList::TransformSelector::FOR>(
std::vector<index_type>&& init)
{
return cmList::TransformSelector::NewFOR(std::move(init));
}
template <>
inline std::unique_ptr<cmList::TransformSelector>
cmList::TransformSelector::New<cmList::TransformSelector::REGEX>(
std::string const& init)
{
return cmList::TransformSelector::NewREGEX(init);
}
template <>
inline std::unique_ptr<cmList::TransformSelector>
cmList::TransformSelector::New<cmList::TransformSelector::REGEX>(
std::string&& init)
{
return cmList::TransformSelector::NewREGEX(std::move(init));
}
// Non-member functions
// ====================
inline std::vector<std::string>& operator+=(std::vector<std::string>& l,
const cmList& r)
{
l.insert(l.end(), r.begin(), r.end());
return l;
}
inline std::vector<std::string>& operator+=(std::vector<std::string>& l,
cmList&& r)
{
std::move(r.begin(), r.end(), std::back_inserter(l));
r.clear();
return l;
}
namespace std {
inline void swap(cmList& lhs, cmList& rhs) noexcept
{
lhs.swap(rhs);
}
} // namespace std
namespace cm {
inline void erase(cmList& list, const std::string& value)
{
list.erase(std::remove(list.begin(), list.end(), value), list.end());
}
template <typename Predicate>
inline void erase_if(cmList& list, Predicate pred)
{
list.erase(std::remove_if(list.begin(), list.end(), pred), list.end());
}
//
// Provide a special implementation of cm::append because, in this case,
// expansion must not be applied to the inserted elements
//
#if defined(__SUNPRO_CC) && defined(__sparc)
// Oracle DeveloperStudio C++ compiler on Solaris/Sparc fails to compile
// templates with constraints.
// So, on this platform, use only simple templates.
template <typename InputIt,
cm::enable_if_t<cm::is_input_iterator<InputIt>::value, int> = 0>
void append(cmList& v, InputIt first, InputIt last)
{
v.append(first, last, cmList::ExpandElements::No);
}
template <typename Range,
cm::enable_if_t<cm::is_input_range<Range>::value, int> = 0>
void append(cmList& v, Range const& r)
{
v.append(r.begin(), r.end(), cmList::ExpandElements::No);
}
#else
template <
typename InputIt,
cm::enable_if_t<
cm::is_input_iterator<InputIt>::value &&
std::is_convertible<typename std::iterator_traits<InputIt>::value_type,
cmList::value_type>::value,
int> = 0>
void append(cmList& v, InputIt first, InputIt last)
{
v.append(first, last, cmList::ExpandElements::No);
}
template <typename Range,
cm::enable_if_t<cm::is_input_range<Range>::value &&
std::is_convertible<typename Range::value_type,
cmList::value_type>::value,
int> = 0>
void append(cmList& v, Range const& r)
{
v.append(r.begin(), r.end(), cmList::ExpandElements::No);
}
#endif
} // namespace cm
/**
* Helper functions for legacy support. Use preferably cmList class directly
* or the static methods of the class.
*/
inline void cmExpandList(
cm::string_view arg, std::vector<std::string>& argsOut,
cmList::EmptyElements emptyElements = cmList::EmptyElements::No)
{
cmList::append(argsOut, arg, emptyElements);
}
inline void cmExpandList(
cmValue arg, std::vector<std::string>& argsOut,
cmList::EmptyElements emptyElements = cmList::EmptyElements::No)
{
cmList::append(argsOut, arg, emptyElements);
}
|