1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
//! Strings that are compatible wuth Unix-like operating systems.
//!
//! * [`UnixString`] and [`UnixStr`] are useful when you need to with Unix strings.
//! Conversions between [`UnixString`], [`UnixStr`] and Rust strings work similarly
//! to those for `CString` and `CStr`.
//!
//! * [`UnixString`] represents an owned string in Unix's preferred
//! representation.
//!
//! * [`UnixStr`] represents a borrowed reference to a string in a format that
//! can be passed to a Unix-lie operating system. It can be converted into
//! a UTF-8 Rust string slice in a similar way to [`UnixString`].
//!
//! # Conversions
//!
//! [`UnixStr`] implements two methods, [`from_bytes`] and [`as_bytes`].
//! These do inexpensive conversions from and to UTF-8 byte slices.
//!
//! Additionally, [`UnixString`] provides [`from_vec`] and [`into_vec`] methods
//! that consume their arguments, and take or produce vectors of [`u8`].
//!
//! [`UnixString`]: struct.UnixString.html
//! [`UnixStr`]: struct.UnixStr.html
//! [`from_vec`]: struct.UnixString.html#method.from_vec
//! [`into_vec`]: struct.UnixString.html#method.into_vec
//! [`from_bytes`]: struct.UnixStrExt.html#method.from_bytes
//! [`as_bytes`]: struct.UnixStrExt.html#method.as_bytes

#![cfg_attr(feature = "shrink_to", feature(shrink_to))]
#![cfg_attr(feature = "toowned_clone_into", feature(toowned_clone_into))]
#![no_std]

#[cfg(feature = "alloc")]
extern crate alloc;

use core::cmp;
use core::fmt;
use core::hash::{Hash, Hasher};
use core::mem;

#[cfg(feature = "alloc")]
use alloc::borrow::{Borrow, Cow, ToOwned};
#[cfg(feature = "alloc")]
use alloc::boxed::Box;
#[cfg(feature = "alloc")]
use alloc::rc::Rc;
#[cfg(feature = "alloc")]
use alloc::string::String;
#[cfg(feature = "alloc")]
use alloc::sync::Arc;
#[cfg(feature = "alloc")]
use alloc::vec::Vec;
#[cfg(feature = "alloc")]
use core::ops;
#[cfg(feature = "alloc")]
use core::str::FromStr;

mod lossy;

mod sys;
#[cfg(feature = "alloc")]
use sys::Buf;
use sys::Slice;

mod sys_common;
use sys_common::AsInner;
#[cfg(feature = "alloc")]
use sys_common::{FromInner, IntoInner};

/// A type that can represent owned, mutable Unix strings, but is cheaply
/// inter-convertible with Rust strings.
///
/// The need for this type arises from the fact that:
///
/// * On Unix systems, strings are often arbitrary sequences of non-zero
///   bytes, in many cases interpreted as UTF-8.
///
/// * In Rust, strings are always valid UTF-8, which may contain zeros.
///
/// `UnixString` and [`UnixStr`] bridge this gap by simultaneously representing
/// Rust and platform-native string values, and in particular allowing a Rust
/// string to be converted into a “Unix” string with no cost if possible.
/// A consequence of this is that `UnixString` instances are *not* `NULL`
/// terminated; in order to pass to e.g., Unix system call, you should create
/// a `CStr`.
///
/// `UnixString` is to [`&UnixStr`] as `String` is to `&str`: the former
/// in each pair are owned strings; the latter are borrowed references.
///
/// Note, `UnixString` and [`UnixStr`] internally do not hold in the form native
/// to the platform: `UnixString`s are stored as a sequence of 8-bit values.
///
/// # Creating an `UnixString`
///
/// **From a Rust string**: `UnixString` implements `From<String>`, so you can
/// use `my_string.from` to create an `UnixString` from a normal Rust string.
///
/// **From slices:** Just like you can start with an empty Rust [`String`]
/// and then [`push_str`][String.push_str] `&str` sub-string slices into it,
/// you can create an empty `UnixString` with the [`new`] method and then push
/// string slices into it with the [`push`] method.
///
/// # Extracting a borrowed reference to the whole OS string
///
/// You can use the [`as_unix_str`] method to get a [`&UnixStr`] from
/// a `UnixString`; this is effectively a borrowed reference to the whole
/// string.
///
/// # Conversions
///
/// See the [module's toplevel documentation about conversions][conversions]
/// for a discussion on the traits which `UnixString` implements for
/// [conversions] from/to native representations.
///
/// [`UnixStr`]: struct.UnixStr.html
/// [`&UnixStr`]: struct.UnixStr.html
/// [`CStr`]: struct.CStr.html
/// [`new`]: #method.new
/// [`push`]: #method.push
/// [`as_unix_str`]: #method.as_unix_str
/// [conversions]: index.html#conversions
#[derive(Clone)]
#[cfg(feature = "alloc")]
pub struct UnixString {
    inner: Buf,
}

