Skip to content

Commit b545a49

Browse files
committed
auto merge of #14115 : alexcrichton/rust/core-fmt, r=brson
This was a more difficult change than I thought it would be, and it is unfortunately a breaking change rather than a drop-in replacement. Most of the rationale can be found in the third commit. cc #13851
2 parents 84406d4 + 2e2160b commit b545a49

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+3237
-2959
lines changed

src/compiletest/common.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ impl FromStr for Mode {
4141
impl fmt::Show for Mode {
4242
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
4343
let msg = match *self {
44-
CompileFail => "compile-fail",
45-
RunFail => "run-fail",
46-
RunPass => "run-pass",
47-
Pretty => "pretty",
48-
DebugInfoGdb => "debuginfo-gdb",
49-
DebugInfoLldb => "debuginfo-lldb",
50-
Codegen => "codegen",
44+
CompileFail => "compile-fail",
45+
RunFail => "run-fail",
46+
RunPass => "run-pass",
47+
Pretty => "pretty",
48+
DebugInfoGdb => "debuginfo-gdb",
49+
DebugInfoLldb => "debuginfo-lldb",
50+
Codegen => "codegen",
5151
};
52-
write!(f.buf, "{}", msg)
52+
msg.fmt(f)
5353
}
5454
}
5555

src/libcollections/btree.rs

+7-7
Original file line numberDiff line numberDiff line change
@@ -425,8 +425,8 @@ impl<K: fmt::Show + TotalOrd, V: fmt::Show> fmt::Show for Leaf<K, V> {
425425
///Returns a string representation of a Leaf.
426426
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
427427
for (i, s) in self.elts.iter().enumerate() {
428-
if i != 0 { try!(write!(f.buf, " // ")) }
429-
try!(write!(f.buf, "{}", *s))
428+
if i != 0 { try!(write!(f, " // ")) }
429+
try!(write!(f, "{}", *s))
430430
}
431431
Ok(())
432432
}
@@ -654,10 +654,10 @@ impl<K: fmt::Show + TotalOrd, V: fmt::Show> fmt::Show for Branch<K, V> {
654654
///Returns a string representation of a Branch.
655655
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
656656
for (i, s) in self.elts.iter().enumerate() {
657-
if i != 0 { try!(write!(f.buf, " // ")) }
658-
try!(write!(f.buf, "{}", *s))
657+
if i != 0 { try!(write!(f, " // ")) }
658+
try!(write!(f, "{}", *s))
659659
}
660-
write!(f.buf, " // rightmost child: ({}) ", *self.rightmost_child)
660+
write!(f, " // rightmost child: ({}) ", *self.rightmost_child)
661661
}
662662
}
663663

@@ -715,7 +715,7 @@ impl<K: TotalOrd, V: TotalEq> TotalOrd for LeafElt<K, V> {
715715
impl<K: fmt::Show + TotalOrd, V: fmt::Show> fmt::Show for LeafElt<K, V> {
716716
///Returns a string representation of a LeafElt.
717717
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
718-
write!(f.buf, "Key: {}, value: {};", self.key, self.value)
718+
write!(f, "Key: {}, value: {};", self.key, self.value)
719719
}
720720
}
721721

@@ -765,7 +765,7 @@ impl<K: fmt::Show + TotalOrd, V: fmt::Show> fmt::Show for BranchElt<K, V> {
765765
/// Returns string containing key, value, and child (which should recur to a
766766
/// leaf) Consider changing in future to be more readable.
767767
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
768-
write!(f.buf, "Key: {}, value: {}, (child: {})",
768+
write!(f, "Key: {}, value: {}, (child: {})",
769769
self.key, self.value, *self.left)
770770
}
771771
}

src/libcollections/hashmap.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -1418,14 +1418,14 @@ impl<K: TotalEq + Hash<S>, V: Eq, S, H: Hasher<S>> Eq for HashMap<K, V, H> {
14181418

14191419
impl<K: TotalEq + Hash<S> + Show, V: Show, S, H: Hasher<S>> Show for HashMap<K, V, H> {
14201420
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1421-
try!(write!(f.buf, r"\{"));
1421+
try!(write!(f, r"\{"));
14221422

14231423
for (i, (k, v)) in self.iter().enumerate() {
1424-
if i != 0 { try!(write!(f.buf, ", ")); }
1425-
try!(write!(f.buf, "{}: {}", *k, *v));
1424+
if i != 0 { try!(write!(f, ", ")); }
1425+
try!(write!(f, "{}: {}", *k, *v));
14261426
}
14271427

1428-
write!(f.buf, r"\}")
1428+
write!(f, r"\}")
14291429
}
14301430
}
14311431

