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
|
/***************************************************************************************************
Zyan Core Library (Zycore-C)
Original Author : Florian Bernd
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
***************************************************************************************************/
/**
* @file
* Implements a string type.
*/
#ifndef ZYCORE_STRING_H
#define ZYCORE_STRING_H
#include "ZycoreExportConfig.h"
#include "ZycoreAllocator.h"
#include "ZycoreStatus.h"
#include "ZycoreTypes.h"
#include "ZycoreVector.h"
#include <wtf/Compiler.h>
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN
#ifdef __cplusplus
extern "C" {
#endif
/* ============================================================================================== */
/* Constants */
/* ============================================================================================== */
/**
* The initial minimum capacity (number of characters) for all dynamically allocated
* string instances - not including the terminating '\0'-character.
*/
#define ZYAN_STRING_MIN_CAPACITY 32
/**
* The default growth factor for all string instances.
*/
#define ZYAN_STRING_DEFAULT_GROWTH_FACTOR 2.00f
/**
* The default shrink threshold for all string instances.
*/
#define ZYAN_STRING_DEFAULT_SHRINK_THRESHOLD 0.25f
/* ============================================================================================== */
/* Enums and types */
/* ============================================================================================== */
/* ---------------------------------------------------------------------------------------------- */
/* String flags */
/* ---------------------------------------------------------------------------------------------- */
/**
* Defines the `ZyanStringFlags` datatype.
*/
typedef ZyanU8 ZyanStringFlags;
/**
* The string uses a custom user-defined buffer with a fixed capacity.
*/
#define ZYAN_STRING_HAS_FIXED_CAPACITY 0x01 // (1 << 0)
/* ---------------------------------------------------------------------------------------------- */
/* String */
/* ---------------------------------------------------------------------------------------------- */
/**
* Defines the `ZyanString` struct.
*
* The `ZyanString` type is implemented as a size-prefixed string - which allows for a lot of
* performance optimizations.
* Nevertheless null-termination is guaranteed at all times to provide maximum compatibility with
* default C-style strings (use `ZyanStringGetData` to access the C-style string).
*
* All fields in this struct should be considered as "private". Any changes may lead to unexpected
* behavior.
*/
typedef struct ZyanString_
{
/**
* String flags.
*/
ZyanStringFlags flags;
/**
* The vector that contains the actual string.
*/
ZyanVector vector;
} ZyanString;
/* ---------------------------------------------------------------------------------------------- */
/* View */
/* ---------------------------------------------------------------------------------------------- */
/**
* Defines the `ZyanStringView` struct.
*
* The `ZyanStringView` type provides a view inside a string (`ZyanString` instances, null-
* terminated C-style strings, or even not-null-terminated custom strings). A view is immutable
* by design and can't be directly converted to a C-style string.
*
* Views might become invalid (e.g. pointing to invalid memory), if the underlying string gets
* destroyed or resized.
*
* The `ZYAN_STRING_TO_VIEW` macro can be used to cast a `ZyanString` to a `ZyanStringView` pointer
* without any runtime overhead.
* Casting a view to a normal string is not supported and will lead to unexpected behavior (use
* `ZyanStringDuplicate` to create a deep-copy instead).
*
* All fields in this struct should be considered as "private". Any changes may lead to unexpected
* behavior.
*/
typedef struct ZyanStringView_
{
/**
* The string data.
*
* The view internally re-uses the normal string struct to allow casts without any runtime
* overhead.
*/
ZyanString string;
} ZyanStringView;
/* ---------------------------------------------------------------------------------------------- */
/* ============================================================================================== */
/* Macros */
/* ============================================================================================== */
/* ---------------------------------------------------------------------------------------------- */
/* General */
/* ---------------------------------------------------------------------------------------------- */
/**
* Defines an uninitialized `ZyanString` instance.
*/
#define ZYAN_STRING_INITIALIZER \
{ \
/* flags */ 0, \
/* vector */ ZYAN_VECTOR_INITIALIZER \
}
/* ---------------------------------------------------------------------------------------------- */
/* Helper macros */
/* ---------------------------------------------------------------------------------------------- */
/**
* Casts a `ZyanString` pointer to a constant `ZyanStringView` pointer.
*/
#define ZYAN_STRING_TO_VIEW(string) (const ZyanStringView*)(string)
/**
* Defines a `ZyanStringView` struct that provides a view into a static C-style string.
*
* @param string The C-style string.
*/
#define ZYAN_DEFINE_STRING_VIEW(string) \
{ \
/* string */ \
{ \
/* flags */ 0, \
/* vector */ \
{ \
/* allocator */ ZYAN_NULL, \
/* growth_factor */ 1.0f, \
/* shrink_threshold */ 0.0f, \
/* size */ sizeof(string), \
/* capacity */ sizeof(string), \
/* element_size */ sizeof(char), \
/* destructor */ ZYAN_NULL, \
/* data */ (char*)(string) \
} \
} \
}
/* ---------------------------------------------------------------------------------------------- */
/* ============================================================================================== */
/* Exported functions */
/* ============================================================================================== */
/* ---------------------------------------------------------------------------------------------- */
/* Constructor and destructor */
/* ---------------------------------------------------------------------------------------------- */
#ifndef ZYAN_NO_LIBC
/**
* Initializes the given `ZyanString` instance.
*
* @param string A pointer to the `ZyanString` instance.
* @param capacity The initial capacity (number of characters).
*
* @return A zyan status code.
*
* The memory for the string is dynamically allocated by the default allocator using the default
* growth factor of `2.0f` and the default shrink threshold of `0.25f`.
*
* The allocated buffer will be at least one character larger than the given `capacity`, to reserve
* space for the terminating '\0'.
*
* Finalization with `ZyanStringDestroy` is required for all strings created by this function.
*/
ZYCORE_EXPORT ZYAN_REQUIRES_LIBC ZyanStatus ZyanStringInit(ZyanString* string, ZyanUSize capacity);
#endif // ZYAN_NO_LIBC
/**
* Initializes the given `ZyanString` instance and sets a custom `allocator` and memory
* allocation/deallocation parameters.
*
* @param string A pointer to the `ZyanString` instance.
* @param capacity The initial capacity (number of characters).
* @param allocator A pointer to a `ZyanAllocator` instance.
* @param growth_factor The growth factor (from `1.0f` to `x.xf`).
* @param shrink_threshold The shrink threshold (from `0.0f` to `1.0f`).
*
* @return A zyan status code.
*
* A growth factor of `1.0f` disables overallocation and a shrink threshold of `0.0f` disables
* dynamic shrinking.
*
* The allocated buffer will be at least one character larger than the given `capacity`, to reserve
* space for the terminating '\0'.
*
* Finalization with `ZyanStringDestroy` is required for all strings created by this function.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringInitEx(ZyanString* string, ZyanUSize capacity,
ZyanAllocator* allocator, float growth_factor, float shrink_threshold);
/**
* Initializes the given `ZyanString` instance and configures it to use a custom user
* defined buffer with a fixed size.
*
* @param string A pointer to the `ZyanString` instance.
* @param buffer A pointer to the buffer that is used as storage for the string.
* @param capacity The maximum capacity (number of characters) of the buffer, including
* the terminating '\0'.
*
* @return A zyan status code.
*
* Finalization is not required for strings created by this function.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringInitCustomBuffer(ZyanString* string, char* buffer,
ZyanUSize capacity);
/**
* Destroys the given `ZyanString` instance.
*
* @param string A pointer to the `ZyanString` instance.
*
* @return A zyan status code.
*
*/
ZYCORE_EXPORT ZyanStatus ZyanStringDestroy(ZyanString* string);
/* ---------------------------------------------------------------------------------------------- */
/* Duplication */
/* ---------------------------------------------------------------------------------------------- */
#ifndef ZYAN_NO_LIBC
/**
* Initializes a new `ZyanString` instance by duplicating an existing string.
*
* @param destination A pointer to the (uninitialized) destination `ZyanString` instance.
* @param source A pointer to the source string.
* @param capacity The initial capacity (number of characters).
*
* This value is automatically adjusted to the size of the source string, if
* a smaller value was passed.
*
* @return A zyan status code.
*
* The behavior of this function is undefined, if `source` is a view into the `destination`
* string or `destination` points to an already initialized `ZyanString` instance.
*
* The memory for the string is dynamically allocated by the default allocator using the default
* growth factor of `2.0f` and the default shrink threshold of `0.25f`.
*
* The allocated buffer will be at least one character larger than the given `capacity`, to reserve
* space for the terminating '\0'.
*
* Finalization with `ZyanStringDestroy` is required for all strings created by this function.
*/
ZYCORE_EXPORT ZYAN_REQUIRES_LIBC ZyanStatus ZyanStringDuplicate(ZyanString* destination,
const ZyanStringView* source, ZyanUSize capacity);
#endif // ZYAN_NO_LIBC
/**
* Initializes a new `ZyanString` instance by duplicating an existing string and sets a
* custom `allocator` and memory allocation/deallocation parameters.
*
* @param destination A pointer to the (uninitialized) destination `ZyanString` instance.
* @param source A pointer to the source string.
* @param capacity The initial capacity (number of characters).
* This value is automatically adjusted to the size of the source
* string, if a smaller value was passed.
* @param allocator A pointer to a `ZyanAllocator` instance.
* @param growth_factor The growth factor (from `1.0f` to `x.xf`).
* @param shrink_threshold The shrink threshold (from `0.0f` to `1.0f`).
*
* @return A zyan status code.
*
* The behavior of this function is undefined, if `source` is a view into the `destination`
* string or `destination` points to an already initialized `ZyanString` instance.
*
* A growth factor of `1.0f` disables overallocation and a shrink threshold of `0.0f` disables
* dynamic shrinking.
*
* The allocated buffer will be at least one character larger than the given `capacity`, to reserve
* space for the terminating '\0'.
*
* Finalization with `ZyanStringDestroy` is required for all strings created by this function.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringDuplicateEx(ZyanString* destination,
const ZyanStringView* source, ZyanUSize capacity, ZyanAllocator* allocator,
float growth_factor, float shrink_threshold);
/**
* Initializes a new `ZyanString` instance by duplicating an existing string and
* configures it to use a custom user defined buffer with a fixed size.
*
* @param destination A pointer to the (uninitialized) destination `ZyanString` instance.
* @param source A pointer to the source string.
* @param buffer A pointer to the buffer that is used as storage for the string.
* @param capacity The maximum capacity (number of characters) of the buffer, including the
* terminating '\0'.
* This function will fail, if the capacity of the buffer is less or equal to
* the size of the source string.
*
* @return A zyan status code.
*
* The behavior of this function is undefined, if `source` is a view into the `destination`
* string or `destination` points to an already initialized `ZyanString` instance.
*
* Finalization is not required for strings created by this function.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringDuplicateCustomBuffer(ZyanString* destination,
const ZyanStringView* source, char* buffer, ZyanUSize capacity);
/* ---------------------------------------------------------------------------------------------- */
/* Concatenation */
/* ---------------------------------------------------------------------------------------------- */
#ifndef ZYAN_NO_LIBC
/**
* Initializes a new `ZyanString` instance by concatenating two existing strings.
*
* @param destination A pointer to the (uninitialized) destination `ZyanString` instance.
*
* This function will fail, if the destination `ZyanString` instance equals
* one of the source strings.
* @param s1 A pointer to the first source string.
* @param s2 A pointer to the second source string.
* @param capacity The initial capacity (number of characters).
* This value is automatically adjusted to the combined size of the source
* strings, if a smaller value was passed.
*
* @return A zyan status code.
*
* The behavior of this function is undefined, if `s1` or `s2` are views into the `destination`
* string or `destination` points to an already initialized `ZyanString` instance.
*
* The memory for the string is dynamically allocated by the default allocator using the default
* growth factor of `2.0f` and the default shrink threshold of `0.25f`.
*
* The allocated buffer will be at least one character larger than the given `capacity`, to reserve
* space for the terminating '\0'.
*
* Finalization with `ZyanStringDestroy` is required for all strings created by this function.
*/
ZYCORE_EXPORT ZYAN_REQUIRES_LIBC ZyanStatus ZyanStringConcat(ZyanString* destination,
const ZyanStringView* s1, const ZyanStringView* s2, ZyanUSize capacity);
#endif // ZYAN_NO_LIBC
/**
* Initializes a new `ZyanString` instance by concatenating two existing strings and sets
* a custom `allocator` and memory allocation/deallocation parameters.
*
* @param destination A pointer to the (uninitialized) destination `ZyanString` instance.
*
* This function will fail, if the destination `ZyanString` instance
* equals one of the source strings.
* @param s1 A pointer to the first source string.
* @param s2 A pointer to the second source string.
* @param capacity The initial capacity (number of characters).
*
* This value is automatically adjusted to the combined size of the
* source strings, if a smaller value was passed.
* @param allocator A pointer to a `ZyanAllocator` instance.
* @param growth_factor The growth factor (from `1.0f` to `x.xf`).
* @param shrink_threshold The shrink threshold (from `0.0f` to `1.0f`).
*
* @return A zyan status code.
*
* The behavior of this function is undefined, if `s1` or `s2` are views into the `destination`
* string or `destination` points to an already initialized `ZyanString` instance.
*
* A growth factor of `1.0f` disables overallocation and a shrink threshold of `0.0f` disables
* dynamic shrinking.
*
* The allocated buffer will be at least one character larger than the given `capacity`, to reserve
* space for the terminating '\0'.
*
* Finalization with `ZyanStringDestroy` is required for all strings created by this function.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringConcatEx(ZyanString* destination, const ZyanStringView* s1,
const ZyanStringView* s2, ZyanUSize capacity, ZyanAllocator* allocator, float growth_factor,
float shrink_threshold);
/**
* Initializes a new `ZyanString` instance by concatenating two existing strings and
* configures it to use a custom user defined buffer with a fixed size.
*
* @param destination A pointer to the (uninitialized) destination `ZyanString` instance.
*
* This function will fail, if the destination `ZyanString` instance equals
* one of the source strings.
* @param s1 A pointer to the first source string.
* @param s2 A pointer to the second source string.
* @param buffer A pointer to the buffer that is used as storage for the string.
* @param capacity The maximum capacity (number of characters) of the buffer.
*
* This function will fail, if the capacity of the buffer is less or equal to
* the combined size of the source strings.
*
* @return A zyan status code.
*
* The behavior of this function is undefined, if `s1` or `s2` are views into the `destination`
* string or `destination` points to an already initialized `ZyanString` instance.
*
* Finalization is not required for strings created by this function.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringConcatCustomBuffer(ZyanString* destination,
const ZyanStringView* s1, const ZyanStringView* s2, char* buffer, ZyanUSize capacity);
/* ---------------------------------------------------------------------------------------------- */
/* Views */
/* ---------------------------------------------------------------------------------------------- */
/**
* Returns a view inside an existing view/string.
*
* @param view A pointer to the `ZyanStringView` instance.
* @param source A pointer to the source string.
*
* @return A zyan status code.
*
* The `ZYAN_STRING_TO_VEW` macro can be used to pass any `ZyanString` instance as value for the
* `source` string.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringViewInsideView(ZyanStringView* view,
const ZyanStringView* source);
/**
* Returns a view inside an existing view/string starting from the given `index`.
*
* @param view A pointer to the `ZyanStringView` instance.
* @param source A pointer to the source string.
* @param index The start index.
* @param count The number of characters.
*
* @return A zyan status code.
*
* The `ZYAN_STRING_TO_VEW` macro can be used to pass any `ZyanString` instance as value for the
* `source` string.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringViewInsideViewEx(ZyanStringView* view,
const ZyanStringView* source, ZyanUSize index, ZyanUSize count);
/**
* Returns a view inside a null-terminated C-style string.
*
* @param view A pointer to the `ZyanStringView` instance.
* @param string The C-style string.
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringViewInsideBuffer(ZyanStringView* view, const char* string);
/**
* Returns a view inside a character buffer with custom length.
*
* @param view A pointer to the `ZyanStringView` instance.
* @param buffer A pointer to the buffer containing the string characters.
* @param length The length of the string (number of characters).
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringViewInsideBufferEx(ZyanStringView* view, const char* buffer,
ZyanUSize length);
/**
* Returns the size (number of characters) of the view.
*
* @param view A pointer to the `ZyanStringView` instance.
* @param size Receives the size (number of characters) of the view.
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringViewGetSize(const ZyanStringView* view, ZyanUSize* size);
/**
* Returns the C-style string of the given `ZyanString` instance.
*
* @warning The string is not guaranteed to be null terminated!
*
* @param view A pointer to the `ZyanStringView` instance.
* @param buffer Receives a pointer to the C-style string.
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringViewGetData(const ZyanStringView* view, const char** buffer);
/* ---------------------------------------------------------------------------------------------- */
/* Character access */
/* ---------------------------------------------------------------------------------------------- */
/**
* Returns the character at the given `index`.
*
* @param string A pointer to the `ZyanStringView` instance.
* @param index The character index.
* @param value Receives the desired character of the string.
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringGetChar(const ZyanStringView* string, ZyanUSize index,
char* value);
/**
* Returns a pointer to the character at the given `index`.
*
* @param string A pointer to the `ZyanString` instance.
* @param index The character index.
* @param value Receives a pointer to the desired character in the string.
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringGetCharMutable(ZyanString* string, ZyanUSize index,
char** value);
/**
* Assigns a new value to the character at the given `index`.
*
* @param string A pointer to the `ZyanString` instance.
* @param index The character index.
* @param value The character to assign.
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringSetChar(ZyanString* string, ZyanUSize index, char value);
/* ---------------------------------------------------------------------------------------------- */
/* Insertion */
/* ---------------------------------------------------------------------------------------------- */
/**
* Inserts the content of the source string in the destination string at the given `index`.
*
* @param destination The destination string.
* @param index The insert index.
* @param source The source string.
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringInsert(ZyanString* destination, ZyanUSize index,
const ZyanStringView* source);
/**
* Inserts `count` characters of the source string in the destination string at the given
* `index`.
*
* @param destination The destination string.
* @param destination_index The insert index.
* @param source The source string.
* @param source_index The index of the first character to be inserted from the source
* string.
* @param count The number of chars to insert from the source string.
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringInsertEx(ZyanString* destination, ZyanUSize destination_index,
const ZyanStringView* source, ZyanUSize source_index, ZyanUSize count);
/* ---------------------------------------------------------------------------------------------- */
/* Appending */
/* ---------------------------------------------------------------------------------------------- */
/**
* Appends the content of the source string to the end of the destination string.
*
* @param destination The destination string.
* @param source The source string.
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringAppend(ZyanString* destination, const ZyanStringView* source);
/**
* Appends `count` characters of the source string to the end of the destination string.
*
* @param destination The destination string.
* @param source The source string.
* @param source_index The index of the first character to be appended from the source string.
* @param count The number of chars to append from the source string.
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringAppendEx(ZyanString* destination, const ZyanStringView* source,
ZyanUSize source_index, ZyanUSize count);
/* ---------------------------------------------------------------------------------------------- */
/* Deletion */
/* ---------------------------------------------------------------------------------------------- */
/**
* Deletes characters from the given string, starting at `index`.
*
* @param string A pointer to the `ZyanString` instance.
* @param index The index of the first character to delete.
* @param count The number of characters to delete.
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringDelete(ZyanString* string, ZyanUSize index, ZyanUSize count);
/**
* Deletes all remaining characters from the given string, starting at `index`.
*
* @param string A pointer to the `ZyanString` instance.
* @param index The index of the first character to delete.
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringTruncate(ZyanString* string, ZyanUSize index);
/**
* Erases the given string.
*
* @param string A pointer to the `ZyanString` instance.
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringClear(ZyanString* string);
/* ---------------------------------------------------------------------------------------------- */
/* Searching */
/* ---------------------------------------------------------------------------------------------- */
/**
* Searches for the first occurrence of `needle` in the given `haystack` starting from the
* left.
*
* @param haystack The string to search in.
* @param needle The sub-string to search for.
* @param found_index A pointer to a variable that receives the index of the first occurrence of
* `needle`.
*
* @return `ZYAN_STATUS_TRUE`, if the needle was found, `ZYAN_STATUS_FALSE`, if not, or another
* zyan status code, if an error occured.
*
* The `found_index` is set to `-1`, if the needle was not found.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringLPos(const ZyanStringView* haystack,
const ZyanStringView* needle, ZyanISize* found_index);
/**
* Searches for the first occurrence of `needle` in the given `haystack` starting from the
* left.
*
* @param haystack The string to search in.
* @param needle The sub-string to search for.
* @param found_index A pointer to a variable that receives the index of the first occurrence of
* `needle`.
* @param index The start index.
* @param count The maximum number of characters to iterate, beginning from the start
* `index`.
*
* @return `ZYAN_STATUS_TRUE`, if the needle was found, `ZYAN_STATUS_FALSE`, if not, or another
* zyan status code, if an error occured.
*
* The `found_index` is set to `-1`, if the needle was not found.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringLPosEx(const ZyanStringView* haystack,
const ZyanStringView* needle, ZyanISize* found_index, ZyanUSize index, ZyanUSize count);
/**
* Performs a case-insensitive search for the first occurrence of `needle` in the given
* `haystack` starting from the left.
*
* @param haystack The string to search in.
* @param needle The sub-string to search for.
* @param found_index A pointer to a variable that receives the index of the first occurrence of
* `needle`.
*
* @return `ZYAN_STATUS_TRUE`, if the needle was found, `ZYAN_STATUS_FALSE`, if not, or another
* zyan status code, if an error occured.
*
* The `found_index` is set to `-1`, if the needle was not found.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringLPosI(const ZyanStringView* haystack,
const ZyanStringView* needle, ZyanISize* found_index);
/**
* Performs a case-insensitive search for the first occurrence of `needle` in the given
* `haystack` starting from the left.
*
* @param haystack The string to search in.
* @param needle The sub-string to search for.
* @param found_index A pointer to a variable that receives the index of the first occurrence of
* `needle`.
* @param index The start index.
* @param count The maximum number of characters to iterate, beginning from the start
* `index`.
*
* @return `ZYAN_STATUS_TRUE`, if the needle was found, `ZYAN_STATUS_FALSE`, if not, or another
* zyan status code, if an error occured.
*
* The `found_index` is set to `-1`, if the needle was not found.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringLPosIEx(const ZyanStringView* haystack,
const ZyanStringView* needle, ZyanISize* found_index, ZyanUSize index, ZyanUSize count);
/**
* Searches for the first occurrence of `needle` in the given `haystack` starting from the
* right.
*
* @param haystack The string to search in.
* @param needle The sub-string to search for.
* @param found_index A pointer to a variable that receives the index of the first occurrence of
* `needle`.
*
* @return `ZYAN_STATUS_TRUE`, if the needle was found, `ZYAN_STATUS_FALSE`, if not, or another
* zyan status code, if an error occured.
*
* The `found_index` is set to `-1`, if the needle was not found.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringRPos(const ZyanStringView* haystack,
const ZyanStringView* needle, ZyanISize* found_index);
/**
* Searches for the first occurrence of `needle` in the given `haystack` starting from the
* right.
*
* @param haystack The string to search in.
* @param needle The sub-string to search for.
* @param found_index A pointer to a variable that receives the index of the first occurrence of
* `needle`.
* @param index The start index.
* @param count The maximum number of characters to iterate, beginning from the start
* `index`.
*
* @return `ZYAN_STATUS_TRUE`, if the needle was found, `ZYAN_STATUS_FALSE`, if not, or another
* zyan status code, if an error occured.
*
* The `found_index` is set to `-1`, if the needle was not found.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringRPosEx(const ZyanStringView* haystack,
const ZyanStringView* needle, ZyanISize* found_index, ZyanUSize index, ZyanUSize count);
/**
* Performs a case-insensitive search for the first occurrence of `needle` in the given
* `haystack` starting from the right.
*
* @param haystack The string to search in.
* @param needle The sub-string to search for.
* @param found_index A pointer to a variable that receives the index of the first occurrence of
* `needle`.
*
* @return `ZYAN_STATUS_TRUE`, if the needle was found, `ZYAN_STATUS_FALSE`, if not, or another
* zyan status code, if an error occured.
*
* The `found_index` is set to `-1`, if the needle was not found.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringRPosI(const ZyanStringView* haystack,
const ZyanStringView* needle, ZyanISize* found_index);
/**
* Performs a case-insensitive search for the first occurrence of `needle` in the given
* `haystack` starting from the right.
*
* @param haystack The string to search in.
* @param needle The sub-string to search for.
* @param found_index A pointer to a variable that receives the index of the first occurrence of
* `needle`.
* @param index The start index.
* @param count The maximum number of characters to iterate, beginning from the start
* `index`.
*
* @return `ZYAN_STATUS_TRUE`, if the needle was found, `ZYAN_STATUS_FALSE`, if not, or another
* zyan status code, if an error occured.
*
* The `found_index` is set to `-1`, if the needle was not found.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringRPosIEx(const ZyanStringView* haystack,
const ZyanStringView* needle, ZyanISize* found_index, ZyanUSize index, ZyanUSize count);
/* ---------------------------------------------------------------------------------------------- */
/* Comparing */
/* ---------------------------------------------------------------------------------------------- */
/**
* Compares two strings.
*
* @param s1 The first string
* @param s2 The second string.
* @param result Receives the comparison result.
*
* Values:
* - `result < 0` -> The first character that does not match has a lower value
* in `s1` than in `s2`.
* - `result == 0` -> The contents of both strings are equal.
* - `result > 0` -> The first character that does not match has a greater value
* in `s1` than in `s2`.
*
* @return `ZYAN_STATUS_TRUE`, if the strings are equal, `ZYAN_STATUS_FALSE`, if not, or another
* zyan status code, if an error occured.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringCompare(const ZyanStringView* s1, const ZyanStringView* s2,
ZyanI32* result);
/**
* Performs a case-insensitive comparison of two strings.
*
* @param s1 The first string
* @param s2 The second string.
* @param result Receives the comparison result.
*
* Values:
* - `result < 0` -> The first character that does not match has a lower value
* in `s1` than in `s2`.
* - `result == 0` -> The contents of both strings are equal.
* - `result > 0` -> The first character that does not match has a greater value
* in `s1` than in `s2`.
*
* @return `ZYAN_STATUS_TRUE`, if the strings are equal, `ZYAN_STATUS_FALSE`, if not, or another
* zyan status code, if an error occured.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringCompareI(const ZyanStringView* s1, const ZyanStringView* s2,
ZyanI32* result);
/* ---------------------------------------------------------------------------------------------- */
/* Case conversion */
/* ---------------------------------------------------------------------------------------------- */
/**
* Converts the given string to lowercase letters.
*
* @param string A pointer to the `ZyanString` instance.
*
* @return A zyan status code.
*
* This function will fail, if the `ZYAN_STRING_IS_IMMUTABLE` flag is set for the specified
* `ZyanString` instance.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringToLowerCase(ZyanString* string);
/**
* Converts `count` characters of the given string to lowercase letters.
*
* @param string A pointer to the `ZyanString` instance.
* @param index The start index.
* @param count The number of characters to convert, beginning from the start `index`.
*
* @return A zyan status code.
*
* This function will fail, if the `ZYAN_STRING_IS_IMMUTABLE` flag is set for the specified
* `ZyanString` instance.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringToLowerCaseEx(ZyanString* string, ZyanUSize index,
ZyanUSize count);
/**
* Converts the given string to uppercase letters.
*
* @param string A pointer to the `ZyanString` instance.
*
* @return A zyan status code.
*
* This function will fail, if the `ZYAN_STRING_IS_IMMUTABLE` flag is set for the specified
* `ZyanString` instance.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringToUpperCase(ZyanString* string);
/**
* Converts `count` characters of the given string to uppercase letters.
*
* @param string A pointer to the `ZyanString` instance.
* @param index The start index.
* @param count The number of characters to convert, beginning from the start `index`.
*
* @return A zyan status code.
*
* This function will fail, if the `ZYAN_STRING_IS_IMMUTABLE` flag is set for the specified
* `ZyanString` instance.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringToUpperCaseEx(ZyanString* string, ZyanUSize index,
ZyanUSize count);
/* ---------------------------------------------------------------------------------------------- */
/* Memory management */
/* ---------------------------------------------------------------------------------------------- */
/**
* Resizes the given `ZyanString` instance.
*
* @param string A pointer to the `ZyanString` instance.
* @param size The new size of the string.
*
* @return A zyan status code.
*
* This function will fail, if the `ZYAN_STRING_IS_IMMUTABLE` flag is set for the specified
* `ZyanString` instance.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringResize(ZyanString* string, ZyanUSize size);
/**
* Changes the capacity of the given `ZyanString` instance.
*
* @param string A pointer to the `ZyanString` instance.
* @param capacity The new minimum capacity of the string.
*
* @return A zyan status code.
*
* This function will fail, if the `ZYAN_STRING_IS_IMMUTABLE` flag is set for the specified
* `ZyanString` instance.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringReserve(ZyanString* string, ZyanUSize capacity);
/**
* Shrinks the capacity of the given string to match it's size.
*
* @param string A pointer to the `ZyanString` instance.
*
* @return A zyan status code.
*
* This function will fail, if the `ZYAN_STRING_IS_IMMUTABLE` flag is set for the specified
* `ZyanString` instance.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringShrinkToFit(ZyanString* string);
/* ---------------------------------------------------------------------------------------------- */
/* Information */
/* ---------------------------------------------------------------------------------------------- */
/**
* Returns the current capacity of the string.
*
* @param string A pointer to the `ZyanString` instance.
* @param capacity Receives the size of the string.
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringGetCapacity(const ZyanString* string, ZyanUSize* capacity);
/**
* Returns the current size (number of characters) of the string (excluding the
* terminating zero character).
*
* @param string A pointer to the `ZyanString` instance.
* @param size Receives the size (number of characters) of the string.
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringGetSize(const ZyanString* string, ZyanUSize* size);
/**
* Returns the C-style string of the given `ZyanString` instance.
*
* @param string A pointer to the `ZyanString` instance.
* @param value Receives a pointer to the C-style string.
*
* @return A zyan status code.
*/
ZYCORE_EXPORT ZyanStatus ZyanStringGetData(const ZyanString* string, const char** value);
/* ---------------------------------------------------------------------------------------------- */
/* ============================================================================================== */
#ifdef __cplusplus
}
#endif
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END
#endif // ZYCORE_STRING_H
|