@@ -15,8 +15,7 @@ able to parse any URI, such as `urn:isbn:0451450523`.
15
15
16
16
*/
17
17
#![ allow( non_upper_case_globals) ]
18
- #![ forbid( unsafe_code) ]
19
-
18
+ #[ forbid( unsafe_code) ]
20
19
#[ macro_use]
21
20
extern crate bitflags;
22
21
@@ -30,6 +29,32 @@ use serde::de;
30
29
use serde:: de:: Error as Error_ ;
31
30
use serde_json:: Value ;
32
31
32
+ const fn fmt_pascal_case_const ( name : & str ) -> ( [ u8 ; 128 ] , usize ) {
33
+ let mut buf = [ 0 ; 128 ] ;
34
+ let mut buf_i = 0 ;
35
+ let mut name_i = 0 ;
36
+ let name = name. as_bytes ( ) ;
37
+ while name_i < name. len ( ) {
38
+ let first = name[ name_i] ;
39
+ name_i += 1 ;
40
+
41
+ buf[ buf_i] = first;
42
+ buf_i += 1 ;
43
+
44
+ while name_i < name. len ( ) {
45
+ let rest = name[ name_i] ;
46
+ name_i += 1 ;
47
+ if rest == b'_' {
48
+ break ;
49
+ }
50
+
51
+ buf[ buf_i] = rest. to_ascii_lowercase ( ) ;
52
+ buf_i += 1 ;
53
+ }
54
+ }
55
+ ( buf, buf_i)
56
+ }
57
+
33
58
fn fmt_pascal_case ( f : & mut std:: fmt:: Formatter < ' _ > , name : & str ) -> std:: fmt:: Result {
34
59
for word in name. split ( '_' ) {
35
60
let mut chars = word. chars ( ) ;
@@ -43,7 +68,7 @@ fn fmt_pascal_case(f: &mut std::fmt::Formatter<'_>, name: &str) -> std::fmt::Res
43
68
}
44
69
45
70
macro_rules! lsp_enum {
46
- ( impl $typ: ty { $( $( #[ $attr: meta] ) * pub const $name: ident : $enum_type: ty = $value: expr; ) * } ) => {
71
+ ( impl $typ: ident { $( $( #[ $attr: meta] ) * pub const $name: ident : $enum_type: ty = $value: expr; ) * } ) => {
47
72
impl $typ {
48
73
$(
49
74
$( #[ $attr] ) *
@@ -61,6 +86,19 @@ macro_rules! lsp_enum {
61
86
}
62
87
}
63
88
}
89
+
90
+ impl std:: convert:: TryFrom <& str > for $typ {
91
+ type Error = & ' static str ;
92
+ fn try_from( value: & str ) -> Result <Self , Self :: Error > {
93
+ match value {
94
+ $(
95
+ _ if { let ( buf, len) = crate :: fmt_pascal_case_const( stringify!( $name) ) ; & buf[ ..len] == value. as_bytes( ) } => Ok ( Self :: $name) ,
96
+ ) *
97
+ _ => Err ( "unknown enum variant" ) ,
98
+ }
99
+ }
100
+ }
101
+
64
102
}
65
103
}
66
104
0 commit comments