2015-01-21 15:55:31 -08:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
|
|
|
|
|
/// The underlying OsString/OsStr implementation on Windows is a
|
|
|
|
|
/// wrapper around the "WTF-8" encoding; see the `wtf8` module for more.
|
|
|
|
|
|
2015-02-28 23:24:05 -08:00
|
|
|
use borrow::Cow;
|
2017-06-12 22:21:53 +03:00
|
|
|
use fmt;
|
2015-01-21 15:55:31 -08:00
|
|
|
use sys_common::wtf8::{Wtf8, Wtf8Buf};
|
|
|
|
|
use mem;
|
2017-11-14 12:31:07 -07:00
|
|
|
use rc::Rc;
|
|
|
|
|
use sync::Arc;
|
2016-02-12 12:21:57 -05:00
|
|
|
use sys_common::{AsInner, IntoInner};
|
2015-01-21 15:55:31 -08:00
|
|
|
|
2015-01-29 14:33:11 -08:00
|
|
|
#[derive(Clone, Hash)]
|
2015-01-21 15:55:31 -08:00
|
|
|
pub struct Buf {
|
|
|
|
|
pub inner: Wtf8Buf
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-12 12:21:57 -05:00
|
|
|
impl IntoInner<Wtf8Buf> for Buf {
|
|
|
|
|
fn into_inner(self) -> Wtf8Buf {
|
|
|
|
|
self.inner
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl AsInner<Wtf8> for Buf {
|
|
|
|
|
fn as_inner(&self) -> &Wtf8 {
|
|
|
|
|
&self.inner
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-12 22:21:53 +03:00
|
|
|
impl fmt::Debug for Buf {
|
|
|
|
|
fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
|
fmt::Debug::fmt(self.as_slice(), formatter)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl fmt::Display for Buf {
|
|
|
|
|
fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
|
fmt::Display::fmt(self.as_slice(), formatter)
|
2015-01-21 15:55:31 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub struct Slice {
|
|
|
|
|
pub inner: Wtf8
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-12 22:21:53 +03:00
|
|
|
impl fmt::Debug for Slice {
|
|
|
|
|
fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
|
fmt::Debug::fmt(&self.inner, formatter)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl fmt::Display for Slice {
|
|
|
|
|
fn fmt(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
|
fmt::Display::fmt(&self.inner, formatter)
|
2015-01-21 15:55:31 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Buf {
|
2016-02-12 12:21:57 -05:00
|
|
|
pub fn with_capacity(capacity: usize) -> Buf {
|
|
|
|
|
Buf {
|
|
|
|
|
inner: Wtf8Buf::with_capacity(capacity)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn clear(&mut self) {
|
|
|
|
|
self.inner.clear()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn capacity(&self) -> usize {
|
|
|
|
|
self.inner.capacity()
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-21 15:55:31 -08:00
|
|
|
pub fn from_string(s: String) -> Buf {
|
|
|
|
|
Buf { inner: Wtf8Buf::from_string(s) }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn as_slice(&self) -> &Slice {
|
|
|
|
|
unsafe { mem::transmute(self.inner.as_slice()) }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn into_string(self) -> Result<String, Buf> {
|
|
|
|
|
self.inner.into_string().map_err(|buf| Buf { inner: buf })
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn push_slice(&mut self, s: &Slice) {
|
|
|
|
|
self.inner.push_wtf8(&s.inner)
|
|
|
|
|
}
|
2016-02-12 12:21:57 -05:00
|
|
|
|
|
|
|
|
pub fn reserve(&mut self, additional: usize) {
|
|
|
|
|
self.inner.reserve(additional)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn reserve_exact(&mut self, additional: usize) {
|
|
|
|
|
self.inner.reserve_exact(additional)
|
|
|
|
|
}
|
2017-01-31 22:46:16 -05:00
|
|
|
|
2017-03-10 00:23:54 -05:00
|
|
|
pub fn shrink_to_fit(&mut self) {
|
|
|
|
|
self.inner.shrink_to_fit()
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-31 22:46:16 -05:00
|
|
|
#[inline]
|
|
|
|
|
pub fn into_box(self) -> Box<Slice> {
|
|
|
|
|
unsafe { mem::transmute(self.inner.into_box()) }
|
|
|
|
|
}
|
2017-02-13 20:37:42 -05:00
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn from_box(boxed: Box<Slice>) -> Buf {
|
|
|
|
|
let inner: Box<Wtf8> = unsafe { mem::transmute(boxed) };
|
|
|
|
|
Buf { inner: Wtf8Buf::from_box(inner) }
|
|
|
|
|
}
|
2017-11-14 12:31:07 -07:00
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn into_arc(&self) -> Arc<Slice> {
|
|
|
|
|
self.as_slice().into_arc()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn into_rc(&self) -> Rc<Slice> {
|
|
|
|
|
self.as_slice().into_rc()
|
|
|
|
|
}
|
2015-01-21 15:55:31 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Slice {
|
|
|
|
|
pub fn from_str(s: &str) -> &Slice {
|
|
|
|
|
unsafe { mem::transmute(Wtf8::from_str(s)) }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn to_str(&self) -> Option<&str> {
|
|
|
|
|
self.inner.as_str()
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-28 23:24:05 -08:00
|
|
|
pub fn to_string_lossy(&self) -> Cow<str> {
|
2015-01-21 15:55:31 -08:00
|
|
|
self.inner.to_string_lossy()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn to_owned(&self) -> Buf {
|
|
|
|
|
let mut buf = Wtf8Buf::with_capacity(self.inner.len());
|
|
|
|
|
buf.push_wtf8(&self.inner);
|
|
|
|
|
Buf { inner: buf }
|
|
|
|
|
}
|
2017-01-31 22:46:16 -05:00
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn into_box(&self) -> Box<Slice> {
|
|
|
|
|
unsafe { mem::transmute(self.inner.into_box()) }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn empty_box() -> Box<Slice> {
|
|
|
|
|
unsafe { mem::transmute(Wtf8::empty_box()) }
|
|
|
|
|
}
|
2017-11-14 12:31:07 -07:00
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn into_arc(&self) -> Arc<Slice> {
|
|
|
|
|
let arc = self.inner.into_arc();
|
|
|
|
|
unsafe { Arc::from_raw(Arc::into_raw(arc) as *const Slice) }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn into_rc(&self) -> Rc<Slice> {
|
|
|
|
|
let rc = self.inner.into_rc();
|
|
|
|
|
unsafe { Rc::from_raw(Rc::into_raw(rc) as *const Slice) }
|
|
|
|
|
}
|
2015-01-21 15:55:31 -08:00
|
|
|
}
|