/// Borrowed reference to a Unix string (see [`UnixString`]).
///
/// This type represents a borrowed reference to a string in Unix's preferred
/// representation.
///
/// `&UnixStr` is to [`UnixString`] as `&str` is to `String`: the former
/// in each pair are borrowed references; the latter are owned strings.
///
/// See the [module's toplevel documentation about conversions][conversions]
/// for a discussion on the traits which `UnixStr` implements for [conversions]
/// from/to native representations.
///
/// [`UnixString`]: struct.UnixString.html
/// [conversions]: index.html#conversions
// FIXME:
// `UnixStr::from_inner` current implementation relies on `UnixStr` being
// layout-compatible with `Slice`. When attribute privacy is implemented,
// `UnixStr` should be annotated as `#[repr(transparent)]`. Anyway, `UnixStr`
// representation and layout are considered implementation detail, are
// not documented and must not be relied upon.
pub struct UnixStr {
    inner: Slice,
}

#[cfg(feature = "alloc")]
impl UnixString {
    /// Constructs a new empty `UnixString`.
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixString;
    ///
    /// let unix_string = UnixString::new();
    /// ```
    pub fn new() -> Self {
        Self {
            inner: Buf::from_string(String::new()),
        }
    }

    /// Converts to an [`UnixStr`] slice.
    ///
    /// [`UnixStr`]: struct.UnixStr.html
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::{UnixString, UnixStr};
    ///
    /// let unix_string = UnixString::from("foo");
    /// let unix_str = UnixStr::new("foo");
    /// assert_eq!(unix_string.as_unix_str(), unix_str);
    /// ```
    pub fn as_unix_str(&self) -> &UnixStr {
        self
    }

    /// Converts the `UnixString` into a `String` if it contains valid Unicode data.
    ///
    /// On failure, ownership of the original `UnixString` is returned.
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixString;
    ///
    /// let unix_string = UnixString::from("foo");
    /// let string = unix_string.into_string();
    /// assert_eq!(string, Ok(String::from("foo")));
    /// ```
    pub fn into_string(self) -> Result<String, UnixString> {
        self.inner
            .into_string()
            .map_err(|buf| UnixString { inner: buf })
    }

    /// Extends the string with the given [`&UnixStr`] slice.
    ///
    /// [`&UnixStr`]: struct.UnixStr.html
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixString;
    ///
    /// let mut unix_string = UnixString::from("foo");
    /// unix_string.push("bar");
    /// assert_eq!(&unix_string, "foobar");
    /// ```
    pub fn push<T: AsRef<UnixStr>>(&mut self, s: T) {
        self.inner.push_slice(&s.as_ref().inner)
    }

    /// Creates a new `UnixString` with the given capacity.
    ///
    /// The string will be able to hold exactly `capacity` length units of other
    /// OS strings without reallocating. If `capacity` is 0, the string will not
    /// allocate.
    ///
    /// See main `UnixString` documentation information about encoding.
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixString;
    ///
    /// let mut unix_string = UnixString::with_capacity(10);
    /// let capacity = unix_string.capacity();
    ///
    /// // This push is done without reallocating
    /// unix_string.push("foo");
    ///
    /// assert_eq!(capacity, unix_string.capacity());
    /// ```
    pub fn with_capacity(capacity: usize) -> Self {
        Self {
            inner: Buf::with_capacity(capacity),
        }
    }

    /// Truncates the `UnixString` to zero length.
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixString;
    ///
    /// let mut unix_string = UnixString::from("foo");
    /// assert_eq!(&unix_string, "foo");
    ///
    /// unix_string.clear();
    /// assert_eq!(&unix_string, "");
    /// ```
    pub fn clear(&mut self) {
        self.inner.clear()
    }

    /// Returns the capacity this `UnixString` can hold without reallocating.
    ///
    /// See `UnixString` introduction for information about encoding.
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixString;
    ///
    /// let unix_string = UnixString::with_capacity(10);
    /// assert!(unix_string.capacity() >= 10);
    /// ```
    pub fn capacity(&self) -> usize {
        self.inner.capacity()
    }

    /// Reserves capacity for at least `additional` more capacity to be inserted
    /// in the given `UnixString`.
    ///
    /// The collection may reserve more space to avoid frequent reallocations.
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixString;
    ///
    /// let mut s = UnixString::new();
    /// s.reserve(10);
    /// assert!(s.capacity() >= 10);
    /// ```
    pub fn reserve(&mut self, additional: usize) {
        self.inner.reserve(additional)
    }

    /// Reserves the minimum capacity for exactly `additional` more capacity to
    /// be inserted in the given `UnixString`. Does nothing if the capacity is
    /// already sufficient.
    ///
    /// Note that the allocator may give the collection more space than it
    /// requests. Therefore, capacity can not be relied upon to be precisely
    /// minimal. Prefer reserve if future insertions are expected.
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixString;
    ///
    /// let mut s = UnixString::new();
    /// s.reserve_exact(10);
    /// assert!(s.capacity() >= 10);
    /// ```
    pub fn reserve_exact(&mut self, additional: usize) {
        self.inner.reserve_exact(additional)
    }

    /// Shrinks the capacity of the `UnixString` to match its length.
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixString;
    ///
    /// let mut s = UnixString::from("foo");
    ///
    /// s.reserve(100);
    /// assert!(s.capacity() >= 100);
    ///
    /// s.shrink_to_fit();
    /// assert_eq!(3, s.capacity());
    /// ```
    pub fn shrink_to_fit(&mut self) {
        self.inner.shrink_to_fit()
    }

