c_str.rs 44.0 KB
Newer Older
A
Alex Crichton 已提交
1 2 3 4 5 6 7 8 9 10
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

11
use ascii;
12 13
use borrow::{Cow, Borrow};
use cmp::Ordering;
14
use error::Error;
15
use fmt::{self, Write};
16
use io;
A
Alex Crichton 已提交
17
use mem;
18
use memchr;
A
arcnmx 已提交
19
use ops;
20
use os::raw::c_char;
21
use ptr;
22
use rc::Rc;
J
Jorge Aparicio 已提交
23
use slice;
A
arcnmx 已提交
24
use str::{self, Utf8Error};
25
use sync::Arc;
26
use sys;
A
Alex Crichton 已提交
27

28 29
/// A type representing an owned, C-compatible, nul-terminated string with no nul bytes in the
/// middle.
A
Alex Crichton 已提交
30
///
31
/// This type serves the purpose of being able to safely generate a
A
Alex Crichton 已提交
32 33
/// C-compatible string from a Rust byte slice or vector. An instance of this
/// type is a static guarantee that the underlying bytes contain no interior 0
34
/// bytes ("nul characters") and that the final byte is 0 ("nul terminator").
A
Alex Crichton 已提交
35
///
36 37 38
/// `CString` is to [`CStr`] as [`String`] is to [`&str`]: the former
/// in each pair are owned strings; the latter are borrowed
/// references.
A
Alex Crichton 已提交
39
///
40 41 42 43 44 45 46 47 48 49 50 51 52 53
/// # Creating a `CString`
///
/// A `CString` is created from either a byte slice or a byte vector,
/// or anything that implements [`Into`]`<`[`Vec`]`<`[`u8`]`>>` (for
/// example, you can build a `CString` straight out of a [`String`] or
/// a [`&str`], since both implement that trait).
///
/// The [`new`] method will actually check that the provided `&[u8]`
/// does not have 0 bytes in the middle, and return an error if it
/// finds one.
///
/// # Extracting a raw pointer to the whole C string
///
/// `CString` implements a [`as_ptr`] method through the [`Deref`]
54
/// trait. This method will give you a `*const c_char` which you can
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
/// feed directly to extern functions that expect a nul-terminated
/// string, like C's `strdup()`.
///
/// # Extracting a slice of the whole C string
///
/// Alternatively, you can obtain a `&[`[`u8`]`]` slice from a
/// `CString` with the [`as_bytes`] method. Slices produced in this
/// way do *not* contain the trailing nul terminator. This is useful
/// when you will be calling an extern function that takes a `*const
/// u8` argument which is not necessarily nul-terminated, plus another
/// argument with the length of the string — like C's `strndup()`.
/// You can of course get the slice's length with its
/// [`len`][slice.len] method.
///
/// If you need a `&[`[`u8`]`]` slice *with* the nul terminator, you
/// can use [`as_bytes_with_nul`] instead.
///
/// Once you have the kind of slice you need (with or without a nul
/// terminator), you can call the slice's own
/// [`as_ptr`][slice.as_ptr] method to get a raw pointer to pass to
75
/// extern functions. See the documentation for that function for a
76 77 78 79 80 81
/// discussion on ensuring the lifetime of the raw pointer.
///
/// [`Into`]: ../convert/trait.Into.html
/// [`Vec`]: ../vec/struct.Vec.html
/// [`String`]: ../string/struct.String.html
/// [`&str`]: ../primitive.str.html
82
/// [`u8`]: ../primitive.u8.html
83 84 85 86 87 88 89 90
/// [`new`]: #method.new
/// [`as_bytes`]: #method.as_bytes
/// [`as_bytes_with_nul`]: #method.as_bytes_with_nul
/// [`as_ptr`]: #method.as_ptr
/// [slice.as_ptr]: ../primitive.slice.html#method.as_ptr
/// [slice.len]: ../primitive.slice.html#method.len
/// [`Deref`]: ../ops/trait.Deref.html
/// [`CStr`]: struct.CStr.html
91
///
S
Steve Klabnik 已提交
92
/// # Examples
A
Alex Crichton 已提交
93
///
94
/// ```ignore (extern-declaration)
A
Alex Crichton 已提交
95 96
/// # fn main() {
/// use std::ffi::CString;
97
/// use std::os::raw::c_char;
A
Alex Crichton 已提交
98 99
///
/// extern {
100
///     fn my_printer(s: *const c_char);
A
Alex Crichton 已提交
101 102
/// }
///
103 104
/// // We are certain that our string doesn't have 0 bytes in the middle,
/// // so we can .unwrap()
B
Ben Striegel 已提交
105
/// let c_to_print = CString::new("Hello, world!").unwrap();
A
Alex Crichton 已提交
106 107 108 109 110
/// unsafe {
///     my_printer(c_to_print.as_ptr());
/// }
/// # }
/// ```
111 112 113 114
///
/// # Safety
///
/// `CString` is intended for working with traditional C-style strings
115
/// (a sequence of non-nul bytes terminated by a single nul byte); the
116 117 118 119 120 121 122
/// primary use case for these kinds of strings is interoperating with C-like
/// code. Often you will need to transfer ownership to/from that external
/// code. It is strongly recommended that you thoroughly read through the
/// documentation of `CString` before use, as improper ownership management
/// of `CString` instances can lead to invalid memory accesses, memory leaks,
/// and other memory errors.

123
#[derive(PartialEq, PartialOrd, Eq, Ord, Hash, Clone)]
A
Alex Crichton 已提交
124
#[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
125
pub struct CString {
126 127 128
    // Invariant 1: the slice ends with a zero byte and has a length of at least one.
    // Invariant 2: the slice contains only one zero byte.
    // Improper usage of unsafe function can break Invariant 2, but not Invariant 1.
J
Jake Goulding 已提交
129
    inner: Box<[u8]>,
130 131 132 133
}

/// Representation of a borrowed C string.
///
134
/// This type represents a borrowed reference to a nul-terminated
135 136
/// array of bytes. It can be constructed safely from a `&[`[`u8`]`]`
/// slice, or unsafely from a raw `*const c_char`. It can then be
137 138 139 140 141 142
/// converted to a Rust [`&str`] by performing UTF-8 validation, or
/// into an owned [`CString`].
///
/// `CStr` is to [`CString`] as [`&str`] is to [`String`]: the former
/// in each pair are borrowed references; the latter are owned
/// strings.
143 144
///
/// Note that this structure is **not** `repr(C)` and is not recommended to be
145
/// placed in the signatures of FFI functions. Instead, safe wrappers of FFI
146
/// functions may leverage the unsafe [`from_ptr`] constructor to provide a safe
147 148 149 150
/// interface to other consumers.
///
/// # Examples
///
151
/// Inspecting a foreign C string:
152
///
153
/// ```ignore (extern-declaration)
154
/// use std::ffi::CStr;
155
/// use std::os::raw::c_char;
156
///
157
/// extern { fn my_string() -> *const c_char; }
158
///
159 160
/// unsafe {
///     let slice = CStr::from_ptr(my_string());
161
///     println!("string buffer size without nul terminator: {}", slice.to_bytes().len());
162 163 164
/// }
/// ```
///
165
/// Passing a Rust-originating C string:
166
///
167
/// ```ignore (extern-declaration)
168
/// use std::ffi::{CString, CStr};
169
/// use std::os::raw::c_char;
170 171
///
/// fn work(data: &CStr) {
172
///     extern { fn work_with(data: *const c_char); }
173 174 175 176
///
///     unsafe { work_with(data.as_ptr()) }
/// }
///
177 178
/// let s = CString::new("data data data data").unwrap();
/// work(&s);
179
/// ```
180
///
181 182
/// Converting a foreign C string into a Rust [`String`]:
///
183
/// ```ignore (extern-declaration)
184
/// use std::ffi::CStr;
185
/// use std::os::raw::c_char;
186
///
187
/// extern { fn my_string() -> *const c_char; }
188 189 190 191 192 193 194
///
/// fn my_string_safe() -> String {
///     unsafe {
///         CStr::from_ptr(my_string()).to_string_lossy().into_owned()
///     }
/// }
///
195
/// println!("string: {}", my_string_safe());
196
/// ```
197 198 199 200 201 202
///
/// [`u8`]: ../primitive.u8.html
/// [`&str`]: ../primitive.str.html
/// [`String`]: ../string/struct.String.html
/// [`CString`]: struct.CString.html
/// [`from_ptr`]: #method.from_ptr
203
#[derive(Hash)]
A
Alex Crichton 已提交
204
#[stable(feature = "rust1", since = "1.0.0")]
205
pub struct CStr {
A
Alex Crichton 已提交
206
    // FIXME: this should not be represented with a DST slice but rather with
207
    //        just a raw `c_char` along with some form of marker to make
A
Alex Crichton 已提交
208 209
    //        this an unsized type. Essentially `sizeof(&CStr)` should be the
    //        same as `sizeof(&c_char)` but `CStr` should be an unsized type.
210
    inner: [c_char]
211 212
}

