about summary refs log tree commit diff
path: root/pkgs/profpatsch/dhallsh/main.dhall
blob: aea25bb103f70c90af65dec8048fa23de9d5eae4 (plain) (blame)
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
let Prelude =
	  https://prelude.dhall-lang.org/package.dhall sha256:2acd9f8eae045eae46d8288d76b01678c4ac4883a58eadb6be0da00b3ba590cf

let List/filterOptional = ./List/filterOptional.dhall

let Command = ./Command/type.dhall

let Option = ./Option/type.dhall

let Argument = ./Argument/type.dhall

let Complete =
	  { cmd :
		  Text
	  , description :
		  Text
	  , condition :
		  Optional Text
	  , short-option :
		  Optional Text
	  , long-option :
		  Optional Text
	  , long-option-old-style :
		  Optional Text
	  , arguments :
		  Optional Text
	  , keep-order :
		  Bool
	  , no-files :
		  Bool
	  , require-parameter :
		  Bool
	  , wraps :
		  Optional Text
	  }

let complete =
		λ(a : { cmd : Text, description : Text })
	  → { cmd =
			a.cmd
		, description =
			a.description
		, condition =
			None Text
		, short-option =
			None Text
		, long-option =
			None Text
		, long-option-old-style =
			None Text
		, arguments =
			None Text
		, keep-order =
			False
		, no-files =
			False
		, require-parameter =
			False
		, wraps =
			None Text
		}

let completeToCommand
	: Complete → Command Argument
	= let l = λ(o : Text) → Option.Long o

	  in    λ(c : Complete)
		  → let long =
					λ(name : Text)
				  → λ(content : Text)
				  → Argument.Option { opt = Option.Long name, arg = content }

			let args =
					[ Some (long "description" c.description)
					, Prelude.Optional.map
					  Text
					  Argument
					  (long "condition")
					  c.condition
					]
				  : List (Optional Argument)

			let id = λ(a : Optional Argument) → a

			in  { cmd =
					c.cmd
				, args =
					  List/filterOptional (Optional Argument) Argument id args
					: List Argument
				}

in  let foo =
		  completeToCommand (complete { cmd = "complete", description = "foo" })

	in  [   [ foo.cmd ]
		  # Prelude.List.concatMap
			Argument
			Text
			(./Argument/toArgList.dhall ./OptionPrinter/newStyle.dhall)
			foo.args
		]