    /// Shrinks the capacity of the `UnixString` with a lower bound.
    ///
    /// The capacity will remain at least as large as both the length
    /// and the supplied value.
    ///
    /// Panics if the current capacity is smaller than the supplied
    /// minimum capacity.
    ///
    /// # Examples
    ///
    /// ```
    /// #![feature(shrink_to)]
    /// use std::ffi::UnixString;
    ///
    /// let mut s = UnixString::from("foo");
    ///
    /// s.reserve(100);
    /// assert!(s.capacity() >= 100);
    ///
    /// s.shrink_to(10);
    /// assert!(s.capacity() >= 10);
    /// s.shrink_to(0);
    /// assert!(s.capacity() >= 3);
    /// ```
    #[inline]
    #[cfg(feature = "shrink_to")]
    pub fn shrink_to(&mut self, min_capacity: usize) {
        self.inner.shrink_to(min_capacity)
    }

    /// Converts this `UnixString` into a boxed [`UnixStr`].
    ///
    /// [`UnixStr`]: struct.UnixStr.html
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::{UnixString, UnixStr};
    ///
    /// let s = UnixString::from("hello");
    ///
    /// let b: Box<UnixStr> = s.into_boxed_unix_str();
    /// ```
    pub fn into_boxed_unix_str(self) -> Box<UnixStr> {
        let rw = Box::into_raw(self.inner.into_box()) as *mut UnixStr;
        unsafe { Box::from_raw(rw) }
    }

    /// Creates a `UnixString` from a byte vector.
    ///
    /// See the module documentation for an example.
    ///
    pub fn from_vec(vec: Vec<u8>) -> Self {
        FromInner::from_inner(Buf { inner: vec })
    }

    /// Yields the underlying byte vector of this `UnixString`.
    ///
    /// See the module documentation for an example.
    pub fn into_vec(self) -> Vec<u8> {
        self.into_inner().inner
    }
}

#[cfg(feature = "alloc")]
impl From<String> for UnixString {
    /// Converts a `String` into a [`UnixString`].
    ///
    /// The conversion copies the data, and includes an allocation on the heap.
    ///
    /// [`UnixString`]: ../../std/ffi/struct.UnixString.html
    fn from(s: String) -> Self {
        UnixString {
            inner: Buf::from_string(s),
        }
    }
}

#[cfg(feature = "alloc")]
impl<T: ?Sized + AsRef<UnixStr>> From<&T> for UnixString {
    fn from(s: &T) -> Self {
        s.as_ref().to_unix_string()
    }
}

#[cfg(feature = "alloc")]
impl ops::Index<ops::RangeFull> for UnixString {
    type Output = UnixStr;

    #[inline]
    fn index(&self, _index: ops::RangeFull) -> &UnixStr {
        UnixStr::from_inner(self.inner.as_slice())
    }
}

#[cfg(feature = "alloc")]
impl ops::IndexMut<ops::RangeFull> for UnixString {
    #[inline]
    fn index_mut(&mut self, _index: ops::RangeFull) -> &mut UnixStr {
        UnixStr::from_inner_mut(self.inner.as_mut_slice())
    }
}

#[cfg(feature = "alloc")]
impl ops::Deref for UnixString {
    type Target = UnixStr;

    #[inline]
    fn deref(&self) -> &UnixStr {
        &self[..]
    }
}

#[cfg(feature = "alloc")]
impl ops::DerefMut for UnixString {
    #[inline]
    fn deref_mut(&mut self) -> &mut UnixStr {
        &mut self[..]
    }
}

#[cfg(feature = "alloc")]
impl Default for UnixString {
    /// Constructs an empty `UnixString`.
    #[inline]
    fn default() -> Self {
        Self::new()
    }
}

#[cfg(feature = "alloc")]
impl fmt::Debug for UnixString {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        fmt::Debug::fmt(&**self, formatter)
    }
}

#[cfg(feature = "alloc")]
impl PartialEq for UnixString {
    fn eq(&self, other: &Self) -> bool {
        &**self == &**other
    }
}

#[cfg(feature = "alloc")]
impl PartialEq<str> for UnixString {
    fn eq(&self, other: &str) -> bool {
        &**self == other
    }
}

#[cfg(feature = "alloc")]
impl PartialEq<UnixString> for str {
    fn eq(&self, other: &UnixString) -> bool {
        &**other == self
    }
}

#[cfg(feature = "alloc")]
impl PartialEq<&str> for UnixString {
    fn eq(&self, other: &&str) -> bool {
        **self == **other
    }
}

#[cfg(feature = "alloc")]
impl<'a> PartialEq<UnixString> for &'a str {
    fn eq(&self, other: &UnixString) -> bool {
        **other == **self
    }
}

#[cfg(feature = "alloc")]
impl Eq for UnixString {}

#[cfg(feature = "alloc")]
impl PartialOrd for UnixString {
    #[inline]
    fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> {
        (&**self).partial_cmp(&**other)
    }
    #[inline]
    fn lt(&self, other: &Self) -> bool {
        &**self < &**other
    }
    #[inline]
    fn le(&self, other: &Self) -> bool {
        &**self <= &**other
    }
    #[inline]
    fn gt(&self, other: &Self) -> bool {
        &**self > &**other
    }
    #[inline]
    fn ge(&self, other: &Self) -> bool {
        &**self >= &**other
    }
}

