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