@@ -1605,14 +1605,14 @@ impl<T: TotalEq + Hash<S>, S, H: Hasher<S>> HashSet<T, H> {
16051605

16061606
impl<T: TotalEq + Hash<S> + fmt::Show, S, H: Hasher<S>> fmt::Show for HashSet<T, H> {
16071607
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
1608-
try!(write!(f.buf, r"\{"));
1608+
try!(write!(f, r"\{"));
16091609

16101610
for (i, x) in self.iter().enumerate() {
1611-
if i != 0 { try!(write!(f.buf, ", ")); }
1612-
try!(write!(f.buf, "{}", *x));
1611+
if i != 0 { try!(write!(f, ", ")); }
1612+
try!(write!(f, "{}", *x));
16131613
}
16141614

1615-
write!(f.buf, r"\}")
1615+
write!(f, r"\}")
16161616
}
16171617
}
16181618

src/libcollections/lru_cache.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -205,20 +205,20 @@ impl<A: fmt::Show + Hash + TotalEq, B: fmt::Show> fmt::Show for LruCache<A, B> {
205205
/// Return a string that lists the key-value pairs from most-recently
206206
/// used to least-recently used.
207207
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
208-
try!(write!(f.buf, r"\{"));
208+
try!(write!(f, r"\{"));
209209
let mut cur = self.head;
210210
for i in range(0, self.len()) {
211-
if i > 0 { try!(write!(f.buf, ", ")) }
211+
if i > 0 { try!(write!(f, ", ")) }
212212
unsafe {
213213
cur = (*cur).next;
214-
try!(write!(f.buf, "{}", (*cur).key));
214+
try!(write!(f, "{}", (*cur).key));
215215
}
216-
try!(write!(f.buf, ": "));
216+
try!(write!(f, ": "));
217217
unsafe {
218-
try!(write!(f.buf, "{}", (*cur).value));
218+
try!(write!(f, "{}", (*cur).value));
219219
}
220220
}
221-
write!(f.buf, r"\}")
221+
write!(f, r"\}")
222222
}
223223
}
224224

src/libcore/any.rs

+18-17
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,12 @@ mod tests {
166166

167167
match a.as_ref::<uint>() {
168168
Some(&5) => {}
169-
x => fail!("Unexpected value {:?}", x)
169+
x => fail!("Unexpected value {}", x)
170170
}
171171

172172
match a.as_ref::<Test>() {
173173
None => {}
174-
x => fail!("Unexpected value {:?}", x)
174+
x => fail!("Unexpected value {}", x)
175175
}
176176
}
177177

@@ -189,35 +189,35 @@ mod tests {
189189
assert_eq!(*x, 5u);
190190
*x = 612;
191191
}
192-
x => fail!("Unexpected value {:?}", x)
192+
x => fail!("Unexpected value {}", x)
193193
}
194194

195195
match b_r.as_mut::<uint>() {
196196
Some(x) => {
197197
assert_eq!(*x, 7u);
198198
*x = 413;
199199
}
200-
x => fail!("Unexpected value {:?}", x)
200+
x => fail!("Unexpected value {}", x)
201201
}
202202

203203
match a_r.as_mut::<Test>() {
204204
None => (),
205-
x => fail!("Unexpected value {:?}", x)
205+
x => fail!("Unexpected value {}", x)
206206
}
207207

208208
match b_r.as_mut::<Test>() {
209209
None => (),
210-
x => fail!("Unexpected value {:?}", x)
210+
x => fail!("Unexpected value {}", x)
211211
}
212212

213213
match a_r.as_mut::<uint>() {
214214
Some(&612) => {}
215-
x => fail!("Unexpected value {:?}", x)
215+
x => fail!("Unexpected value {}", x)
216216
}
217217

218218
match b_r.as_mut::<uint>() {
219219
Some(&413) => {}
220-
x => fail!("Unexpected value {:?}", x)
220+
x => fail!("Unexpected value {}", x)
221221
}
222222
}
223223