#[cfg(feature = "alloc")]
impl PartialOrd<str> for UnixString {
    #[inline]
    fn partial_cmp(&self, other: &str) -> Option<cmp::Ordering> {
        (&**self).partial_cmp(other)
    }
}

#[cfg(feature = "alloc")]
impl Ord for UnixString {
    #[inline]
    fn cmp(&self, other: &Self) -> cmp::Ordering {
        (&**self).cmp(&**other)
    }
}

#[cfg(feature = "alloc")]
impl Hash for UnixString {
    #[inline]
    fn hash<H: Hasher>(&self, state: &mut H) {
        (&**self).hash(state)
    }
}

impl UnixStr {
    /// Coerces into an `UnixStr` slice.
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixStr;
    ///
    /// let unix_str = UnixStr::new("foo");
    /// ```
    #[inline]
    pub fn new<S: AsRef<UnixStr> + ?Sized>(s: &S) -> &UnixStr {
        s.as_ref()
    }

    #[inline]
    fn from_inner(inner: &Slice) -> &UnixStr {
        // Safety: UnixStr is just a wrapper of Slice,
        // therefore converting &Slice to &UnixStr is safe.
        unsafe { &*(inner as *const Slice as *const UnixStr) }
    }

    #[inline]
    #[cfg(feature = "alloc")]
    fn from_inner_mut(inner: &mut Slice) -> &mut UnixStr {
        // Safety: UnixStr is just a wrapper of Slice,
        // therefore converting &mut Slice to &mut UnixStr is safe.
        // Any method that mutates UnixStr must be careful not to
        // break platform-specific encoding, in particular Wtf8 on Windows.
        unsafe { &mut *(inner as *mut Slice as *mut UnixStr) }
    }

    /// Yields a `&str` slice if the `UnixStr` is valid Unicode.
    ///
    /// This conversion may entail doing a check for UTF-8 validity.
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixStr;
    ///
    /// let unix_str = UnixStr::new("foo");
    /// assert_eq!(unix_str.to_str(), Some("foo"));
    /// ```
    pub fn to_str(&self) -> Option<&str> {
        self.inner.to_str()
    }

