2012-07-04 16:53:12 -05:00
|
|
|
//! Unsafe pointer utility functions
|
2012-03-10 02:04:09 -06:00
|
|
|
|
|
|
|
export addr_of;
|
2012-08-02 16:23:04 -05:00
|
|
|
export assimilate;
|
2012-03-10 02:04:09 -06:00
|
|
|
export mut_addr_of;
|
|
|
|
export offset;
|
2012-06-02 21:03:28 -05:00
|
|
|
export const_offset;
|
2012-03-10 02:04:09 -06:00
|
|
|
export mut_offset;
|
|
|
|
export null;
|
2012-04-04 00:32:55 -05:00
|
|
|
export is_null;
|
|
|
|
export is_not_null;
|
2012-03-10 02:04:09 -06:00
|
|
|
export memcpy;
|
|
|
|
export memmove;
|
2012-06-13 18:14:01 -05:00
|
|
|
export memset;
|
2012-08-02 16:23:04 -05:00
|
|
|
export to_uint;
|
2012-08-11 14:42:58 -05:00
|
|
|
export ref_eq;
|
2012-04-15 02:40:47 -05:00
|
|
|
export buf_len;
|
|
|
|
export position;
|
2012-07-11 17:00:40 -05:00
|
|
|
export ptr;
|
2012-03-10 02:04:09 -06:00
|
|
|
|
2012-06-04 19:26:17 -05:00
|
|
|
import 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-03-22 06:30:10 -05:00
|
|
|
fn memcpy(dest: *c_void, src: *c_void, n: libc::size_t) -> *c_void;
|
2012-03-22 07:44:16 -05:00
|
|
|
#[rust_stack]
|
2012-03-22 06:30:10 -05:00
|
|
|
fn memmove(dest: *c_void, src: *c_void, n: libc::size_t) -> *c_void;
|
2012-06-13 18:14:01 -05:00
|
|
|
#[rust_stack]
|
|
|
|
fn memset(dest: *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-06-07 09:18:24 -05:00
|
|
|
pure fn addr_of<T>(val: T) -> *T { unchecked { rusti::addr_of(val) } }
|
2011-12-13 18:25:51 -06:00
|
|
|
|
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-06-24 22:18:18 -05:00
|
|
|
pure fn mut_addr_of<T>(val: T) -> *mut T {
|
|
|
|
unsafe {
|
|
|
|
unsafe::reinterpret_cast(rusti::addr_of(val))
|
|
|
|
}
|
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-06-24 22:18:18 -05:00
|
|
|
fn offset<T>(ptr: *T, count: uint) -> *T {
|
|
|
|
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-06-24 22:18:18 -05:00
|
|
|
fn const_offset<T>(ptr: *const T, count: uint) -> *const T {
|
|
|
|
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-03-26 20:35:18 -05:00
|
|
|
fn mut_offset<T>(ptr: *mut T, count: uint) -> *mut T {
|
|
|
|
(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)]
|
|
|
|
unsafe fn buf_len<T>(buf: **T) -> uint {
|
2012-06-30 18:19:07 -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)]
|
|
|
|
unsafe fn position<T>(buf: *T, f: fn(T) -> bool) -> uint {
|
|
|
|
let mut i = 0u;
|
|
|
|
loop {
|
2012-08-01 19:30:05 -05:00
|
|
|
if f(*offset(buf, i)) { return i; }
|
2012-04-11 17:46:51 -05:00
|
|
|
else { i += 1u; }
|
|
|
|
}
|
|
|
|
}
|
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-06-24 22:18:18 -05:00
|
|
|
pure fn null<T>() -> *T { unsafe { unsafe::reinterpret_cast(0u) } }
|
2012-04-03 23:56:16 -05:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Returns true if the pointer is equal to the null pointer.
|
2012-04-03 23:56:16 -05:00
|
|
|
pure fn is_null<T>(ptr: *const T) -> bool { ptr == null() }
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Returns true if the pointer is not equal to the null pointer.
|
2012-04-03 23:56:16 -05:00
|
|
|
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-02-07 15:21:11 -06:00
|
|
|
unsafe fn memcpy<T>(dst: *T, src: *T, count: uint) {
|
2012-03-22 06:30:10 -05:00
|
|
|
let n = count * sys::size_of::<T>();
|
2012-06-04 19:26:17 -05:00
|
|
|
libc_::memcpy(dst as *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-02-07 15:21:11 -06:00
|
|
|
unsafe fn memmove<T>(dst: *T, src: *T, count: uint) {
|
2012-03-22 06:30:10 -05:00
|
|
|
let n = count * sys::size_of::<T>();
|
2012-06-04 19:26:17 -05:00
|
|
|
libc_::memmove(dst as *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)]
|
|
|
|
unsafe fn memset<T>(dst: *mut T, c: int, count: uint) {
|
|
|
|
let n = count * sys::size_of::<T>();
|
|
|
|
libc_::memset(dst as *c_void, c as libc::c_int, n as size_t);
|
|
|
|
}
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
("assimilate" because it makes the pointer forget its region.)
|
|
|
|
*/
|
|
|
|
#[inline(always)]
|
|
|
|
fn assimilate<T>(thing: &T) -> *T unsafe {
|
|
|
|
unsafe::reinterpret_cast(thing)
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
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)]
|
|
|
|
fn to_uint<T>(thing: &T) -> uint unsafe {
|
|
|
|
unsafe::reinterpret_cast(thing)
|
|
|
|
}
|
|
|
|
|
2012-08-11 14:42:58 -05:00
|
|
|
/// Determine if two borrowed pointers point to the same thing.
|
|
|
|
#[inline(always)]
|
2012-08-14 12:32:41 -05:00
|
|
|
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-07-11 14:45:54 -05:00
|
|
|
trait ptr {
|
|
|
|
pure fn is_null() -> bool;
|
|
|
|
pure fn is_not_null() -> bool;
|
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Extension methods for pointers
|
2012-08-07 20:10:06 -05:00
|
|
|
impl<T> *T: ptr {
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Returns true if the pointer is equal to the null pointer.
|
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-05-02 23:12:16 -05:00
|
|
|
pure fn is_not_null() -> bool { is_not_null(self) }
|
2012-04-15 23:46:29 -05:00
|
|
|
}
|
|
|
|
|
2012-01-17 19:28:21 -06:00
|
|
|
#[test]
|
2012-06-24 22:18:18 -05:00
|
|
|
fn test() {
|
|
|
|
unsafe {
|
|
|
|
type pair = {mut fst: int, mut snd: int};
|
|
|
|
let p = {mut fst: 10, mut snd: 20};
|
|
|
|
let pptr: *mut pair = mut_addr_of(p);
|
|
|
|
let iptr: *mut int = unsafe::reinterpret_cast(pptr);
|
|
|
|
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-06-29 18:26:56 -05:00
|
|
|
let v0 = ~[32000u16, 32001u16, 32002u16];
|
|
|
|
let v1 = ~[0u16, 0u16, 0u16];
|
2012-06-24 22:18:18 -05:00
|
|
|
|
|
|
|
ptr::memcpy(ptr::offset(vec::unsafe::to_ptr(v1), 1u),
|
|
|
|
ptr::offset(vec::unsafe::to_ptr(v0), 1u), 1u);
|
|
|
|
assert (v1[0] == 0u16 && v1[1] == 32001u16 && v1[2] == 0u16);
|
|
|
|
ptr::memcpy(vec::unsafe::to_ptr(v1),
|
|
|
|
ptr::offset(vec::unsafe::to_ptr(v0), 2u), 1u);
|
|
|
|
assert (v1[0] == 32002u16 && v1[1] == 32001u16 && v1[2] == 0u16);
|
|
|
|
ptr::memcpy(ptr::offset(vec::unsafe::to_ptr(v1), 2u),
|
|
|
|
vec::unsafe::to_ptr(v0), 1u);
|
|
|
|
assert (v1[0] == 32002u16 && v1[1] == 32001u16 && v1[2] == 32000u16);
|
|
|
|
}
|
2012-04-11 17:46:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
2012-06-24 22:18:18 -05:00
|
|
|
fn test_position() {
|
2012-04-11 17:46:51 -05:00
|
|
|
import str::as_c_str;
|
|
|
|
import libc::c_char;
|
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
let s = ~"hello";
|
2012-06-24 22:18:18 -05:00
|
|
|
unsafe {
|
2012-06-30 18:19:07 -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-06-24 22:18:18 -05:00
|
|
|
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-07-24 14:35:34 -05:00
|
|
|
do vec::as_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]
|
|
|
|
fn test_is_null() {
|
|
|
|
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
|
|
|
}
|