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
|
// Example:
// Given on the the command line:
// -log.level=info -env=dev -text='hello world'
showResults( Args.parse( "-log.level=info -env=dev -text='hello world'", sep="=", hasAction = true ) )
// CASE 1: Parse using defaults. E.g. the key/value prefix = "-", separator = ":"
showResults( Args.parse( "-env:dev -text:'hello world' -batch:10" ) )
// CASE 2: Custom prefix and sep e.g. "!" and separator "="
showResults( Args.parse( "!env=dev !text='hello word' !batch=10 ", prefix = "!", sep = "=" ) )
// CASE 3a: Check for action/method call in the beginning
showResults( Args.parse( "area.service.method -env=dev -text='hello word' -batch=10", prefix = "-",
sep = "=", hasAction = true ) )
// CASE 3b: Check for method call in the beginning
showResults( Args.parse( "service.method -env=dev -text='hello word' -batch=10", prefix = "-",
sep = "=", hasAction = true ) )
// CASE 3c: Check for only action name in the beginning.
showResults( Args.parse( "method", prefix = "-", sep = "=", hasAction = true ) )
// CASE 4: No args
showResults( Args.parse( "service.method", prefix = "-", sep = "=", hasAction = true ) )
// CASE 5a: Help request ( "?", "help")
showResults( Args.parse( "?" ) )
// CASE 5b: Help request with method call ( "method.action" ? )
showResults( Args.parse( "service.method help" , hasAction = true ) )
// CASE 6: Version request ( "ver", "version" )
showResults( Args.parse( "version" ) )
// CASE 7: Exit request
showResults( Args.parse( "exit" ) )
// CASE 8: Build up the schema
val schema = ArgsSchema().text("env").flag("log").number("level")
print(schema)
|