-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgenerate
More file actions
executable file
·131 lines (102 loc) · 3.76 KB
/
Copy pathgenerate
File metadata and controls
executable file
·131 lines (102 loc) · 3.76 KB
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
#!/usr/bin/env python
#
# MIT License
#
# Copyright (c) 2022 Martincz Gao
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
from libs.preference import getPreference
from ruamel.yaml import YAML
import os
import sys
ROOT_DIR = os.path.dirname(os.path.realpath(__file__))
class _Options(object):
def __init__(self):
self.dns = False
self.stdout = False
self.output = None
def _Usage():
return (
'Usage: generate [--dns] [--stdout|--dry-run] [-o|--output <path>]\n'
' --dns Include dns section\n'
' --stdout, --dry-run Print generated config to stdout only\n'
' -o, --output <path> Write generated config to the given file path\n'
'Default behavior without --stdout/--output: write to config.yaml'
)
def _ParseArguments(args):
opt = _Options()
i = 0
while i < len(args):
a = args[i]
if a == '--dns':
opt.dns = True
i += 1
continue
if a in ['--stdout', '--dry-run']:
opt.stdout = True
i += 1
continue
if a in ['-o', '--output']:
if i + 1 >= len(args):
raise ValueError('Missing output path for %s' % a)
opt.output = args[i + 1]
i += 2
continue
if a.startswith('-'):
raise ValueError('Unknown option: %s' % a)
raise ValueError('Unexpected argument: %s' % a)
return opt
def main(orig_args):
try:
opt = _ParseArguments(orig_args)
except ValueError as ex:
print(str(ex), file=sys.stderr)
print(_Usage(), file=sys.stderr)
return 2
yaml = YAML()
yaml.allow_unicode = True
yaml.explicit_start = False
yaml.preserve_quotes = True
yaml.indent(mapping=2, sequence=4, offset=2)
# Read default config.
with open(os.path.join(ROOT_DIR, 'configs/basic.yaml'), 'rb') as fp:
cfg_basic = yaml.load(fp)
# Merge user preference.
cfg_final = cfg_basic.copy()
cfg_final.update(getPreference())
if opt.dns != True and 'dns' in cfg_final.keys():
del cfg_final['dns']
wrote_output = False
if opt.output is not None:
output_path = os.path.abspath(opt.output)
output_dir = os.path.dirname(output_path)
if output_dir != '':
os.makedirs(output_dir, exist_ok=True)
with open(output_path, 'w', encoding='utf-8') as fp:
yaml.dump(cfg_final, fp)
wrote_output = True
if opt.stdout:
yaml.dump(cfg_final, sys.stdout)
if not opt.stdout and not wrote_output:
with open(os.path.join(ROOT_DIR, 'config.yaml'), 'w', encoding='utf-8') as fp:
yaml.dump(cfg_final, fp)
return 0
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))