213
/// An error indicating that an interior nul byte was found.
214
///
215 216
/// While Rust strings may contain nul bytes in the middle, C strings
/// can't, as that byte would effectively truncate the string.
217
///
218
/// This error is created by the [`new`][`CString::new`] method on
219 220 221
/// [`CString`]. See its documentation for more.
///
/// [`CString`]: struct.CString.html
222
/// [`CString::new`]: struct.CString.html#method.new
C
Corey Farwell 已提交
223 224 225 226 227 228 229 230
///
/// # Examples
///
/// ```
/// use std::ffi::{CString, NulError};
///
/// let _: NulError = CString::new(b"f\0oo".to_vec()).unwrap_err();
/// ```
G
Guillaume Gomez 已提交
231
#[derive(Clone, PartialEq, Eq, Debug)]
A
Alex Crichton 已提交
232
#[stable(feature = "rust1", since = "1.0.0")]
233 234
pub struct NulError(usize, Vec<u8>);

235
/// An error indicating that a nul byte was not in the expected position.
236
///
237 238
/// The slice used to create a [`CStr`] must have one and only one nul
/// byte at the end of the slice.
239
///
240
/// This error is created by the
241 242
/// [`from_bytes_with_nul`][`CStr::from_bytes_with_nul`] method on
/// [`CStr`]. See its documentation for more.
243
///
244
/// [`CStr`]: struct.CStr.html
245
/// [`CStr::from_bytes_with_nul`]: struct.CStr.html#method.from_bytes_with_nul
246 247 248 249 250 251 252 253
///
/// # Examples
///
/// ```
/// use std::ffi::{CStr, FromBytesWithNulError};
///
/// let _: FromBytesWithNulError = CStr::from_bytes_with_nul(b"f\0oo").unwrap_err();
/// ```
G
Guillaume Gomez 已提交
254
#[derive(Clone, PartialEq, Eq, Debug)]
255
#[stable(feature = "cstr_from_bytes", since = "1.10.0")]
256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
pub struct FromBytesWithNulError {
    kind: FromBytesWithNulErrorKind,
}

#[derive(Clone, PartialEq, Eq, Debug)]
enum FromBytesWithNulErrorKind {
    InteriorNul(usize),
    NotNulTerminated,
}

impl FromBytesWithNulError {
    fn interior_nul(pos: usize) -> FromBytesWithNulError {
        FromBytesWithNulError {
            kind: FromBytesWithNulErrorKind::InteriorNul(pos),
        }
    }
    fn not_nul_terminated() -> FromBytesWithNulError {
        FromBytesWithNulError {
            kind: FromBytesWithNulErrorKind::NotNulTerminated,
        }
    }
}
278

279 280 281 282 283
/// An error indicating invalid UTF-8 when converting a [`CString`] into a [`String`].
///
/// `CString` is just a wrapper over a buffer of bytes with a nul
/// terminator; [`into_string`][`CString::into_string`] performs UTF-8
/// validation on those bytes and may return this error.
284 285 286 287
///
/// This `struct` is created by the
/// [`into_string`][`CString::into_string`] method on [`CString`]. See
/// its documentation for more.
288
///
289
/// [`String`]: ../string/struct.String.html
290
/// [`CString`]: struct.CString.html
291
/// [`CString::into_string`]: struct.CString.html#method.into_string
G
Guillaume Gomez 已提交
292
#[derive(Clone, PartialEq, Eq, Debug)]
293
#[stable(feature = "cstring_into", since = "1.7.0")]
A
arcnmx 已提交
294 295 296 297 298
pub struct IntoStringError {
    inner: CString,
    error: Utf8Error,
}

A
Alex Crichton 已提交
299
impl CString {
300
    /// Creates a new C-compatible string from a container of bytes.
301
    ///
302
    /// This function will consume the provided data and use the
303
    /// underlying bytes to construct a new string, ensuring that
304 305
    /// there is a trailing 0 byte. This trailing 0 byte will be
    /// appended by this function; the provided data should *not*
306
    /// contain any 0 bytes in it.
307 308 309
    ///
    /// # Examples
    ///
310
    /// ```ignore (extern-declaration)
311
    /// use std::ffi::CString;
312
    /// use std::os::raw::c_char;
313
    ///
314
    /// extern { fn puts(s: *const c_char); }
315
    ///
316 317 318
    /// let to_print = CString::new("Hello!").unwrap();
    /// unsafe {
    ///     puts(to_print.as_ptr());
319 320 321 322 323
    /// }
    /// ```
    ///
    /// # Errors
    ///
324 325
    /// This function will return an error if the supplied bytes contain an
    /// internal 0 byte. The [`NulError`] returned will contain the bytes as well as
326
    /// the position of the nul byte.
327 328
    ///
    /// [`NulError`]: struct.NulError.html
A
Alex Crichton 已提交
329
    #[stable(feature = "rust1", since = "1.0.0")]
A
Aaron Turon 已提交
330
    pub fn new<T: Into<Vec<u8>>>(t: T) -> Result<CString, NulError> {
331 332 333 334
        Self::_new(t.into())
    }

