-
-
Notifications
You must be signed in to change notification settings - Fork 531
/
configure-features.py
executable file
·251 lines (225 loc) · 7.74 KB
/
configure-features.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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Grbl_Esp32 configurator
# Copyright (C) 2020 Michiyasu Odaki
#
# This is useful for automated testing, to make sure you haven't broken something
#
# Grbl_Esp32 is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Grbl_Esp32 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Grbl_Esp32. If not, see <http://www.gnu.org/licenses/>.
from __future__ import print_function
import os, sys, argparse, re
configDirName = r'Grbl_Esp32/src'
configFileName = r'Config.h'
validFeatureList = [
'BLUETOOTH',
'WIFI',
'SD_CARD',
'HTTP',
'OTA',
'TELNET',
'TELNET_WELCOME_MSG',
'MDNS',
'SSDP',
'NOTIFICATIONS',
'SERIAL2SOCKET_IN',
'SERIAL2SOCKET_OUT',
'CAPTIVE_PORTAL',
'AUTHENTICATION'
]
eyecatchBeginString = 'CONFIGURE_EYECATCH_BEGIN'
eyecatchEndString = 'CONFIGURE_EYECATCH_END'
enablePrefix = 'ENABLE_'
def printValidFeatureList():
print("valid feature names:")
for n in sorted(validFeatureList):
print(" " + n)
def usage(parser):
parser.print_usage()
printValidFeatureList()
sys.exit(255)
def parseArgs(defaultConfigPath):
# Argument parser (-h is also available)
parser = argparse.ArgumentParser(description='Configure Grbl_ESP32 features')
parser.add_argument('-v', '--verbose', action='store_true')
parser.add_argument('-c', '--configfile', default=defaultConfigPath)
parser.add_argument('-e', '--enable', nargs='*'
,help='specify feature name(ex. WIFI)'
#, choices=validFeatureList
)
parser.add_argument('-d', '--disable', nargs='*'
,help='specify feature name(ex. BLUETOOTH)'
#,choices=validFeatureList
)
return parser.parse_args(), parser
def isValidFeature(feature):
if feature:
if feature in validFeatureList:
return True #valid
return False #invalid
def checkFeatureList(optname, features, verbose=False):
if features:
for n in features:
if isValidFeature(n) is True:
#if verbose:
# print("valid " + optname + " feature: " + n)
pass
else:
print("unknown " + optname + " feature: " + n)
return -1
else:
#if verbose:
# print(optname + " is not specified")
return 0
return len(features)
def resolveConflicts(high_priority, low_priority):
if low_priority:
for n in low_priority[:]:
if n in high_priority:
low_priority.remove(n)
return
def readConfig(path):
# Read config.h to memory
try:
f = open(path)
except IOError:
print("unable to open file for read: " + path)
sys.exit(255)
else:
try:
src = f.readlines()
except IOError:
print("file read error: " + path)
f.close()
sys.exit(255)
else:
f.close()
return src
def writeConfig(path, buf):
try:
f = open(path, 'w')
except IOError:
print("unable to open file for write: " + path)
sys.exit(255)
else:
try:
src = f.write(buf)
except IOError:
print("file write error: " + path)
f.close()
sys.exit(255)
else:
f.close()
def changeConfig(src, enabled, disabled, verbose=False):
dst = ""
numEnabledDic = {}
for name in enabled:
numEnabledDic[name] = 0
regstart = re.compile(r'^\s*//\s*' + eyecatchBeginString)
regend = re.compile(r'^\s*//\s*' + eyecatchEndString)
state = 0;
for line in src:
if state == 0:
# out of the defines block to modify
if regstart.match(line):
state = 1
dst += line
elif state == 1:
# in the defines block to modify
if regend.match(line):
# end of block found
for name in enabled:
# add the define to enable if it was not found in the block
if numEnabledDic[name] == 0:
dst += "#define " + enablePrefix + name + '\n'
state = 2
dst += line
else:
dstLine = ""
if len(enabled) > 0:
for name in enabled:
s = enablePrefix + name
m = re.match(r'^s*(//)*\s*#define\s+(' + s + r'.*)$', line)
if m:
dstLine = "#define " + m.group(2) + '\n'
numEnabledDic[name] += 1
break
if len(disabled) > 0:
for name in disabled:
s = enablePrefix + name
m = re.match(r'^\s*#define\s+' + s + r'.*$', line)
if m:
dstLine = "//" + line
break
if len(dstLine) != 0:
dst += dstLine
if verbose:
print(dstLine.rstrip())
else:
dst += line
if verbose:
print(line.rstrip())
elif state == 2:
dst += line
if state != 2:
print("EYECATCH pair not found. Cancel changes.")
sys.exit(255)
return dst
def main():
# Concatinate dir and file
configFilePath = os.path.join(configDirName, configFileName)
# Parse arguments
args, parser = parseArgs(configFilePath)
# Set params to local variables
verbose = args.verbose
configFilePath = args.configfile
# Copy and remove duplicates from enable/disable list
enabledFeatures = []
disabledFeatures = []
if args.enable:
enabledFeatures = sorted(set(args.enable), key=args.enable.index)
if args.disable:
disabledFeatures = sorted(set(args.disable), key=args.disable.index)
# If both enable and disable are specified, treat as enable
# (Remove items from 2nd param if same item in 1st param)
resolveConflicts(enabledFeatures, disabledFeatures)
# Verification (whether or not to use "choice" with argparse)
numEnables = checkFeatureList("-e", enabledFeatures, verbose)
numDisables = checkFeatureList("-d", disabledFeatures, verbose)
#if verbose:
# print("enables: ", numEnables)
# print(enabledFeatures)
# print("disables: ", numDisables)
# print(disabledFeatures)
# print("config file: " + configFilePath)
# Final checking about args
if numEnables < 0 or numDisables < 0 or (numEnables == 0 and numDisables == 0):
usage(parser)
# Check if the target file exists
configFilePathAbs = os.path.abspath(configFilePath)
if verbose:
print("Config path: " + configFilePathAbs)
print()
if not os.path.isfile(configFilePathAbs):
print("config file not found: " + configFilePathAbs)
sys.exit(255)
# read config file
src = readConfig(configFilePathAbs)
# Change the specified settings
dst = changeConfig(src, enabledFeatures, disabledFeatures, verbose)
# Write back
writeConfig(configFilePathAbs, dst)
sys.exit(0)
if __name__ == "__main__":
main()