Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor libcore out of libstd #13901

Merged
merged 43 commits into from
May 7, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
836d4b9
mk: Add libcore
alexcrichton May 1, 2014
5b75e44
core: Inherit the intrinsics module
alexcrichton May 1, 2014
dca8a0d
core: Inherit the mem module
alexcrichton May 1, 2014
645b157
core: Inherit the ptr module
alexcrichton May 1, 2014
2862466
core: Inherit the cast module
alexcrichton May 1, 2014
ec8a805
core: Inherit the kinds module
alexcrichton May 1, 2014
ead6e16
core: Inherit the ops module
alexcrichton May 1, 2014
2ad98fb
core: Inherit the ty module
alexcrichton May 1, 2014
d970853
core: Inherit the container module
alexcrichton May 1, 2014
7192452
core: Inherit the char module
alexcrichton May 1, 2014
85a8e6b
core: Inherit the finally module
alexcrichton May 1, 2014
8ed728b
core: Inherit the any module
alexcrichton May 1, 2014
17cb238
core: Inherit the raw module
alexcrichton May 1, 2014
dfd967f
core: Inherit the default module
alexcrichton May 1, 2014
e7eed5f
core: Inherit the unit module
alexcrichton May 1, 2014
54b8199
core: Inherit the clone module
alexcrichton May 1, 2014
1a989d6
core: Bring clone tests up to date in style
alexcrichton May 1, 2014
92095d1
core: Inherit the tuple module
alexcrichton May 1, 2014
6636215
core: Inherit the bool module
alexcrichton May 1, 2014
06fcb6b
core: Inherit the option module
alexcrichton May 1, 2014
b024ba5
core: Inherit the iter module
alexcrichton May 1, 2014
5592a8f
core: Inherit the cmp module
alexcrichton May 1, 2014
c5229e5
core: Inhert ~/@/& cmp traits, remove old modules
alexcrichton May 1, 2014
0c30293
core: Inherit what's possible from the num module
alexcrichton May 1, 2014
be0a117
core: Inherit the specific numeric modules
alexcrichton May 1, 2014
91ede1f
core: Inherit non-allocating slice functionality
alexcrichton May 1, 2014
544d909
core: Inherit necessary unicode functionality
alexcrichton May 1, 2014
9bae6ec
core: Inherit possible string functionality
alexcrichton May 1, 2014
c67ebf1
std: Remove a glob to get std to compile
alexcrichton May 1, 2014
e0d43b0
core: Implement necessary traits for ~[T]/~str
alexcrichton May 1, 2014
c9447c5
core: Allow some #[deriving] in libcore
alexcrichton May 1, 2014
4686cf2
core: Bring char/finally test style up to date
alexcrichton May 1, 2014
e4271ca
core: Add a limited implementation of failure
alexcrichton May 1, 2014
f12b517
core: Remove generics from Option::expect
alexcrichton May 1, 2014
a156534
core: Inherit the result module
alexcrichton May 1, 2014
d4b5d82
core: Add unwrap()/unwrap_err() methods to Result
alexcrichton May 1, 2014
f62c121
core: Inherit the cell module
alexcrichton May 1, 2014
104e285
core: Get coretest working
alexcrichton May 2, 2014
255908a
test: Update with std => core movement
alexcrichton May 2, 2014
4a97441
core: Fix an unsigned negation warning
alexcrichton May 7, 2014
0d8f5fa
core: Move Option::expect to libstd from libcore
alexcrichton May 7, 2014
a289ebe
Register new snapshots
alexcrichton May 7, 2014
07caa22
Test fixes and rebase conflicts
alexcrichton May 7, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions mk/crates.mk
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,13 @@

TARGET_CRATES := libc std green rustuv native flate arena glob term semver \
uuid serialize sync getopts collections num test time rand \
workcache url log regex graphviz
workcache url log regex graphviz core
HOST_CRATES := syntax rustc rustdoc fourcc hexfloat regex_macros
CRATES := $(TARGET_CRATES) $(HOST_CRATES)
TOOLS := compiletest rustdoc rustc

DEPS_std := libc native:rustrt native:compiler-rt native:backtrace
DEPS_core :=
DEPS_std := core libc native:rustrt native:compiler-rt native:backtrace
DEPS_green := std rand native:context_switch
DEPS_rustuv := std native:uv native:uv_support
DEPS_native := std
Expand Down Expand Up @@ -95,6 +96,8 @@ TOOL_SOURCE_compiletest := $(S)src/compiletest/compiletest.rs
TOOL_SOURCE_rustdoc := $(S)src/driver/driver.rs
TOOL_SOURCE_rustc := $(S)src/driver/driver.rs