    /// Converts an `UnixStr` to a `Cow<str>`.
    ///
    /// Any non-Unicode sequences are replaced with
    /// `U+FFFD REPLACEMENT CHARACTER`.
    ///
    ///
    /// # Examples
    ///
    /// Calling `to_string_lossy` on an `UnixStr` with invalid unicode:
    ///
    /// ```
    /// use unix_str::UnixStr;
    ///
    /// // Here, the values 0x66 and 0x6f correspond to 'f' and 'o'
    /// // respectively. The value 0x80 is a lone continuation byte, invalid
    /// // in a UTF-8 sequence.
    /// let source = [0x66, 0x6f, 0x80, 0x6f];
    /// let unix_str = UnixStr::from_bytes(&source[..]);
    ///
    /// assert_eq!(unix_str.to_string_lossy(), "fo�o");
    /// ```
    #[cfg(feature = "alloc")]
    pub fn to_string_lossy(&self) -> Cow<'_, str> {
        self.inner.to_string_lossy()
    }

    /// Copies the slice into an owned [`UnixString`].
    ///
    /// [`UnixString`]: struct.UnixString.html
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::{UnixStr, UnixString};
    ///
    /// let unix_str = UnixStr::new("foo");
    /// let unix_string = unix_str.to_unix_string();
    /// assert_eq!(unix_string, UnixString::from("foo"));
    /// ```
    #[cfg(feature = "alloc")]
    pub fn to_unix_string(&self) -> UnixString {
        UnixString {
            inner: self.inner.to_owned(),
        }
    }

    /// Checks whether the `UnixStr` is empty.
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixStr;
    ///
    /// let unix_str = UnixStr::new("");
    /// assert!(unix_str.is_empty());
    ///
    /// let unix_str = UnixStr::new("foo");
    /// assert!(!unix_str.is_empty());
    /// ```
    #[inline]
    pub fn is_empty(&self) -> bool {
        self.inner.inner.is_empty()
    }

    /// Returns the length of this `UnixStr`.
    ///
    /// Note that this does **not** return the number of bytes in the string in
    /// OS string form.
    ///
    /// The length returned is that of the underlying storage used by `UnixStr`.
    /// As discussed in the [`UnixString`] introduction, [`UnixString`] and
    /// `UnixStr` store strings in a form best suited for cheap inter-conversion
    /// between native-platform and Rust string forms, which may differ
    /// significantly from both of them, including in storage size and encoding.
    ///
    /// This number is simply useful for passing to other methods, like
    /// [`UnixString::with_capacity`] to avoid reallocations.
    ///
    /// [`UnixString`]: struct.UnixString.html
    /// [`UnixString::with_capacity`]: struct.UnixString.html#method.with_capacity
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixStr;
    ///
    /// let unix_str = UnixStr::new("");
    /// assert_eq!(unix_str.len(), 0);
    ///
    /// let unix_str = UnixStr::new("foo");
    /// assert_eq!(unix_str.len(), 3);
    /// ```
    pub fn len(&self) -> usize {
        self.inner.inner.len()
    }

    /// Converts a `Box<UnixStr>` into an [`UnixString`] without copying
    /// allocating.
    ///
    /// [`UnixString`]: struct.UnixString.html
    #[cfg(feature = "alloc")]
    pub fn into_unix_string(self: Box<UnixStr>) -> UnixString {
        let boxed = unsafe { Box::from_raw(Box::into_raw(self) as *mut Slice) };
        UnixString {
            inner: Buf::from_box(boxed),
        }
    }

    /// Gets the underlying byte representation.
    ///
    /// Note: it is *crucial* that this API is private, to avoid
    /// revealing the internal, platform-specific encodings.
    #[inline]
    fn bytes(&self) -> &[u8] {
        unsafe { &*(&self.inner as *const _ as *const [u8]) }
    }

    /// Converts this string to its ASCII lower case equivalent in-place.
    ///
    /// ASCII letters 'A' to 'Z' are mapped to 'a' to 'z', but non-ASCII letters
    /// are unchanged.
    ///
    /// To return a new lowercased value without modifying the existing one, use
    /// [`to_ascii_lowercase`].
    ///
    /// [`to_ascii_lowercase`]: #method.to_ascii_lowercase
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixString;
    ///
    /// let mut s = UnixString::from("GRÜßE, JÜRGEN ❤");
    ///
    /// s.make_ascii_lowercase();
    ///
    /// assert_eq!("grÜße, jÜrgen ❤", s);
    /// ```
    #[cfg(feature = "unixstring_ascii")]
    pub fn make_ascii_lowercase(&mut self) {
        self.inner.make_ascii_lowercase()
    }

    /// Converts this string to its ASCII upper case equivalent in-place.
    ///
    /// ASCII letters 'a' to 'z' are mapped to 'A' to 'Z',
    /// but non-ASCII letters are unchanged.
    ///
    /// To return a new uppercased value without modifying the existing one, use
    /// [`to_ascii_uppercase`].
    ///
    /// [`to_ascii_uppercase`]: #method.to_ascii_uppercase
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixString;
    ///
    /// let mut s = UnixString::from("Grüße, Jürgen ❤");
    ///
    /// s.make_ascii_uppercase();
    ///
    /// assert_eq!("GRüßE, JüRGEN ❤", s);
    /// ```
    #[cfg(feature = "unixstring_ascii")]
    pub fn make_ascii_uppercase(&mut self) {
        self.inner.make_ascii_uppercase()
    }

    /// Returns a copy of this string where each character is mapped to its
    /// ASCII lower case equivalent.
    ///
    /// ASCII letters 'A' to 'Z' are mapped to 'a' to 'z',
    /// but non-ASCII letters are unchanged.
    ///
    /// To lowercase the value in-place, use [`make_ascii_lowercase`].
    ///
    /// [`make_ascii_lowercase`]: #method.make_ascii_lowercase
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixString;
    /// let s = UnixString::from("Grüße, Jürgen ❤");
    ///
    /// assert_eq!("grüße, jürgen ❤", s.to_ascii_lowercase());
    /// ```
    #[cfg(all(feature = "alloc", feature = "unixstring_ascii"))]
    pub fn to_ascii_lowercase(&self) -> UnixString {
        UnixString::from_inner(self.inner.to_ascii_lowercase())
    }

    /// Returns a copy of this string where each character is mapped to its
    /// ASCII upper case equivalent.
    ///
    /// ASCII letters 'a' to 'z' are mapped to 'A' to 'Z',
    /// but non-ASCII letters are unchanged.
    ///
    /// To uppercase the value in-place, use [`make_ascii_uppercase`].
    ///
    /// [`make_ascii_uppercase`]: #method.make_ascii_uppercase
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixString;
    /// let s = UnixString::from("Grüße, Jürgen ❤");
    ///
    /// assert_eq!("GRüßE, JüRGEN ❤", s.to_ascii_uppercase());
    /// ```
    #[cfg(all(feature = "alloc", feature = "unixstring_ascii"))]
    pub fn to_ascii_uppercase(&self) -> UnixString {
        UnixString::from_inner(self.inner.to_ascii_uppercase())
    }

    /// Checks if all characters in this string are within the ASCII range.
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixString;
    ///
    /// let ascii = UnixString::from("hello!\n");
    /// let non_ascii = UnixString::from("Grüße, Jürgen ❤");
    ///
    /// assert!(ascii.is_ascii());
    /// assert!(!non_ascii.is_ascii());
    /// ```
    #[cfg(feature = "unixstring_ascii")]
    pub fn is_ascii(&self) -> bool {
        self.inner.is_ascii()
    }

    /// Checks that two strings are an ASCII case-insensitive match.
    ///
    /// Same as `to_ascii_lowercase(a) == to_ascii_lowercase(b)`,
    /// but without allocating and copying temporaries.
    ///
    /// # Examples
    ///
    /// ```
    /// use unix_str::UnixString;
    ///
    /// assert!(UnixString::from("Ferris").eq_ignore_ascii_case("FERRIS"));
    /// assert!(UnixString::from("Ferrös").eq_ignore_ascii_case("FERRöS"));
    /// assert!(!UnixString::from("Ferrös").eq_ignore_ascii_case("FERRÖS"));
    /// ```
    #[cfg(feature = "unixstring_ascii")]
    pub fn eq_ignore_ascii_case<S: ?Sized + AsRef<UnixStr>>(&self, other: &S) -> bool {
        self.inner.eq_ignore_ascii_case(&other.as_ref().inner)
    }

    /// Creates a `UnixStr` from a byte slice.
    ///
    /// See the module documentation for an example.
    pub fn from_bytes(slice: &[u8]) -> &Self {
        unsafe { mem::transmute(slice) }
    }

    /// Gets the underlying byte view of the `UnixStr` slice.
    ///
    /// See the module documentation for an example.
    pub fn as_bytes(&self) -> &[u8] {
        &self.as_inner().inner
    }
}