    fn _new(bytes: Vec<u8>) -> Result<CString, NulError> {
335
        match memchr::memchr(0, &bytes) {
336 337 338 339 340
            Some(i) => Err(NulError(i, bytes)),
            None => Ok(unsafe { CString::from_vec_unchecked(bytes) }),
        }
    }

341 342
    /// Creates a C-compatible string by consuming a byte vector,
    /// without checking for interior 0 bytes.
A
Alex Crichton 已提交
343
    ///
344
    /// This method is equivalent to [`new`] except that no runtime assertion
345
    /// is made that `v` contains no 0 bytes, and it requires an actual
M
Ms2ger 已提交
346
    /// byte vector, not anything that can be converted to one with Into.
347
    ///
348 349
    /// [`new`]: #method.new
    ///
350 351 352 353 354 355 356 357 358 359
    /// # Examples
    ///
    /// ```
    /// use std::ffi::CString;
    ///
    /// let raw = b"foo".to_vec();
    /// unsafe {
    ///     let c_string = CString::from_vec_unchecked(raw);
    /// }
    /// ```
A
Alex Crichton 已提交
360
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
361
    pub unsafe fn from_vec_unchecked(mut v: Vec<u8>) -> CString {
362
        v.reserve_exact(1);
A
Alex Crichton 已提交
363
        v.push(0);
J
Jake Goulding 已提交
364
        CString { inner: v.into_boxed_slice() }
A
Alex Crichton 已提交
365 366
    }

367
    /// Retakes ownership of a `CString` that was transferred to C via [`into_raw`].
368
    ///
369 370 371 372
    /// Additionally, the length of the string will be recalculated from the pointer.
    ///
    /// # Safety
    ///
373
    /// This should only ever be called with a pointer that was earlier
374
    /// obtained by calling [`into_raw`] on a `CString`. Other usage (e.g. trying to take
375 376
    /// ownership of a string that was allocated by foreign code) is likely to lead
    /// to undefined behavior or allocator corruption.
377
    ///
378
    /// > **Note:** If you need to borrow a string that was allocated by
379
    /// > foreign code, use [`CStr`]. If you need to take ownership of
380 381 382 383
    /// > a string that was allocated by foreign code, you will need to
    /// > make your own provisions for freeing it appropriately, likely
    /// > with the foreign code's API to do that.
    ///
384
    /// [`into_raw`]: #method.into_raw
385
    /// [`CStr`]: struct.CStr.html
386 387 388 389 390 391
    ///
    /// # Examples
    ///
    /// Create a `CString`, pass ownership to an `extern` function (via raw pointer), then retake
    /// ownership with `from_raw`:
    ///
392
    /// ```ignore (extern-declaration)
393 394 395 396 397 398 399 400 401 402 403 404 405 406
    /// use std::ffi::CString;
    /// use std::os::raw::c_char;
    ///
    /// extern {
    ///     fn some_extern_function(s: *mut c_char);
    /// }
    ///
    /// let c_string = CString::new("Hello!").unwrap();
    /// let raw = c_string.into_raw();
    /// unsafe {
    ///     some_extern_function(raw);
    ///     let c_string = CString::from_raw(raw);
    /// }
    /// ```
407
    #[stable(feature = "cstr_memory", since = "1.4.0")]
408
    pub unsafe fn from_raw(ptr: *mut c_char) -> CString {
409
        let len = sys::strlen(ptr) + 1; // Including the NUL byte
410
        let slice = slice::from_raw_parts_mut(ptr, len as usize);
411
        CString { inner: Box::from_raw(slice as *mut [c_char] as *mut [u8]) }
412 413
    }

414
    /// Consumes the `CString` and transfers ownership of the string to a C caller.
415
    ///
416
    /// The pointer which this function returns must be returned to Rust and reconstituted using
417
    /// [`from_raw`] to be properly deallocated. Specifically, one
418
    /// should *not* use the standard C `free()` function to deallocate
419 420
    /// this string.
    ///
421 422 423
    /// Failure to call [`from_raw`] will lead to a memory leak.
    ///
    /// [`from_raw`]: #method.from_raw
424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
    ///
    /// # Examples
    ///
    /// ```
    /// use std::ffi::CString;
    ///
    /// let c_string = CString::new("foo").unwrap();
    ///
    /// let ptr = c_string.into_raw();
    ///
    /// unsafe {
    ///     assert_eq!(b'f', *ptr as u8);
    ///     assert_eq!(b'o', *ptr.offset(1) as u8);
    ///     assert_eq!(b'o', *ptr.offset(2) as u8);
    ///     assert_eq!(b'\0', *ptr.offset(3) as u8);
    ///
    ///     // retake pointer to free memory
    ///     let _ = CString::from_raw(ptr);
    /// }
    /// ```
444
    #[inline]
445
    #[stable(feature = "cstr_memory", since = "1.4.0")]
446
    pub fn into_raw(self) -> *mut c_char {
447
        Box::into_raw(self.into_inner()) as *mut c_char
448 449
    }

450
    /// Converts the `CString` into a [`String`] if it contains valid UTF-8 data.
A
arcnmx 已提交
451 452
    ///
    /// On failure, ownership of the original `CString` is returned.
453 454
    ///
    /// [`String`]: ../string/struct.String.html
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
    ///
    /// # Examples
    ///
    /// ```
    /// use std::ffi::CString;
    ///
    /// let valid_utf8 = vec![b'f', b'o', b'o'];
    /// let cstring = CString::new(valid_utf8).unwrap();
    /// assert_eq!(cstring.into_string().unwrap(), "foo");
    ///
    /// let invalid_utf8 = vec![b'f', 0xff, b'o', b'o'];
    /// let cstring = CString::new(invalid_utf8).unwrap();
    /// let err = cstring.into_string().err().unwrap();
    /// assert_eq!(err.utf8_error().valid_up_to(), 1);
    /// ```

471
    #[stable(feature = "cstring_into", since = "1.7.0")]
A
arcnmx 已提交
472 473 474 475 476 477 478 479
    pub fn into_string(self) -> Result<String, IntoStringError> {
        String::from_utf8(self.into_bytes())
            .map_err(|e| IntoStringError {
                error: e.utf8_error(),
                inner: unsafe { CString::from_vec_unchecked(e.into_bytes()) },
            })
    }

480
    /// Consumes the `CString` and returns the underlying byte buffer.
A
arcnmx 已提交
481
    ///
482 483 484
    /// The returned buffer does **not** contain the trailing nul
    /// terminator, and it is guaranteed to not have any interior nul
    /// bytes.
485 486 487 488 489 490 491 492 493 494
    ///
    /// # Examples
    ///
    /// ```
    /// use std::ffi::CString;
    ///
    /// let c_string = CString::new("foo").unwrap();
    /// let bytes = c_string.into_bytes();
    /// assert_eq!(bytes, vec![b'f', b'o', b'o']);
    /// ```
495
    #[stable(feature = "cstring_into", since = "1.7.0")]
A
arcnmx 已提交
496
    pub fn into_bytes(self) -> Vec<u8> {
497
        let mut vec = self.into_inner().into_vec();
A
arcnmx 已提交
498 499 500 501 502
        let _nul = vec.pop();
        debug_assert_eq!(_nul, Some(0u8));
        vec
    }

503
    /// Equivalent to the [`into_bytes`] function except that the returned vector
504
    /// includes the trailing nul terminator.
505 506
    ///
    /// [`into_bytes`]: #method.into_bytes
507 508 509 510 511 512 513 514 515 516
    ///
    /// # Examples
    ///
    /// ```
    /// use std::ffi::CString;
    ///
    /// let c_string = CString::new("foo").unwrap();
    /// let bytes = c_string.into_bytes_with_nul();
    /// assert_eq!(bytes, vec![b'f', b'o', b'o', b'\0']);
    /// ```
517
    #[stable(feature = "cstring_into", since = "1.7.0")]
A
arcnmx 已提交
518
    pub fn into_bytes_with_nul(self) -> Vec<u8> {
519
        self.into_inner().into_vec()
A
arcnmx 已提交
520 521
    }

522 523
    /// Returns the contents of this `CString` as a slice of bytes.
    ///
524 525
    /// The returned slice does **not** contain the trailing nul
    /// terminator, and it is guaranteed to not have any interior nul
526
    /// bytes. If you need the nul terminator, use
527 528 529
    /// [`as_bytes_with_nul`] instead.
    ///
    /// [`as_bytes_with_nul`]: #method.as_bytes_with_nul
530 531 532 533 534 535 536 537 538 539
    ///
    /// # Examples
    ///
    /// ```
    /// use std::ffi::CString;
    ///
    /// let c_string = CString::new("foo").unwrap();
    /// let bytes = c_string.as_bytes();
    /// assert_eq!(bytes, &[b'f', b'o', b'o']);
    /// ```
540
    #[inline]
A
Alex Crichton 已提交
541
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
542
    pub fn as_bytes(&self) -> &[u8] {
543
        &self.inner[..self.inner.len() - 1]
A
Alex Crichton 已提交
544 545
    }

546
    /// Equivalent to the [`as_bytes`] function except that the returned slice
547
    /// includes the trailing nul terminator.
548 549
    ///
    /// [`as_bytes`]: #method.as_bytes
550 551 552 553 554 555 556 557 558 559
    ///
    /// # Examples
    ///
    /// ```
    /// use std::ffi::CString;
    ///
    /// let c_string = CString::new("foo").unwrap();
    /// let bytes = c_string.as_bytes_with_nul();
    /// assert_eq!(bytes, &[b'f', b'o', b'o', b'\0']);
    /// ```
560
    #[inline]
A
Alex Crichton 已提交
561
    #[stable(feature = "rust1", since = "1.0.0")]
A
Alex Crichton 已提交
562
    pub fn as_bytes_with_nul(&self) -> &[u8] {
563
        &self.inner
A
Alex Crichton 已提交
564
    }
565

566 567 568
    /// Extracts a [`CStr`] slice containing the entire string.
    ///
    /// [`CStr`]: struct.CStr.html
569 570 571 572 573 574 575 576 577 578
    ///
    /// # Examples
    ///
    /// ```
    /// use std::ffi::{CString, CStr};
    ///
    /// let c_string = CString::new(b"foo".to_vec()).unwrap();
    /// let c_str = c_string.as_c_str();
    /// assert_eq!(c_str, CStr::from_bytes_with_nul(b"foo\0").unwrap());
    /// ```
579
    #[inline]
580
    #[stable(feature = "as_c_str", since = "1.20.0")]
C
Clar Charr 已提交
581 582 583 584
    pub fn as_c_str(&self) -> &CStr {
        &*self
    }

585 586 587
    /// Converts this `CString` into a boxed [`CStr`].
    ///
    /// [`CStr`]: struct.CStr.html
588 589 590 591 592 593 594 595 596 597
    ///
    /// # Examples
    ///
    /// ```
    /// use std::ffi::{CString, CStr};
    ///
    /// let c_string = CString::new(b"foo".to_vec()).unwrap();
    /// let boxed = c_string.into_boxed_c_str();
    /// assert_eq!(&*boxed, CStr::from_bytes_with_nul(b"foo\0").unwrap());
    /// ```
598
    #[stable(feature = "into_boxed_c_str", since = "1.20.0")]
599
    pub fn into_boxed_c_str(self) -> Box<CStr> {
600
        unsafe { Box::from_raw(Box::into_raw(self.into_inner()) as *mut CStr) }
601 602
    }

603 604 605
    // Bypass "move out of struct which implements [`Drop`] trait" restriction.
    ///
    /// [`Drop`]: ../ops/trait.Drop.html
606 607 608 609 610 611 612 613 614 615
    fn into_inner(self) -> Box<[u8]> {
        unsafe {
            let result = ptr::read(&self.inner);
            mem::forget(self);
            result
        }
    }
}

