core: rename box to managed. Close #4079.
This commit is contained in:
parent
2a5713ed5c
commit
94be145169
@ -19,12 +19,12 @@ used features.
|
||||
|
||||
`core` includes modules corresponding to each of the integer types, each of
|
||||
the floating point types, the `bool` type, tuples, characters, strings,
|
||||
vectors (`vec`), shared boxes (`box`), and unsafe and borrowed pointers
|
||||
(`ptr`). Additionally, `core` provides task management and creation (`task`),
|
||||
communication primitives (`comm` and `pipes`), an efficient vector builder
|
||||
(`dvec`), platform abstractions (`os` and `path`), basic I/O abstractions
|
||||
(`io`), common traits (`cmp`, `num`, `to_str`), and complete bindings
|
||||
to the C standard library (`libc`).
|
||||
vectors (`vec`), managed boxes (`managed`), owned boxes (`owned`), and unsafe
|
||||
and borrowed pointers (`ptr`). Additionally, `core` provides task management
|
||||
and creation (`task`), communication primitives (`comm` and `pipes`), an
|
||||
efficient vector builder (`dvec`), platform abstractions (`os` and `path`),
|
||||
basic I/O abstractions (`io`), common traits (`cmp`, `num`, `to_str`), and
|
||||
complete bindings to the C standard library (`libc`).
|
||||
|
||||
`core` is linked to all crates by default and its contents imported.
|
||||
Implicitly, all crates behave as if they included the following prologue:
|
||||
@ -92,7 +92,7 @@ pub mod at_vec;
|
||||
pub mod str;
|
||||
|
||||
pub mod ptr;
|
||||
pub mod box; // FIXME #4079 Rename to 'managed' to match 'owned'
|
||||
pub mod managed;
|
||||
pub mod owned;
|
||||
|
||||
|
||||
|
@ -43,7 +43,7 @@ pub enum DList<T> {
|
||||
pure fn assert_links() {
|
||||
match self.next {
|
||||
Some(neighbour) => match neighbour.prev {
|
||||
Some(me) => if !box::ptr_eq(*self, *me) {
|
||||
Some(me) => if !managed::ptr_eq(*self, *me) {
|
||||
fail ~"Asymmetric next-link in dlist node."
|
||||
},
|
||||
None => fail ~"One-way next-link in dlist node."
|
||||
@ -52,7 +52,7 @@ pub enum DList<T> {
|
||||
}
|
||||
match self.prev {
|
||||
Some(neighbour) => match neighbour.next {
|
||||
Some(me) => if !box::ptr_eq(*me, *self) {
|
||||
Some(me) => if !managed::ptr_eq(*me, *self) {
|
||||
fail ~"Asymmetric prev-link in dlist node."
|
||||
},
|
||||
None => fail ~"One-way prev-link in dlist node."
|
||||
@ -137,9 +137,11 @@ fn concat<T>(lists: DList<DList<T>>) -> DList<T> {
|
||||
}
|
||||
if !nobe.linked { fail ~"That node isn't linked to any dlist." }
|
||||
if !((nobe.prev.is_some()
|
||||
|| box::ptr_eq(*self.hd.expect(~"headless dlist?"), *nobe)) &&
|
||||
|| managed::ptr_eq(*self.hd.expect(~"headless dlist?"),
|
||||
*nobe)) &&
|
||||
(nobe.next.is_some()
|
||||
|| box::ptr_eq(*self.tl.expect(~"tailless dlist?"), *nobe))) {
|
||||
|| managed::ptr_eq(*self.tl.expect(~"tailless dlist?"),
|
||||
*nobe))) {
|
||||
fail ~"That node isn't on this dlist."
|
||||
}
|
||||
}
|
||||
@ -322,7 +324,7 @@ fn pop_tail_n() -> Option<DListNode<T>> {
|
||||
* to the other list's head. O(1).
|
||||
*/
|
||||
fn append(them: DList<T>) {
|
||||
if box::ptr_eq(*self, *them) {
|
||||
if managed::ptr_eq(*self, *them) {
|
||||
fail ~"Cannot append a dlist to itself!"
|
||||
}
|
||||
if them.len() > 0 {
|
||||
@ -339,7 +341,7 @@ fn append(them: DList<T>) {
|
||||
* list's tail to this list's head. O(1).
|
||||
*/
|
||||
fn prepend(them: DList<T>) {
|
||||
if box::ptr_eq(*self, *them) {
|
||||
if managed::ptr_eq(*self, *them) {
|
||||
fail ~"Cannot prepend a dlist to itself!"
|
||||
}
|
||||
if them.len() > 0 {
|
||||
@ -405,7 +407,7 @@ fn assert_consistent() {
|
||||
rabbit = option::get(rabbit).next;
|
||||
}
|
||||
if option::is_some(&rabbit) {
|
||||
assert !box::ptr_eq(*option::get(rabbit), *nobe);
|
||||
assert !managed::ptr_eq(*option::get(rabbit), *nobe);
|
||||
}
|
||||
// advance
|
||||
link = nobe.next_link();
|
||||
@ -426,7 +428,7 @@ fn assert_consistent() {
|
||||
rabbit = option::get(rabbit).prev;
|
||||
}
|
||||
if option::is_some(&rabbit) {
|
||||
assert !box::ptr_eq(*option::get(rabbit), *nobe);
|
||||
assert !managed::ptr_eq(*option::get(rabbit), *nobe);
|
||||
}
|
||||
// advance
|
||||
link = nobe.prev_link();
|
||||
|
@ -31,10 +31,10 @@ mod inst {
|
||||
}
|
||||
if !nobe.linked ||
|
||||
(!((nobe.prev.is_some()
|
||||
|| box::ptr_eq(*self.hd.expect(~"headless dlist?"),
|
||||
|| managed::ptr_eq(*self.hd.expect(~"headless dlist?"),
|
||||
*nobe))
|
||||
&& (nobe.next.is_some()
|
||||
|| box::ptr_eq(*self.tl.expect(~"tailless dlist?"),
|
||||
|| managed::ptr_eq(*self.tl.expect(~"tailless dlist?"),
|
||||
*nobe)))) {
|
||||
fail ~"Removing a dlist node during iteration is forbidden!"
|
||||
}
|
||||
|
@ -27,8 +27,8 @@
|
||||
use reflect::{MovePtr, MovePtrAdaptor};
|
||||
use vec::UnboxedVecRepr;
|
||||
use vec::raw::{VecRepr, SliceRepr};
|
||||
pub use box::raw::BoxRepr;
|
||||
use box::raw::BoxHeaderRepr;
|
||||
pub use managed::raw::BoxRepr;
|
||||
use managed::raw::BoxHeaderRepr;
|
||||
|
||||
/// Helpers
|
||||
|
||||
@ -279,7 +279,7 @@ fn visit_estr_fixed(_n: uint, _sz: uint,
|
||||
fn visit_box(mtbl: uint, inner: *TyDesc) -> bool {
|
||||
self.writer.write_char('@');
|
||||
self.write_mut_qualifier(mtbl);
|
||||
do self.get::<&box::raw::BoxRepr> |b| {
|
||||
do self.get::<&managed::raw::BoxRepr> |b| {
|
||||
let p = ptr::to_unsafe_ptr(&b.data) as *c_void;
|
||||
self.visit_ptr_inner(p, inner);
|
||||
}
|
||||
@ -288,7 +288,7 @@ fn visit_box(mtbl: uint, inner: *TyDesc) -> bool {
|
||||
fn visit_uniq(mtbl: uint, inner: *TyDesc) -> bool {
|
||||
self.writer.write_char('~');
|
||||
self.write_mut_qualifier(mtbl);
|
||||
do self.get::<&box::raw::BoxRepr> |b| {
|
||||
do self.get::<&managed::raw::BoxRepr> |b| {
|
||||
let p = ptr::to_unsafe_ptr(&b.data) as *c_void;
|
||||
self.visit_ptr_inner(p, inner);
|
||||
}
|
||||
@ -446,7 +446,7 @@ fn visit_type() -> bool { true }
|
||||
|
||||
fn visit_opaque_box() -> bool {
|
||||
self.writer.write_char('@');
|
||||
do self.get::<&box::raw::BoxRepr> |b| {
|
||||
do self.get::<&managed::raw::BoxRepr> |b| {
|
||||
let p = ptr::to_unsafe_ptr(&b.data) as *c_void;
|
||||
self.visit_ptr_inner(p, b.header.type_desc);
|
||||
}
|
||||
|
@ -1763,7 +1763,7 @@ mod raw {
|
||||
|
||||
/// The internal representation of a (boxed) vector
|
||||
pub struct VecRepr {
|
||||
box_header: box::raw::BoxHeaderRepr,
|
||||
box_header: managed::raw::BoxHeaderRepr,
|
||||
unboxed: UnboxedVecRepr
|
||||
}
|
||||
|
||||
|
@ -63,7 +63,7 @@
|
||||
use syntax::visit::{visit_foreign_item, visit_item, visit_method_helper};
|
||||
use syntax::visit::{visit_mod, visit_ty, vt};
|
||||
|
||||
use box::ptr_eq;
|
||||
use managed::ptr_eq;
|
||||
use dvec::DVec;
|
||||
use option::{Some, get, is_some, is_none};
|
||||
use str::{connect, split_str};
|
||||
|
@ -476,7 +476,7 @@ fn select(cx: ext_ctxt, m: matchable, pat: @expr) ->
|
||||
match_result {
|
||||
return match m {
|
||||
match_expr(e) => {
|
||||
if box::ptr_eq(e, pat) {
|
||||
if managed::ptr_eq(e, pat) {
|
||||
// XXX: Is this right?
|
||||
Some(leaf(match_exact))
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user