ONLY_RLIB_core := 1

################################################################################
# You should not need to edit below this line
################################################################################
Expand Down
8 changes: 5 additions & 3 deletions mk/host.mk
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
# $(5) - the name of the crate being processed
define CP_HOST_STAGE_N_CRATE

ifeq ($$(ONLY_RLIB_$(5)),)
$$(HLIB$(2)_H_$(4))/stamp.$(5): \
$$(TLIB$(1)_T_$(3)_H_$(4))/stamp.$(5) \
$$(RUST_DEPS_$(5):%=$$(HLIB$(2)_H_$(4))/stamp.%) \
Expand All @@ -30,6 +31,10 @@ $$(HLIB$(2)_H_$(4))/stamp.$(5): \
$$(HLIB$(2)_H_$(4))
$$(call LIST_ALL_OLD_GLOB_MATCHES,\
$$(dir $$@)$$(call CFG_LIB_GLOB_$(3),$(5)))
else
$$(HLIB$(2)_H_$(4))/stamp.$(5):
$$(Q)touch $$@
endif

endef

Expand All @@ -54,9 +59,6 @@ endef
# $(4) - the host triple (same as $(3))
define CP_HOST_STAGE_N

$$(HBIN$(2)_H_$(4))/:
@mkdir -p $$@

ifneq ($(CFG_LIBDIR_RELATIVE),bin)
$$(HLIB$(2)_H_$(4))/:
@mkdir -p $$@
Expand Down
2 changes: 1 addition & 1 deletion src/doc/rust.md
Original file line number Diff line number Diff line change
Expand Up @@ -3274,7 +3274,7 @@ The machine types are the following:

* The signed two's complement word types `i8`, `i16`, `i32` and `i64`, with
values drawn from the integer intervals [-(2^(7)), 2^7 - 1],
[-(2^(15)), 2^15 - 1], $[-(2^(31)), 2^31 - 1], [-(2^(63)), 2^63 - 1]
[-(2^(15)), 2^15 - 1], [-(2^(31)), 2^31 - 1], [-(2^(63)), 2^63 - 1]
respectively.

* The IEEE 754-2008 `binary32` and `binary64` floating-point types: `f32` and
Expand Down
27 changes: 5 additions & 22 deletions src/libstd/any.rs → src/libcore/any.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
//! the extension traits (`*Ext`) for the full details.

use cast::{transmute, transmute_copy};
use fmt;
use option::{Option, Some, None};
use owned::Box;
use raw::TraitObject;
Expand Down Expand Up @@ -145,28 +144,12 @@ impl AnyOwnExt for Box<Any> {
}
}

///////////////////////////////////////////////////////////////////////////////
// Trait implementations
///////////////////////////////////////////////////////////////////////////////

impl fmt::Show for Box<Any> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.pad("Box<Any>")
}
}

impl<'a> fmt::Show for &'a Any {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.pad("&Any")
}
}

