2014-11-25 15:28:35 -06:00
|
|
|
// 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.
|
|
|
|
|
2015-02-18 00:47:40 -06:00
|
|
|
use cmp::{PartialEq, Eq, PartialOrd, Ord, Ordering};
|
|
|
|
use error::{Error, FromError};
|
2014-11-25 15:28:35 -06:00
|
|
|
use fmt;
|
2015-02-18 00:47:40 -06:00
|
|
|
use io;
|
2014-11-25 15:28:35 -06:00
|
|
|
use iter::IteratorExt;
|
|
|
|
use libc;
|
|
|
|
use mem;
|
2015-02-18 00:47:40 -06:00
|
|
|
use old_io;
|
2014-11-25 15:28:35 -06:00
|
|
|
use ops::Deref;
|
2015-02-18 00:47:40 -06:00
|
|
|
use option::Option::{self, Some, None};
|
|
|
|
use result::Result::{self, Ok, Err};
|
2015-02-01 20:53:25 -06:00
|
|
|
use slice::{self, SliceExt};
|
2015-02-18 00:47:40 -06:00
|
|
|
use str::StrExt;
|
2014-11-25 15:28:35 -06:00
|
|
|
use string::String;
|
|
|
|
use vec::Vec;
|
|
|
|
|
2015-02-18 00:47:40 -06:00
|
|
|
/// A type representing an owned C-compatible string
|
2014-11-25 15:28:35 -06:00
|
|
|
///
|
2015-02-18 00:47:40 -06:00
|
|
|
/// This type serves the primary purpose of being able to safely generate a
|
2014-11-25 15:28:35 -06:00
|
|
|
/// 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
|
|
|
|
/// bytes and the final byte is 0.
|
|
|
|
///
|
|
|
|
/// A `CString` is created from either a byte slice or a byte vector. After
|
|
|
|
/// being created, a `CString` predominately inherits all of its methods from
|
|
|
|
/// the `Deref` implementation to `[libc::c_char]`. Note that the underlying
|
|
|
|
/// array is represented as an array of `libc::c_char` as opposed to `u8`. A
|
|
|
|
/// `u8` slice can be obtained with the `as_bytes` method. Slices produced from
|
|
|
|
/// a `CString` do *not* contain the trailing nul terminator unless otherwise
|
|
|
|
/// specified.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// # extern crate libc;
|
|
|
|
/// # fn main() {
|
|
|
|
/// use std::ffi::CString;
|
|
|
|
/// use libc;
|
|
|
|
///
|
|
|
|
/// extern {
|
|
|
|
/// fn my_printer(s: *const libc::c_char);
|
|
|
|
/// }
|
|
|
|
///
|
2015-02-18 00:47:40 -06:00
|
|
|
/// let to_print = b"Hello, world!";
|
|
|
|
/// let c_to_print = CString::new(to_print).unwrap();
|
2014-11-25 15:28:35 -06:00
|
|
|
/// unsafe {
|
|
|
|
/// my_printer(c_to_print.as_ptr());
|
|
|
|
/// }
|
|
|
|
/// # }
|
|
|
|
/// ```
|
|
|
|
#[derive(Clone, PartialEq, PartialOrd, Eq, Ord, Hash)]
|
|
|
|
pub struct CString {
|
2015-02-18 00:47:40 -06:00
|
|
|
inner: Vec<u8>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Representation of a borrowed C string.
|
|
|
|
///
|
|
|
|
/// This dynamically sized type is only safely constructed via a borrowed
|
|
|
|
/// version of an instance of `CString`. This type can be constructed from a raw
|
|
|
|
/// C string as well and represents a C string borrowed from another location.
|
|
|
|
///
|
|
|
|
/// Note that this structure is **not** `repr(C)` and is not recommended to be
|
|
|
|
/// placed in the signatures of FFI functions. Instead safe wrappers of FFI
|
|
|
|
/// functions may leverage the unsafe `from_ptr` constructor to provide a safe
|
|
|
|
/// interface to other consumers.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// Inspecting a foreign C string
|
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// extern crate libc;
|
|
|
|
/// use std::ffi::CStr;
|
|
|
|
///
|
|
|
|
/// extern { fn my_string() -> *const libc::c_char; }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
|
|
|
/// unsafe {
|
|
|
|
/// let slice = CStr::from_ptr(my_string());
|
|
|
|
/// println!("string length: {}", slice.to_bytes().len());
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Passing a Rust-originating C string
|
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// extern crate libc;
|
|
|
|
/// use std::ffi::{CString, CStr};
|
|
|
|
///
|
|
|
|
/// fn work(data: &CStr) {
|
|
|
|
/// extern { fn work_with(data: *const libc::c_char); }
|
|
|
|
///
|
|
|
|
/// unsafe { work_with(data.as_ptr()) }
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
2015-02-18 16:39:37 -06:00
|
|
|
/// let s = CString::new("data data data data").unwrap();
|
2015-02-18 00:47:40 -06:00
|
|
|
/// work(&s);
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
#[derive(Hash)]
|
|
|
|
pub struct CStr {
|
|
|
|
inner: [libc::c_char]
|
|
|
|
}
|
|
|
|
|
|
|
|
/// An error returned from `CString::new` to indicate that a nul byte was found
|
|
|
|
/// in the vector provided.
|
|
|
|
#[derive(Clone, PartialEq, Debug)]
|
|
|
|
pub struct NulError(usize, Vec<u8>);
|
|
|
|
|
|
|
|
/// A conversion trait used by the constructor of `CString` for types that can
|
|
|
|
/// be converted to a vector of bytes.
|
|
|
|
pub trait IntoBytes {
|
|
|
|
/// Consumes this container, returning a vector of bytes.
|
|
|
|
fn into_bytes(self) -> Vec<u8>;
|
2014-11-25 15:28:35 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl CString {
|
2015-02-18 00:47:40 -06:00
|
|
|
/// Create a new C-compatible string from a container of bytes.
|
|
|
|
///
|
|
|
|
/// This method will consume the provided data and use the underlying bytes
|
|
|
|
/// to construct a new string, ensuring that there is a trailing 0 byte.
|
|
|
|
///
|
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// extern crate libc;
|
|
|
|
/// use std::ffi::CString;
|
|
|
|
///
|
|
|
|
/// extern { fn puts(s: *const libc::c_char); }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
2015-02-18 16:39:37 -06:00
|
|
|
/// let to_print = CString::new("Hello!").unwrap();
|
2015-02-18 00:47:40 -06:00
|
|
|
/// unsafe {
|
|
|
|
/// puts(to_print.as_ptr());
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// This function will return an error if the bytes yielded contain an
|
|
|
|
/// internal 0 byte. The error returned will contain the bytes as well as
|
|
|
|
/// the position of the nul byte.
|
|
|
|
pub fn new<T: IntoBytes>(t: T) -> Result<CString, NulError> {
|
|
|
|
let bytes = t.into_bytes();
|
|
|
|
match bytes.iter().position(|x| *x == 0) {
|
|
|
|
Some(i) => Err(NulError(i, bytes)),
|
|
|
|
None => Ok(unsafe { CString::from_vec_unchecked(bytes) }),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-25 15:28:35 -06:00
|
|
|
/// Create a new C-compatible string from a byte slice.
|
|
|
|
///
|
|
|
|
/// This method will copy the data of the slice provided into a new
|
|
|
|
/// allocation, ensuring that there is a trailing 0 byte.
|
|
|
|
///
|
2015-02-18 00:47:40 -06:00
|
|
|
/// # Examples
|
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// extern crate libc;
|
|
|
|
/// use std::ffi::CString;
|
|
|
|
///
|
|
|
|
/// extern { fn puts(s: *const libc::c_char); }
|
|
|
|
///
|
|
|
|
/// fn main() {
|
2015-02-18 16:39:37 -06:00
|
|
|
/// let to_print = CString::new("Hello!").unwrap();
|
2015-02-18 00:47:40 -06:00
|
|
|
/// unsafe {
|
|
|
|
/// puts(to_print.as_ptr());
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
2014-11-25 15:28:35 -06:00
|
|
|
/// # Panics
|
|
|
|
///
|
2015-02-18 00:47:40 -06:00
|
|
|
/// This function will panic if the provided slice contains any
|
|
|
|
/// interior nul bytes.
|
|
|
|
#[unstable(feature = "std_misc")]
|
|
|
|
#[deprecated(since = "1.0.0", reason = "use CString::new instead")]
|
|
|
|
#[allow(deprecated)]
|
2014-11-25 15:28:35 -06:00
|
|
|
pub fn from_slice(v: &[u8]) -> CString {
|
|
|
|
CString::from_vec(v.to_vec())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a C-compatible string from a byte vector.
|
|
|
|
///
|
|
|
|
/// This method will consume ownership of the provided vector, appending a 0
|
|
|
|
/// byte to the end after verifying that there are no interior 0 bytes.
|
|
|
|
///
|
|
|
|
/// # Panics
|
|
|
|
///
|
2015-02-18 00:47:40 -06:00
|
|
|
/// This function will panic if the provided slice contains any
|
|
|
|
/// interior nul bytes.
|
|
|
|
#[unstable(feature = "std_misc")]
|
|
|
|
#[deprecated(since = "1.0.0", reason = "use CString::new instead")]
|
2014-11-25 15:28:35 -06:00
|
|
|
pub fn from_vec(v: Vec<u8>) -> CString {
|
2015-02-18 00:47:40 -06:00
|
|
|
match v.iter().position(|x| *x == 0) {
|
|
|
|
Some(i) => panic!("null byte found in slice at: {}", i),
|
|
|
|
None => unsafe { CString::from_vec_unchecked(v) },
|
|
|
|
}
|
2014-11-25 15:28:35 -06:00
|
|
|
}
|
|
|
|
|
2015-01-07 23:47:15 -06:00
|
|
|
/// Create a C-compatible string from a byte vector without checking for
|
2014-11-25 15:28:35 -06:00
|
|
|
/// interior 0 bytes.
|
|
|
|
///
|
|
|
|
/// This method is equivalent to `from_vec` except that no runtime assertion
|
|
|
|
/// is made that `v` contains no 0 bytes.
|
|
|
|
pub unsafe fn from_vec_unchecked(mut v: Vec<u8>) -> CString {
|
|
|
|
v.push(0);
|
2015-02-18 00:47:40 -06:00
|
|
|
CString { inner: v }
|
2014-11-25 15:28:35 -06:00
|
|
|
}
|
|
|
|
|
2015-02-18 00:47:40 -06:00
|
|
|
/// Returns the contents of this `CString` as a slice of bytes.
|
|
|
|
///
|
|
|
|
/// The returned slice does **not** contain the trailing nul separator and
|
2015-02-22 07:52:07 -06:00
|
|
|
/// it is guaranteed to not have any interior nul bytes.
|
2014-11-25 15:28:35 -06:00
|
|
|
pub fn as_bytes(&self) -> &[u8] {
|
2015-02-18 00:47:40 -06:00
|
|
|
&self.inner[..self.inner.len() - 1]
|
2014-11-25 15:28:35 -06:00
|
|
|
}
|
|
|
|
|
2015-02-18 00:47:40 -06:00
|
|
|
/// Equivalent to the `as_bytes` function except that the returned slice
|
|
|
|
/// includes the trailing nul byte.
|
2014-11-25 15:28:35 -06:00
|
|
|
pub fn as_bytes_with_nul(&self) -> &[u8] {
|
2015-02-18 00:47:40 -06:00
|
|
|
&self.inner
|
2014-11-25 15:28:35 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Deref for CString {
|
2015-02-18 00:47:40 -06:00
|
|
|
type Target = CStr;
|
2014-11-25 15:28:35 -06:00
|
|
|
|
2015-02-18 00:47:40 -06:00
|
|
|
fn deref(&self) -> &CStr {
|
|
|
|
unsafe { mem::transmute(self.as_bytes_with_nul()) }
|
2014-11-25 15:28:35 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-24 11:15:42 -06:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-01-20 17:45:07 -06:00
|
|
|
impl fmt::Debug for CString {
|
2014-11-25 15:28:35 -06:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
std: Stabilize the std::fmt module
This commit performs a final stabilization pass over the std::fmt module,
marking all necessary APIs as stable. One of the more interesting aspects of
this module is that it exposes a good deal of its runtime representation to the
outside world in order for `format_args!` to be able to construct the format
strings. Instead of hacking the compiler to assume that these items are stable,
this commit instead lays out a story for the stabilization and evolution of
these APIs.
There are three primary details used by the `format_args!` macro:
1. `Arguments` - an opaque package of a "compiled format string". This structure
is passed around and the `write` function is the source of truth for
transforming a compiled format string into a string at runtime. This must be
able to be constructed in stable code.
2. `Argument` - an opaque structure representing an argument to a format string.
This is *almost* a trait object as it's just a pointer/function pair, but due
to the function originating from one of many traits, it's not actually a
trait object. Like `Arguments`, this must be constructed from stable code.
3. `fmt::rt` - this module contains the runtime type definitions primarily for
the `rt::Argument` structure. Whenever an argument is formatted with
nonstandard flags, a corresponding `rt::Argument` is generated describing how
the argument is being formatted. This can be used to construct an
`Arguments`.
The primary interface to `std::fmt` is the `Arguments` structure, and as such
this type name is stabilize as-is today. It is expected for libraries to pass
around an `Arguments` structure to represent a pending formatted computation.
The remaining portions are largely "cruft" which would rather not be stabilized,
but due to the stability checks they must be. As a result, almost all pieces
have been renamed to represent that they are "version 1" of the formatting
representation. The theory is that at a later date if we change the
representation of these types we can add new definitions called "version 2" and
corresponding constructors for `Arguments`.
One of the other remaining large questions about the fmt module were how the
pending I/O reform would affect the signatures of methods in the module. Due to
[RFC 526][rfc], however, the writers of fmt are now incompatible with the
writers of io, so this question has largely been solved. As a result the
interfaces are largely stabilized as-is today.
[rfc]: https://github.com/rust-lang/rfcs/blob/master/text/0526-fmt-text-writer.md
Specifically, the following changes were made:
* The contents of `fmt::rt` were all moved under `fmt::rt::v1`
* `fmt::rt` is stable
* `fmt::rt::v1` is stable
* `Error` is stable
* `Writer` is stable
* `Writer::write_str` is stable
* `Writer::write_fmt` is stable
* `Formatter` is stable
* `Argument` has been renamed to `ArgumentV1` and is stable
* `ArgumentV1::new` is stable
* `ArgumentV1::from_uint` is stable
* `Arguments::new_v1` is stable (renamed from `new`)
* `Arguments::new_v1_formatted` is stable (renamed from `with_placeholders`)
* All formatting traits are now stable, as well as the `fmt` method.
* `fmt::write` is stable
* `fmt::format` is stable
* `Formatter::pad_integral` is stable
* `Formatter::pad` is stable
* `Formatter::write_str` is stable
* `Formatter::write_fmt` is stable
* Some assorted top level items which were only used by `format_args!` were
removed in favor of static functions on `ArgumentV1` as well.
* The formatting-flag-accessing methods remain unstable
Within the contents of the `fmt::rt::v1` module, the following actions were
taken:
* Reexports of all enum variants were removed
* All prefixes on enum variants were removed
* A few miscellaneous enum variants were renamed
* Otherwise all structs, fields, and variants were marked stable.
In addition to these actions in the `std::fmt` module, many implementations of
`Show` and `String` were stabilized as well.
In some other modules:
* `ToString` is now stable
* `ToString::to_string` is now stable
* `Vec` no longer implements `fmt::Writer` (this has moved to `String`)
This is a breaking change due to all of the changes to the `fmt::rt` module, but
this likely will not have much impact on existing programs.
Closes #20661
[breaking-change]
2015-01-13 17:42:53 -06:00
|
|
|
fmt::Debug::fmt(&String::from_utf8_lossy(self.as_bytes()), f)
|
2014-11-25 15:28:35 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-18 00:47:40 -06:00
|
|
|
impl NulError {
|
|
|
|
/// Returns the position of the nul byte in the slice that was provided to
|
|
|
|
/// `CString::from_vec`.
|
|
|
|
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.
|
|
|
|
pub fn into_vec(self) -> Vec<u8> { self.1 }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Error for NulError {
|
|
|
|
fn description(&self) -> &str { "nul byte found in data" }
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FromError<NulError> for io::Error {
|
|
|
|
fn from_error(_: NulError) -> io::Error {
|
|
|
|
io::Error::new(io::ErrorKind::InvalidInput,
|
|
|
|
"data provided contains a nul byte", None)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FromError<NulError> for old_io::IoError {
|
|
|
|
fn from_error(_: NulError) -> old_io::IoError {
|
|
|
|
old_io::IoError {
|
|
|
|
kind: old_io::IoErrorKind::InvalidInput,
|
|
|
|
desc: "data provided contains a nul byte",
|
|
|
|
detail: None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl CStr {
|
|
|
|
/// Cast a raw C string to a safe C string wrapper.
|
|
|
|
///
|
|
|
|
/// This function will cast the provided `ptr` to the `CStr` wrapper which
|
|
|
|
/// allows inspection and interoperation of non-owned C strings. This method
|
|
|
|
/// is unsafe for a number of reasons:
|
|
|
|
///
|
|
|
|
/// * There is no guarantee to the validity of `ptr`
|
|
|
|
/// * The returned lifetime is not guaranteed to be the actual lifetime of
|
|
|
|
/// `ptr`
|
|
|
|
/// * There is no guarantee that the memory pointed to by `ptr` contains a
|
|
|
|
/// valid nul terminator byte at the end of the string.
|
|
|
|
///
|
|
|
|
/// > **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.
|
|
|
|
///
|
|
|
|
/// # Example
|
|
|
|
///
|
|
|
|
/// ```no_run
|
|
|
|
/// # extern crate libc;
|
|
|
|
/// # fn main() {
|
|
|
|
/// use std::ffi::CStr;
|
|
|
|
/// use std::str;
|
|
|
|
/// use libc;
|
|
|
|
///
|
|
|
|
/// extern {
|
|
|
|
/// fn my_string() -> *const libc::c_char;
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// unsafe {
|
|
|
|
/// let slice = CStr::from_ptr(my_string());
|
|
|
|
/// println!("string returned: {}",
|
|
|
|
/// str::from_utf8(slice.to_bytes()).unwrap());
|
|
|
|
/// }
|
|
|
|
/// # }
|
|
|
|
/// ```
|
|
|
|
pub unsafe fn from_ptr<'a>(ptr: *const libc::c_char) -> &'a CStr {
|
|
|
|
let len = libc::strlen(ptr);
|
|
|
|
mem::transmute(slice::from_raw_parts(ptr, len as usize + 1))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the inner pointer to this C string.
|
|
|
|
///
|
|
|
|
/// The returned pointer will be valid for as long as `self` is and points
|
2015-02-22 07:52:07 -06:00
|
|
|
/// to a contiguous region of memory terminated with a 0 byte to represent
|
2015-02-18 00:47:40 -06:00
|
|
|
/// the end of the string.
|
|
|
|
pub fn as_ptr(&self) -> *const libc::c_char {
|
|
|
|
self.inner.as_ptr()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Convert this C string to a byte slice.
|
|
|
|
///
|
|
|
|
/// This function will calculate the length of this string (which normally
|
|
|
|
/// requires a linear amount of work to be done) and then return the
|
|
|
|
/// resulting slice of `u8` elements.
|
|
|
|
///
|
|
|
|
/// The returned slice will **not** contain the trailing nul that this C
|
|
|
|
/// string has.
|
|
|
|
///
|
|
|
|
/// > **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.
|
|
|
|
pub fn to_bytes(&self) -> &[u8] {
|
|
|
|
let bytes = self.to_bytes_with_nul();
|
|
|
|
&bytes[..bytes.len() - 1]
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Convert this C string to a byte slice containing the trailing 0 byte.
|
|
|
|
///
|
|
|
|
/// This function is the equivalent of `to_bytes` except that it will retain
|
|
|
|
/// the trailing nul instead of chopping it off.
|
|
|
|
///
|
|
|
|
/// > **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.
|
|
|
|
pub fn to_bytes_with_nul(&self) -> &[u8] {
|
|
|
|
unsafe { mem::transmute::<&[libc::c_char], &[u8]>(&self.inner) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialEq for CStr {
|
|
|
|
fn eq(&self, other: &CStr) -> bool {
|
2015-02-20 11:32:55 -06:00
|
|
|
self.to_bytes().eq(other.to_bytes())
|
2015-02-18 00:47:40 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
impl Eq for CStr {}
|
|
|
|
impl PartialOrd for CStr {
|
|
|
|
fn partial_cmp(&self, other: &CStr) -> Option<Ordering> {
|
|
|
|
self.to_bytes().partial_cmp(&other.to_bytes())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl Ord for CStr {
|
|
|
|
fn cmp(&self, other: &CStr) -> Ordering {
|
|
|
|
self.to_bytes().cmp(&other.to_bytes())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Deprecated in favor of `CStr`
|
|
|
|
#[unstable(feature = "std_misc")]
|
|
|
|
#[deprecated(since = "1.0.0", reason = "use CStr::from_ptr(p).to_bytes() instead")]
|
2014-11-25 15:28:35 -06:00
|
|
|
pub unsafe fn c_str_to_bytes<'a>(raw: &'a *const libc::c_char) -> &'a [u8] {
|
|
|
|
let len = libc::strlen(*raw);
|
2015-02-03 17:00:38 -06:00
|
|
|
slice::from_raw_parts(*(raw as *const _ as *const *const u8), len as usize)
|
2014-11-25 15:28:35 -06:00
|
|
|
}
|
|
|
|
|
2015-02-18 00:47:40 -06:00
|
|
|
/// Deprecated in favor of `CStr`
|
|
|
|
#[unstable(feature = "std_misc")]
|
|
|
|
#[deprecated(since = "1.0.0",
|
|
|
|
reason = "use CStr::from_ptr(p).to_bytes_with_nul() instead")]
|
|
|
|
pub unsafe fn c_str_to_bytes_with_nul<'a>(raw: &'a *const libc::c_char)
|
|
|
|
-> &'a [u8] {
|
2014-11-25 15:28:35 -06:00
|
|
|
let len = libc::strlen(*raw) + 1;
|
2015-02-03 17:00:38 -06:00
|
|
|
slice::from_raw_parts(*(raw as *const _ as *const *const u8), len as usize)
|
2014-11-25 15:28:35 -06:00
|
|
|
}
|
|
|
|
|
2015-02-18 00:47:40 -06:00
|
|
|
impl<'a> IntoBytes for &'a str {
|
|
|
|
fn into_bytes(self) -> Vec<u8> { self.as_bytes().to_vec() }
|
|
|
|
}
|
|
|
|
impl<'a> IntoBytes for &'a [u8] {
|
|
|
|
fn into_bytes(self) -> Vec<u8> { self.to_vec() }
|
|
|
|
}
|
|
|
|
impl IntoBytes for String {
|
|
|
|
fn into_bytes(self) -> Vec<u8> { self.into_bytes() }
|
|
|
|
}
|
|
|
|
impl IntoBytes for Vec<u8> {
|
|
|
|
fn into_bytes(self) -> Vec<u8> { self }
|
|
|
|
}
|
|
|
|
|
2014-11-25 15:28:35 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use prelude::v1::*;
|
|
|
|
use super::*;
|
|
|
|
use libc;
|
|
|
|
use mem;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn c_to_rust() {
|
|
|
|
let data = b"123\0";
|
|
|
|
let ptr = data.as_ptr() as *const libc::c_char;
|
|
|
|
unsafe {
|
|
|
|
assert_eq!(c_str_to_bytes(&ptr), b"123");
|
|
|
|
assert_eq!(c_str_to_bytes_with_nul(&ptr), b"123\0");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn simple() {
|
2015-02-18 16:39:37 -06:00
|
|
|
let s = CString::new(b"1234").unwrap();
|
2014-11-25 15:28:35 -06:00
|
|
|
assert_eq!(s.as_bytes(), b"1234");
|
|
|
|
assert_eq!(s.as_bytes_with_nul(), b"1234\0");
|
|
|
|
}
|
|
|
|
|
2015-02-18 00:47:40 -06:00
|
|
|
#[test]
|
|
|
|
fn build_with_zero1() {
|
2015-02-18 16:39:37 -06:00
|
|
|
assert!(CString::new(b"\0").is_err());
|
2015-02-18 00:47:40 -06:00
|
|
|
}
|
|
|
|
#[test]
|
|
|
|
fn build_with_zero2() {
|
2015-02-18 16:39:37 -06:00
|
|
|
assert!(CString::new(vec![0]).is_err());
|
2015-02-18 00:47:40 -06:00
|
|
|
}
|
2014-11-25 15:28:35 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn build_with_zero3() {
|
|
|
|
unsafe {
|
|
|
|
let s = CString::from_vec_unchecked(vec![0]);
|
|
|
|
assert_eq!(s.as_bytes(), b"\0");
|
|
|
|
}
|
|
|
|
}
|
2015-01-20 17:45:07 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn formatted() {
|
2015-02-18 16:39:37 -06:00
|
|
|
let s = CString::new(b"12").unwrap();
|
2015-01-20 17:45:07 -06:00
|
|
|
assert_eq!(format!("{:?}", s), "\"12\"");
|
|
|
|
}
|
2015-02-18 00:47:40 -06:00
|
|
|
|
|
|
|
#[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");
|
|
|
|
}
|
|
|
|
}
|
2014-11-25 15:28:35 -06:00
|
|
|
}
|