about summary refs log tree commit diff
path: root/src/libcore/to_str.rs
blob: b1fb1fdd483c43782610008e214f2f6295a60010 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

/*!

The `ToStr` trait for converting to strings

*/

// NB: transitionary, de-mode-ing.
#[forbid(deprecated_mode)];
#[forbid(deprecated_pattern)];

use kinds::Copy;
use str;
use vec;

pub trait ToStr { pub pure fn to_str() -> ~str; }

impl int: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ::int::str(self) }
}
impl i8: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ::i8::str(self) }
}
impl i16: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ::i16::str(self) }
}
impl i32: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ::i32::str(self) }
}
impl i64: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ::i64::str(self) }
}
impl uint: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ::uint::str(self) }
}
impl u8: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ::u8::str(self) }
}
impl u16: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ::u16::str(self) }
}
impl u32: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ::u32::str(self) }
}
impl u64: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ::u64::str(self) }
}
impl float: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ::float::to_str(self, 4u) }
}
impl f32: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ::float::to_str(self as float, 4u) }
}
impl f64: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ::float::to_str(self as float, 4u) }
}
impl bool: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ::bool::to_str(self) }
}
impl (): ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ~"()" }
}
impl ~str: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { copy self }
}
impl &str: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ::str::from_slice(self) }
}
impl @str: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ::str::from_slice(self) }
}

impl<A: ToStr Copy, B: ToStr Copy> (A, B): ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str {
        let (a, b) = self;
        ~"(" + a.to_str() + ~", " + b.to_str() + ~")"
    }
}
impl<A: ToStr Copy, B: ToStr Copy, C: ToStr Copy> (A, B, C): ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str {
        let (a, b, c) = self;
        ~"(" + a.to_str() + ~", " + b.to_str() + ~", " + c.to_str() + ~")"
    }
}

impl<A: ToStr> ~[A]: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str {
        unsafe {
            // Bleh -- not really unsafe
            // push_str and push_char
            let mut acc = ~"[", first = true;
            for vec::each(self) |elt| {
                unsafe {
                    if first { first = false; }
                    else { str::push_str(&mut acc, ~", "); }
                    str::push_str(&mut acc, elt.to_str());
                }
            }
            str::push_char(&mut acc, ']');
            move acc
        }
    }
}

impl<A: ToStr> @A: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ~"@" + (*self).to_str() }
}
impl<A: ToStr> ~A: ToStr {
    #[inline(always)]
    pure fn to_str() -> ~str { ~"~" + (*self).to_str() }
}

#[cfg(test)]
#[allow(non_implicitly_copyable_typarams)]
mod tests {
    #[test]
    fn test_simple_types() {
        assert 1i.to_str() == ~"1";
        assert (-1i).to_str() == ~"-1";
        assert 200u.to_str() == ~"200";
        assert 2u8.to_str() == ~"2";
        assert true.to_str() == ~"true";
        assert false.to_str() == ~"false";
        assert ().to_str() == ~"()";
        assert (~"hi").to_str() == ~"hi";
        assert (@"hi").to_str() == ~"hi";
    }

    #[test]
    fn test_tuple_types() {
        assert (1, 2).to_str() == ~"(1, 2)";
        assert (~"a", ~"b", false).to_str() == ~"(a, b, false)";
        assert ((), ((), 100)).to_str() == ~"((), ((), 100))";
    }

    #[test]
    #[ignore]
    fn test_vectors() {
        let x: ~[int] = ~[];
        assert x.to_str() == ~"~[]";
        assert (~[1]).to_str() == ~"~[1]";
        assert (~[1, 2, 3]).to_str() == ~"~[1, 2, 3]";
        assert (~[~[], ~[1], ~[1, 1]]).to_str() ==
               ~"~[~[], ~[1], ~[1, 1]]";
    }

    #[test]
    fn test_pointer_types() {
        assert (@1).to_str() == ~"@1";
        assert (~(true, false)).to_str() == ~"~(true, false)";
    }
}