@@ -229,11 +229,11 @@ mod tests {
229229
let b = box Test as Box<Any>;
230230

231231
match a.move::<uint>() {
232-
Ok(a) => { assert_eq!(a, box 8u); }
232+
Ok(a) => { assert!(a == box 8u); }
233233
Err(..) => fail!()
234234
}
235235
match b.move::<Test>() {
236-
Ok(a) => { assert_eq!(a, box Test); }
236+
Ok(a) => { assert!(a == box Test); }
237237
Err(..) => fail!()
238238
}
239239

@@ -246,13 +246,14 @@ mod tests {
246246

247247
#[test]
248248
fn test_show() {
249-
let a = box 8u as Box<::realcore::any::Any>;
250-
let b = box Test as Box<::realcore::any::Any>;
251-
assert_eq!(format!("{}", a), "Box<Any>".to_owned());
252-
assert_eq!(format!("{}", b), "Box<Any>".to_owned());
253-
254-
let a = &8u as &::realcore::any::Any;
255-
let b = &Test as &::realcore::any::Any;
249+
use realstd::to_str::ToStr;
250+
let a = box 8u as Box<::realstd::any::Any>;
251+
let b = box Test as Box<::realstd::any::Any>;
252+
assert_eq!(a.to_str(), "Box<Any>".to_owned());
253+
assert_eq!(b.to_str(), "Box<Any>".to_owned());
254+
255+
let a = &8u as &Any;
256+
let b = &Test as &Any;
256257
assert_eq!(format!("{}", a), "&Any".to_owned());
257258
assert_eq!(format!("{}", b), "&Any".to_owned());
258259
}

src/libcore/cell.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ mod test {
255255
fn cell_has_sensible_show() {
256256
use str::StrSlice;
257257

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

261261
x.set("baz qux");

src/libcore/char.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -633,9 +633,9 @@ impl Default for char {
633633
mod test {
634634
use super::{escape_unicode, escape_default};
635635

636-
use realcore::char::Char;
636+
use char::Char;
637637
use slice::ImmutableVector;
638-
use realstd::option::{Some, None};
638+
use option::{Some, None};
639639
use realstd::strbuf::StrBuf;
640640
use realstd::str::StrAllocating;
641641

src/libcore/clone.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ mod test {
131131
fn test_owned_clone() {
132132
let a = box 5i;
133133
let b: Box<int> = realclone(&a);
134-
assert_eq!(a, b);
134+
assert!(a == b);
135135
}
136136

137137
#[test]

src/libcore/cmp.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ pub trait TotalEq: Eq {
8282
}
8383

8484
/// An ordering is, e.g, a result of a comparison between two values.
85-
#[deriving(Clone, Eq)]
85+
#[deriving(Clone, Eq, Show)]
8686
pub enum Ordering {
8787
/// An ordering where a compared value is less [than another].
8888
Less = -1,

src/libcore/failure.rs

+32-18
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,28 @@
99
// except according to those terms.
1010

1111
//! Failure support for libcore
12+
//!
13+
//! The core library cannot define failure, but it does *declare* failure. This
14+
//! means that the functions inside of libcore are allowed to fail, but to be
15+
//! useful an upstream crate must define failure for libcore to use. The current
16+
//! interface for failure is:
17+
//!
18+
//! fn begin_unwind(fmt: &fmt::Arguments, file: &str, line: uint) -> !;
19+
//!
20+
//! This definition allows for failing with any general message, but it does not
21+
//! allow for failing with a `~Any` value. The reason for this is that libcore
22+
//! is not allowed to allocate.
23+
//!
24+
//! This module contains a few other failure functions, but these are just the
25+
//! necessary lang items for the compiler. All failure is funneled through this
26+
//! one function. Currently, the actual symbol is declared in the standard
27+
//! library, but the location of this may change over time.
1228
1329
#![allow(dead_code, missing_doc)]
1430

1531
#[cfg(not(test))]
1632
use str::raw::c_str_to_static_slice;
17-
18-
// FIXME: Once std::fmt is in libcore, all of these functions should delegate
19-
// to a common failure function with this signature:
20-
//
21-
// extern {
22-
// fn rust_unwind(f: &fmt::Arguments, file: &str, line: uint) -> !;
23-
// }
24-
//
25-
// Each of these functions can create a temporary fmt::Arguments
26-
// structure to pass to this function.
33+
use fmt;
2734

2835
#[cold] #[inline(never)] // this is the slow path, always
2936
#[lang="fail_"]
@@ -32,24 +39,31 @@ fn fail_(expr: *u8, file: *u8, line: uint) -> ! {
3239
unsafe {
3340
let expr = c_str_to_static_slice(expr as *i8);
3441
let file = c_str_to_static_slice(file as *i8);
35-
begin_unwind(expr, file, line)
42+
format_args!(|args| -> () {
43+
begin_unwind(args, file, line);
44+
}, "{}", expr);
45+
46+
loop {}
3647
}
3748
}
3849

3950
#[cold]
4051
#[lang="fail_bounds_check"]
4152
#[cfg(not(test))]
4253
fn fail_bounds_check(file: *u8, line: uint, index: uint, len: uint) -> ! {
43-
#[allow(ctypes)]
44-
extern { fn rust_fail_bounds_check(file: *u8, line: uint,
45-
index: uint, len: uint,) -> !; }
46-
unsafe { rust_fail_bounds_check(file, line, index, len) }
54+
let file = unsafe { c_str_to_static_slice(file as *i8) };
55+
format_args!(|args| -> () {
56+
begin_unwind(args, file, line);
57+
}, "index out of bounds: the len is {} but the index is {}", len, index);
58+
loop {}
4759
}
4860

4961
#[cold]
50-
pub fn begin_unwind(msg: &str, file: &'static str, line: uint) -> ! {
62+
pub fn begin_unwind(fmt: &fmt::Arguments, file: &'static str, line: uint) -> ! {
63+
// FIXME: this should be a proper lang item, it should not just be some
64+
// undefined symbol sitting in the middle of nowhere.
5165
#[allow(ctypes)]
52-
extern { fn rust_begin_unwind(msg: &str, file: &'static str,
66+
extern { fn rust_begin_unwind(fmt: &fmt::Arguments, file: &'static str,
5367
line: uint) -> !; }
54-
unsafe { rust_begin_unwind(msg, file, line) }
68+
unsafe { rust_begin_unwind(fmt, file, line) }
5569
}

0 commit comments

Comments
 (0)