~dricottone/fiddler-231027

ref: 6a48adeee0de7a0710b0edbf1ec61e8f929ac201 fiddler-231027/vote/cli.py -rw-r--r-- 4.0 KiB
6a48adeeDominic Ricottone Initial commit 11 months ago
                                                                                
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
#!/usr/bin/env python3

import re

def main(arguments):
	config=dict()
	positional=[]
	pattern=re.compile(r"(?:-(?:c|h|x|r|t|v|V)|--(?:candidates|help|representatives|trials|version))(?:=.*)?$")
	consuming,needing,wanting=None,0,0
	attached_value=None
	while len(arguments) and arguments[0]!="--":
		if consuming is not None:
			if config[consuming] is None:
				config[consuming]=arguments.pop(0)
			else:
				config[consuming].append(arguments.pop(0))
			needing-=1
			wanting-=1
			if wanting==0:
				consuming,needing,wanting=None,0,0
		elif pattern.match(arguments[0]):
			option = arguments.pop(0).lstrip('-')
			if '=' in option:
				option,attached_value=option.split('=',1)
			if option=="candidates":
				if attached_value is not None:
					config["candidates"]=attached_value
					attached_value=None
					consuming,needing,wanting=None,0,0
				else:
					config["candidates"]=None
					consuming,needing,wanting="candidates",1,1
			elif option=="help":
				if attached_value is not None:
					message=(
						'unexpected value while parsing "help"'
						' (expected 0 values)'
					)
					raise ValueError(message) from None
				config["help"]=True
			elif option=="representatives":
				if attached_value is not None:
					config["representatives"]=attached_value
					attached_value=None
					consuming,needing,wanting=None,0,0
				else:
					config["representatives"]=None
					consuming,needing,wanting="representatives",1,1
			elif option=="trials":
				if attached_value is not None:
					config["trials"]=attached_value
					attached_value=None
					consuming,needing,wanting=None,0,0
				else:
					config["trials"]=None
					consuming,needing,wanting="trials",1,1
			elif option=="version":
				if attached_value is not None:
					message=(
						'unexpected value while parsing "version"'
						' (expected 0 values)'
					)
					raise ValueError(message) from None
				config["version"]=True
			elif option=="c":
				if attached_value is not None:
					config["candidates"]=attached_value
					attached_value=None
					consuming,needing,wanting=None,0,0
				else:
					config["candidates"]=None
					consuming,needing,wanting="candidates",1,1
			elif option=="h":
				if attached_value is not None:
					message=(
						'unexpected value while parsing "help"'
						' (expected 0 values)'
					)
					raise ValueError(message) from None
				config["help"]=True
			elif option=="x":
				if attached_value is not None:
					message=(
						'unexpected value while parsing "help"'
						' (expected 0 values)'
					)
					raise ValueError(message) from None
				config["help"]=True
			elif option=="r":
				if attached_value is not None:
					config["representatives"]=attached_value
					attached_value=None
					consuming,needing,wanting=None,0,0
				else:
					config["representatives"]=None
					consuming,needing,wanting="representatives",1,1
			elif option=="t":
				if attached_value is not None:
					config["trials"]=attached_value
					attached_value=None
					consuming,needing,wanting=None,0,0
				else:
					config["trials"]=None
					consuming,needing,wanting="trials",1,1
			elif option=="v":
				if attached_value is not None:
					message=(
						'unexpected value while parsing "version"'
						' (expected 0 values)'
					)
					raise ValueError(message) from None
				config["version"]=True
			elif option=="V":
				if attached_value is not None:
					message=(
						'unexpected value while parsing "version"'
						' (expected 0 values)'
					)
					raise ValueError(message) from None
				config["version"]=True
		else:
			positional.append(arguments.pop(0))
	if needing>0:
		message=(
			f'unexpected end while parsing "{consuming}"'
			f' (expected {needing} values)'
		)
		raise ValueError(message) from None
	for argument in arguments[1:]:
		positional.append(argument)
	return config,positional

if __name__=="__main__":
	import sys
	cfg,pos = main(sys.argv[1:])
	cfg = {k:v for k,v in cfg.items() if v is not None}
	if len(cfg):
		print("Options:")
		for k,v in cfg.items():
			print(f"{k:20} = {v}")
	if len(pos):
		print("Positional arguments:", ", ".join(pos))