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
|
/** @file
Class for handling "views" of text. Views presume the memory for the buffer is managed
elsewhere and allow efficient access to segments of the buffer without copies. Views are read
only as the view doesn't own the memory. Along with generic buffer methods are specialized
methods to support better string parsing, particularly token based parsing.
This class is based on @c std::string_view and is easily and cheaply converted to and from that class.
@section license License
Licensed to the Apache Software Foundation (ASF) under one or more contributor license
agreements. See the NOTICE file distributed with this work for additional information regarding
copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with the License. You may obtain
a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License
is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
or implied. See the License for the specific language governing permissions and limitations under
the License.
*/
#pragma once
#include <bitset>
#include <functional>
#include <iosfwd>
#include <memory.h>
#include <algorithm>
#include <string>
#include <string_view>
#include <limits>
#include <cstdint>
/** Compare views with ordering, ignoring case.
*
* @param lhs input view
* @param rhs input view
* @return The ordered comparison value.
*
* - -1 if @a lhs is less than @a rhs
* - 1 if @a lhs is greater than @a rhs
* - 0 if the views have identical content.
*
* If one view is the prefix of the other, the shorter view is less (first in the ordering).
*/
int strcasecmp(const std::string_view &lhs, const std::string_view &rhs);
/** Compare views with ordering.
*
* @param lhs input view
* @param rhs input view
* @return The ordered comparison value.
*
* - -1 if @a lhs is less than @a rhs
* - 1 if @a lhs is greater than @a rhs
* - 0 if the views have identical content.
*
* If one view is the prefix of the other, the shorter view is less (first in the ordering).
*
* @note For string views, there is no difference between @c strcmp and @c memcmp.
* @see strcmp
*/
int memcmp(const std::string_view &lhs, const std::string_view &rhs);
/** Copy bytes.
*
* @param dst Destination buffer.
* @param src Original string.
* @return @a dest
*
* This is a convenience for
* @code
* memcpy(dst, src.data(), size.size());
* @endcode
* Therefore @a dst must point at a buffer large enough to hold @a src. If this is not already
* determined, then presuming @c DST_SIZE is the size of the buffer at @a dst
* @code
* memcpy(dst, src.prefix(DST_SIZE));
* @endcode
*
*/
inline void *
memcpy(void *dst, const std::string_view &src)
{
return memcpy(dst, src.data(), src.size());
}
/** Compare views with ordering.
*
* @param lhs input view
* @param rhs input view
* @return The ordered comparison value.
*
* - -1 if @a lhs is less than @a rhs
* - 1 if @a lhs is greater than @a rhs
* - 0 if the views have identical content.
*
* If one view is the prefix of the other, the shorter view is less (first in the ordering).
*
* @note For string views, there is no difference between @c strcmp and @c memcmp.
* @see memcmp
*/
inline int
strcmp(const std::string_view &lhs, const std::string_view &rhs)
{
return memcmp(lhs, rhs);
}
namespace ts
{
class TextView;
/** A read only view of contiguous piece of memory.
A @c TextView does not own the memory to which it refers, it is simply a view of part of some
(presumably) larger memory object. The purpose is to allow working in a read only way a specific
part of the memory. A classic example for ATS is working with HTTP header fields and values
which need to be accessed independently but preferably without copying. A @c TextView supports this style.
@c TextView is based on an earlier classes @c ConstBuffer, @c StringView and influenced by @c
Boost.string_ref and @c std::string_view. None of these were adequate for how use of @c
ConstBuffer evolved with regard to text based manipulations. @c TextView is a super set of @c
std::string_view (and therefore our local implementation, @std::string_view). It is designed to
be a drop in replacement.
@note To simplify the interface there is no constructor just a character pointer. Constructors require
either a literal string or an explicit length. This avoid ambiguities which are much more annoying that
explicitly calling @c strlen on a character pointer.
*/
class TextView : public std::string_view
{
using self_type = TextView; ///< Self reference type.
using super_type = std::string_view; ///< Parent type.
public:
/// Default constructor (empty buffer).
constexpr TextView();
/** Construct from pointer and size.
*
* @param ptr String for the view.
* @param n Length of string at @a ptr.
*
* If @a n is @c npos then @a ptr is presumed to be a C string and the length is computed from it.
* In this case, if @a ptr is @c nullptr the length is zero, otherwise the length is that returned
* by @c strlen(ptr).
*
* @note - @c strlen can't be called in a @a constexpr value therefore @a n must not be @c npos
* in any @c constexpr definition.
*/
constexpr TextView(const char *ptr, size_t n);
/** Construct explicitly with a pointer and size.
*
* @param ptr String.
* @param n Length
*
* If @a n is negative then @a ptr is presumed to be a C string the length is computed.
* In this case, if @a ptr is @c nullptr the length is zero, otherwise the length is that returned
* by @c strlen(ptr).
*
* @note - @c strlen can't be called in a @a constexpr value therefore @a n must not be negative
* in any @c constexpr definition.
*
* @internal This is also useful for cases where the integral type is already signed, to avoid
* having to cast.
*/
constexpr TextView(const char *ptr, int n);
/** Construct from a half open range of two pointers.
@note The byte at @start is in the view but the byte at @a end is not.
*/
constexpr TextView(const char *start, ///< First byte in the view.
const char *end ///< First byte not in the view.
);
/** Constructor from constant string.
Construct directly from an array of characters. All elements of the array are
included in the view unless the last element is nul, in which case it is elided.
If this is inappropriate then a constructor with an explicit size should be used.
@code
TextView a("A literal string");
@endcode
*/
template <size_t N> constexpr TextView(const char (&s)[N]);
/** Construct from nullptr.
This implicitly makes the length 0.
*/
constexpr TextView(std::nullptr_t);
/// Construct from a @c std::string_view.
constexpr TextView(super_type const &that);
/// Construct from @c std::string, referencing the entire string contents.
/// @internal Not all compilers make @c std::string methods called @c constexpr
TextView(std::string const &str);
/// Pointer to byte past the last byte in the view.
const char *data_end() const;
/// Assignment.
self_type &operator =(super_type const &that);
template <size_t N> self_type &operator=(const char (&s)[N]);
self_type &operator =(const std::string &s);
/// Explicitly set the view.
self_type &assign(char const *ptr, size_t n);
/// Explicitly set the view to the range [ @a b , @a e )
self_type &assign(char const *b, char const *e);
/// Explicitly set the view from a @c std::string
self_type &assign(std::string const &s);
/** Dereference operator.
@note This allows the view to be used as if it were a character iterator to a null terminated
string which is handy for several other STL interfaces.
@return The first byte in the view, or a nul character if the view is empty.
*/
/// @return The first byte in the view.
char operator*() const;
/** Shift the view to discard the first byte.
@return @a this.
*/
self_type &operator++();
/// Shift the view to discard the first byte.
/// @return A pre-increment copy of the view.
self_type operator++(int);
/** Shift the view to discard the leading @a n bytes.
Equivalent to @c std::string_view::remove_prefix
@return @a this
*/
self_type &operator+=(size_t n);
/// Check for empty view.
/// @return @c true if the view has a zero pointer @b or size.
bool operator!() const;
/// Check for non-empty view.
/// @return @c true if the view refers to a non-empty range of bytes.
explicit operator bool() const;
/// Clear the view (become an empty view).
self_type &clear();
/// Get the offset of the first character for which @a pred is @c true.
template <typename F> size_t find_if(F const &pred) const;
/// Get the offset of the last character for which @a pred is @c true.
template <typename F> size_t rfind_if(F const &pred) const;
/** Remove bytes that match @a c from the start of the view.
*/
self_type <rim(char c);
/** Remove bytes from the start of the view that are in @a delimiters.
*/
self_type <rim(super_type const &delimiters);
/** Remove bytes from the start of the view that are in @a delimiters.
@internal This is needed to avoid collisions with the templated predicate style.
@return @c *this
*/
self_type <rim(const char *delimiters);
/** Remove bytes from the start of the view for which @a pred is @c true.
@a pred must be a functor taking a @c char argument and returning @c bool.
@return @c *this
*/
template <typename F> self_type <rim_if(F const &pred);
/** Remove bytes that match @a c from the end of the view.
*/
self_type &rtrim(char c);
/** Remove bytes from the end of the view that are in @a delimiters.
*/
self_type &rtrim(super_type const &delimiters);
/** Remove bytes from the end of the view that are in @a delimiters.
@internal This is needed to avoid collisions with the templated predicate style.
@return @c *this
*/
self_type &rtrim(const char *delimiters);
/** Remove bytes from the start and end of the view for which @a pred is @c true.
@a pred must be a functor taking a @c char argument and returning @c bool.
@return @c *this
*/
template <typename F> self_type &rtrim_if(F const &pred);
/** Remove bytes that match @a c from the end of the view.
*/
self_type &trim(char c);
/** Remove bytes from the start and end of the view that are in @a delimiters.
*/
self_type &trim(super_type const &delimiters);
/** Remove bytes from the start and end of the view that are in @a delimiters.
@internal This is needed to avoid collisions with the templated predicate style.
@return @c *this
*/
self_type &trim(const char *delimiters);
/** Remove bytes from the start and end of the view for which @a pred is @c true.
@a pred must be a functor taking a @c char argument and returning @c bool.
@return @c *this
*/
template <typename F> self_type &trim_if(F const &pred);
/** Get the prefix of size @a n.
If @a n is greater than the size the entire view is returned.
@return A view of the prefix.
*/
self_type prefix(size_t n) const;
/// Convenience overload to avoid ambiguity for literal numbers.
self_type prefix(int n) const;
/** Get the prefix delimited by the first occurrence of the character @a c.
If @a c is not found the entire view is returned.
The delimiter character is not included in the returned view.
@return A view of the prefix.
*/
self_type prefix(char c) const;
/** Get the prefix delimited by the first occurrence of a character in @a delimiters.
If no such character is found the entire view is returned.
The delimiter character is not included in the returned view.
@return A view of the prefix.
*/
self_type prefix(super_type const &delimiters) const;
/** Get the prefix delimited by the first character for which @a pred is @c true.
If no such character is found the entire view is returned
The delimiter character is not included in the returned view.
@return A view of the prefix.
*/
template <typename F> self_type prefix_if(F const &pred) const;
/// Overload to provide better return type.
self_type &remove_prefix(size_t n);
/// Remove the prefix delimited by the first occurrence of @a c.
self_type &remove_prefix_at(char c);
/// Remove the prefix delimited by the first occurrence of a character for which @a pred is @c true.
template <typename F> self_type &remove_prefix_if(F const &pred);
/** Split a prefix from the view on the character at offset @a n.
The view is split in to two parts and the byte at offset @a n is discarded. @a this retains
all data @b after offset @a n (equivalent to <tt>TextView::substr(n+1)</tt>). A new view
containing the initial bytes up to but not including the byte at offset @a n is returned,
(equivalent to <tt>TextView(0, n)</tt>).
This is convenient when tokenizing.
If @a n is larger than the size of the view no change is made and an empty buffer is
returned. Therefore this method is most useful when checking for the presence of the delimiter
is desirable, as the result of @c find methods can be passed directly to this method.
@note This method and its overloads always remove the delimiter character.
@code
void f(TextView& text) {
TextView token = text.get_prefix_at(text.find(delimiter));
if (token) { // ... process token }
@endcode
@return The prefix bounded at offset @a n or an empty view if @a n is more than the view
size.
@see take_prefix_at
*/
self_type split_prefix_at(size_t n);
/// Convenience overload for literal numbers.
self_type split_prefix_at(int n);
/// Convenience overload, split on character.
self_type split_prefix_at(char c);
/// Convenience overload, split on delimiter set.
self_type split_prefix_at(super_type const &delimiters);
/// Convenience overload, split on predicate.
template <typename F> self_type split_prefix_if(F const &pred);
/** Split a prefix from the view on the character at offset @a n.
The view is split in to two parts and the byte at offset @a n is discarded. @a this retains
all data @b after offset @a n (equivalent to <tt>TextView::substr(n+1)</tt>). A new view
containing the initial bytes up to but not including the byte at offset @a n is returned,
(equivalent to <tt>TextView(0, n)</tt>).
This is convenient when tokenizing.
If @a n is larger than the view size then the entire view is removed and returned, leaving an
empty view. Therefore if @this is not empty, a non-empty view is always returned. This is desirable
if a non-empty return view is always wanted, regardless of whether a delimiter is present.
@note This method and its overloads always remove the delimiter character.
@code
TextView text;
while (text) {
TextView token = text.take_prefix_at(text.find(delimiter));
// token will always be non-empty because text was not empty.
}
@endcode
@return The prefix bounded at offset @a n or the entire view if @a n is more than the view
size.
@see split_prefix_at
*/
self_type take_prefix_at(size_t n);
/// Convenience overload, extract on delimiter set.
self_type take_prefix_at(char c);
/// Convenience overload, extract on delimiter set.
self_type take_prefix_at(super_type const &delimiters);
/// Convenience overload, extract on predicate.
template <typename F> self_type take_prefix_if(F const &pred);
/** Get the last @a n characters of the view.
@return A buffer that contains @a n characters at the end of the view.
*/
self_type suffix(size_t n) const;
/// Convenience overload to avoid ambiguity for literal numbers.
self_type suffix(int n) const;
/// Convenience overload for character.
self_type suffix(char c) const;
/// Convenience overload for delimiter set.
self_type suffix(super_type const &delimiters) const;
/// Convenience overload for delimiter set.
self_type suffix(const char *delimiters) const;
/// Get the prefix delimited by the first character for which @a pred is @c true.
template <typename F> self_type suffix_if(F const &pred) const;
/// Overload to provide better return type.
self_type &remove_suffix(size_t n);
/// Remove a suffix, delimited by the last occurrence of @c c.
self_type &remove_suffix_at(char c);
/// Remove a suffix, delimited by the last occurrence of a character for which @a pred is @c true.
template <typename F> self_type &remove_suffix_if(F const &f);
/** Split the view to get a suffix of size @a n.
The view is split in to two parts, a suffix of size @a n and a remainder which is the original
view less @a n + 1 characters at the end. That is, the character between the suffix and the
remainder is discarded. This is equivalent to <tt>TextView::suffix(this->size()-n)</tt> and
<tt>TextView::remove_suffix(this->size() - (n+1))</tt>.
If @a n is equal to or larger than the size of the view the entire view is removed as the
suffix.
@return The suffix of size @a n.
@see split_suffix_at
*/
self_type split_suffix(size_t n);
/// Convenience overload for literal integers.
self_type split_suffix(int n);
/** Split the view on the character at offset @a n.
The view is split in to two parts and the byte at offset @a n is discarded. @a this retains
all data @b before offset @a n (equivalent to <tt>TextView::prefix(this->size()-n-1)</tt>). A
new view containing the trailing bytes after offset @a n is returned, (equivalent to
<tt>TextView::suffix(n))</tt>).
If @a n is larger than the size of the view no change is made and an empty buffer is
returned. Therefore this method is most useful when checking for the presence of the delimiter
is desirable, as the result of @c find methods can be passed directly to this method.
@note This method and its overloads always remove the delimiter character.
@return The suffix bounded at offset @a n or an empty view if @a n is more than the view
size.
*/
self_type split_suffix_at(size_t n);
/// Convenience overload for literal integers.
self_type split_suffix_at(int n);
/// Convenience overload for character.
self_type split_suffix_at(char c);
/// Convenience overload for delimiter set.
self_type split_suffix_at(super_type const &delimiters);
/// Split the view on the last character for which @a pred is @c true.
template <typename F> self_type split_suffix_if(F const &pred);
/** Split the view on the character at offset @a n.
The view is split in to two parts and the byte at offset @a n is discarded. @a this retains
all data @b before offset @a n (equivalent to <tt>TextView::prefix(this->size()-n-1)</tt>). A
new view containing the trailing bytes after offset @a n is returned, (equivalent to
<tt>TextView::suffix(n))</tt>).
If @a n is larger than the view size then the entire view is removed and returned, leaving an
empty view. Therefore if @this is not empty, a non-empty view is always returned. This is desirable
if a non-empty return view is always wanted, regardless of whether a delimiter is present.
@note This method and its overloads always remove the delimiter character.
@return The suffix bounded at offset @a n or the entire view if @a n is more than the view
size.
*/
self_type take_suffix_at(size_t n);
/// Convenience overload for literal integers.
self_type take_suffix_at(int n);
/// Convenience overload for character.
self_type take_suffix_at(char c);
/// Convenience overload for delimiter set.
self_type take_suffix_at(super_type const &delimiters);
/// Split the view on the last character for which @a pred is @c true.
template <typename F> self_type take_suffix_if(F const &pred);
/** Prefix check.
@return @c true if @a this is a prefix of @a that.
*/
bool isPrefixOf(super_type const &that) const;
/** Case ignoring prefix check.
@return @c true if @a this is a prefix of @a that, ignoring case.
*/
bool isNoCasePrefixOf(super_type const &that) const;
// Functors for using this class in STL containers.
/// Ordering functor, lexicographic comparison.
struct LessThan {
bool
operator()(self_type const &lhs, self_type const &rhs)
{
return -1 == strcmp(lhs, rhs);
}
};
/// Ordering functor, case ignoring lexicographic comparison.
struct LessThanNoCase {
bool
operator()(self_type const &lhs, self_type const &rhs)
{
return -1 == strcasecmp(lhs, rhs);
}
};
/// Specialized stream operator implementation.
/// @note Use the standard stream operator unless there is a specific need for this, which is unlikely.
/// @return The stream @a os.
/// @internal Needed because @c std::ostream::write must be used and
/// so alignment / fill have to be explicitly handled.
template <typename Stream> Stream &stream_write(Stream &os, const TextView &b) const;
protected:
/// Faster find on a delimiter set, taking advantage of supporting only ASCII.
size_t search(super_type const &delimiters) const;
/// Faster reverse find on a delimiter set, taking advantage of supporting only ASCII.
size_t rsearch(super_type const &delimiters) const;
/// Initialize a bit mask to mark which characters are in this view.
static void init_delimiter_set(super_type const &delimiters, std::bitset<256> &set);
};
// Internal character conversion table.
// Converts a character to the numeric digit value, or negative if the character is not a valid digit.
extern const int8_t svtoi_convert[256];
;
/** Convert the text in @c TextView @a src to a numeric value.
If @a parsed is non-null then the part of the string actually parsed is placed there.
@a base sets the conversion base. This defaults to 10 with two special cases:
- If the number starts with a literal '0' then it is treated as base 8.
- If the number starts with the literal characters '0x' or '0X' then it is treated as base 16.
*/
intmax_t svtoi(TextView src, TextView *parsed = nullptr, int base = 0);
/** Convert the text in @c src to an unsigned numeric value.
*
* @tparam N The radix (must be 1..36)
* @param src The source text. Updated during parsing.
* @return The converted numeric value.
*
* This is a specialized function useful only where conversion performance is critical, or for some
* other reason the numeric text has already been parsed out. The performance gains comes from
* templating the divisor which enables the compiler to optimize the multiplication (e.g., for
* powers of 2 shifts is used). It is used inside @c svtoi and @c svtou for the common cases of 8,
* 10, and 16, therefore normally this isn't much more performant than @c svtoi. Because of this
* only positive values are parsed. If determining the radix from the text or signed value parsing
* is needed, used @c svtoi.
*
* @a src is updated in place by removing parsed characters. Parsing stops on the first invalid
* digit, so any leading non-digit characters (e.g. whitespace) must already be removed. Overflow
* is detected and the first digit that would overflow is not parsed, and the maximum value is
* returned.
*/
template <uintmax_t N>
uintmax_t
svto_radix(ts::TextView &src)
{
static_assert(0 < N && N <= 36, "Radix must be in the range 1..36");
uintmax_t zret{0};
uintmax_t v;
while (src.size() && ((v = ts::svtoi_convert[static_cast<unsigned char>(*src)]) < N)) {
auto n = zret * N + v;
if (n < zret) { // overflow / wrap
return std::numeric_limits<uintmax_t>::max();
}
zret = n;
++src;
}
return zret;
};
// ----------------------------------------------------------
// Inline implementations.
// === TextView Implementation ===
inline constexpr TextView::TextView() {}
inline constexpr TextView::TextView(const char *ptr, size_t n) : super_type(ptr, n == npos ? (ptr ? ::strlen(ptr) : 0) : n) {}
inline constexpr TextView::TextView(const char *ptr, int n) : super_type(ptr, n < 0 ? (ptr ? ::strlen(ptr) : 0) : n) {}
inline constexpr TextView::TextView(const char *start, const char *end) : super_type(start, end - start) {}
inline constexpr TextView::TextView(std::nullptr_t) : super_type(nullptr, 0) {}
inline TextView::TextView(std::string const &str) : super_type(str) {}
inline constexpr TextView::TextView(super_type const &that) : super_type(that) {}
template <size_t N> constexpr TextView::TextView(const char (&s)[N]) : super_type(s, s[N - 1] ? N : N - 1) {}
inline void
TextView::init_delimiter_set(super_type const &delimiters, std::bitset<256> &set)
{
set.reset();
for (char c : delimiters)
set[static_cast<uint8_t>(c)] = true;
}
inline const char *
TextView::data_end() const
{
return this->data() + this->size();
}
inline TextView &
TextView::clear()
{
new (this) self_type();
return *this;
}
inline char
TextView::operator*() const
{
return this->empty() ? 0 : *(this->data());
}
inline bool
TextView::operator!() const
{
return this->empty();
}
inline TextView::operator bool() const
{
return !this->empty();
}
inline TextView &
TextView::operator++()
{
this->remove_prefix(1);
return *this;
}
inline TextView
TextView::operator++(int)
{
self_type zret{*this};
this->remove_prefix(1);
return zret;
}
inline TextView &
TextView::operator+=(size_t n)
{
this->remove_prefix(n);
return *this;
}
template <size_t N>
inline TextView &
TextView::operator=(const char (&s)[N])
{
return *this = self_type{s, s[N - 1] ? N : N - 1};
}
inline TextView &
TextView::operator=(super_type const &that)
{
this->super_type::operator=(that);
return *this;
}
inline TextView &
TextView::operator=(const std::string &s)
{
this->super_type::operator=(s);
return *this;
}
inline TextView &
TextView::assign(const std::string &s)
{
*this = super_type(s);
return *this;
}
inline TextView &
TextView::assign(char const *ptr, size_t n)
{
*this = super_type(ptr, n == npos ? (ptr ? ::strlen(ptr) : 0) : n);
return *this;
}
inline TextView &
TextView::assign(char const *b, char const *e)
{
*this = super_type(b, e - b);
return *this;
}
inline size_t
TextView::search(super_type const &delimiters) const
{
std::bitset<256> valid;
this->init_delimiter_set(delimiters, valid);
for (const char *spot = this->data(), *limit = this->data_end(); spot < limit; ++spot)
if (valid[static_cast<uint8_t>(*spot)])
return spot - this->data();
return npos;
}
inline size_t
TextView::rsearch(super_type const &delimiters) const
{
std::bitset<256> valid;
this->init_delimiter_set(delimiters, valid);
for (const char *spot = this->data_end(), *limit = this->data(); spot > limit;)
if (valid[static_cast<uint8_t>(*--spot)])
return spot - this->data();
return npos;
}
inline TextView
TextView::prefix(size_t n) const
{
return self_type(this->data(), std::min(n, this->size()));
}
inline TextView
TextView::prefix(int n) const
{
return this->prefix(static_cast<size_t>(n));
}
inline TextView
TextView::prefix(char c) const
{
return this->prefix(this->find(c));
}
inline TextView
TextView::prefix(super_type const &delimiters) const
{
return this->prefix(this->search(delimiters));
}
template <typename F>
inline TextView
TextView::prefix_if(F const &pred) const
{
return this->prefix(this->find_if(pred));
}
inline TextView &
TextView::remove_prefix(size_t n)
{
if (n > this->size()) {
this->clear();
} else {
this->super_type::remove_prefix(n);
}
return *this;
}
inline TextView &
TextView::remove_prefix_at(char c)
{
auto n = this->find(c);
if (n == npos) {
this->clear();
} else {
this->super_type::remove_prefix(n + 1);
}
return *this;
}
template <typename F>
TextView &
TextView::remove_prefix_if(F const &pred)
{
auto n = this->find_if(pred);
if (n == npos) {
this->clear();
} else {
this->super_type::remove_prefix(n + 1);
}
return *this;
}
inline TextView
TextView::split_prefix_at(size_t n)
{
self_type zret; // default to empty return.
if (n < this->size()) {
zret = this->prefix(n);
this->remove_prefix(std::min(n + 1, this->size()));
}
return zret;
}
inline TextView
TextView::split_prefix_at(int n)
{
return this->split_prefix_at(static_cast<size_t>(n));
}
inline TextView
TextView::split_prefix_at(char c)
{
return this->split_prefix_at(this->find(c));
}
inline TextView
TextView::split_prefix_at(super_type const &delimiters)
{
return this->split_prefix_at(this->search(delimiters));
}
template <typename F>
inline TextView
TextView::split_prefix_if(F const &pred)
{
return this->split_prefix_at(this->find_if(pred));
}
inline TextView
TextView::take_prefix_at(size_t n)
{
n = std::min(n, this->size());
self_type zret = this->prefix(n);
this->remove_prefix(std::min(n + 1, this->size()));
return zret;
}
inline TextView
TextView::take_prefix_at(char c)
{
return this->take_prefix_at(this->find(c));
}
inline TextView
TextView::take_prefix_at(super_type const &delimiters)
{
return this->take_prefix_at(this->search(delimiters));
}
template <typename F>
inline TextView
TextView::take_prefix_if(F const &pred)
{
return this->take_prefix_at(this->find_if(pred));
}
inline TextView
TextView::suffix(size_t n) const
{
n = std::min(n, this->size());
return self_type(this->data_end() - n, n);
}
inline TextView
TextView::suffix(int n) const
{
return this->suffix(static_cast<size_t>(n));
}
inline TextView
TextView::suffix(char c) const
{
return this->suffix((this->size() - std::min(this->size(), this->rfind(c))) - 1);
}
inline TextView
TextView::suffix(super_type const &delimiters) const
{
return this->suffix((this->size() - std::min(this->size(), this->rsearch(delimiters))) - 1);
}
template <typename F>
inline TextView
TextView::suffix_if(F const &pred) const
{
return this->suffix((this->size() - std::min(this->size(), this->rfind_if(pred))) - 1);
}
inline TextView &
TextView::remove_suffix_at(char c)
{
auto n = this->rfind(c);
if (n == npos) {
this->clear();
} else {
this->remove_suffix(this->size() - n);
}
return *this;
}
template <typename F>
TextView &
TextView::remove_suffix_if(F const &pred)
{
auto n = this->rfind_if(pred);
if (n == npos) {
this->clear();
} else {
this->remove_suffix(this->size() - n);
}
return *this;
}
inline auto
TextView::remove_suffix(size_t n) -> self_type &
{
if (n > this->size()) {
this->clear();
} else {
this->super_type::remove_suffix(n);
}
return *this;
}
inline TextView
TextView::split_suffix(size_t n)
{
self_type zret;
n = std::min(n, this->size());
zret = this->suffix(n);
this->remove_suffix(n + 1); // haha, saved by integer overflow!
return zret;
}
inline TextView
TextView::split_suffix(int n)
{
return this->split_suffix(static_cast<size_t>(n));
}
inline TextView
TextView::split_suffix_at(size_t n)
{
self_type zret;
if (n < this->size()) {
n = this->size() - n;
zret = this->suffix(n - 1);
this->remove_suffix(n);
}
return zret;
}
inline TextView
TextView::split_suffix_at(int n)
{
return this->split_suffix_at(static_cast<size_t>(n));
}
inline TextView
TextView::split_suffix_at(char c)
{
return this->split_suffix_at(this->rfind(c));
}
inline TextView
TextView::split_suffix_at(super_type const &delimiters)
{
return this->split_suffix_at(this->rsearch(delimiters));
}
template <typename F>
inline TextView
TextView::split_suffix_if(F const &pred)
{
return this->split_suffix_at(this->rfind_if(pred));
}
inline TextView
TextView::take_suffix_at(size_t n)
{
self_type zret{*this};
*this = zret.split_prefix_at(n);
return zret;
}
inline TextView
TextView::take_suffix_at(int n)
{
return this->take_suffix_at(static_cast<size_t>(n));
}
inline TextView
TextView::take_suffix_at(char c)
{
return this->take_suffix_at(this->rfind(c));
}
inline TextView
TextView::take_suffix_at(super_type const &delimiters)
{
return this->take_suffix_at(this->rsearch(delimiters));
}
template <typename F>
inline TextView
TextView::take_suffix_if(F const &pred)
{
return this->take_suffix_at(this->rfind_if(pred));
}
template <typename F>
inline size_t
TextView::find_if(F const &pred) const
{
for (const char *spot = this->data(), *limit = this->data_end(); spot < limit; ++spot)
if (pred(*spot))
return spot - this->data();
return npos;
}
template <typename F>
inline size_t
TextView::rfind_if(F const &pred) const
{
for (const char *spot = this->data_end(), *limit = this->data(); spot > limit;)
if (pred(*--spot))
return spot - this->data();
return npos;
}
inline TextView &
TextView::ltrim(char c)
{
this->remove_prefix(this->find_first_not_of(c));
return *this;
}
inline TextView &
TextView::rtrim(char c)
{
auto n = this->find_last_not_of(c);
this->remove_suffix(this->size() - (n == npos ? 0 : n + 1));
return *this;
}
inline TextView &
TextView::trim(char c)
{
return this->ltrim(c).rtrim(c);
}
inline TextView &
TextView::ltrim(super_type const &delimiters)
{
std::bitset<256> valid;
this->init_delimiter_set(delimiters, valid);
const char *spot;
const char *limit;
for (spot = this->data(), limit = this->data_end(); spot < limit && valid[static_cast<uint8_t>(*spot)]; ++spot)
;
this->remove_prefix(spot - this->data());
return *this;
}
inline TextView &
TextView::ltrim(const char *delimiters)
{
return this->ltrim(std::string_view(delimiters));
}
inline TextView &
TextView::rtrim(const char *delimiters)
{
return this->rtrim(std::string_view(delimiters));
}
inline TextView &
TextView::rtrim(super_type const &delimiters)
{
std::bitset<256> valid;
this->init_delimiter_set(delimiters, valid);
const char *spot = this->data_end();
const char *limit = this->data();
while (limit < spot-- && valid[static_cast<uint8_t>(*spot)])
;
this->remove_suffix(this->data_end() - (spot + 1));
return *this;
}
inline TextView &
TextView::trim(super_type const &delimiters)
{
std::bitset<256> valid;
this->init_delimiter_set(delimiters, valid);
const char *spot;
const char *limit;
// Do this explicitly, so we don't have to initialize the character set twice.
for (spot = this->data(), limit = this->data_end(); spot < limit && valid[static_cast<uint8_t>(*spot)]; ++spot)
;
this->remove_prefix(spot - this->data());
spot = this->data_end();
limit = this->data();
while (limit < spot-- && valid[static_cast<uint8_t>(*spot)])
;
this->remove_suffix(this->data_end() - (spot + 1));
return *this;
}
inline TextView &
TextView::trim(const char *delimiters)
{
return this->trim(std::string_view(delimiters));
}
template <typename F>
inline TextView &
TextView::ltrim_if(F const &pred)
{
const char *spot;
const char *limit;
for (spot = this->data(), limit = this->data_end(); spot < limit && pred(*spot); ++spot)
;
this->remove_prefix(spot - this->data());
return *this;
}
template <typename F>
inline TextView &
TextView::rtrim_if(F const &pred)
{
const char *spot = this->data_end();
const char *limit = this->data();
while (limit < spot-- && pred(*spot))
;
this->remove_suffix(this->data_end() - (spot + 1));
return *this;
}
template <typename F>
inline TextView &
TextView::trim_if(F const &pred)
{
return this->ltrim_if(pred).rtrim_if(pred);
}
inline bool
TextView::isPrefixOf(super_type const &that) const
{
return this->size() <= that.size() && 0 == memcmp(this->data(), that.data(), this->size());
}
inline bool
TextView::isNoCasePrefixOf(super_type const &that) const
{
return this->size() <= that.size() && 0 == strncasecmp(this->data(), that.data(), this->size());
}
template <typename Stream>
Stream &
TextView::stream_write(Stream &os, const TextView &b) const
{
// Local function, avoids extra template work.
static const auto stream_fill = [](Stream &os, size_t n) -> Stream & {
static constexpr size_t pad_size = 8;
typename Stream::char_type padding[pad_size];
std::fill_n(padding, pad_size, os.fill());
for (; n >= pad_size && os.good(); n -= pad_size)
os.write(padding, pad_size);
if (n > 0 && os.good())
os.write(padding, n);
return os;
};
const std::size_t w = os.width();
if (w <= b.size()) {
os.write(b.data(), b.size());
} else {
const std::size_t pad_size = w - b.size();
const bool align_left = (os.flags() & Stream::adjustfield) == Stream::left;
if (!align_left && os.good())
stream_fill(os, pad_size);
if (os.good())
os.write(b.data(), b.size());
if (align_left && os.good())
stream_fill(os, pad_size);
}
return os;
}
// Provide an instantiation for @c std::ostream as it's likely this is the only one ever used.
extern template std::ostream &TextView::stream_write(std::ostream &, const TextView &) const;
/** User literals for TextView.
*
* - _tv : TextView
* - _sv : std::string_view
*/
namespace literals
{
/** Literal constructor for @c ts::TextView.
*
* @param s The source string.
* @param n Size of the source string.
* @return A @c string_view
*
* @internal This is provided because the STL one does not support @c constexpr which seems
* rather bizarre to me, but there it is. Update: this depends on the version of the compiler,
* so hopefully someday this can be removed.
*/
constexpr ts::TextView operator"" _tv(const char *s, size_t n) { return {s, n}; }
} // namespace literals
/** Functor for STL containers that need caseless comparisons of standard string types.
*
* For example a @c std::set of strings with caseless comparison would be
*
* @code
* std::set<std::string, ts::caseless_compare> strings;
* @endcode
*/
struct caseless_less_than {
bool
operator()(std::string_view const &lhs, std::string_view const &rhs) const
{
return strcasecmp(lhs, rhs) < 0;
}
bool
operator()(TextView const &lhs, TextView const &rhs) const
{
return strcasecmp(lhs, rhs) < 0;
}
bool
operator()(std::string const &lhs, std::string const &rhs) const
{
return strcasecmp(lhs, rhs) < 0;
}
};
/** Functor for STL containers that need caseless equality of standard string types.
*
* For example a @c std::set of strings with caseless comparison would be
*
* @code
* std::set<std::string, ts::caseless_compare> strings;
* @endcode
*/
struct caseless_equal {
bool
operator()(std::string_view const &lhs, std::string_view const &rhs) const
{
return strcasecmp(lhs, rhs) == 0;
}
bool
operator()(TextView const &lhs, TextView const &rhs) const
{
return strcasecmp(lhs, rhs) == 0;
}
bool
operator()(std::string const &lhs, std::string const &rhs) const
{
return strcasecmp(lhs, rhs) == 0;
}
};
} // namespace ts
namespace std
{
ostream &operator<<(ostream &os, const ts::TextView &b);
/* For interaction with specific STL interfaces, primarily std::filesystem. Along with the
* dereference operator, this enables a @c TextView to act as a character iterator to a C string
* even if the internal view is not nul terminated.
* @note Putting these directly in the class doesn't seem to work.
*/
template <> struct iterator_traits<ts::TextView> {
using value_type = char;
using pointer_type = const char *;
using reference_type = const char &;
using difference_type = ssize_t;
using iterator_category = forward_iterator_tag;
};
} // namespace std
// @c constexpr literal constructor for @c std::string_view
//
// For unknown reasons, this enables creating @c constexpr constructs using @c std::string_view while the
// standard one (""sv) does not.
//
// I couldn't think of any better place to put this, so it's here. At least @c TextView is strongly related
// to @c std::string_view.
constexpr std::string_view operator"" _sv(const char *s, size_t n)
{
return {s, n};
}
|