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
/// Define a private namespace for all its items.
#[ allow( clippy ::std_instead_of_alloc, clippy ::std_instead_of_core ) ]
mod private
{
#[ allow( unused_imports, clippy ::wildcard_imports ) ]
use crate ::tool :: *;
use std ::
{
str ::FromStr,
};
use error ::
{
untyped :: { Error, bail },
// Result,
};
use collection_tools ::collection ::HashMap;
// Explicit import for Result and its variants for pattern matching
use std ::result ::Result ::Ok;
#[ derive( Debug, PartialEq, Eq, Clone ) ]
/// Parser value enum
pub enum Value
{
/// string value
String( String ),
/// int value
Int( i32 ),
/// bool value
Bool( bool ),
}
impl FromStr for Value
{
type Err = Error;
fn from_str( s: &str ) -> Result< Self, Self ::Err >
{
if let Ok( i ) = s.parse :: < i32 >()
{
Ok( Value ::Int( i ) )
}
else if let Ok( b ) = s.parse :: < bool >()
{
Ok( Value ::Bool( b ) )
}
else
{
let s = s.trim_matches( '\'' );
Ok( Value ::String( s.to_string() ) )
}
}
}
impl From< &Value > for bool
{
fn from( value: &Value ) -> Self
{
match value
{
Value ::Bool( value ) => *value,
Value ::String( string ) => string == "true",
Value ::Int( i ) => *i == 1,
}
}
}
/// Represents the result of parsing.
#[ derive( Debug, Clone ) ]
pub enum ParseResult
{
/// Named parsing result.
Named( HashMap< String, Value >),
/// Positional parsing result.
Positioning( Vec< Value >)
}
impl ParseResult
{
/// Converts the parsing result into a vector of values.
/// ``` rust
/// use collection_tools ::HashMap;
/// use willbe ::query :: { ParseResult, Value };
///
/// let params = HashMap ::from( [ ( "v1".to_string(), Value ::Int( 1 ) ), ( "v2".to_string(), Value ::Int( 2 ) ), ( "v3".to_string(), Value ::Int( 3 ) ) ] );
///
/// let result = ParseResult ::Named( params ).into_vec();
///
/// assert!( result.contains( &Value ::Int( 1 ) ) );
/// assert!( result.contains( &Value ::Int( 2 ) ) );
/// assert!( result.contains( &Value ::Int( 3 ) ) );
/// ```
#[ must_use ]
pub fn into_vec( self ) -> Vec< Value >
{
match self
{
ParseResult ::Named( map ) => map.values().cloned().collect(),
ParseResult ::Positioning( vec ) => vec,
}
}
/// Converts the parsing result into a hashmap, using a vector of names as keys.
/// ```rust
/// use collection_tools ::HashMap;
/// use willbe ::query :: { ParseResult, Value };
///
/// let params = vec![ Value ::Int( 1 ), Value ::Int( 2 ), Value ::Int( 3 ) ];
/// let result = ParseResult ::Positioning( params );
///
/// let named_map = result.clone().into_map( vec![ "var0".into(), "var1".into(),"var2".into() ] );
/// let unnamed_map = result.clone().into_map( vec![] );
/// let mixed_map = result.clone().into_map( vec![ "var0".into() ] );
/// let vec = result.into_vec();
///
/// assert_eq!( HashMap ::from( [ ( "var0".to_string(), Value ::Int( 1 ) ), ( "var1".to_string(),Value ::Int( 2 ) ), ( "var2".to_string(),Value ::Int( 3 ) ) ] ), named_map );
/// assert_eq!( HashMap ::from( [ ( "1".to_string(), Value ::Int( 1 ) ), ( "2".to_string(),Value ::Int( 2 ) ), ( "3".to_string(),Value ::Int( 3 ) ) ] ), unnamed_map );
/// assert_eq!( HashMap ::from( [ ( "var0".to_string(), Value ::Int( 1 ) ), ( "1".to_string(),Value ::Int( 2 ) ), ( "2".to_string(),Value ::Int( 3 ) ) ] ), mixed_map );
/// ```
#[ allow( clippy ::needless_pass_by_value ) ]
#[ must_use ]
pub fn into_map( self, names: Vec< String > ) -> HashMap< String, Value >
{
match self
{
ParseResult ::Named( map ) => map,
ParseResult ::Positioning( vec ) =>
{
let mut map = HashMap ::new();
let mut counter = 0;
for ( index, value ) in vec.into_iter().enumerate()
{
map.insert
(
names.get( index ).cloned().unwrap_or_else( || { counter+=1; counter.to_string() } ),
value
);
}
map
}
}
}
}
/// Parses an input string and returns a parsing result.
/// ```rust
/// use willbe ::query :: { parse, Value };
/// use collection_tools ::HashMap;
///
/// assert_eq!( parse( "()" ).unwrap().into_vec(), vec![] );
///
/// let mut expected_map = HashMap ::new();
/// expected_map.insert( "1".to_string(), Value ::String( "test/test".to_string() ) );
/// assert_eq!( parse( "('test/test')" ).unwrap().into_map( vec![] ), expected_map );
///
/// let mut expected_map = HashMap ::new();
/// expected_map.insert( "key".to_string(), Value ::String( r#"hello\'test\'test"#.into() ) );
/// assert_eq!( parse( r#"{ key: 'hello\'test\'test' }"# ).unwrap().into_map( vec![] ), expected_map );
/// ```
///
/// # Errors
/// qqq: doc
///
/// # Panics
/// qqq: doc
// qqq: use typed error
pub fn parse( input_string: &str ) -> error ::untyped ::Result< ParseResult >
{
if input_string.len() < 2
{
bail!( "Input length should be two or more" )
}
if input_string.len() == 2
{
return Ok( ParseResult ::Positioning( vec![] ) )
}
let start = input_string.chars().next().unwrap();
let input_string = &input_string[1..input_string.len()-1];
let params = split_string( input_string );
let result = match start
{
'{' =>
{
ParseResult ::Named( parse_to_map( params )? )
},
'(' =>
{
ParseResult ::Positioning( parse_to_vec( params )? )
},
_ => bail!( "Invalid start character" )
};
Ok( result )
}
fn split_string( input: &str ) -> Vec< String >
{
let mut result = Vec ::new();
let mut start = 0;
let mut in_quotes = false;
for ( i, c ) in input.char_indices()
{
match c
{
'"' | '\'' => in_quotes = !in_quotes,
',' if !in_quotes =>
{
result.push( input[ start..i ].trim().to_string() );
start = i + 1;
}
_ => {}
}
}
result.push( input[ start.. ].trim().to_string() );
result
}
// qqq: use typed error
fn parse_to_map(input: Vec< String > ) -> error ::untyped ::Result< HashMap< String, Value > >
{
let mut map = HashMap ::new();
for line in input
{
let mut in_quotes = false;
let mut key = String ::new();
let mut value = String ::new();
let mut is_key = true;
for c in line.chars()
{
match c
{
'"' | '\'' =>
{
in_quotes = !in_quotes;
if is_key
{
key.push( c );
}
else
{
value.push( c );
}
}
':' if !in_quotes =>
{
is_key = false;
}
_ =>
{
if is_key
{
key.push( c );
}
else
{
value.push( c );
}
}
}
}
if value.trim().is_empty()
{
bail!( "Value is missing" )
}
map.insert( key.trim().to_string(), Value ::from_str( value.trim() )? );
}
Ok( map )
}
// qqq: use typed error
#[ allow( clippy ::unnecessary_wraps ) ]
fn parse_to_vec( input: Vec< String > ) -> error ::untyped ::Result< Vec< Value > >
{
Ok( input.into_iter().filter_map( | w | Value ::from_str( w.trim() ).ok() ).collect() )
}
}
crate ::mod_interface!
{
own use parse;
own use Value;
own use ParseResult;
}