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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
use crate::{impl_wrapper_common, require, ConversionError, RawVal, Tag};
use core::{
cmp::Ordering,
fmt::Debug,
hash::{Hash, Hasher},
str,
};
#[derive(Debug)]
pub enum SymbolError {
TooLong(usize),
BadChar(char),
}
impl core::fmt::Display for SymbolError {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
SymbolError::TooLong(len) => f.write_fmt(format_args!(
"symbol too long: length {}, max {}",
len, MAX_CHARS
)),
SymbolError::BadChar(char) => f.write_fmt(format_args!(
"symbol bad char: encountered {}, supported range [a-zA-Z0-9_]",
char
)),
}
}
}
impl From<SymbolError> for ConversionError {
fn from(_: SymbolError) -> Self {
ConversionError
}
}
extern crate static_assertions as sa;
use super::raw_val::BODY_BITS;
const MAX_CHARS: usize = 10;
const CODE_BITS: usize = 6;
const CODE_MASK: u64 = (1u64 << CODE_BITS) - 1;
sa::const_assert!(CODE_MASK == 0x3f);
sa::const_assert!(CODE_BITS * MAX_CHARS == BODY_BITS);
#[derive(Copy, Clone)]
pub struct Symbol(RawVal);
impl_wrapper_common!(Symbol);
impl Hash for Symbol {
fn hash<H: Hasher>(&self, state: &mut H) {
self.as_raw().get_payload().hash(state);
}
}
impl PartialEq for Symbol {
fn eq(&self, other: &Self) -> bool {
self.as_raw().get_payload() == other.as_raw().get_payload()
}
}
impl Eq for Symbol {}
impl PartialOrd for Symbol {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
Some(self.cmp(other))
}
}
impl Ord for Symbol {
fn cmp(&self, other: &Self) -> Ordering {
Iterator::cmp(self.into_iter(), other.into_iter())
}
}
impl Debug for Symbol {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
let s: SymbolStr = self.into();
write!(f, "Symbol(")?;
for c in s.0.iter() {
if *c == 0 {
break;
}
write!(f, "{}", unsafe { char::from_u32_unchecked(*c as u32) })?;
}
write!(f, ")")
}
}
impl TryFrom<&[u8]> for Symbol {
type Error = SymbolError;
fn try_from(b: &[u8]) -> Result<Symbol, SymbolError> {
Self::try_from_bytes(b)
}
}
#[cfg(feature = "std")]
use stellar_xdr::StringM;
#[cfg(feature = "std")]
impl<const N: u32> TryFrom<StringM<N>> for Symbol {
type Error = SymbolError;
fn try_from(v: StringM<N>) -> Result<Self, Self::Error> {
v.as_slice().try_into()
}
}
#[cfg(feature = "std")]
impl<const N: u32> TryFrom<&StringM<N>> for Symbol {
type Error = SymbolError;
fn try_from(v: &StringM<N>) -> Result<Self, Self::Error> {
v.as_slice().try_into()
}
}
impl Symbol {
pub const fn try_from_bytes(b: &[u8]) -> Result<Symbol, SymbolError> {
let mut n = 0;
let mut accum: u64 = 0;
while n < b.len() {
let ch = b[n] as char;
if n >= MAX_CHARS {
return Err(SymbolError::TooLong(b.len()));
}
n += 1;
accum <<= CODE_BITS;
let v = match ch {
'_' => 1,
'0'..='9' => 2 + ((ch as u64) - ('0' as u64)),
'A'..='Z' => 12 + ((ch as u64) - ('A' as u64)),
'a'..='z' => 38 + ((ch as u64) - ('a' as u64)),
_ => return Err(SymbolError::BadChar(ch)),
};
accum |= v;
}
Ok(unsafe { Self::from_body(accum) })
}
pub const fn try_from_str(s: &str) -> Result<Symbol, SymbolError> {
Self::try_from_bytes(s.as_bytes())
}
pub const fn from_str(s: &str) -> Symbol {
match Self::try_from_str(s) {
Ok(sym) => sym,
Err(SymbolError::TooLong(_)) => panic!("symbol too long"),
Err(SymbolError::BadChar(_)) => panic!("symbol bad char"),
}
}
pub fn to_str(&self) -> SymbolStr {
let mut chars = [b'\x00'; MAX_CHARS];
for (i, ch) in self.into_iter().enumerate() {
chars[i] = ch as u8;
}
SymbolStr(chars)
}
}
#[derive(Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct SymbolStr([u8; MAX_CHARS]);
impl SymbolStr {
pub fn is_empty(&self) -> bool {
self.0[0] == 0
}
pub fn len(&self) -> usize {
let s: &[u8] = &self.0;
for (i, x) in s.iter().enumerate() {
if *x == 0 {
return i;
}
}
s.len()
}
}
impl Debug for SymbolStr {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
let s: &str = self.as_ref();
f.debug_tuple("SymbolStr").field(&s).finish()
}
}
impl AsRef<[u8]> for SymbolStr {
fn as_ref(&self) -> &[u8] {
let s: &[u8] = &self.0;
&s[..self.len()]
}
}
impl AsRef<str> for SymbolStr {
fn as_ref(&self) -> &str {
let s: &[u8] = self.as_ref();
unsafe { str::from_utf8_unchecked(s) }
}
}
impl From<&Symbol> for SymbolStr {
fn from(s: &Symbol) -> Self {
s.to_str()
}
}
impl From<Symbol> for SymbolStr {
fn from(s: Symbol) -> Self {
(&s).into()
}
}
impl From<&str> for SymbolStr {
fn from(s: &str) -> Self {
s.into()
}
}
#[cfg(feature = "std")]
use std::string::{String, ToString};
#[cfg(feature = "std")]
impl From<Symbol> for String {
fn from(s: Symbol) -> Self {
s.to_string()
}
}
#[cfg(feature = "std")]
impl From<SymbolStr> for String {
fn from(s: SymbolStr) -> Self {
s.to_string()
}
}
#[cfg(feature = "std")]
impl ToString for Symbol {
fn to_string(&self) -> String {
self.into_iter().collect()
}
}
#[cfg(feature = "std")]
impl ToString for SymbolStr {
fn to_string(&self) -> String {
let s: &str = self.as_ref();
s.to_string()
}
}
impl IntoIterator for Symbol {
type Item = char;
type IntoIter = SymbolIter;
fn into_iter(self) -> Self::IntoIter {
SymbolIter(self.as_raw().get_body())
}
}
#[derive(Clone)]
pub struct SymbolIter(u64);
impl Iterator for SymbolIter {
type Item = char;
fn next(&mut self) -> Option<Self::Item> {
while self.0 != 0 {
let res = match ((self.0 >> ((MAX_CHARS - 1) * CODE_BITS)) & CODE_MASK) as u8 {
1 => b'_',
n @ (2..=11) => b'0' + n - 2,
n @ (12..=37) => b'A' + n - 12,
n @ (38..=63) => b'a' + n - 38,
_ => b'\0',
};
self.0 <<= CODE_BITS;
if res != b'\0' {
return Some(res as char);
}
}
None
}
}
impl FromIterator<char> for Symbol {
fn from_iter<T: IntoIterator<Item = char>>(iter: T) -> Self {
let mut n = 0;
let mut accum: u64 = 0;
for i in iter {
require(n < MAX_CHARS);
n += 1;
accum <<= CODE_BITS;
let v = match i {
'_' => 1,
'0'..='9' => 2 + ((i as u64) - ('0' as u64)),
'A'..='Z' => 12 + ((i as u64) - ('A' as u64)),
'a'..='z' => 38 + ((i as u64) - ('a' as u64)),
_ => break,
};
accum |= v;
}
unsafe { Self::from_body(accum) }
}
}
#[cfg(feature = "std")]
use crate::xdr::ScVal;
#[cfg(feature = "std")]
impl TryFrom<ScVal> for Symbol {
type Error = ConversionError;
fn try_from(v: ScVal) -> Result<Self, Self::Error> {
(&v).try_into()
}
}
#[cfg(feature = "std")]
impl TryFrom<&ScVal> for Symbol {
type Error = ConversionError;
fn try_from(v: &ScVal) -> Result<Self, Self::Error> {
if let ScVal::Symbol(vec) = v {
vec.try_into().map_err(|_| ConversionError)
} else {
Err(ConversionError)
}
}
}
#[cfg(feature = "std")]
impl TryFrom<Symbol> for ScVal {
type Error = ConversionError;
fn try_from(s: Symbol) -> Result<Self, Self::Error> {
let res: Result<Vec<u8>, _> = s.into_iter().map(<u8 as TryFrom<char>>::try_from).collect();
Ok(ScVal::Symbol(
res.map_err(|_| ConversionError)?
.try_into()
.map_err(|_| ConversionError)?,
))
}
}
#[cfg(feature = "std")]
impl TryFrom<&Symbol> for ScVal {
type Error = ConversionError;
fn try_from(s: &Symbol) -> Result<Self, Self::Error> {
s.clone().try_into()
}
}
#[cfg(test)]
mod test_without_string {
use super::{Symbol, SymbolStr};
#[test]
fn test_roundtrip() {
let input = "stellar";
let sym = Symbol::from_str(input);
let sym_str = SymbolStr::from(sym);
let s: &str = sym_str.as_ref();
assert_eq!(s, input);
}
#[test]
fn test_roundtrip_zero() {
let input = "";
let sym = Symbol::from_str(input);
let sym_str = SymbolStr::from(sym);
let s: &str = sym_str.as_ref();
assert_eq!(s, input);
}
#[test]
fn test_roundtrip_ten() {
let input = "0123456789";
let sym = Symbol::from_str(input);
let sym_str = SymbolStr::from(sym);
let s: &str = sym_str.as_ref();
assert_eq!(s, input);
}
#[test]
fn test_ord() {
let a_in = "Hello";
let b_in = "hello";
let c_in = "hellos";
let a_sym = Symbol::from_str(a_in);
let b_sym = Symbol::from_str(b_in);
let c_sym = Symbol::from_str(c_in);
assert!(a_sym < b_sym);
assert!(b_sym < c_sym);
assert!(a_sym < c_sym);
}
}
#[cfg(all(test, feature = "std"))]
mod test_with_string {
use super::Symbol;
use std::string::{String, ToString};
#[test]
fn test_roundtrip() {
let input = "stellar";
let sym = Symbol::from_str(input);
let s: String = sym.to_string();
assert_eq!(input, &s);
}
#[test]
fn test_roundtrip_zero() {
let input = "";
let sym = Symbol::from_str(input);
let s: String = sym.to_string();
assert_eq!(input, &s);
}
#[test]
fn test_roundtrip_ten() {
let input = "0123456789";
let sym = Symbol::from_str(input);
let s: String = sym.to_string();
assert_eq!(input, &s);
}
}