#[cfg(feature = "alloc")]
impl From<&UnixStr> for Box<UnixStr> {
    fn from(s: &UnixStr) -> Self {
        let rw = Box::into_raw(s.inner.into_box()) as *mut UnixStr;
        unsafe { Box::from_raw(rw) }
    }
}

#[cfg(feature = "alloc")]
impl From<Cow<'_, UnixStr>> for Box<UnixStr> {
    #[inline]
    fn from(cow: Cow<'_, UnixStr>) -> Self {
        match cow {
            Cow::Borrowed(s) => Box::from(s),
            Cow::Owned(s) => Box::from(s),
        }
    }
}

#[cfg(feature = "alloc")]
impl From<Box<UnixStr>> for UnixString {
    /// Converts a `Box<UnixStr>` into a `UnixString` without copying or
    /// allocating.
    ///
    /// [`UnixStr`]: ../ffi/struct.UnixStr.html
    fn from(boxed: Box<UnixStr>) -> Self {
        boxed.into_unix_string()
    }
}

#[cfg(feature = "alloc")]
impl From<UnixString> for Box<UnixStr> {
    /// Converts a [`UnixString`] into a `Box<UnixStr>` without copying or
    /// allocating.
    ///
    /// [`UnixString`]: ../ffi/struct.UnixString.html
    fn from(s: UnixString) -> Self {
        s.into_boxed_unix_str()
    }
}

#[cfg(feature = "alloc")]
impl Clone for Box<UnixStr> {
    #[inline]
    fn clone(&self) -> Self {
        self.to_unix_string().into_boxed_unix_str()
    }
}

#[cfg(feature = "alloc")]
impl From<UnixString> for Arc<UnixStr> {
    /// Converts a [`UnixString`] into a `Arc<UnixStr>` without copying or
    /// allocating.
    ///
    /// [`UnixString`]: ../ffi/struct.UnixString.html
    #[inline]
    fn from(s: UnixString) -> Self {
        let arc = s.inner.into_arc();
        unsafe { Arc::from_raw(Arc::into_raw(arc) as *const UnixStr) }
    }
}

#[cfg(feature = "alloc")]
impl From<&UnixStr> for Arc<UnixStr> {
    #[inline]
    fn from(s: &UnixStr) -> Self {
        let arc = s.inner.into_arc();
        unsafe { Arc::from_raw(Arc::into_raw(arc) as *const UnixStr) }
    }
}

#[cfg(feature = "alloc")]
impl From<UnixString> for Rc<UnixStr> {
    /// Converts a [`UnixString`] into a `Rc<UnixStr>` without copying or
    /// allocating.
    ///
    /// [`UnixString`]: ../ffi/struct.UnixString.html
    #[inline]
    fn from(s: UnixString) -> Self {
        let rc = s.inner.into_rc();
        unsafe { Rc::from_raw(Rc::into_raw(rc) as *const UnixStr) }
    }
}

#[cfg(feature = "alloc")]
impl From<&UnixStr> for Rc<UnixStr> {
    #[inline]
    fn from(s: &UnixStr) -> Self {
        let rc = s.inner.into_rc();
        unsafe { Rc::from_raw(Rc::into_raw(rc) as *const UnixStr) }
    }
}

#[cfg(feature = "alloc")]
impl<'a> From<UnixString> for Cow<'a, UnixStr> {
    #[inline]
    fn from(s: UnixString) -> Self {
        Cow::Owned(s)
    }
}

#[cfg(feature = "alloc")]
impl<'a> From<&'a UnixStr> for Cow<'a, UnixStr> {
    #[inline]
    fn from(s: &'a UnixStr) -> Self {
        Cow::Borrowed(s)
    }
}

#[cfg(feature = "alloc")]
impl<'a> From<&'a UnixString> for Cow<'a, UnixStr> {
    #[inline]
    fn from(s: &'a UnixString) -> Self {
        Cow::Borrowed(s.as_unix_str())
    }
}

#[cfg(feature = "alloc")]
impl<'a> From<Cow<'a, UnixStr>> for UnixString {
    #[inline]
    fn from(s: Cow<'a, UnixStr>) -> Self {
        s.into_owned()
    }
}

#[cfg(feature = "alloc")]
impl Default for Box<UnixStr> {
    fn default() -> Self {
        let rw = Box::into_raw(Slice::empty_box()) as *mut UnixStr;
        unsafe { Box::from_raw(rw) }
    }
}

impl Default for &UnixStr {
    /// Creates an empty `UnixStr`.
    #[inline]
    fn default() -> Self {
        UnixStr::new("")
    }
}

