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
#![allow(
// We follow libstd's lead and prefer to define both.
clippy::partialeq_ne_impl,
// This is a really annoying clippy lint, since it's required for so many cases...
clippy::cast_ptr_alignment,
// For macros
clippy::redundant_slicing,
)]
use core::alloc::Layout;
use core::mem::{align_of, size_of};
use core::ptr::NonNull;
#[cfg(not(all(loom, test)))]
pub(crate) use core::sync::atomic::{AtomicUsize, Ordering};
#[cfg(all(loom, test))]
pub(crate) use loom::sync::atomic::{AtomicUsize, Ordering};
#[cfg(feature = "substr")]
use crate::Substr;
use alloc::borrow::Cow;
use alloc::boxed::Box;
use alloc::string::String;
/// A better atomically-reference counted string type.
///
/// ## Benefits of `ArcStr` over `Arc<str>`
///
/// - It's possible to create a const `ArcStr` from a literal via the
/// [`arcstr::literal!`][crate::literal] macro. This is probably the killer
/// feature, to be honest.
///
/// These "static" `ArcStr`s are zero cost, take no heap allocation, and don't
/// even need to perform atomic reads/writes when being cloned or dropped (nor
/// at any other time).
///
/// They even get stored in the read-only memory of your executable, which can
/// be beneficial for performance and memory usage. (In theory your linker may
/// even dedupe these for you, but usually not)
///
/// - `ArcStr`s from `arcstr::literal!` can be turned into `&'static str` safely
/// at any time using [`ArcStr::as_static`]. (This returns an Option, which is
/// `None` if the `ArcStr` was not static)
///
/// - This should be unsurprising given the literal functionality, but
/// [`ArcStr::new`] is able to be a `const` function.
///
/// - `ArcStr` is thin, e.g. only a single pointer. Great for cases where you
/// want to keep the data structure lightweight or need to do some FFI stuff
/// with it.
///
/// - `ArcStr` is totally immutable. No need to lose sleep because you're afraid
/// of code which thinks it has a right to mutate your `Arc`s just because it
/// holds the only reference...
///
/// - Lower reference counting operations are lower overhead because we don't
/// support `Weak` references. This can be a drawback for some use cases, but
/// improves performance for the common case of no-weak-refs.
///
/// ## What does "zero-cost literals" mean?
///
/// In a few places I call the literal arcstrs "zero-cost". No overhead most
/// accesses accesses (aside from stuff like `as_static` which obviously
/// requires it). and it imposes a extra branch in both `clone` and `drop`.
///
/// This branch in `clone`/`drop` is not on the result of an atomic load, and is
/// just a normal memory read. This is actually what allows literal/static
/// `ArcStr`s to avoid needing to perform any atomic operations in those
/// functions, which seems likely more than cover the cost.
///
/// (Additionally, it's almost certain that in the future we'll be able to
/// reduce the synchronization required for atomic instructions. This is due to
/// our guarantee of immutability and lack of support for `Weak`.)
///
/// # Usage
///
/// ## As a `const`
///
/// The big unique feature of `ArcStr` is the ability to create static/const
/// `ArcStr`s. (See [the macro](crate::literal) docs or the [feature
/// overview][feats]
///
/// [feats]: index.html#feature-overview
///
/// ```
/// # use arcstr::ArcStr;
/// const WOW: ArcStr = arcstr::literal!("cool robot!");
/// assert_eq!(WOW, "cool robot!");
/// ```
///
/// ## As a `str`
///
/// (This is not unique to `ArcStr`, but is a frequent source of confusion I've
/// seen): `ArcStr` implements `Deref<Target = str>`, and so all functions and
/// methods from `str` work on it, even though we don't expose them on `ArcStr`
/// directly.
///
/// ```
/// # use arcstr::ArcStr;
/// let s = ArcStr::from("something");
/// // These go through `Deref`, so they work even though
/// // there is no `ArcStr::eq_ignore_ascii_case` function
/// assert!(s.eq_ignore_ascii_case("SOMETHING"));
/// ```
///
/// Additionally, `&ArcStr` can be passed to any function which accepts `&str`.
/// For example:
///
/// ```
/// # use arcstr::ArcStr;
/// fn accepts_str(s: &str) {
/// # let _ = s;
/// // s...
/// }
///
/// let test_str: ArcStr = "test".into();
/// // This works even though `&test_str` is normally an `&ArcStr`
/// accepts_str(&test_str);
///
/// // Of course, this works for functionality from the standard library as well.
/// let test_but_loud = ArcStr::from("TEST");
/// assert!(test_str.eq_ignore_ascii_case(&test_but_loud));
/// ```
#[repr(transparent)]
pub struct ArcStr(NonNull<ThinInner>);
unsafe impl Sync for ArcStr {}
unsafe impl Send for ArcStr {}
impl ArcStr {
/// Construct a new empty string.
///
/// # Examples
///
/// ```
/// # use arcstr::ArcStr;
/// let s = ArcStr::new();
/// assert_eq!(s, "");
/// ```
#[inline]
pub const fn new() -> Self {
EMPTY
}
/// Attempt to copy the provided string into a newly allocated `ArcStr`, but
/// return `None` if we cannot allocate the required memory.
///
/// # Examples
///
/// ```
/// # use arcstr::ArcStr;
///
/// # fn do_stuff_with(s: ArcStr) {}
///
/// let some_big_str = "please pretend this is a very long string";
/// if let Some(s) = ArcStr::try_alloc(some_big_str) {
/// do_stuff_with(s);
/// } else {
/// // Complain about allocation failure, somehow.
/// }
/// ```
#[inline]
pub fn try_alloc(copy_from: &str) -> Option<Self> {
if let Ok(inner) = ThinInner::try_allocate(copy_from) {
Some(Self(inner))
} else {
None
}
}
/// Extract a string slice containing our data.
///
/// Note: This is an equivalent to our `Deref` implementation, but can be
/// more readable than `&*s` in the cases where a manual invocation of
/// `Deref` would be required.
///
/// # Examples
// TODO: find a better example where `&*` would have been required.
/// ```
/// # use arcstr::ArcStr;
/// let s = ArcStr::from("abc");
/// assert_eq!(s.as_str(), "abc");
/// ```
#[inline]
pub fn as_str(&self) -> &str {
self
}
/// Returns the length of this `ArcStr` in bytes.
///
/// # Examples
///
/// ```
/// # use arcstr::ArcStr;
/// let a = ArcStr::from("foo");
/// assert_eq!(a.len(), 3);
/// ```
#[inline]
pub fn len(&self) -> usize {
unsafe { ThinInner::get_len_flags(self.0.as_ptr()).len() }
}
/// Returns true if this `ArcStr` is empty.
///
/// # Examples
///
/// ```
/// # use arcstr::ArcStr;
/// assert!(!ArcStr::from("foo").is_empty());
/// assert!(ArcStr::new().is_empty());
/// ```
#[inline]
pub fn is_empty(&self) -> bool {
self.len() == 0
}
/// Convert us to a `std::string::String`.
///
/// This is provided as an inherent method to avoid needing to route through
/// the `Display` machinery, but is equivalent to `ToString::to_string`.
///
/// # Examples
///
/// ```
/// # use arcstr::ArcStr;
/// let s = ArcStr::from("abc");
/// assert_eq!(s.to_string(), "abc");
/// ```
#[inline]
#[allow(clippy::inherent_to_string_shadow_display)]
pub fn to_string(&self) -> String {
#[cfg(not(feature = "std"))]
use alloc::borrow::ToOwned;
self.as_str().to_owned()
}
/// Extract a byte slice containing the string's data.
///
/// # Examples
///
/// ```
/// # use arcstr::ArcStr;
/// let foobar = ArcStr::from("foobar");
/// assert_eq!(foobar.as_bytes(), b"foobar");
/// ```
#[inline]
pub fn as_bytes(&self) -> &[u8] {
let p = self.0.as_ptr();
unsafe {
let len = ThinInner::get_len_flags(p).len();
let data = (p as *const u8).add(OFFSET_DATA);
debug_assert_eq!(&(*p).data as *const [u8; 0] as usize, data as usize);
core::slice::from_raw_parts(data, len)
}
}
/// Return the raw pointer this `ArcStr` wraps, for advanced use cases.
///
/// Note that in addition to the `NonNull` constraint expressed in the type
/// signature, we also guarantee the pointer has an alignment of at least 8
/// bytes, even on platforms where a lower alignment would be acceptable.
///
/// # Examples
///
/// ```
/// # use arcstr::ArcStr;
/// let s = ArcStr::from("abcd");
/// let p = ArcStr::into_raw(s);
/// // Some time later...
/// let s = unsafe { ArcStr::from_raw(p) };
/// assert_eq!(s, "abcd");
/// ```
#[inline]
pub fn into_raw(this: Self) -> NonNull<()> {
let p = this.0;
core::mem::forget(this);
p.cast()
}
/// The opposite version of [`Self::into_raw`]. Still intended only for
/// advanced use cases.
///
/// # Safety
///
/// This function must be used on a valid pointer returned from
/// [`ArcStr::into_raw`]. Additionally, you must ensure that a given `ArcStr`
/// instance is only dropped once.
///
/// # Examples
///
/// ```
/// # use arcstr::ArcStr;
/// let s = ArcStr::from("abcd");
/// let p = ArcStr::into_raw(s);
/// // Some time later...
/// let s = unsafe { ArcStr::from_raw(p) };
/// assert_eq!(s, "abcd");
/// ```
#[inline]
pub unsafe fn from_raw(ptr: NonNull<()>) -> Self {
Self(ptr.cast())
}
/// Returns true if the two `ArcStr`s point to the same allocation.
///
/// Note that functions like `PartialEq` check this already, so there's
/// no performance benefit to doing something like `ArcStr::ptr_eq(&a1, &a2) || (a1 == a2)`.
///
/// Caveat: `const`s aren't guaranteed to only occur in an executable a
/// single time, and so this may be non-deterministic for `ArcStr` defined
/// in a `const` with [`arcstr::literal!`][crate::literal], unless one
/// was created by a `clone()` on the other.
///
/// # Examples
///
/// ```
/// use arcstr::ArcStr;
///
/// let foobar = ArcStr::from("foobar");
/// let same_foobar = foobar.clone();
/// let other_foobar = ArcStr::from("foobar");
/// assert!(ArcStr::ptr_eq(&foobar, &same_foobar));
/// assert!(!ArcStr::ptr_eq(&foobar, &other_foobar));
///
/// const YET_AGAIN_A_DIFFERENT_FOOBAR: ArcStr = arcstr::literal!("foobar");
/// let strange_new_foobar = YET_AGAIN_A_DIFFERENT_FOOBAR.clone();
/// let wild_blue_foobar = strange_new_foobar.clone();
/// assert!(ArcStr::ptr_eq(&strange_new_foobar, &wild_blue_foobar));
/// ```
#[inline]
pub fn ptr_eq(lhs: &Self, rhs: &Self) -> bool {
core::ptr::eq(lhs.0.as_ptr(), rhs.0.as_ptr())
}
/// Returns the number of references that exist to this `ArcStr`. If this is
/// a static `ArcStr` (For example, one from
/// [`arcstr::literal!`][crate::literal]), returns `None`.
///
/// Despite the difference in return type, this is named to match the method
/// from the stdlib's Arc:
/// [`Arc::strong_count`][alloc::sync::Arc::strong_count].
///
/// If you aren't sure how to handle static `ArcStr` in the context of this
/// return value, `ArcStr::strong_count(&s).unwrap_or(usize::MAX)` is
/// frequently reasonable.
///
/// # Safety
///
/// This method by itself is safe, but using it correctly requires extra
/// care. Another thread can change the strong count at any time, including
/// potentially between calling this method and acting on the result.
///
/// However, it may never change from `None` to `Some` or from `Some` to
/// `None` for a given `ArcStr` — whether or not it is static is determined
/// at construction, and never changes.
///
/// # Examples
///
/// ### Dynamic ArcStr
/// ```
/// # use arcstr::ArcStr;
/// let foobar = ArcStr::from("foobar");
/// assert_eq!(Some(1), ArcStr::strong_count(&foobar));
/// let also_foobar = ArcStr::clone(&foobar);
/// assert_eq!(Some(2), ArcStr::strong_count(&foobar));
/// assert_eq!(Some(2), ArcStr::strong_count(&also_foobar));
/// ```
///
/// ### Static ArcStr
/// ```
/// # use arcstr::ArcStr;
/// let baz = arcstr::literal!("baz");
/// assert_eq!(None, ArcStr::strong_count(&baz));
/// // Similarly:
/// assert_eq!(None, ArcStr::strong_count(&ArcStr::default()));
/// ```
#[inline]
pub fn strong_count(this: &Self) -> Option<usize> {
let this = this.0.as_ptr();
if unsafe { ThinInner::get_len_flags(this).is_static() } {
None
} else {
unsafe { Some((*this).strong.load(Ordering::SeqCst)) }
}
}
/// Returns true if `this` is a "static" ArcStr. For example, if it was
/// created from a call to [`arcstr::literal!`][crate::literal]),
/// returned by `ArcStr::new`, etc.
///
/// Static `ArcStr`s can be converted to `&'static str` for free using
/// [`ArcStr::as_static`], without leaking memory — they're static constants
/// in the program (somewhere).
///
/// # Examples
///
/// ```
/// # use arcstr::ArcStr;
/// const STATIC: ArcStr = arcstr::literal!("Electricity!");
/// assert!(ArcStr::is_static(&STATIC));
///
/// let still_static = arcstr::literal!("Shocking!");
/// assert!(ArcStr::is_static(&still_static));
/// assert!(
/// ArcStr::is_static(&still_static.clone()),
/// "Cloned statics are still static"
/// );
///
/// let nonstatic = ArcStr::from("Grounded...");
/// assert!(!ArcStr::is_static(&nonstatic));
/// ```
#[inline]
pub fn is_static(this: &Self) -> bool {
unsafe { ThinInner::get_len_flags(this.0.as_ptr()).is_static() }
}
/// Returns true if `this` is a "static"/`"literal"` ArcStr. For example, if
/// it was created from a call to [`literal!`][crate::literal]), returned by
/// `ArcStr::new`, etc.
///
/// Static `ArcStr`s can be converted to `&'static str` for free using
/// [`ArcStr::as_static`], without leaking memory — they're static constants
/// in the program (somewhere).
///
/// # Examples
///
/// ```
/// # use arcstr::ArcStr;
/// const STATIC: ArcStr = arcstr::literal!("Electricity!");
/// assert_eq!(ArcStr::as_static(&STATIC), Some("Electricity!"));
///
/// // Note that they don't have to be consts, just made using `literal!`:
/// let still_static = arcstr::literal!("Shocking!");
/// assert_eq!(ArcStr::as_static(&still_static), Some("Shocking!"));
/// // Cloning a static still produces a static.
/// assert_eq!(ArcStr::as_static(&still_static.clone()), Some("Shocking!"));
///
/// // But it won't work for strings from other sources.
/// let nonstatic = ArcStr::from("Grounded...");
/// assert_eq!(ArcStr::as_static(&nonstatic), None);
/// ```
#[inline]
pub fn as_static(this: &Self) -> Option<&'static str> {
if unsafe { ThinInner::get_len_flags(this.0.as_ptr()).is_static() } {
// We know static strings live forever, so they can have a static lifetime.
Some(unsafe { &*(this.as_str() as *const str) })
} else {
None
}
}
// Not public API. Exists so the `arcstr::literal` macro can call it.
#[inline]
#[doc(hidden)]
pub const unsafe fn _private_new_from_static_data<B>(
ptr: &'static StaticArcStrInner<B>,
) -> Self {
Self(NonNull::new_unchecked(ptr as *const _ as *mut ThinInner))
}
/// `feature = "substr"` Returns a substr of `self` over the given range.
///
/// # Examples
///
/// ```
/// use arcstr::{ArcStr, Substr};
///
/// let a = ArcStr::from("abcde");
/// let b: Substr = a.substr(2..);
///
/// assert_eq!(b, "cde");
/// ```
///
/// # Panics
/// If any of the following are untrue, we panic
/// - `range.start() <= range.end()`
/// - `range.end() <= self.len()`
/// - `self.is_char_boundary(start) && self.is_char_boundary(end)`
/// - These can be conveniently verified in advance using
/// `self.get(start..end).is_some()` if needed.
#[cfg(feature = "substr")]
#[inline]
pub fn substr(&self, range: impl core::ops::RangeBounds<usize>) -> Substr {
Substr::from_parts(self, range)
}
/// `feature = "substr"` Returns a [`Substr`] of self over the given `&str`.
///
/// It is not rare to end up with a `&str` which holds a view into a
/// `ArcStr`'s backing data. A common case is when using functionality that
/// takes and returns `&str` and are entirely unaware of `arcstr`, for
/// example: `str::trim()`.
///
/// This function allows you to reconstruct a [`Substr`] from a `&str` which
/// is a view into this `ArcStr`'s backing string.
///
/// # Examples
///
/// ```
/// use arcstr::{ArcStr, Substr};
/// let text = ArcStr::from(" abc");
/// let trimmed = text.trim();
/// let substr: Substr = text.substr_from(trimmed);
/// assert_eq!(substr, "abc");
/// // for illustration
/// assert!(ArcStr::ptr_eq(substr.parent(), &text));
/// assert_eq!(substr.range(), 3..6);
/// ```
///
/// # Panics
///
/// Panics if `substr` isn't a view into our memory.
///
/// Also panics if `substr` is a view into our memory but is >= `u32::MAX`
/// bytes away from our start, if we're a 64-bit machine and
/// `substr-usize-indices` is not enabled.
#[cfg(feature = "substr")]
pub fn substr_from(&self, substr: &str) -> Substr {
if substr.is_empty() {
return Substr::new();
}
let self_start = self.as_ptr() as usize;
let self_end = self_start + self.len();
let substr_start = substr.as_ptr() as usize;
let substr_end = substr_start + substr.len();
if substr_start < self_start || substr_end > self_end {
out_of_range(self, &substr);
}
let index = substr_start - self_start;
let end = index + substr.len();
self.substr(index..end)
}
/// `feature = "substr"` If possible, returns a [`Substr`] of self over the
/// given `&str`.
///
/// This is a fallible version of [`ArcStr::substr_from`].
///
/// It is not rare to end up with a `&str` which holds a view into a
/// `ArcStr`'s backing data. A common case is when using functionality that
/// takes and returns `&str` and are entirely unaware of `arcstr`, for
/// example: `str::trim()`.
///
/// This function allows you to reconstruct a [`Substr`] from a `&str` which
/// is a view into this `ArcStr`'s backing string.
///
/// # Examples
///
/// ```
/// use arcstr::{ArcStr, Substr};
/// let text = ArcStr::from(" abc");
/// let trimmed = text.trim();
/// let substr: Option<Substr> = text.try_substr_from(trimmed);
/// assert_eq!(substr.unwrap(), "abc");
/// // `&str`s not derived from `self` will return None.
/// let not_substr = text.try_substr_from("abc");
/// assert!(not_substr.is_none());
/// ```
///
/// # Panics
///
/// Panics if `substr` is a view into our memory but is >= `u32::MAX` bytes
/// away from our start, if we're a 64-bit machine and
/// `substr-usize-indices` is not enabled.
#[cfg(feature = "substr")]
pub fn try_substr_from(&self, substr: &str) -> Option<Substr> {
if substr.is_empty() {
return Some(Substr::new());
}
let self_start = self.as_ptr() as usize;
let self_end = self_start + self.len();
let substr_start = substr.as_ptr() as usize;
let substr_end = substr_start + substr.len();
if substr_start < self_start || substr_end > self_end {
return None;
}
let index = substr_start - self_start;
let end = index + substr.len();
debug_assert!(self.get(index..end).is_some());
Some(self.substr(index..end))
}
/// `feature = "substr"` Compute a derived `&str` a function of `&str` =>
/// `&str`, and produce a Substr of the result if possible.
///
/// The function may return either a derived string, or any empty string.
///
/// This function is mainly a wrapper around [`ArcStr::try_substr_from`]. If
/// you're coming to `arcstr` from the `shared_string` crate, this is the
/// moral equivalent of the `slice_with` function.
///
/// # Examples
///
/// ```
/// use arcstr::{ArcStr, Substr};
/// let text = ArcStr::from(" abc");
/// let trimmed: Option<Substr> = text.try_substr_using(str::trim);
/// assert_eq!(trimmed.unwrap(), "abc");
/// let other = text.try_substr_using(|_s| "different string!");
/// assert_eq!(other, None);
/// // As a special case, this is allowed.
/// let empty = text.try_substr_using(|_s| "");
/// assert_eq!(empty.unwrap(), "");
/// ```
#[cfg(feature = "substr")]
pub fn try_substr_using(&self, f: impl FnOnce(&str) -> &str) -> Option<Substr> {
self.try_substr_from(f(self.as_str()))
}
/// `feature = "substr"` Compute a derived `&str` a function of `&str` =>
/// `&str`, and produce a Substr of the result.
///
/// The function may return either a derived string, or any empty string.
/// Returning anything else will result in a panic.
///
/// This function is mainly a wrapper around [`ArcStr::try_substr_from`]. If
/// you're coming to `arcstr` from the `shared_string` crate, this is the
/// likely closest to the `slice_with_unchecked` function, but this panics
/// instead of UB on dodginess.
///
/// # Examples
///
/// ```
/// use arcstr::{ArcStr, Substr};
/// let text = ArcStr::from(" abc");
/// let trimmed: Substr = text.substr_using(str::trim);
/// assert_eq!(trimmed, "abc");
/// // As a special case, this is allowed.
/// let empty = text.substr_using(|_s| "");
/// assert_eq!(empty, "");
/// ```
#[cfg(feature = "substr")]
pub fn substr_using(&self, f: impl FnOnce(&str) -> &str) -> Substr {
self.substr_from(f(self.as_str()))
}
}
#[cold]
#[inline(never)]
#[cfg(feature = "substr")]
fn out_of_range(arc: &ArcStr, substr: &&str) -> ! {
let arc_start = arc.as_ptr() as usize;
let arc_end = arc_start + arc.len();
let substr_start = substr.as_ptr() as usize;
let substr_end = substr_start + substr.len();
panic!(
"ArcStr over ({:p}..{:p}) does not contain substr over ({:p}..{:p})",
arc_start as *const u8,
arc_end as *const u8,
substr_start as *const u8,
substr_end as *const u8,
)
}
impl Clone for ArcStr {
#[inline]
fn clone(&self) -> Self {
let this = self.0.as_ptr();
unsafe {
let is_static = ThinInner::get_len_flags(this).is_static();
if !is_static {
// From libstd's impl:
//
// > Using a relaxed ordering is alright here, as knowledge of the
// > original reference prevents other threads from erroneously deleting
// > the object.
//
// See: https://doc.rust-lang.org/src/alloc/sync.rs.html#1073
let n = (*this).strong.fetch_add(1, Ordering::Relaxed);
// Protect against aggressive leaking of Arcs causing us to overflow `strong`.
if n > (isize::MAX as usize) {
abort();
}
}
}
Self(self.0)
}
}
impl Drop for ArcStr {
#[inline]
fn drop(&mut self) {
let this = self.0.as_ptr();
unsafe {
if ThinInner::get_len_flags(this).is_static() {
return;
}
if (*this).strong.fetch_sub(1, Ordering::Release) == 1 {
// `libstd` uses a full acquire fence here but notes that it's
// possibly overkill. `triomphe`/`servo_arc` some of firefox ref
// counting uses a load like this.
//
// These are morally equivalent for this case, the fence being a
// bit more obvious and the load having slightly better perf in
// some theoretical scenarios... but for our use case both seem
// unnecessary.
//
// The intention behind these is to synchronize with `Release`
// writes to `strong` that are happening on other threads. That
// is, after the load (or fence), writes (any write, but
// specifically writes to any part of `this` are what we care
// about) from other threads which happened before the latest
// `Release` write to strong will become visible on this thread.
//
// The reason this feels unnecessary is that our data is
// entirely immutable outside `(*this).strong`. There are no
// writes we could possibly be interested in.
//
// That said, I'll keep (the cheaper variant of) it for now for
// easier auditing and such... an because I'm not 100% sure that
// changing the ordering here wouldn't require changing it for
// the fetch_sub above, or the fetch_add in `clone`...
let _ = (*this).strong.load(Ordering::Acquire);
ThinInner::destroy_cold(this)
}
}
}
}
// Caveat on the `static`/`strong` fields: "is_static" indicates if we're
// located in static data (as with empty string). is_static being false meanse
// we are a normal arc-ed string.
//
// While `ArcStr` claims to hold a pointer to a `ThinInner`, for the static case
// we actually are using a pointer to a `StaticArcStrInner<[u8; N]>`. These have
// almost identical layouts, except the static contains a explicit trailing
// array, and does not have a `AtomicUsize` The issue is: We kind of want the
// static ones to not have any interior mutability, so that `const`s can use
// them, and so that they may be stored in read-only memory.
//
// We do this by keeping a flag in `len_flags` flag to indicate which case we're
// in, and maintaining the invariant that if we're a `StaticArcStrInner` **we
// may never access `.strong` in any way or produce a `&ThinInner` pointing to
// our data**.
//
// This is more subtle than you might think, sinc AFAIK we're not legally
// allowed to create an `&ThinInner` until we're 100% sure it's nonstatic, and
// prior to determining it, we are forced to work from entirely behind a raw
// pointer...
//
// That said, a bit of this hoop jumping might be not required in the future,
// but for now what we're doing works and is apparently sound:
// https://github.com/rust-lang/unsafe-code-guidelines/issues/246
#[repr(C, align(8))]
struct ThinInner {
len_flags: LenFlags,
// kind of a misnomer since there are no weak refs rn. XXX ever?
strong: AtomicUsize,
data: [u8; 0],
}
const OFFSET_LENFLAGS: usize = 0;
const OFFSET_STRONGCOUNT: usize = size_of::<LenFlags>();
const OFFSET_DATA: usize = OFFSET_STRONGCOUNT + size_of::<AtomicUsize>();
// Not public API, exists for macros.
#[repr(C, align(8))]
#[doc(hidden)]
pub struct StaticArcStrInner<Buf> {
pub len_flags: usize,
pub count: usize,
pub data: Buf,
}
const _: [(); size_of::<StaticArcStrInner<[u8; 0]>>()] = [(); 2 * size_of::<usize>()];
const _: [(); align_of::<StaticArcStrInner<[u8; 0]>>()] = [(); 8];
const _: [(); size_of::<StaticArcStrInner<[u8; 2 * size_of::<usize>()]>>()] =
[(); 4 * size_of::<usize>()];
const _: [(); align_of::<StaticArcStrInner<[u8; 2 * size_of::<usize>()]>>()] = [(); 8];
const _: [(); size_of::<ThinInner>()] = [(); 2 * size_of::<usize>()];
const _: [(); align_of::<ThinInner>()] = [(); 8];
const _: [(); align_of::<AtomicUsize>()] = [(); align_of::<usize>()];
const _: [(); align_of::<AtomicUsize>()] = [(); size_of::<usize>()];
const _: [(); size_of::<AtomicUsize>()] = [(); size_of::<usize>()];
const _: [(); align_of::<LenFlags>()] = [(); align_of::<usize>()];
const _: [(); size_of::<LenFlags>()] = [(); size_of::<usize>()];
#[derive(Clone, Copy)]
#[repr(transparent)]
struct LenFlags(usize);
impl LenFlags {
#[inline]
const fn len(self) -> usize {
self.0 >> 1
}
#[inline]
const fn is_static(self) -> bool {
(self.0 & 1) == 0
}
#[inline]
fn from_len_static(l: usize, is_static: bool) -> Option<Self> {
l.checked_mul(2).map(|l| Self(l | (!is_static as usize)))
}
#[inline]
const fn from_len_static_raw(l: usize, is_static: bool) -> Self {
Self(l << 1 | (!is_static as usize))
}
}
const EMPTY: ArcStr = literal!("");
impl ThinInner {
fn allocate(data: &str) -> NonNull<Self> {
match Self::try_allocate(data) {
Ok(v) => v,
Err(None) => alloc_overflow(),
Err(Some(layout)) => alloc::alloc::handle_alloc_error(layout),
}
}
// returns `Err(Some(l))` if we failed to allocate that layout, and
// `Err(None)` for integer overflow when computing layout.
fn try_allocate(data: &str) -> Result<NonNull<Self>, Option<Layout>> {
const ALIGN: usize = align_of::<ThinInner>();
let num_bytes = data.len();
debug_assert_ne!(num_bytes, 0);
let mo = OFFSET_DATA;
if num_bytes >= (isize::MAX as usize) - (mo + ALIGN) {
return Err(None);
}
unsafe {
debug_assert!(Layout::from_size_align(num_bytes + mo, ALIGN).is_ok());
let layout = Layout::from_size_align_unchecked(num_bytes + mo, ALIGN);
let alloced = alloc::alloc::alloc(layout);
if alloced.is_null() {
return Err(Some(layout));
}
let ptr = alloced as *mut ThinInner;
// we actually already checked this above...
debug_assert!(LenFlags::from_len_static(num_bytes, false).is_some());
let lf = LenFlags::from_len_static_raw(num_bytes, false);
debug_assert_eq!(lf.len(), num_bytes);
debug_assert!(!lf.is_static());
core::ptr::write(&mut (*ptr).len_flags, lf);
core::ptr::write(&mut (*ptr).strong, AtomicUsize::new(1));
debug_assert_eq!(
(alloced as *const u8).wrapping_add(mo),
(*ptr).data.as_ptr(),
);
debug_assert_eq!(&(*ptr).data as *const _ as *const u8, (*ptr).data.as_ptr());
core::ptr::copy_nonoverlapping(data.as_ptr(), alloced.add(mo), num_bytes);
Ok(NonNull::new_unchecked(ptr))
}
}
#[inline]
unsafe fn get_len_flags(p: *const ThinInner) -> LenFlags {
debug_assert_eq!(OFFSET_LENFLAGS, 0);
*p.cast()
}
#[cold]
unsafe fn destroy_cold(p: *mut ThinInner) {
let lf = Self::get_len_flags(p);
debug_assert!(!lf.is_static());
let len = lf.len();
let layout = {
let size = len + OFFSET_DATA;
let align = align_of::<ThinInner>();
Layout::from_size_align_unchecked(size, align)
};
alloc::alloc::dealloc(p as *mut _, layout);
}
}
#[inline(never)]
#[cold]
fn alloc_overflow() -> ! {
panic!("overflow during Layout computation")
}
impl From<&str> for ArcStr {
#[inline]
fn from(s: &str) -> Self {
if s.is_empty() {
Self::new()
} else {
Self(ThinInner::allocate(s))
}
}
}
impl core::ops::Deref for ArcStr {
type Target = str;
#[inline]
fn deref(&self) -> &str {
unsafe { core::str::from_utf8_unchecked(self.as_bytes()) }
}
}
impl Default for ArcStr {
#[inline]
fn default() -> Self {
Self::new()
}
}
impl From<String> for ArcStr {
#[inline]
fn from(v: String) -> Self {
v.as_str().into()
}
}
impl From<&mut str> for ArcStr {
#[inline]
fn from(s: &mut str) -> Self {
let s: &str = s;
Self::from(s)
}
}
impl From<Box<str>> for ArcStr {
#[inline]
fn from(s: Box<str>) -> Self {
Self::from(&s[..])
}
}
impl From<ArcStr> for Box<str> {
#[inline]
fn from(s: ArcStr) -> Self {
s.as_str().into()
}
}
impl From<ArcStr> for alloc::rc::Rc<str> {
#[inline]
fn from(s: ArcStr) -> Self {
s.as_str().into()
}
}
impl From<ArcStr> for alloc::sync::Arc<str> {
#[inline]
fn from(s: ArcStr) -> Self {
s.as_str().into()
}
}
impl From<alloc::rc::Rc<str>> for ArcStr {
#[inline]
fn from(s: alloc::rc::Rc<str>) -> Self {
let s: &str = &*s;
Self::from(s)
}
}
impl From<alloc::sync::Arc<str>> for ArcStr {
#[inline]
fn from(s: alloc::sync::Arc<str>) -> Self {
let s: &str = &*s;
Self::from(s)
}
}
impl<'a> From<Cow<'a, str>> for ArcStr {
#[inline]
fn from(s: Cow<'a, str>) -> Self {
let s: &str = &*s;
Self::from(s)
}
}
impl<'a> From<&'a ArcStr> for Cow<'a, str> {
#[inline]
fn from(s: &'a ArcStr) -> Self {
Cow::Borrowed(s)
}
}
impl<'a> From<ArcStr> for Cow<'a, str> {
#[inline]
fn from(s: ArcStr) -> Self {
if let Some(st) = ArcStr::as_static(&s) {
Cow::Borrowed(st)
} else {
Cow::Owned(s.to_string())
}
}
}
impl From<&String> for ArcStr {
#[inline]
fn from(s: &String) -> Self {
Self::from(s.as_str())
}
}
impl From<&ArcStr> for ArcStr {
#[inline]
fn from(s: &ArcStr) -> Self {
s.clone()
}
}
impl core::fmt::Debug for ArcStr {
#[inline]
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
core::fmt::Debug::fmt(self.as_str(), f)
}
}
impl core::fmt::Display for ArcStr {
#[inline]
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
core::fmt::Display::fmt(self.as_str(), f)
}
}
impl PartialEq for ArcStr {
#[inline]
fn eq(&self, o: &Self) -> bool {
ArcStr::ptr_eq(self, o) || PartialEq::eq(self.as_str(), o.as_str())
}
#[inline]
fn ne(&self, o: &Self) -> bool {
!ArcStr::ptr_eq(self, o) && PartialEq::ne(self.as_str(), o.as_str())
}
}
impl Eq for ArcStr {}
macro_rules! impl_peq {
(@one $a:ty, $b:ty) => {
impl<'a> PartialEq<$b> for $a {
#[inline]
fn eq(&self, s: &$b) -> bool {
PartialEq::eq(&self[..], &s[..])
}
#[inline]
fn ne(&self, s: &$b) -> bool {
PartialEq::ne(&self[..], &s[..])
}
}
};
($(($a:ty, $b:ty),)+) => {$(
impl_peq!(@one $a, $b);
impl_peq!(@one $b, $a);
)+};
}
impl_peq! {
(ArcStr, str),
(ArcStr, &'a str),
(ArcStr, String),
(ArcStr, Cow<'a, str>),
(ArcStr, Box<str>),
(ArcStr, alloc::sync::Arc<str>),
(ArcStr, alloc::rc::Rc<str>),
}
impl PartialOrd for ArcStr {
#[inline]
fn partial_cmp(&self, s: &Self) -> Option<core::cmp::Ordering> {
Some(self.as_str().cmp(s.as_str()))
}
}
impl Ord for ArcStr {
#[inline]
fn cmp(&self, s: &Self) -> core::cmp::Ordering {
self.as_str().cmp(s.as_str())
}
}
impl core::hash::Hash for ArcStr {
#[inline]
fn hash<H: core::hash::Hasher>(&self, h: &mut H) {
self.as_str().hash(h)
}
}
macro_rules! impl_index {
($($IdxT:ty,)*) => {$(
impl core::ops::Index<$IdxT> for ArcStr {
type Output = str;
#[inline]
fn index(&self, i: $IdxT) -> &Self::Output {
&self.as_str()[i]
}
}
)*};
}
impl_index! {
core::ops::RangeFull,
core::ops::Range<usize>,
core::ops::RangeFrom<usize>,
core::ops::RangeTo<usize>,
core::ops::RangeInclusive<usize>,
core::ops::RangeToInclusive<usize>,
}
impl AsRef<str> for ArcStr {
#[inline]
fn as_ref(&self) -> &str {
self
}
}
impl AsRef<[u8]> for ArcStr {
#[inline]
fn as_ref(&self) -> &[u8] {
self.as_bytes()
}
}
impl core::borrow::Borrow<str> for ArcStr {
#[inline]
fn borrow(&self) -> &str {
self
}
}
impl core::str::FromStr for ArcStr {
type Err = core::convert::Infallible;
#[inline]
fn from_str(s: &str) -> Result<Self, Self::Err> {
Ok(Self::from(s))
}
}
#[cold]
#[inline(never)]
#[cfg(not(feature = "std"))]
fn abort() -> ! {
struct PanicOnDrop;
impl Drop for PanicOnDrop {
fn drop(&mut self) {
panic!("fatal error: second panic")
}
}
let _double_panicer = PanicOnDrop;
panic!("fatal error: aborting via double panic");
}
#[cfg(feature = "std")]
use std::process::abort;
#[cfg(test)]
mod test {
use super::*;
fn sasi_layout_check<Buf>() {
assert!(align_of::<StaticArcStrInner<Buf>>() >= 8);
assert_eq!(
memoffset::offset_of!(StaticArcStrInner<Buf>, count),
OFFSET_STRONGCOUNT
);
assert_eq!(
memoffset::offset_of!(StaticArcStrInner<Buf>, len_flags),
OFFSET_LENFLAGS
);
assert_eq!(
memoffset::offset_of!(StaticArcStrInner<Buf>, data),
OFFSET_DATA
);
assert_eq!(
memoffset::offset_of!(ThinInner, strong),
memoffset::offset_of!(StaticArcStrInner::<Buf>, count),
);
assert_eq!(
memoffset::offset_of!(ThinInner, len_flags),
memoffset::offset_of!(StaticArcStrInner::<Buf>, len_flags),
);
assert_eq!(
memoffset::offset_of!(ThinInner, data),
memoffset::offset_of!(StaticArcStrInner::<Buf>, data),
);
}
#[test]
fn verify_type_pun_offsets_sasi_big_bufs() {
assert_eq!(memoffset::offset_of!(ThinInner, strong), OFFSET_STRONGCOUNT);
assert_eq!(memoffset::offset_of!(ThinInner, len_flags), OFFSET_LENFLAGS);
assert_eq!(memoffset::offset_of!(ThinInner, data), OFFSET_DATA);
assert!(align_of::<ThinInner>() >= 8);
sasi_layout_check::<[u8; 0]>();
sasi_layout_check::<[u8; 1]>();
sasi_layout_check::<[u8; 2]>();
sasi_layout_check::<[u8; 3]>();
sasi_layout_check::<[u8; 4]>();
sasi_layout_check::<[u8; 5]>();
sasi_layout_check::<[u8; 15]>();
sasi_layout_check::<[u8; 16]>();
sasi_layout_check::<[u8; 64]>();
sasi_layout_check::<[u8; 128]>();
sasi_layout_check::<[u8; 1024]>();
sasi_layout_check::<[u8; 4095]>();
sasi_layout_check::<[u8; 4096]>();
}
}
#[cfg(all(test, loom))]
mod loomtest {
use super::ArcStr;
use loom::sync::Arc;
use loom::thread;
#[test]
fn cloning_threads() {
loom::model(|| {
let a = ArcStr::from("abcdefgh");
let addr = a.as_ptr() as usize;
let a1 = Arc::new(a);
let a2 = a1.clone();
let t1 = thread::spawn(move || {
let b: ArcStr = (*a1).clone();
assert_eq!(b.as_ptr() as usize, addr);
});
let t2 = thread::spawn(move || {
let b: ArcStr = (*a2).clone();
assert_eq!(b.as_ptr() as usize, addr);
});
t1.join().unwrap();
t2.join().unwrap();
});
}
#[test]
fn drop_timing() {
loom::model(|| {
let a1 = (0..5)
.map(|i| ArcStr::from(alloc::format!("s{}", i)))
.cycle()
.take(10)
.collect::<alloc::vec::Vec<_>>();
let a2 = a1.clone();
let t1 = thread::spawn(move || {
let mut a1 = a1;
while let Some(s) = a1.pop() {
assert!(s.starts_with("s"));
}
});
let t2 = thread::spawn(move || {
let mut a2 = a2;
while let Some(s) = a2.pop() {
assert!(s.starts_with("s"));
}
});
t1.join().unwrap();
t2.join().unwrap();
});
}
}