-
Notifications
You must be signed in to change notification settings - Fork 24
/
check_options.py
executable file
·110 lines (95 loc) · 3.42 KB
/
check_options.py
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import re
import sys
import codecs
import os
import subprocess
import traceback
def extract_options_md(filename):
re1 = re.compile(r'^###\s--([A-Za-z0-9][A-Za-z0-9-_]+)([\s,]+.*)')
re2 = re.compile(r'^###\s-[A-Za-z0-9],\s--([A-Za-z0-9][A-Za-z0-9-_]+)([,\s]+.*)')
re3 = re.compile(r'^###\s--\(no-\)([A-Za-z0-9][A-Za-z0-9-_]+)([,\s]+.*)')
re4 = re.compile(r'^,\s--([A-Za-z0-9][A-Za-z0-9-_]+)([\s,]*.*)')
option_list = set()
with codecs.open(filename, 'r', 'utf_8') as f:
for line in f.readlines():
while True:
m = re1.match(line)
if m:
option_list.add('--' + m.group(1))
else:
m = re2.match(line)
if m:
option_list.add('--' + m.group(1))
else:
m = re3.match(line)
if m:
option_list.add('--' + m.group(1))
else:
m = re4.match(line)
if m:
option_list.add('--' + m.group(1))
if m:
line = m.group(2)
else:
break
return option_list
def get_options_exe(exe_file):
filename = 'nvencc_option_list.txt'
cmd = '\"' + exe_file + '\" --option-list'
option_list = set()
start_add = False
try:
proc = subprocess.Popen(cmd, stdout = subprocess.PIPE, shell=True)
while True:
line = proc.stdout.readline().decode('utf-8').strip()
if start_add and len(line) > 0:
option_list.add(line)
if 'Option List:' in line:
start_add = True
if not line and proc.poll() is not None:
break
except:
print("failed to run encoder\n");
print(traceback.format_exc())
raise
return option_list
if __name__ == '__main__':
md_files = []
md_en_file = 'VCEEncC_Options.en.md'
md_ja_file = 'VCEEncC_Options.ja.md'
exe_file = r'_build\x64\RelStatic\VCEEncC64.exe' if os.name == 'nt' else './vceencc'
iarg = 0
while iarg < len(sys.argv):
if sys.argv[iarg] == "-exe":
iarg=iarg+1
exe_file = sys.argv[iarg]
elif sys.argv[iarg] == "-md":
iarg=iarg+1
md_files.append(sys.argv[iarg])
iarg=iarg+1
# デフォルトのファイルの追加
if os.path.exists(md_en_file):
md_files.append(md_en_file)
if os.path.exists(md_ja_file):
md_files.append(md_ja_file)
# mdファイルからのオプションの抽出
option_list_md = []
for md in md_files:
option_list_md.append(extract_options_md(md))
option_list_exe = get_options_exe(exe_file)
# 全オプションリスト
option_list_all = option_list_exe
for optlist in option_list_md:
option_list_all = option_list_all | optlist
for imd in range(len(md_files)):
diff = option_list_all - option_list_md[imd]
print('Not listed in ' + md_files[imd] + ':' + str(len(diff)))
for option in sorted(diff):
print(option)
print()
diff = option_list_all - option_list_exe
print('Not listed in --help:' + str(len(diff)))
for option in sorted(diff):
print(option)