impl PartialEq for UnixStr {
    #[inline]
    fn eq(&self, other: &UnixStr) -> bool {
        self.bytes().eq(other.bytes())
    }
}

impl PartialEq<str> for UnixStr {
    #[inline]
    fn eq(&self, other: &str) -> bool {
        *self == *UnixStr::new(other)
    }
}

impl PartialEq<UnixStr> for str {
    #[inline]
    fn eq(&self, other: &UnixStr) -> bool {
        *other == *UnixStr::new(self)
    }
}

impl Eq for UnixStr {}

impl PartialOrd for UnixStr {
    #[inline]
    fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> {
        self.bytes().partial_cmp(other.bytes())
    }
    #[inline]
    fn lt(&self, other: &Self) -> bool {
        self.bytes().lt(other.bytes())
    }
    #[inline]
    fn le(&self, other: &Self) -> bool {
        self.bytes().le(other.bytes())
    }
    #[inline]
    fn gt(&self, other: &Self) -> bool {
        self.bytes().gt(other.bytes())
    }
    #[inline]
    fn ge(&self, other: &Self) -> bool {
        self.bytes().ge(other.bytes())
    }
}

impl PartialOrd<str> for UnixStr {
    #[inline]
    fn partial_cmp(&self, other: &str) -> Option<cmp::Ordering> {
        self.partial_cmp(Self::new(other))
    }
}

// FIXME (#19470): cannot provide PartialOrd<UnixStr> for str until we
// have more flexible coherence rules.

impl Ord for UnixStr {
    #[inline]
    fn cmp(&self, other: &Self) -> cmp::Ordering {
        self.bytes().cmp(other.bytes())
    }
}

#[cfg(feature = "alloc")]
macro_rules! impl_cmp {
    ($lhs:ty, $rhs: ty) => {
        impl<'a, 'b> PartialEq<$rhs> for $lhs {
            #[inline]
            fn eq(&self, other: &$rhs) -> bool {
                <UnixStr as PartialEq>::eq(self, other)
            }
        }

        impl<'a, 'b> PartialEq<$lhs> for $rhs {
            #[inline]
            fn eq(&self, other: &$lhs) -> bool {
                <UnixStr as PartialEq>::eq(self, other)
            }
        }

        impl<'a, 'b> PartialOrd<$rhs> for $lhs {
            #[inline]
            fn partial_cmp(&self, other: &$rhs) -> Option<cmp::Ordering> {
                <UnixStr as PartialOrd>::partial_cmp(self, other)
            }
        }

        impl<'a, 'b> PartialOrd<$lhs> for $rhs {
            #[inline]
            fn partial_cmp(&self, other: &$lhs) -> Option<cmp::Ordering> {
                <UnixStr as PartialOrd>::partial_cmp(self, other)
            }
        }
    };
}