// Turns this `CString` into an empty string to prevent
A
Aleksey Kladov 已提交
616 617
// memory unsafe code from working by accident. Inline
// to prevent LLVM from optimizing it away in debug builds.
618 619
#[stable(feature = "cstring_drop", since = "1.13.0")]
impl Drop for CString {
A
Aleksey Kladov 已提交
620
    #[inline]
621 622 623
    fn drop(&mut self) {
        unsafe { *self.inner.get_unchecked_mut(0) = 0; }
    }
A
Alex Crichton 已提交
624 625
}

A
Alex Crichton 已提交
626
#[stable(feature = "rust1", since = "1.0.0")]
A
arcnmx 已提交
627
impl ops::Deref for CString {
628
    type Target = CStr;
A
Alex Crichton 已提交
629

630
    #[inline]
631
    fn deref(&self) -> &CStr {
C
Clar Charr 已提交
632
        unsafe { CStr::from_bytes_with_nul_unchecked(self.as_bytes_with_nul()) }
A
Alex Crichton 已提交
633 634 635
    }
}

636
#[stable(feature = "rust1", since = "1.0.0")]
637
impl fmt::Debug for CString {
A
Alex Crichton 已提交
638
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
639 640 641 642
        fmt::Debug::fmt(&**self, f)
    }
}

643 644
#[stable(feature = "cstring_into", since = "1.7.0")]
impl From<CString> for Vec<u8> {
645
    #[inline]
646 647 648 649 650
    fn from(s: CString) -> Vec<u8> {
        s.into_bytes()
    }
}

651 652 653
#[stable(feature = "cstr_debug", since = "1.3.0")]
impl fmt::Debug for CStr {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
J
Jorge Aparicio 已提交
654
        write!(f, "\"")?;
655
        for byte in self.to_bytes().iter().flat_map(|&b| ascii::escape_default(b)) {
J
Jorge Aparicio 已提交
656
            f.write_char(byte as char)?;
657 658
        }
        write!(f, "\"")
A
Alex Crichton 已提交
659 660 661
    }
}

662 663 664
#[stable(feature = "cstr_default", since = "1.10.0")]
impl<'a> Default for &'a CStr {
    fn default() -> &'a CStr {
665
        const SLICE: &'static [c_char] = &[0];
666 667 668 669 670 671
        unsafe { CStr::from_ptr(SLICE.as_ptr()) }
    }
}

#[stable(feature = "cstr_default", since = "1.10.0")]
impl Default for CString {
672
    /// Creates an empty `CString`.
673 674 675 676 677 678
    fn default() -> CString {
        let a: &CStr = Default::default();
        a.to_owned()
    }
}

679 680
#[stable(feature = "cstr_borrow", since = "1.3.0")]
impl Borrow<CStr> for CString {
681
    #[inline]
682 683 684
    fn borrow(&self) -> &CStr { self }
}

685 686 687 688
#[stable(feature = "box_from_c_str", since = "1.17.0")]
impl<'a> From<&'a CStr> for Box<CStr> {
    fn from(s: &'a CStr) -> Box<CStr> {
        let boxed: Box<[u8]> = Box::from(s.to_bytes_with_nul());
689
        unsafe { Box::from_raw(Box::into_raw(boxed) as *mut CStr) }
690 691 692
    }
}

693
#[stable(feature = "c_string_from_box", since = "1.18.0")]
C
Clar Charr 已提交
694
impl From<Box<CStr>> for CString {
695
    #[inline]
C
Clar Charr 已提交
696 697 698 699 700
    fn from(s: Box<CStr>) -> CString {
        s.into_c_string()
    }
}

701
#[stable(feature = "box_from_c_string", since = "1.20.0")]
C
Clar Charr 已提交
702
impl From<CString> for Box<CStr> {
703
    #[inline]
C
Clar Charr 已提交
704 705
    fn from(s: CString) -> Box<CStr> {
        s.into_boxed_c_str()
C
Clar Charr 已提交
706 707 708
    }
}

709
#[stable(feature = "shared_from_slice2", since = "1.24.0")]
710 711 712 713 714 715 716 717
impl From<CString> for Arc<CStr> {
    #[inline]
    fn from(s: CString) -> Arc<CStr> {
        let arc: Arc<[u8]> = Arc::from(s.into_inner());
        unsafe { Arc::from_raw(Arc::into_raw(arc) as *const CStr) }
    }
}

