2013-03-02 12:57:05 +09:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-10 15:44:02 -08:00
|
|
|
// 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.
|
|
|
|
|
2012-07-04 22:53:12 +01:00
|
|
|
//! Unsafe pointer utility functions
|
2012-03-10 00:04:09 -08:00
|
|
|
|
2012-12-23 17:41:37 -05:00
|
|
|
use cast;
|
|
|
|
use libc;
|
2012-09-04 11:12:17 -07:00
|
|
|
use libc::{c_void, size_t};
|
2013-02-27 19:53:31 -08:00
|
|
|
use unstable::intrinsics::{memmove32,memmove64};
|
2012-12-23 17:41:37 -05:00
|
|
|
use sys;
|
2011-12-13 16:25:51 -08:00
|
|
|
|
2013-02-28 11:57:33 -05:00
|
|
|
#[cfg(test)] use vec;
|
|
|
|
#[cfg(test)] use str;
|
|
|
|
#[cfg(notest)] use cmp::{Eq, Ord};
|
|
|
|
|
2013-03-05 11:57:50 -08:00
|
|
|
pub mod libc_ {
|
|
|
|
use libc::c_void;
|
|
|
|
use libc;
|
|
|
|
|
|
|
|
#[nolink]
|
|
|
|
#[abi = "cdecl"]
|
|
|
|
pub extern {
|
|
|
|
#[rust_stack]
|
|
|
|
unsafe fn memmove(dest: *mut c_void,
|
|
|
|
src: *const c_void,
|
|
|
|
n: libc::size_t)
|
|
|
|
-> *c_void;
|
|
|
|
|
|
|
|
#[rust_stack]
|
|
|
|
unsafe fn memset(dest: *mut c_void,
|
|
|
|
c: libc::c_int,
|
|
|
|
len: libc::size_t)
|
|
|
|
-> *c_void;
|
|
|
|
}
|
2012-03-22 12:30:10 +01:00
|
|
|
}
|
|
|
|
|
2013-03-05 11:57:50 -08:00
|
|
|
pub mod rusti {
|
|
|
|
#[abi = "rust-intrinsic"]
|
|
|
|
pub extern {
|
|
|
|
fn addr_of<T>(&&val: T) -> *T;
|
|
|
|
}
|
2011-12-13 16:25:51 -08:00
|
|
|
}
|
|
|
|
|
2012-07-04 22:53:12 +01:00
|
|
|
/// Get an unsafe pointer to a value
|
2012-03-06 11:20:43 -08:00
|
|
|
#[inline(always)]
|
2012-10-01 12:47:02 -07:00
|
|
|
pub pure fn addr_of<T>(val: &T) -> *T { unsafe { rusti::addr_of(*val) } }
|
2011-12-13 16:25:51 -08:00
|
|
|
|
2012-07-04 22:53:12 +01:00
|
|
|
/// Calculate the offset from a pointer
|
2012-03-02 20:06:08 -08:00
|
|
|
#[inline(always)]
|
2012-10-01 14:34:53 -07:00
|
|
|
pub pure fn offset<T>(ptr: *T, count: uint) -> *T {
|
2012-06-24 20:18:18 -07:00
|
|
|
unsafe {
|
|
|
|
(ptr as uint + count * sys::size_of::<T>()) as *T
|
|
|
|
}
|
2011-12-13 16:25:51 -08:00
|
|
|
}
|
|
|
|
|
2012-07-04 22:53:12 +01:00
|
|
|
/// Calculate the offset from a const pointer
|
2012-06-02 19:03:28 -07:00
|
|
|
#[inline(always)]
|
2012-10-01 14:34:53 -07:00
|
|
|
pub pure fn const_offset<T>(ptr: *const T, count: uint) -> *const T {
|
2012-06-24 20:18:18 -07:00
|
|
|
unsafe {
|
|
|
|
(ptr as uint + count * sys::size_of::<T>()) as *T
|
|
|
|
}
|
2012-06-02 19:03:28 -07:00
|
|
|
}
|
|
|
|
|
2012-07-04 22:53:12 +01:00
|
|
|
/// Calculate the offset from a mut pointer
|
2012-03-06 11:20:43 -08:00
|
|
|
#[inline(always)]
|
2012-10-01 14:34:53 -07:00
|
|
|
pub pure fn mut_offset<T>(ptr: *mut T, count: uint) -> *mut T {
|
2012-03-26 18:35:18 -07:00
|
|
|
(ptr as uint + count * sys::size_of::<T>()) as *mut T
|
2011-12-13 16:25:51 -08:00
|
|
|
}
|
|
|
|
|
2012-07-04 22:53:12 +01:00
|
|
|
/// Return the offset of the first null pointer in `buf`.
|
2012-04-11 15:46:51 -07:00
|
|
|
#[inline(always)]
|
2012-09-26 17:47:29 -07:00
|
|
|
pub unsafe fn buf_len<T>(buf: **T) -> uint {
|
2012-09-28 21:51:14 -07:00
|
|
|
position(buf, |i| *i == null())
|
2012-04-11 15:46:51 -07:00
|
|
|
}
|
|
|
|
|
2012-07-04 22:53:12 +01:00
|
|
|
/// Return the first offset `i` such that `f(buf[i]) == true`.
|
2012-04-11 15:46:51 -07:00
|
|
|
#[inline(always)]
|
2012-09-28 21:51:14 -07:00
|
|
|
pub unsafe fn position<T>(buf: *T, f: fn(&T) -> bool) -> uint {
|
|
|
|
let mut i = 0;
|
2012-04-11 15:46:51 -07:00
|
|
|
loop {
|
2012-09-28 21:51:14 -07:00
|
|
|
if f(&(*offset(buf, i))) { return i; }
|
|
|
|
else { i += 1; }
|
2012-04-11 15:46:51 -07:00
|
|
|
}
|
|
|
|
}
|
2011-12-13 16:25:51 -08:00
|
|
|
|
2012-07-04 22:53:12 +01:00
|
|
|
/// Create an unsafe null pointer
|
2012-03-06 11:20:43 -08:00
|
|
|
#[inline(always)]
|
2012-09-26 17:47:29 -07:00
|
|
|
pub pure fn null<T>() -> *T { unsafe { cast::reinterpret_cast(&0u) } }
|
2012-04-03 21:56:16 -07:00
|
|
|
|
2012-09-14 16:12:18 -07:00
|
|
|
/// Create an unsafe mutable null pointer
|
|
|
|
#[inline(always)]
|
2012-09-26 17:47:29 -07:00
|
|
|
pub pure fn mut_null<T>() -> *mut T { unsafe { cast::reinterpret_cast(&0u) } }
|
2012-09-14 16:12:18 -07:00
|
|
|
|
2012-07-04 22:53:12 +01:00
|
|
|
/// Returns true if the pointer is equal to the null pointer.
|
2013-01-13 23:37:30 +09:00
|
|
|
#[inline(always)]
|
2012-09-26 17:47:29 -07:00
|
|
|
pub pure fn is_null<T>(ptr: *const T) -> bool { ptr == null() }
|
2012-04-03 21:56:16 -07:00
|
|
|
|
2012-07-04 22:53:12 +01:00
|
|
|
/// Returns true if the pointer is not equal to the null pointer.
|
2013-01-13 23:37:30 +09:00
|
|
|
#[inline(always)]
|
2012-09-26 17:47:29 -07:00
|
|
|
pub pure fn is_not_null<T>(ptr: *const T) -> bool { !is_null(ptr) }
|
2012-01-17 17:28:21 -08:00
|
|
|
|
2012-07-04 22:53:12 +01:00
|
|
|
/**
|
|
|
|
* Copies data from one location to another
|
|
|
|
*
|
|
|
|
* Copies `count` elements (not bytes) from `src` to `dst`. The source
|
|
|
|
* and destination may overlap.
|
|
|
|
*/
|
2012-03-06 11:20:43 -08:00
|
|
|
#[inline(always)]
|
2013-01-28 22:44:59 -08:00
|
|
|
#[cfg(target_word_size = "32")]
|
2013-01-14 23:36:45 -08:00
|
|
|
pub unsafe fn copy_memory<T>(dst: *mut T, src: *const T, count: uint) {
|
2012-03-22 12:30:10 +01:00
|
|
|
let n = count * sys::size_of::<T>();
|
2013-01-28 22:44:59 -08:00
|
|
|
memmove32(dst as *mut u8, src as *u8, n as u32);
|
|
|
|
}
|
|
|
|
#[inline(always)]
|
|
|
|
#[cfg(target_word_size = "64")]
|
|
|
|
pub unsafe fn copy_memory<T>(dst: *mut T, src: *const T, count: uint) {
|
|
|
|
let n = count * sys::size_of::<T>();
|
|
|
|
memmove64(dst as *mut u8, src as *u8, n as u64);
|
2012-02-07 13:21:11 -08:00
|
|
|
}
|
2012-02-07 19:50:42 +01:00
|
|
|
|
2012-06-13 16:14:01 -07:00
|
|
|
#[inline(always)]
|
2013-01-10 01:11:04 -06:00
|
|
|
pub unsafe fn set_memory<T>(dst: *mut T, c: int, count: uint) {
|
2012-06-13 16:14:01 -07:00
|
|
|
let n = count * sys::size_of::<T>();
|
2012-09-12 10:38:17 -07:00
|
|
|
libc_::memset(dst as *mut c_void, c as libc::c_int, n as size_t);
|
2012-06-13 16:14:01 -07:00
|
|
|
}
|
|
|
|
|
2012-08-02 14:23:04 -07:00
|
|
|
/**
|
|
|
|
Transform a region pointer - &T - to an unsafe pointer - *T.
|
|
|
|
This is safe, but is implemented with an unsafe block due to
|
|
|
|
reinterpret_cast.
|
|
|
|
*/
|
|
|
|
#[inline(always)]
|
2012-09-27 22:20:47 -07:00
|
|
|
pub pure fn to_unsafe_ptr<T>(thing: &T) -> *T {
|
2012-09-18 17:34:08 -07:00
|
|
|
unsafe { cast::reinterpret_cast(&thing) }
|
2012-09-12 10:38:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
Transform a const region pointer - &const T - to a const unsafe pointer -
|
|
|
|
*const T. This is safe, but is implemented with an unsafe block due to
|
|
|
|
reinterpret_cast.
|
|
|
|
*/
|
|
|
|
#[inline(always)]
|
2012-09-27 22:20:47 -07:00
|
|
|
pub pure fn to_const_unsafe_ptr<T>(thing: &const T) -> *const T {
|
2012-09-18 17:34:08 -07:00
|
|
|
unsafe { cast::reinterpret_cast(&thing) }
|
2012-08-02 14:23:04 -07:00
|
|
|
}
|
2012-08-27 16:08:17 -07:00
|
|
|
|
2012-09-02 15:54:05 -07:00
|
|
|
/**
|
|
|
|
Transform a mutable region pointer - &mut T - to a mutable unsafe pointer -
|
|
|
|
*mut T. This is safe, but is implemented with an unsafe block due to
|
|
|
|
reinterpret_cast.
|
|
|
|
*/
|
|
|
|
#[inline(always)]
|
2012-09-27 22:20:47 -07:00
|
|
|
pub pure fn to_mut_unsafe_ptr<T>(thing: &mut T) -> *mut T {
|
2012-09-18 17:34:08 -07:00
|
|
|
unsafe { cast::reinterpret_cast(&thing) }
|
2012-09-02 15:54:05 -07:00
|
|
|
}
|
|
|
|
|
2012-08-02 14:23:04 -07:00
|
|
|
/**
|
|
|
|
Cast a region pointer - &T - to a uint.
|
|
|
|
This is safe, but is implemented with an unsafe block due to
|
|
|
|
reinterpret_cast.
|
|
|
|
|
|
|
|
(I couldn't think of a cutesy name for this one.)
|
|
|
|
*/
|
|
|
|
#[inline(always)]
|
2013-01-23 11:43:58 -08:00
|
|
|
pub pure fn to_uint<T>(thing: &T) -> uint {
|
|
|
|
unsafe {
|
|
|
|
cast::reinterpret_cast(&thing)
|
|
|
|
}
|
2012-08-02 14:23:04 -07:00
|
|
|
}
|
|
|
|
|
2012-08-11 15:42:58 -04:00
|
|
|
/// Determine if two borrowed pointers point to the same thing.
|
|
|
|
#[inline(always)]
|
2012-12-23 14:37:44 -08:00
|
|
|
pub pure fn ref_eq<T>(thing: &a/T, other: &b/T) -> bool {
|
2012-08-11 15:42:58 -04:00
|
|
|
to_uint(thing) == to_uint(other)
|
|
|
|
}
|
|
|
|
|
2012-10-01 14:34:53 -07:00
|
|
|
pub trait Ptr<T> {
|
2013-03-04 22:36:15 -05:00
|
|
|
pure fn is_null(&self) -> bool;
|
|
|
|
pure fn is_not_null(&self) -> bool;
|
|
|
|
pure fn offset(&self, count: uint) -> Self;
|
2012-07-11 12:45:54 -07:00
|
|
|
}
|
|
|
|
|
2012-11-07 16:24:29 +10:00
|
|
|
/// Extension methods for immutable pointers
|
2013-02-14 11:47:00 -08:00
|
|
|
impl<T> Ptr<T> for *T {
|
2012-07-04 22:53:12 +01:00
|
|
|
/// Returns true if the pointer is equal to the null pointer.
|
2012-10-01 14:34:53 -07:00
|
|
|
#[inline(always)]
|
2013-03-04 22:36:15 -05:00
|
|
|
pure fn is_null(&self) -> bool { is_null(*self) }
|
2012-04-15 21:46:29 -07:00
|
|
|
|
2012-07-04 22:53:12 +01:00
|
|
|
/// Returns true if the pointer is not equal to the null pointer.
|
2012-10-01 14:34:53 -07:00
|
|
|
#[inline(always)]
|
2013-03-04 22:36:15 -05:00
|
|
|
pure fn is_not_null(&self) -> bool { is_not_null(*self) }
|
2012-10-01 14:34:53 -07:00
|
|
|
|
|
|
|
/// Calculates the offset from a pointer.
|
|
|
|
#[inline(always)]
|
2013-03-04 22:36:15 -05:00
|
|
|
pure fn offset(&self, count: uint) -> *T { offset(*self, count) }
|
2012-04-15 21:46:29 -07:00
|
|
|
}
|
|
|
|
|
2012-11-07 16:24:29 +10:00
|
|
|
/// Extension methods for mutable pointers
|
2013-02-14 11:47:00 -08:00
|
|
|
impl<T> Ptr<T> for *mut T {
|
2012-11-07 16:24:29 +10:00
|
|
|
/// Returns true if the pointer is equal to the null pointer.
|
|
|
|
#[inline(always)]
|
2013-03-04 22:36:15 -05:00
|
|
|
pure fn is_null(&self) -> bool { is_null(*self) }
|
2012-11-07 16:24:29 +10:00
|
|
|
|
|
|
|
/// Returns true if the pointer is not equal to the null pointer.
|
|
|
|
#[inline(always)]
|
2013-03-04 22:36:15 -05:00
|
|
|
pure fn is_not_null(&self) -> bool { is_not_null(*self) }
|
2012-11-07 16:24:29 +10:00
|
|
|
|
|
|
|
/// Calculates the offset from a mutable pointer.
|
|
|
|
#[inline(always)]
|
2013-03-04 22:36:15 -05:00
|
|
|
pure fn offset(&self, count: uint) -> *mut T { mut_offset(*self, count) }
|
2012-11-07 16:24:29 +10:00
|
|
|
}
|
|
|
|
|
2012-08-27 17:33:22 -07:00
|
|
|
// Equality for pointers
|
2012-11-30 00:47:45 -08:00
|
|
|
#[cfg(notest)]
|
2013-02-14 11:47:00 -08:00
|
|
|
impl<T> Eq for *const T {
|
2013-01-13 23:37:30 +09:00
|
|
|
#[inline(always)]
|
2013-01-23 11:43:58 -08:00
|
|
|
pure fn eq(&self, other: &*const T) -> bool {
|
|
|
|
unsafe {
|
|
|
|
let a: uint = cast::reinterpret_cast(&(*self));
|
|
|
|
let b: uint = cast::reinterpret_cast(&(*other));
|
|
|
|
return a == b;
|
|
|
|
}
|
2012-11-14 18:59:30 -08:00
|
|
|
}
|
2013-01-13 23:37:30 +09:00
|
|
|
#[inline(always)]
|
2012-11-14 18:59:30 -08:00
|
|
|
pure fn ne(&self, other: &*const T) -> bool { !(*self).eq(other) }
|
2012-09-19 18:00:26 -07:00
|
|
|
}
|
2012-08-27 16:26:35 -07:00
|
|
|
|
|
|
|
// Comparison for pointers
|
2012-11-30 00:47:45 -08:00
|
|
|
#[cfg(notest)]
|
2013-02-14 11:47:00 -08:00
|
|
|
impl<T> Ord for *const T {
|
2013-01-13 23:37:30 +09:00
|
|
|
#[inline(always)]
|
2013-01-23 11:43:58 -08:00
|
|
|
pure fn lt(&self, other: &*const T) -> bool {
|
|
|
|
unsafe {
|
|
|
|
let a: uint = cast::reinterpret_cast(&(*self));
|
|
|
|
let b: uint = cast::reinterpret_cast(&(*other));
|
|
|
|
return a < b;
|
|
|
|
}
|
2012-11-14 18:59:30 -08:00
|
|
|
}
|
2013-01-13 23:37:30 +09:00
|
|
|
#[inline(always)]
|
2013-01-23 11:43:58 -08:00
|
|
|
pure fn le(&self, other: &*const T) -> bool {
|
|
|
|
unsafe {
|
|
|
|
let a: uint = cast::reinterpret_cast(&(*self));
|
|
|
|
let b: uint = cast::reinterpret_cast(&(*other));
|
|
|
|
return a <= b;
|
|
|
|
}
|
2012-11-14 18:59:30 -08:00
|
|
|
}
|
2013-01-13 23:37:30 +09:00
|
|
|
#[inline(always)]
|
2013-01-23 11:43:58 -08:00
|
|
|
pure fn ge(&self, other: &*const T) -> bool {
|
|
|
|
unsafe {
|
|
|
|
let a: uint = cast::reinterpret_cast(&(*self));
|
|
|
|
let b: uint = cast::reinterpret_cast(&(*other));
|
|
|
|
return a >= b;
|
|
|
|
}
|
2012-11-14 18:59:30 -08:00
|
|
|
}
|
2013-01-13 23:37:30 +09:00
|
|
|
#[inline(always)]
|
2013-01-23 11:43:58 -08:00
|
|
|
pure fn gt(&self, other: &*const T) -> bool {
|
|
|
|
unsafe {
|
|
|
|
let a: uint = cast::reinterpret_cast(&(*self));
|
|
|
|
let b: uint = cast::reinterpret_cast(&(*other));
|
|
|
|
return a > b;
|
|
|
|
}
|
2012-11-14 18:59:30 -08:00
|
|
|
}
|
2012-09-19 18:00:26 -07:00
|
|
|
}
|
2012-08-27 16:26:35 -07:00
|
|
|
|
|
|
|
// Equality for region pointers
|
2012-11-30 00:47:45 -08:00
|
|
|
#[cfg(notest)]
|
2013-02-26 14:34:00 -05:00
|
|
|
impl<T:Eq> Eq for &self/const T {
|
2013-01-13 23:37:30 +09:00
|
|
|
#[inline(always)]
|
2012-11-14 18:59:30 -08:00
|
|
|
pure fn eq(&self, other: & &self/const T) -> bool {
|
|
|
|
return *(*self) == *(*other);
|
|
|
|
}
|
2013-01-13 23:37:30 +09:00
|
|
|
#[inline(always)]
|
2012-11-14 18:59:30 -08:00
|
|
|
pure fn ne(&self, other: & &self/const T) -> bool {
|
|
|
|
return *(*self) != *(*other);
|
|
|
|
}
|
2012-10-19 06:01:01 -07:00
|
|
|
}
|
|
|
|
|
2012-08-27 16:26:35 -07:00
|
|
|
// Comparison for region pointers
|
2012-11-30 00:47:45 -08:00
|
|
|
#[cfg(notest)]
|
2013-02-26 14:34:00 -05:00
|
|
|
impl<T:Ord> Ord for &self/const T {
|
2013-01-13 23:37:30 +09:00
|
|
|
#[inline(always)]
|
2012-11-14 18:59:30 -08:00
|
|
|
pure fn lt(&self, other: & &self/const T) -> bool {
|
|
|
|
*(*self) < *(*other)
|
|
|
|
}
|
2013-01-13 23:37:30 +09:00
|
|
|
#[inline(always)]
|
2012-11-14 18:59:30 -08:00
|
|
|
pure fn le(&self, other: & &self/const T) -> bool {
|
|
|
|
*(*self) <= *(*other)
|
|
|
|
}
|
2013-01-13 23:37:30 +09:00
|
|
|
#[inline(always)]
|
2012-11-14 18:59:30 -08:00
|
|
|
pure fn ge(&self, other: & &self/const T) -> bool {
|
|
|
|
*(*self) >= *(*other)
|
|
|
|
}
|
2013-01-13 23:37:30 +09:00
|
|
|
#[inline(always)]
|
2012-11-14 18:59:30 -08:00
|
|
|
pure fn gt(&self, other: & &self/const T) -> bool {
|
|
|
|
*(*self) > *(*other)
|
|
|
|
}
|
2012-10-19 06:01:01 -07:00
|
|
|
}
|
|
|
|
|
2012-01-17 17:28:21 -08:00
|
|
|
#[test]
|
2012-09-26 17:47:29 -07:00
|
|
|
pub fn test() {
|
2012-06-24 20:18:18 -07:00
|
|
|
unsafe {
|
2012-11-26 20:05:19 -08:00
|
|
|
struct Pair {mut fst: int, mut snd: int};
|
2013-03-02 12:57:05 +09:00
|
|
|
let mut p = Pair {fst: 10, snd: 20};
|
2013-02-14 19:00:04 -05:00
|
|
|
let pptr: *mut Pair = &mut p;
|
2012-09-18 17:34:08 -07:00
|
|
|
let iptr: *mut int = cast::reinterpret_cast(&pptr);
|
2013-03-06 13:58:02 -08:00
|
|
|
fail_unless!((*iptr == 10));;
|
2012-06-24 20:18:18 -07:00
|
|
|
*iptr = 30;
|
2013-03-06 13:58:02 -08:00
|
|
|
fail_unless!((*iptr == 30));
|
|
|
|
fail_unless!((p.fst == 30));;
|
2012-06-24 20:18:18 -07:00
|
|
|
|
2013-03-02 12:57:05 +09:00
|
|
|
*pptr = Pair {fst: 50, snd: 60};
|
2013-03-06 13:58:02 -08:00
|
|
|
fail_unless!((*iptr == 50));
|
|
|
|
fail_unless!((p.fst == 50));
|
|
|
|
fail_unless!((p.snd == 60));
|
2012-06-24 20:18:18 -07:00
|
|
|
|
2012-09-12 10:38:17 -07:00
|
|
|
let mut v0 = ~[32000u16, 32001u16, 32002u16];
|
|
|
|
let mut v1 = ~[0u16, 0u16, 0u16];
|
2012-06-24 20:18:18 -07:00
|
|
|
|
2013-02-28 11:57:33 -05:00
|
|
|
copy_memory(mut_offset(vec::raw::to_mut_ptr(v1), 1u),
|
|
|
|
offset(vec::raw::to_ptr(v0), 1u), 1u);
|
2013-03-06 13:58:02 -08:00
|
|
|
fail_unless!((v1[0] == 0u16 && v1[1] == 32001u16 && v1[2] == 0u16));
|
2013-02-28 11:57:33 -05:00
|
|
|
copy_memory(vec::raw::to_mut_ptr(v1),
|
|
|
|
offset(vec::raw::to_ptr(v0), 2u), 1u);
|
2013-03-06 13:58:02 -08:00
|
|
|
fail_unless!((v1[0] == 32002u16 && v1[1] == 32001u16 && v1[2] == 0u16));
|
2013-02-28 11:57:33 -05:00
|
|
|
copy_memory(mut_offset(vec::raw::to_mut_ptr(v1), 2u),
|
2012-09-12 17:45:23 -07:00
|
|
|
vec::raw::to_ptr(v0), 1u);
|
2013-03-06 13:58:02 -08:00
|
|
|
fail_unless!((v1[0] == 32002u16 && v1[1] == 32001u16 && v1[2] == 32000u16));
|
2012-06-24 20:18:18 -07:00
|
|
|
}
|
2012-04-11 15:46:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2012-09-26 17:47:29 -07:00
|
|
|
pub fn test_position() {
|
2012-09-07 18:08:21 -07:00
|
|
|
use str::as_c_str;
|
|
|
|
use libc::c_char;
|
2012-04-11 15:46:51 -07:00
|
|
|
|
2012-07-13 22:57:48 -07:00
|
|
|
let s = ~"hello";
|
2012-06-24 20:18:18 -07:00
|
|
|
unsafe {
|
2013-03-06 13:58:02 -08:00
|
|
|
fail_unless!(2u == as_c_str(s, |p| position(p, |c| *c == 'l' as c_char)));
|
|
|
|
fail_unless!(4u == as_c_str(s, |p| position(p, |c| *c == 'o' as c_char)));
|
|
|
|
fail_unless!(5u == as_c_str(s, |p| position(p, |c| *c == 0 as c_char)));
|
2012-06-24 20:18:18 -07:00
|
|
|
}
|
2012-04-11 15:46:51 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2012-09-26 17:47:29 -07:00
|
|
|
pub fn test_buf_len() {
|
2012-07-13 22:57:48 -07:00
|
|
|
let s0 = ~"hello";
|
|
|
|
let s1 = ~"there";
|
|
|
|
let s2 = ~"thing";
|
2012-06-30 16:19:07 -07:00
|
|
|
do str::as_c_str(s0) |p0| {
|
|
|
|
do str::as_c_str(s1) |p1| {
|
|
|
|
do str::as_c_str(s2) |p2| {
|
2012-06-29 16:26:56 -07:00
|
|
|
let v = ~[p0, p1, p2, null()];
|
2012-09-13 11:46:10 -07:00
|
|
|
do vec::as_imm_buf(v) |vp, len| {
|
2013-03-06 13:58:02 -08:00
|
|
|
fail_unless!(unsafe { buf_len(vp) } == 3u);
|
|
|
|
fail_unless!(len == 4u);
|
2012-04-11 15:46:51 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-04-15 16:40:47 +09:00
|
|
|
}
|
2012-07-31 17:30:38 -07:00
|
|
|
|
|
|
|
#[test]
|
2012-09-26 17:47:29 -07:00
|
|
|
pub fn test_is_null() {
|
2013-02-28 11:57:33 -05:00
|
|
|
let p: *int = null();
|
2013-03-06 13:58:02 -08:00
|
|
|
fail_unless!(p.is_null());
|
|
|
|
fail_unless!(!p.is_not_null());
|
2012-07-31 17:30:38 -07:00
|
|
|
|
2013-02-28 11:57:33 -05:00
|
|
|
let q = offset(p, 1u);
|
2013-03-06 13:58:02 -08:00
|
|
|
fail_unless!(!q.is_null());
|
|
|
|
fail_unless!(q.is_not_null());
|
2012-11-07 16:24:29 +10:00
|
|
|
|
2013-02-28 11:57:33 -05:00
|
|
|
let mp: *mut int = mut_null();
|
2013-03-06 13:58:02 -08:00
|
|
|
fail_unless!(mp.is_null());
|
|
|
|
fail_unless!(!mp.is_not_null());
|
2012-11-07 16:24:29 +10:00
|
|
|
|
|
|
|
let mq = mp.offset(1u);
|
2013-03-06 13:58:02 -08:00
|
|
|
fail_unless!(!mq.is_null());
|
|
|
|
fail_unless!(mq.is_not_null());
|
2012-08-11 15:42:58 -04:00
|
|
|
}
|