#[cfg(feature = "alloc")]
impl_cmp!(UnixString, UnixStr);
#[cfg(feature = "alloc")]
impl_cmp!(UnixString, &'a UnixStr);
#[cfg(feature = "alloc")]
impl_cmp!(Cow<'a, UnixStr>, UnixStr);
#[cfg(feature = "alloc")]
impl_cmp!(Cow<'a, UnixStr>, &'b UnixStr);
#[cfg(feature = "alloc")]
impl_cmp!(Cow<'a, UnixStr>, UnixString);

impl Hash for UnixStr {
    #[inline]
    fn hash<H: Hasher>(&self, state: &mut H) {
        self.bytes().hash(state)
    }
}

impl fmt::Debug for UnixStr {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        fmt::Debug::fmt(&self.inner, formatter)
    }
}

#[cfg(feature = "alloc")]
impl Borrow<UnixStr> for UnixString {
    fn borrow(&self) -> &UnixStr {
        &self[..]
    }
}

#[cfg(feature = "alloc")]
impl ToOwned for UnixStr {
    type Owned = UnixString;
    fn to_owned(&self) -> Self::Owned {
        self.to_unix_string()
    }
    #[cfg(feature = "toowned_clone_into")]
    fn clone_into(&self, target: &mut Self::Owned) {
        self.inner.clone_into(&mut target.inner)
    }
}

impl AsRef<UnixStr> for UnixStr {
    fn as_ref(&self) -> &UnixStr {
        self
    }
}

#[cfg(feature = "alloc")]
impl AsRef<UnixStr> for UnixString {
    #[inline]
    fn as_ref(&self) -> &UnixStr {
        self
    }
}

impl AsRef<UnixStr> for str {
    #[inline]
    fn as_ref(&self) -> &UnixStr {
        UnixStr::from_inner(Slice::from_str(self))
    }
}

#[cfg(feature = "alloc")]
impl AsRef<UnixStr> for String {
    #[inline]
    fn as_ref(&self) -> &UnixStr {
        (&**self).as_ref()
    }
}

#[cfg(feature = "alloc")]
impl FromInner<Buf> for UnixString {
    fn from_inner(buf: Buf) -> UnixString {
        UnixString { inner: buf }
    }
}

#[cfg(feature = "alloc")]
impl IntoInner<Buf> for UnixString {
    fn into_inner(self) -> Buf {
        self.inner
    }
}

impl AsInner<Slice> for UnixStr {
    #[inline]
    fn as_inner(&self) -> &Slice {
        &self.inner
    }
}

#[cfg(feature = "alloc")]
impl FromStr for UnixString {
    type Err = core::convert::Infallible;

    fn from_str(s: &str) -> Result<Self, Self::Err> {
        Ok(UnixString::from(s))
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use sys_common::{AsInner, IntoInner};

    use alloc::rc::Rc;
    use alloc::sync::Arc;

    #[test]
    fn test_unix_string_with_capacity() {
        let unix_string = UnixString::with_capacity(0);
        assert_eq!(0, unix_string.inner.into_inner().capacity());

        let unix_string = UnixString::with_capacity(10);
        assert_eq!(10, unix_string.inner.into_inner().capacity());

        let mut unix_string = UnixString::with_capacity(0);
        unix_string.push("abc");
        assert!(unix_string.inner.into_inner().capacity() >= 3);
    }

    #[test]
    fn test_unix_string_clear() {
        let mut unix_string = UnixString::from("abc");
        assert_eq!(3, unix_string.inner.as_inner().len());

        unix_string.clear();
        assert_eq!(&unix_string, "");
        assert_eq!(0, unix_string.inner.as_inner().len());
    }

    #[test]
    fn test_unix_string_capacity() {
        let unix_string = UnixString::with_capacity(0);
        assert_eq!(0, unix_string.capacity());

        let unix_string = UnixString::with_capacity(10);
        assert_eq!(10, unix_string.capacity());

        let mut unix_string = UnixString::with_capacity(0);
        unix_string.push("abc");
        assert!(unix_string.capacity() >= 3);
    }

    #[test]
    fn test_unix_string_reserve() {
        let mut unix_string = UnixString::new();
        assert_eq!(unix_string.capacity(), 0);

        unix_string.reserve(2);
        assert!(unix_string.capacity() >= 2);

        for _ in 0..16 {
            unix_string.push("a");
        }

        assert!(unix_string.capacity() >= 16);
        unix_string.reserve(16);
        assert!(unix_string.capacity() >= 32);

        unix_string.push("a");

        unix_string.reserve(16);
        assert!(unix_string.capacity() >= 33)
    }

    #[test]
    fn test_unix_string_reserve_exact() {
        let mut unix_string = UnixString::new();
        assert_eq!(unix_string.capacity(), 0);

        unix_string.reserve_exact(2);
        assert!(unix_string.capacity() >= 2);

        for _ in 0..16 {
            unix_string.push("a");
        }

        assert!(unix_string.capacity() >= 16);
        unix_string.reserve_exact(16);
        assert!(unix_string.capacity() >= 32);

        unix_string.push("a");

        unix_string.reserve_exact(16);
        assert!(unix_string.capacity() >= 33)
    }

    #[test]
    fn test_unix_string_default() {
        let unix_string: UnixString = Default::default();
        assert_eq!("", &unix_string);
    }

    #[test]
    fn test_unix_str_is_empty() {
        let mut unix_string = UnixString::new();
        assert!(unix_string.is_empty());

        unix_string.push("abc");
        assert!(!unix_string.is_empty());

        unix_string.clear();
        assert!(unix_string.is_empty());
    }

    #[test]
    fn test_unix_str_len() {
        let mut unix_string = UnixString::new();
        assert_eq!(0, unix_string.len());

        unix_string.push("abc");
        assert_eq!(3, unix_string.len());

        unix_string.clear();
        assert_eq!(0, unix_string.len());
    }

    #[test]
    fn test_unix_str_default() {
        let unix_str: &UnixStr = Default::default();
        assert_eq!("", unix_str);
    }

    #[test]
    fn into_boxed() {
        let orig = "Hello, world!";
        let unix_str = UnixStr::new(orig);
        let boxed: Box<UnixStr> = Box::from(unix_str);
        let unix_string = unix_str.to_owned().into_boxed_unix_str().into_unix_string();
        assert_eq!(unix_str, &*boxed);
        assert_eq!(&*boxed, &*unix_string);
        assert_eq!(&*unix_string, unix_str);
    }

    #[test]
    fn boxed_default() {
        let boxed = <Box<UnixStr>>::default();
        assert!(boxed.is_empty());
    }

    #[test]
    #[cfg(feature = "toowned_clone_into")]
    fn test_unix_str_clone_into() {
        let mut unix_string = UnixString::with_capacity(123);
        unix_string.push("hello");
        let unix_str = UnixStr::new("bonjour");
        unix_str.clone_into(&mut unix_string);
        assert_eq!(unix_str, unix_string);
        assert!(unix_string.capacity() >= 123);
    }

    #[test]
    fn into_rc() {
        let orig = "Hello, world!";
        let unix_str = UnixStr::new(orig);
        let rc: Rc<UnixStr> = Rc::from(unix_str);
        let arc: Arc<UnixStr> = Arc::from(unix_str);

        assert_eq!(&*rc, unix_str);
        assert_eq!(&*arc, unix_str);

        let rc2: Rc<UnixStr> = Rc::from(unix_str.to_owned());
        let arc2: Arc<UnixStr> = Arc::from(unix_str.to_owned());

        assert_eq!(&*rc2, unix_str);
        assert_eq!(&*arc2, unix_str);
    }
}