718
#[stable(feature = "shared_from_slice2", since = "1.24.0")]
719 720 721 722 723 724 725 726
impl<'a> From<&'a CStr> for Arc<CStr> {
    #[inline]
    fn from(s: &CStr) -> Arc<CStr> {
        let arc: Arc<[u8]> = Arc::from(s.to_bytes_with_nul());
        unsafe { Arc::from_raw(Arc::into_raw(arc) as *const CStr) }
    }
}

727
#[stable(feature = "shared_from_slice2", since = "1.24.0")]
728 729 730 731 732 733 734 735
impl From<CString> for Rc<CStr> {
    #[inline]
    fn from(s: CString) -> Rc<CStr> {
        let rc: Rc<[u8]> = Rc::from(s.into_inner());
        unsafe { Rc::from_raw(Rc::into_raw(rc) as *const CStr) }
    }
}

736
#[stable(feature = "shared_from_slice2", since = "1.24.0")]
737 738 739 740 741 742 743 744
impl<'a> From<&'a CStr> for Rc<CStr> {
    #[inline]
    fn from(s: &CStr) -> Rc<CStr> {
        let rc: Rc<[u8]> = Rc::from(s.to_bytes_with_nul());
        unsafe { Rc::from_raw(Rc::into_raw(rc) as *const CStr) }
    }
}

745 746 747 748
#[stable(feature = "default_box_extra", since = "1.17.0")]
impl Default for Box<CStr> {
    fn default() -> Box<CStr> {
        let boxed: Box<[u8]> = Box::from([0]);
749
        unsafe { Box::from_raw(Box::into_raw(boxed) as *mut CStr) }
750 751 752
    }
}

753
impl NulError {
754 755
    /// Returns the position of the nul byte in the slice that caused
    /// [`CString::new`] to fail.
756 757
    ///
    /// [`CString::new`]: struct.CString.html#method.new
758 759 760 761 762 763 764 765 766 767 768 769
    ///
    /// # Examples
    ///
    /// ```
    /// use std::ffi::CString;
    ///
    /// let nul_error = CString::new("foo\0bar").unwrap_err();
    /// assert_eq!(nul_error.nul_position(), 3);
    ///
    /// let nul_error = CString::new("foo bar\0").unwrap_err();
    /// assert_eq!(nul_error.nul_position(), 7);
    /// ```
A
Alex Crichton 已提交
770
    #[stable(feature = "rust1", since = "1.0.0")]
771 772 773 774
    pub fn nul_position(&self) -> usize { self.0 }

    /// Consumes this error, returning the underlying vector of bytes which
    /// generated the error in the first place.
775 776 777 778 779 780 781 782 783
    ///
    /// # Examples
    ///
    /// ```
    /// use std::ffi::CString;
    ///
    /// let nul_error = CString::new("foo\0bar").unwrap_err();
    /// assert_eq!(nul_error.into_vec(), b"foo\0bar");
    /// ```
A
Alex Crichton 已提交
784
    #[stable(feature = "rust1", since = "1.0.0")]
785 786 787
    pub fn into_vec(self) -> Vec<u8> { self.1 }
}

A
Alex Crichton 已提交
788
#[stable(feature = "rust1", since = "1.0.0")]
789 790 791 792
impl Error for NulError {
    fn description(&self) -> &str { "nul byte found in data" }
}

A
Alex Crichton 已提交
793
#[stable(feature = "rust1", since = "1.0.0")]
794 795 796 797 798 799
impl fmt::Display for NulError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "nul byte found in provided data at position: {}", self.0)
    }
}

A
Alex Crichton 已提交
800
#[stable(feature = "rust1", since = "1.0.0")]
801 802
impl From<NulError> for io::Error {
    fn from(_: NulError) -> io::Error {
803
        io::Error::new(io::ErrorKind::InvalidInput,
804
                       "data provided contains a nul byte")
805 806 807
    }
}

L
lukaramu 已提交
808
#[stable(feature = "frombyteswithnulerror_impls", since = "1.17.0")]
809 810
impl Error for FromBytesWithNulError {
    fn description(&self) -> &str {
811 812 813 814 815 816
        match self.kind {
            FromBytesWithNulErrorKind::InteriorNul(..) =>
                "data provided contains an interior nul byte",
            FromBytesWithNulErrorKind::NotNulTerminated =>
                "data provided is not nul terminated",
        }
817 818 819
    }
}

L
lukaramu 已提交
820
#[stable(feature = "frombyteswithnulerror_impls", since = "1.17.0")]
821 822
impl fmt::Display for FromBytesWithNulError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
823 824 825 826 827
        f.write_str(self.description())?;
        if let FromBytesWithNulErrorKind::InteriorNul(pos) = self.kind {
            write!(f, " at byte pos {}", pos)?;
        }
        Ok(())
828 829 830
    }
}

A
arcnmx 已提交
831
impl IntoStringError {
832
    /// Consumes this error, returning original [`CString`] which generated the
A
arcnmx 已提交
833
    /// error.
834 835
    ///
    /// [`CString`]: struct.CString.html
836
    #[stable(feature = "cstring_into", since = "1.7.0")]
A
arcnmx 已提交
837 838 839 840 841
    pub fn into_cstring(self) -> CString {
        self.inner
    }

    /// Access the underlying UTF-8 error that was the cause of this error.
842
    #[stable(feature = "cstring_into", since = "1.7.0")]
A
arcnmx 已提交
843 844 845 846 847
    pub fn utf8_error(&self) -> Utf8Error {
        self.error
    }
}

848
#[stable(feature = "cstring_into", since = "1.7.0")]
A
arcnmx 已提交
849 850
impl Error for IntoStringError {
    fn description(&self) -> &str {
851 852 853 854 855
        "C string contained non-utf8 bytes"
    }

    fn cause(&self) -> Option<&Error> {
        Some(&self.error)
A
arcnmx 已提交
856 857 858
    }
}

859
#[stable(feature = "cstring_into", since = "1.7.0")]
A
arcnmx 已提交
860 861
impl fmt::Display for IntoStringError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
862
        self.description().fmt(f)
A
arcnmx 已提交
863 864 865
    }
}

