-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathshow.mbt
244 lines (219 loc) · 5.67 KB
/
show.mbt
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
// Copyright 2025 International Digital Economy Academy
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
///|
pub impl Show for Unit with output(_self, logger) {
logger.write_string("()")
}
///|
pub impl Show for Bool with output(self, logger) {
if self {
logger.write_string("true")
} else {
logger.write_string("false")
}
}
///|
pub impl Show for Int with output(self, logger) {
self.output(logger)
}
///|
pub impl Show for Int64 with output(self, logger) {
self.output(logger)
}
///|
pub impl Show for UInt with output(self, logger) {
self.output(logger)
}
///|
pub impl Show for UInt64 with output(self, logger) {
self.output(logger)
}
///|
pub impl Show for Byte with output(self, logger) {
logger.write_string(self.to_string())
}
///|
pub impl Show for Int16 with output(self, logger) {
logger.write_string(self.to_string())
}
///|
pub impl Show for UInt16 with output(self, logger) {
self.to_int().output(logger)
}
///|
fn to_hex_digit(i : Int) -> Char {
if i < 10 {
Char::from_int(i + '0')
} else {
Char::from_int(i + 'a' - 10)
}
}
///|
test "to_hex_digit" {
inspect!(
Array::make(16, 0).mapi(fn { i, _ => to_hex_digit(i) }),
content="['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f']",
)
}
///|
pub impl Show for Bytes with output(self, logger) {
logger.write_string("b\"")
for b in self {
let byte = b.to_int()
logger
..write_string("\\x")
..write_char(to_hex_digit(byte / 16))
..write_char(to_hex_digit(byte % 16))
|> ignore
}
logger.write_string("\"")
}
///|
pub impl Show for String with output(self, logger) {
logger.write_char('"')
let mut segment_start = 0
fn flush_segment(i : Int) {
if i > segment_start {
logger.write_substring(self, segment_start, i - segment_start)
}
segment_start = i + 1
}
for i in 0..<self.length() {
match self.unsafe_charcode_at(i) {
'"' | '\\' as c => {
flush_segment(i)
logger..write_char('\\').write_char(Char::from_int(c))
}
'\n' => {
flush_segment(i)
logger.write_string("\\n")
}
'\r' => {
flush_segment(i)
logger.write_string("\\r")
}
'\b' => {
flush_segment(i)
logger.write_string("\\b")
}
'\t' => {
flush_segment(i)
logger.write_string("\\t")
}
code =>
if code < 0x20 {
flush_segment(i)
logger
..write_char('\\')
..write_char('x')
..write_char(to_hex_digit(code / 16))
.write_char(to_hex_digit(code % 16))
}
}
}
flush_segment(self.length())
logger.write_char('"')
}
///|
/// This is different from `Show::output`,
/// here it returns the original string without escaping.
/// The rationale is in string interpolation,
/// we want to show the original string, not the escaped one.
/// # Examples
///
/// ```
/// let str = "Hello \n"
/// inspect!(str.to_string(), content="Hello \n")
/// inspect!(str.escape(), content="\"Hello \\n\"")
/// ```
pub impl Show for String with to_string(self) {
self
}
///|
pub impl Show for Failure with output(self, logger) {
let Failure(msg) = self
"Failure(\{msg})".output(logger)
}
///|
/// Returns a valid MoonBit string literal representation of a string,
/// add quotes and escape special characters.
pub fn String::escape(self : String) -> String {
let buf = StringBuilder::new()
Show::output(self, buf)
buf.to_string()
}
///|
pub impl[X : Show] Show for X? with output(self, logger) {
match self {
None => logger.write_string("None")
Some(arg) =>
logger..write_string("Some(")..write_object(arg).write_string(")")
}
}
///|
pub impl[T : Show, E : Show] Show for Result[T, E] with output(self, logger) {
match self {
Ok(x) => logger..write_string("Ok(")..write_object(x).write_string(")")
Err(e) => logger..write_string("Err(")..write_object(e).write_string(")")
}
}
///|
pub impl[X : Show] Show for Ref[X] with output(self, logger) {
logger..write_string("{val: ")..write_object(self.val).write_string("}")
}
///|
pub impl[X : Show] Show for FixedArray[X] with output(self, logger) {
logger.write_iter(self.iter())
}
///|
pub impl[X : Show] Show for Array[X] with output(self, logger) {
logger.write_iter(self.iter())
}
///|
/// Convert Char to String
/// @intrinsic %char.to_string
pub impl Show for Char with to_string(self : Char) -> String {
[self]
}
///|
pub impl Show for Char with output(self, logger) {
fn to_hex_digit(i : Int) -> Char {
if i < 10 {
Char::from_int('0'.to_int() + i)
} else {
Char::from_int('a'.to_int() + (i - 10))
}
}
logger.write_char('\'')
match self {
'\'' | '\\' => logger..write_char('\\').write_char(self)
'\n' => logger.write_string("\\n")
'\r' => logger.write_string("\\r")
'\b' => logger.write_string("\\b")
'\t' => logger.write_string("\\t")
_ => {
let code = self.to_int()
if code < 0x20 {
logger
..write_char('\\')
..write_char('x')
..write_char(to_hex_digit(code / 16))
.write_char(to_hex_digit(code % 16))
} else {
logger.write_char(self)
}
}
}
logger.write_char('\'')
}