#[cfg(test)]
mod tests {
use prelude::*;
use super::*;
use owned::Box;
use str::StrSlice;
use realstd::str::StrAllocating;

#[deriving(Eq, Show)]
struct Test;
Expand Down Expand Up @@ -291,13 +274,13 @@ mod tests {

#[test]
fn test_show() {
let a = box 8u as Box<Any>;
let b = box Test as Box<Any>;
let a = box 8u as Box<::realcore::any::Any>;
let b = box Test as Box<::realcore::any::Any>;
assert_eq!(format!("{}", a), "Box<Any>".to_owned());
assert_eq!(format!("{}", b), "Box<Any>".to_owned());

let a = &8u as &Any;
let b = &Test as &Any;
let a = &8u as &::realcore::any::Any;
let b = &Test as &::realcore::any::Any;
assert_eq!(format!("{}", a), "&Any".to_owned());
assert_eq!(format!("{}", b), "&Any".to_owned());
}
Expand Down
40 changes: 5 additions & 35 deletions src/libstd/bool.rs → src/libcore/bool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
//!
//! Implementations of the following traits:
//!
//! * `FromStr`
//! * `Not`
//! * `Ord`
//! * `TotalOrd`
Expand All @@ -24,11 +23,9 @@
//!
//! A `to_bit` conversion function.

use from_str::FromStr;
use num::{Int, one, zero};
use option::{None, Option, Some};

#[cfg(not(test))] use cmp::{Eq, Ord, TotalOrd, Ordering};
#[cfg(not(test))] use cmp::{Eq, Ord, TotalOrd, Ordering, TotalEq};
#[cfg(not(test))] use ops::{Not, BitAnd, BitOr, BitXor};
#[cfg(not(test))] use default::Default;

Expand All @@ -55,28 +52,6 @@ pub fn to_bit<N: Int>(p: bool) -> N {
// Trait impls on `bool`
/////////////////////////////////////////////////////////////////////////////

impl FromStr for bool {
/// Parse a `bool` from a string.
///
/// Yields an `Option<bool>`, because `s` may or may not actually be parseable.
///
/// # Examples
///
/// ```rust
/// assert_eq!(from_str::<bool>("true"), Some(true));
/// assert_eq!(from_str::<bool>("false"), Some(false));
/// assert_eq!(from_str::<bool>("not even a boolean"), None);
/// ```
#[inline]
fn from_str(s: &str) -> Option<bool> {
match s {
"true" => Some(true),
"false" => Some(false),
_ => None,
}
}
}

#[cfg(not(test))]
impl Not<bool> for bool {
/// The logical complement of a boolean value.
Expand Down Expand Up @@ -190,16 +165,18 @@ impl Eq for bool {
fn eq(&self, other: &bool) -> bool { (*self) == (*other) }
}

#[cfg(not(test))]
impl TotalEq for bool {}

#[cfg(not(test))]
impl Default for bool {
fn default() -> bool { false }
}

#[cfg(test)]
mod tests {
use prelude::*;
use realstd::prelude::*;
use super::to_bit;
use str::StrSlice;

#[test]
fn test_to_bit() {
Expand Down Expand Up @@ -260,13 +237,6 @@ mod tests {
assert_eq!(!false, true);
}

#[test]
fn test_from_str() {
assert_eq!(from_str::<bool>("true"), Some(true));
assert_eq!(from_str::<bool>("false"), Some(false));
assert_eq!(from_str::<bool>("not even a boolean"), None);
}

#[test]
fn test_to_str() {
assert_eq!(false.to_str(), "false".to_owned());
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/cast.rs → src/libcore/cast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ pub unsafe fn copy_lifetime_vec<'a,S,T>(_ptr: &'a [S], ptr: &T) -> &'a T {
mod tests {
use cast::{bump_box_refcount, transmute};
use raw;
use str::StrSlice;
use realstd::str::StrAllocating;

#[test]
fn test_transmute_copy() {
Expand Down
21 changes: 7 additions & 14 deletions src/libstd/cell.rs → src/libcore/cell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@

use clone::Clone;
use cmp::Eq;
use fmt;
use kinds::{marker, Copy};
use ops::{Deref, DerefMut, Drop};
use option::{None, Option, Some};
Expand Down Expand Up @@ -60,12 +59,6 @@ impl<T:Eq + Copy> Eq for Cell<T> {
}
}

impl<T: Copy + fmt::Show> fmt::Show for Cell<T> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f.buf, r"Cell \{ value: {} \}", self.get())
}
}

/// A mutable memory location with dynamically checked borrow rules
pub struct RefCell<T> {
value: Unsafe<T>,
Expand Down Expand Up @@ -228,22 +221,22 @@ mod test {
#[test]
fn smoketest_cell() {
let x = Cell::new(10);
assert_eq!(x, Cell::new(10));
assert_eq!(x.get(), 10);
assert!(x == Cell::new(10));
assert!(x.get() == 10);
x.set(20);
assert_eq!(x, Cell::new(20));
assert_eq!(x.get(), 20);
assert!(x == Cell::new(20));
assert!(x.get() == 20);

let y = Cell::new((30, 40));
assert_eq!(y, Cell::new((30, 40)));
assert_eq!(y.get(), (30, 40));
assert!(y == Cell::new((30, 40)));
assert!(y.get() == (30, 40));
}

#[test]
fn cell_has_sensible_show() {
use str::StrSlice;

let x = Cell::new("foo bar");
let x = ::realcore::cell::Cell::new("foo bar");
assert!(format!("{}", x).contains(x.get()));

x.set("baz qux");
Expand Down
Loading