866
impl CStr {
867
    /// Wraps a raw C string with a safe C string wrapper.
868
    ///
869
    /// This function will wrap the provided `ptr` with a `CStr` wrapper, which
870 871 872
    /// allows inspection and interoperation of non-owned C strings. This method
    /// is unsafe for a number of reasons:
    ///
873
    /// * There is no guarantee to the validity of `ptr`.
874
    /// * The returned lifetime is not guaranteed to be the actual lifetime of
875
    ///   `ptr`.
876 877
    /// * There is no guarantee that the memory pointed to by `ptr` contains a
    ///   valid nul terminator byte at the end of the string.
878 879
    /// * It is not guaranteed that the memory pointed by `ptr` won't change
    ///   before the `CStr` has been destroyed.
880 881 882 883 884
    ///
    /// > **Note**: This operation is intended to be a 0-cost cast but it is
    /// > currently implemented with an up-front calculation of the length of
    /// > the string. This is not guaranteed to always be the case.
    ///
S
Steve Klabnik 已提交
885
    /// # Examples
886
    ///
887
    /// ```ignore (extern-declaration)
888 889
    /// # fn main() {
    /// use std::ffi::CStr;
890
    /// use std::os::raw::c_char;
891 892
    ///
    /// extern {
893
    ///     fn my_string() -> *const c_char;
894 895 896 897
    /// }
    ///
    /// unsafe {
    ///     let slice = CStr::from_ptr(my_string());
898
    ///     println!("string returned: {}", slice.to_str().unwrap());
899 900 901
    /// }
    /// # }
    /// ```
A
Alex Crichton 已提交
902
    #[stable(feature = "rust1", since = "1.0.0")]
903
    pub unsafe fn from_ptr<'a>(ptr: *const c_char) -> &'a CStr {
904
        let len = sys::strlen(ptr);
C
Clar Charr 已提交
905 906
        let ptr = ptr as *const u8;
        CStr::from_bytes_with_nul_unchecked(slice::from_raw_parts(ptr, len as usize + 1))
907 908
    }

A
arcnmx 已提交
909 910
    /// Creates a C string wrapper from a byte slice.
    ///
911 912 913
    /// This function will cast the provided `bytes` to a `CStr`
    /// wrapper after ensuring that the byte slice is nul-terminated
    /// and does not contain any interior nul bytes.
A
arcnmx 已提交
914 915 916 917 918 919
    ///
    /// # Examples
    ///
    /// ```
    /// use std::ffi::CStr;
    ///
920
    /// let cstr = CStr::from_bytes_with_nul(b"hello\0");
921
    /// assert!(cstr.is_ok());
A
arcnmx 已提交
922
    /// ```
923
    ///
924
    /// Creating a `CStr` without a trailing nul terminator is an error:
925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940
    ///
    /// ```
    /// use std::ffi::CStr;
    ///
    /// let c_str = CStr::from_bytes_with_nul(b"hello");
    /// assert!(c_str.is_err());
    /// ```
    ///
    /// Creating a `CStr` with an interior nul byte is an error:
    ///
    /// ```
    /// use std::ffi::CStr;
    ///
    /// let c_str = CStr::from_bytes_with_nul(b"he\0llo\0");
    /// assert!(c_str.is_err());
    /// ```
941 942 943
    #[stable(feature = "cstr_from_bytes", since = "1.10.0")]
    pub fn from_bytes_with_nul(bytes: &[u8])
                               -> Result<&CStr, FromBytesWithNulError> {
944 945 946 947 948 949
        let nul_pos = memchr::memchr(0, bytes);
        if let Some(nul_pos) = nul_pos {
            if nul_pos + 1 != bytes.len() {
                return Err(FromBytesWithNulError::interior_nul(nul_pos));
            }
            Ok(unsafe { CStr::from_bytes_with_nul_unchecked(bytes) })
A
arcnmx 已提交
950
        } else {
951
            Err(FromBytesWithNulError::not_nul_terminated())
A
arcnmx 已提交
952 953 954 955 956 957
        }
    }

    /// Unsafely creates a C string wrapper from a byte slice.
    ///
    /// This function will cast the provided `bytes` to a `CStr` wrapper without
958
    /// performing any sanity checks. The provided slice **must** be nul-terminated
A
arcnmx 已提交
959 960 961 962 963 964 965 966 967
    /// and not contain any interior nul bytes.
    ///
    /// # Examples
    ///
    /// ```
    /// use std::ffi::{CStr, CString};
    ///
    /// unsafe {
    ///     let cstring = CString::new("hello").unwrap();
968
    ///     let cstr = CStr::from_bytes_with_nul_unchecked(cstring.to_bytes_with_nul());
A
arcnmx 已提交
969 970 971
    ///     assert_eq!(cstr, &*cstring);
    /// }
    /// ```
972
    #[inline]
973
    #[stable(feature = "cstr_from_bytes", since = "1.10.0")]
A
arcnmx 已提交
974
    pub unsafe fn from_bytes_with_nul_unchecked(bytes: &[u8]) -> &CStr {
975
        &*(bytes as *const [u8] as *const CStr)
A
arcnmx 已提交
976 977
    }

978
    /// Returns the inner pointer to this C string.
979
    ///
980
    /// The returned pointer will be valid for as long as `self` is, and points
J
Jake Goulding 已提交
981
    /// to a contiguous region of memory terminated with a 0 byte to represent
982
    /// the end of the string.
983 984 985 986 987
    ///
    /// **WARNING**
    ///
    /// It is your responsibility to make sure that the underlying memory is not
    /// freed too early. For example, the following code will cause undefined
F
Fourchaux 已提交
988
    /// behavior when `ptr` is used inside the `unsafe` block:
989 990 991 992 993 994 995 996 997 998 999 1000
    ///
    /// ```no_run
    /// use std::ffi::{CString};
    ///
    /// let ptr = CString::new("Hello").unwrap().as_ptr();
    /// unsafe {
    ///     // `ptr` is dangling
    ///     *ptr;
    /// }
    /// ```
    ///
    /// This happens because the pointer returned by `as_ptr` does not carry any
1001
    /// lifetime information and the [`CString`] is deallocated immediately after
1002
    /// the `CString::new("Hello").unwrap().as_ptr()` expression is evaluated.
1003
    /// To fix the problem, bind the `CString` to a local variable:
1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014
    ///
    /// ```no_run
    /// use std::ffi::{CString};
    ///
    /// let hello = CString::new("Hello").unwrap();
    /// let ptr = hello.as_ptr();
    /// unsafe {
    ///     // `ptr` is valid because `hello` is in scope
    ///     *ptr;
    /// }
    /// ```
1015 1016 1017 1018 1019
    ///
    /// This way, the lifetime of the `CString` in `hello` encompasses
    /// the lifetime of `ptr` and the `unsafe` block.
    ///
    /// [`CString`]: struct.CString.html
1020
    #[inline]
A
Alex Crichton 已提交
1021
    #[stable(feature = "rust1", since = "1.0.0")]
1022
    pub fn as_ptr(&self) -> *const c_char {
1023 1024 1025
        self.inner.as_ptr()
    }

1026
    /// Converts this C string to a byte slice.
1027
    ///
1028
    /// The returned slice will **not** contain the trailing nul terminator that this C
1029 1030
    /// string has.
    ///
1031 1032 1033
    /// > **Note**: This method is currently implemented as a constant-time
    /// > cast, but it is planned to alter its definition in the future to
    /// > perform the length calculation whenever this method is called.
1034 1035 1036 1037 1038 1039 1040 1041 1042
    ///
    /// # Examples
    ///
    /// ```
    /// use std::ffi::CStr;
    ///
    /// let c_str = CStr::from_bytes_with_nul(b"foo\0").unwrap();
    /// assert_eq!(c_str.to_bytes(), b"foo");
    /// ```
1043
    #[inline]
A
Alex Crichton 已提交
1044
    #[stable(feature = "rust1", since = "1.0.0")]
1045 1046 1047 1048 1049
    pub fn to_bytes(&self) -> &[u8] {
        let bytes = self.to_bytes_with_nul();
        &bytes[..bytes.len() - 1]
    }

1050
    /// Converts this C string to a byte slice containing the trailing 0 byte.
1051
    ///
1052
    /// This function is the equivalent of [`to_bytes`] except that it will retain
1053
    /// the trailing nul terminator instead of chopping it off.
1054 1055 1056 1057
    ///
    /// > **Note**: This method is currently implemented as a 0-cost cast, but
    /// > it is planned to alter its definition in the future to perform the
    /// > length calculation whenever this method is called.
1058 1059
    ///
    /// [`to_bytes`]: #method.to_bytes
1060 1061 1062 1063 1064 1065 1066 1067 1068
    ///
    /// # Examples
    ///
    /// ```
    /// use std::ffi::CStr;
    ///
    /// let c_str = CStr::from_bytes_with_nul(b"foo\0").unwrap();
    /// assert_eq!(c_str.to_bytes_with_nul(), b"foo\0");
    /// ```
1069
    #[inline]
A
Alex Crichton 已提交
1070
    #[stable(feature = "rust1", since = "1.0.0")]
1071
    pub fn to_bytes_with_nul(&self) -> &[u8] {
1072
        unsafe { &*(&self.inner as *const [c_char] as *const [u8]) }
1073
    }
1074

1075
    /// Yields a [`&str`] slice if the `CStr` contains valid UTF-8.
1076
    ///
1077
    /// If the contents of the `CStr` are valid UTF-8 data, this
1078
    /// function will return the corresponding [`&str`] slice. Otherwise,
1079
    /// it will return an error with details of where UTF-8 validation failed.
1080 1081
    ///
    /// > **Note**: This method is currently implemented to check for validity
1082 1083 1084
    /// > after a constant-time cast, but it is planned to alter its definition
    /// > in the future to perform the length calculation in addition to the
    /// > UTF-8 check whenever this method is called.
1085 1086
    ///
    /// [`&str`]: ../primitive.str.html
1087 1088 1089 1090 1091 1092 1093 1094 1095
    ///
    /// # Examples
    ///
    /// ```
    /// use std::ffi::CStr;
    ///
    /// let c_str = CStr::from_bytes_with_nul(b"foo\0").unwrap();
    /// assert_eq!(c_str.to_str(), Ok("foo"));
    /// ```
1096
    #[stable(feature = "cstr_to_str", since = "1.4.0")]
1097
    pub fn to_str(&self) -> Result<&str, str::Utf8Error> {
1098 1099 1100 1101
        // NB: When CStr is changed to perform the length check in .to_bytes()
        // instead of in from_ptr(), it may be worth considering if this should
        // be rewritten to do the UTF-8 check inline with the length calculation
        // instead of doing it afterwards.
1102 1103 1104
        str::from_utf8(self.to_bytes())
    }

1105
    /// Converts a `CStr` into a [`Cow`]`<`[`str`]`>`.
1106
    ///
1107 1108
    /// If the contents of the `CStr` are valid UTF-8 data, this
    /// function will return a [`Cow`]`::`[`Borrowed`]`(`[`&str`]`)`
1109
    /// with the the corresponding [`&str`] slice. Otherwise, it will
1110 1111 1112
    /// replace any invalid UTF-8 sequences with `U+FFFD REPLACEMENT
    /// CHARACTER` and return a [`Cow`]`::`[`Owned`]`(`[`String`]`)`
    /// with the result.
1113 1114
    ///
    /// > **Note**: This method is currently implemented to check for validity
1115 1116 1117
    /// > after a constant-time cast, but it is planned to alter its definition
    /// > in the future to perform the length calculation in addition to the
    /// > UTF-8 check whenever this method is called.
1118 1119
    ///
    /// [`Cow`]: ../borrow/enum.Cow.html
1120
    /// [`Borrowed`]: ../borrow/enum.Cow.html#variant.Borrowed
1121
    /// [`str`]: ../primitive.str.html
1122
    /// [`String`]: ../string/struct.String.html
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
    ///
    /// # Examples
    ///
    /// Calling `to_string_lossy` on a `CStr` containing valid UTF-8:
    ///
    /// ```
    /// use std::borrow::Cow;
    /// use std::ffi::CStr;
    ///
    /// let c_str = CStr::from_bytes_with_nul(b"Hello World\0").unwrap();
    /// assert_eq!(c_str.to_string_lossy(), Cow::Borrowed("Hello World"));
    /// ```
    ///
    /// Calling `to_string_lossy` on a `CStr` containing invalid UTF-8:
    ///
    /// ```
    /// use std::borrow::Cow;
    /// use std::ffi::CStr;
    ///
    /// let c_str = CStr::from_bytes_with_nul(b"Hello \xF0\x90\x80World\0").unwrap();
    /// assert_eq!(
    ///     c_str.to_string_lossy(),
    ///     Cow::Owned(String::from("Hello �World")) as Cow<str>
    /// );
    /// ```
1148
    #[stable(feature = "cstr_to_str", since = "1.4.0")]
1149 1150 1151
    pub fn to_string_lossy(&self) -> Cow<str> {
        String::from_utf8_lossy(self.to_bytes())
    }
C
Clar Charr 已提交
1152

1153 1154 1155 1156
    /// Converts a [`Box`]`<CStr>` into a [`CString`] without copying or allocating.
    ///
    /// [`Box`]: ../boxed/struct.Box.html
    /// [`CString`]: struct.CString.html
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166
    ///
    /// # Examples
    ///
    /// ```
    /// use std::ffi::CString;
    ///
    /// let c_string = CString::new(b"foo".to_vec()).unwrap();
    /// let boxed = c_string.into_boxed_c_str();
    /// assert_eq!(boxed.into_c_string(), CString::new("foo").unwrap());
    /// ```
1167
    #[stable(feature = "into_boxed_c_str", since = "1.20.0")]
C
Clar Charr 已提交
1168
    pub fn into_c_string(self: Box<CStr>) -> CString {
1169 1170
        let raw = Box::into_raw(self) as *mut [u8];
        CString { inner: unsafe { Box::from_raw(raw) } }
C
Clar Charr 已提交
1171
    }
1172 1173
}

A
Alex Crichton 已提交
1174
#[stable(feature = "rust1", since = "1.0.0")]
1175 1176
impl PartialEq for CStr {
    fn eq(&self, other: &CStr) -> bool {
1177
        self.to_bytes().eq(other.to_bytes())
1178 1179
    }
}
A
Alex Crichton 已提交
1180
#[stable(feature = "rust1", since = "1.0.0")]
1181
impl Eq for CStr {}
A
Alex Crichton 已提交
1182
#[stable(feature = "rust1", since = "1.0.0")]
1183 1184 1185 1186 1187
impl PartialOrd for CStr {
    fn partial_cmp(&self, other: &CStr) -> Option<Ordering> {
        self.to_bytes().partial_cmp(&other.to_bytes())
    }
}
A
Alex Crichton 已提交
1188
#[stable(feature = "rust1", since = "1.0.0")]
1189 1190 1191 1192 1193 1194
impl Ord for CStr {
    fn cmp(&self, other: &CStr) -> Ordering {
        self.to_bytes().cmp(&other.to_bytes())
    }
}

1195 1196 1197 1198 1199
#[stable(feature = "cstr_borrow", since = "1.3.0")]
impl ToOwned for CStr {
    type Owned = CString;

    fn to_owned(&self) -> CString {
1200
        CString { inner: self.to_bytes_with_nul().into() }
1201 1202 1203
    }
}

A
arcnmx 已提交
1204
#[stable(feature = "cstring_asref", since = "1.7.0")]
A
arcnmx 已提交
1205 1206 1207 1208 1209 1210
impl<'a> From<&'a CStr> for CString {
    fn from(s: &'a CStr) -> CString {
        s.to_owned()
    }
}

A
arcnmx 已提交
1211
#[stable(feature = "cstring_asref", since = "1.7.0")]
A
arcnmx 已提交
1212 1213 1214 1215 1216 1217 1218 1219 1220
impl ops::Index<ops::RangeFull> for CString {
    type Output = CStr;

    #[inline]
    fn index(&self, _index: ops::RangeFull) -> &CStr {
        self
    }
}

A
arcnmx 已提交
1221
#[stable(feature = "cstring_asref", since = "1.7.0")]
A
arcnmx 已提交
1222
impl AsRef<CStr> for CStr {
1223
    #[inline]
A
arcnmx 已提交
1224 1225 1226 1227 1228
    fn as_ref(&self) -> &CStr {
        self
    }
}

A
arcnmx 已提交
1229
#[stable(feature = "cstring_asref", since = "1.7.0")]
A
arcnmx 已提交
1230
impl AsRef<CStr> for CString {
1231
    #[inline]
A
arcnmx 已提交
1232 1233 1234 1235 1236
    fn as_ref(&self) -> &CStr {
        self
    }
}

A
Alex Crichton 已提交
1237 1238 1239
#[cfg(test)]
mod tests {
    use super::*;
1240
    use os::raw::c_char;
1241
    use borrow::Cow::{Borrowed, Owned};
1242 1243
    use hash::{Hash, Hasher};
    use collections::hash_map::DefaultHasher;
1244 1245
    use rc::Rc;
    use sync::Arc;
A
Alex Crichton 已提交
1246 1247 1248 1249

    #[test]
    fn c_to_rust() {
        let data = b"123\0";
1250
        let ptr = data.as_ptr() as *const c_char;
A
Alex Crichton 已提交
1251
        unsafe {
1252 1253
            assert_eq!(CStr::from_ptr(ptr).to_bytes(), b"123");
            assert_eq!(CStr::from_ptr(ptr).to_bytes_with_nul(), b"123\0");
A
Alex Crichton 已提交
1254 1255 1256 1257 1258
        }
    }

    #[test]
    fn simple() {
1259
        let s = CString::new("1234").unwrap();
A
Alex Crichton 已提交
1260 1261 1262 1263
        assert_eq!(s.as_bytes(), b"1234");
        assert_eq!(s.as_bytes_with_nul(), b"1234\0");
    }

1264 1265
    #[test]
    fn build_with_zero1() {
1266
        assert!(CString::new(&b"\0"[..]).is_err());
1267 1268 1269
    }
    #[test]
    fn build_with_zero2() {
1270
        assert!(CString::new(vec![0]).is_err());
1271
    }
A
Alex Crichton 已提交
1272 1273 1274 1275 1276 1277 1278 1279

    #[test]
    fn build_with_zero3() {
        unsafe {
            let s = CString::from_vec_unchecked(vec![0]);
            assert_eq!(s.as_bytes(), b"\0");
        }
    }
1280 1281 1282

    #[test]
    fn formatted() {
1283 1284
        let s = CString::new(&b"abc\x01\x02\n\xE2\x80\xA6\xFF"[..]).unwrap();
        assert_eq!(format!("{:?}", s), r#""abc\x01\x02\n\xe2\x80\xa6\xff""#);
1285
    }
1286 1287 1288 1289 1290 1291 1292 1293 1294

    #[test]
    fn borrowed() {
        unsafe {
            let s = CStr::from_ptr(b"12\0".as_ptr() as *const _);
            assert_eq!(s.to_bytes(), b"12");
            assert_eq!(s.to_bytes_with_nul(), b"12\0");
        }
    }
1295 1296 1297 1298

    #[test]
    fn to_str() {
        let data = b"123\xE2\x80\xA6\0";
1299
        let ptr = data.as_ptr() as *const c_char;
1300 1301 1302 1303 1304
        unsafe {
            assert_eq!(CStr::from_ptr(ptr).to_str(), Ok("123…"));
            assert_eq!(CStr::from_ptr(ptr).to_string_lossy(), Borrowed("123…"));
        }
        let data = b"123\xE2\0";
1305
        let ptr = data.as_ptr() as *const c_char;
1306 1307 1308 1309 1310
        unsafe {
            assert!(CStr::from_ptr(ptr).to_str().is_err());
            assert_eq!(CStr::from_ptr(ptr).to_string_lossy(), Owned::<str>(format!("123\u{FFFD}")));
        }
    }
1311 1312 1313 1314

    #[test]
    fn to_owned() {
        let data = b"123\0";
1315
        let ptr = data.as_ptr() as *const c_char;
1316 1317 1318 1319

        let owned = unsafe { CStr::from_ptr(ptr).to_owned() };
        assert_eq!(owned.as_bytes_with_nul(), data);
    }
1320 1321 1322 1323

    #[test]
    fn equal_hash() {
        let data = b"123\xE2\xFA\xA6\0";
1324
        let ptr = data.as_ptr() as *const c_char;
1325 1326
        let cstr: &'static CStr = unsafe { CStr::from_ptr(ptr) };

1327
        let mut s = DefaultHasher::new();
1328 1329
        cstr.hash(&mut s);
        let cstr_hash = s.finish();
1330
        let mut s = DefaultHasher::new();
1331 1332
        CString::new(&data[..data.len() - 1]).unwrap().hash(&mut s);
        let cstring_hash = s.finish();
1333 1334 1335

        assert_eq!(cstr_hash, cstring_hash);
    }
A
arcnmx 已提交
1336 1337 1338 1339 1340

    #[test]
    fn from_bytes_with_nul() {
        let data = b"123\0";
        let cstr = CStr::from_bytes_with_nul(data);
1341 1342 1343
        assert_eq!(cstr.map(CStr::to_bytes), Ok(&b"123"[..]));
        let cstr = CStr::from_bytes_with_nul(data);
        assert_eq!(cstr.map(CStr::to_bytes_with_nul), Ok(&b"123\0"[..]));
A
arcnmx 已提交
1344 1345

        unsafe {
1346
            let cstr = CStr::from_bytes_with_nul(data);
A
arcnmx 已提交
1347
            let cstr_unchecked = CStr::from_bytes_with_nul_unchecked(data);
1348
            assert_eq!(cstr, Ok(cstr_unchecked));
A
arcnmx 已提交
1349 1350 1351 1352 1353 1354 1355
        }
    }

    #[test]
    fn from_bytes_with_nul_unterminated() {
        let data = b"123";
        let cstr = CStr::from_bytes_with_nul(data);
1356
        assert!(cstr.is_err());
A
arcnmx 已提交
1357 1358 1359 1360 1361 1362
    }

    #[test]
    fn from_bytes_with_nul_interior() {
        let data = b"1\023\0";
        let cstr = CStr::from_bytes_with_nul(data);
1363
        assert!(cstr.is_err());
A
arcnmx 已提交
1364
    }
1365 1366 1367 1368 1369

    #[test]
    fn into_boxed() {
        let orig: &[u8] = b"Hello, world!\0";
        let cstr = CStr::from_bytes_with_nul(orig).unwrap();
C
Clar Charr 已提交
1370 1371 1372 1373 1374
        let boxed: Box<CStr> = Box::from(cstr);
        let cstring = cstr.to_owned().into_boxed_c_str().into_c_string();
        assert_eq!(cstr, &*boxed);
        assert_eq!(&*boxed, &*cstring);
        assert_eq!(&*cstring, cstr);
1375 1376 1377 1378 1379 1380 1381
    }

    #[test]
    fn boxed_default() {
        let boxed = <Box<CStr>>::default();
        assert_eq!(boxed.to_bytes_with_nul(), &[0]);
    }
1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398

    #[test]
    fn into_rc() {
        let orig: &[u8] = b"Hello, world!\0";
        let cstr = CStr::from_bytes_with_nul(orig).unwrap();
        let rc: Rc<CStr> = Rc::from(cstr);
        let arc: Arc<CStr> = Arc::from(cstr);

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

        let rc2: Rc<CStr> = Rc::from(cstr.to_owned());
        let arc2: Arc<CStr> = Arc::from(cstr.to_owned());

        assert_eq!(&*rc2, cstr);
        assert_eq!(&*arc2, cstr);
    }
A
Alex Crichton 已提交
1399
}