-
Notifications
You must be signed in to change notification settings - Fork 826
/
build.py
executable file
·545 lines (451 loc) · 21.6 KB
/
build.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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
#!/usr/bin/env python
#
# SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
# SPDX-License-Identifier: Apache-2.0
import os
import sys
import subprocess
import json
# color output on windows
if sys.platform == 'win32':
from colorama import init
# preset environment variables
if sys.platform == 'win32':
sys_cmd = 'set'
sys_delimiter = ';'
else:
sys_cmd = 'export'
sys_delimiter = ':'
at_targets = ['esp32', 'esp32c2', 'esp32c3', 'esp32c5', 'esp32c6', 'esp32s2']
at_macro_pairs = []
def ESP_LOGI(x):
print('\033[32m{}\033[0m'.format(x))
def ESP_LOGE(x):
print('\033[31m{}\033[0m'.format(x))
def gitee_repo_preprocess():
print('Redirect repository to https://gitee.com/EspressifSystems')
return 'https://gitee.com/EspressifSystems'
def gitee_repo_postprocess(path, redirect_repo):
submodule_lists = subprocess.check_output(['git', 'config', '-f', os.path.join(path, '.gitmodules'), '--list']).decode(encoding='utf-8')
if redirect_repo is None:
redirect_repo = 'https://gitee.com/esp-submodules'
for line in submodule_lists.split():
if line.find('.url=') > 0:
submodule = line.split('=')
submodule_name = os.path.basename(submodule[1])
print('Redirect {} to {}'.format(submodule[0], '/'.join([redirect_repo, submodule_name])))
subprocess.call('cd {} && git config {} {}'.format(path, submodule[0], '/'.join([redirect_repo, submodule_name])), shell = True)
def jihulab_repo_preprocess():
print('Redirect repository to https://jihulab.com/esp-mirror/espressif')
return 'https://jihulab.com/esp-mirror/espressif'
def jihulab_repo_postprocess(path, redirect_repo):
pass
preset_origins = {
'https://gitee.com/EspressifSystems/esp-at': {'preprocess': gitee_repo_preprocess, 'postprocess': gitee_repo_postprocess},
'https://gitee.com/EspressifSystems/esp-at.git': {'preprocess': gitee_repo_preprocess, 'postprocess': gitee_repo_postprocess},
'[email protected]:EspressifSystems/esp-at.git': {'preprocess': gitee_repo_preprocess, 'postprocess': gitee_repo_postprocess},
'https://jihulab.com/esp-mirror/espressif/esp-at':{'preprocess': jihulab_repo_preprocess, 'postprocess': jihulab_repo_postprocess},
'https://jihulab.com/esp-mirror/espressif/esp-at.git':{'preprocess': jihulab_repo_preprocess, 'postprocess': jihulab_repo_postprocess},
'[email protected]:esp-mirror/espressif/esp-at.git':{'preprocess': jihulab_repo_preprocess, 'postprocess': jihulab_repo_postprocess},
}
def at_sync_submodule(path, repo, branch, commit, redirect):
at_origin = subprocess.check_output(['git', 'remote', '-v']).decode(encoding = 'utf-8').split()[1]
new_clone = False
if not os.path.exists(path):
# clone repository
if at_origin in preset_origins:
if redirect == 1:
repo = '/'.join([preset_origins[at_origin]['preprocess'](), os.path.basename(repo)])
ESP_LOGI('Cloning into submodule:"{}" from "{}" (This may take some time)..'.format(path, repo))
ret = subprocess.call('git clone -b {} {} {}'.format(branch, repo, path), shell = True)
if ret:
raise Exception('git clone failed')
new_clone = True
rev_parse_head = subprocess.check_output('cd {} && git rev-parse HEAD'.format(path), shell = True).decode(encoding='utf-8').strip()
if rev_parse_head != commit:
ESP_LOGI('Synchronizing submodule:"{}" from "{}" (This may take time)..'.format(path, repo))
print('old commit: {}'.format(rev_parse_head))
print('checkout commit: {}'.format(commit))
cmd = 'cd {} && git fetch origin {}'.format(path, branch)
ret = subprocess.call(cmd, shell = True)
if ret:
raise Exception('git fetch failed! Please manually run:\r\n{}'.format(cmd))
cmd = 'cd {} && git merge origin/{} {}'.format(path, branch, branch)
ret = subprocess.call(cmd, shell = True)
if ret:
raise Exception('git merge failed! Please manually run:\r\n{}'.format(cmd))
cmd = 'cd {} && git checkout -q {}'.format(path, commit)
ret = subprocess.call(cmd, shell = True)
if ret:
raise Exception('git checkout failed! Please manually run:\r\n{}'.format(cmd))
if new_clone:
# init submoules for cloned repository
ret = subprocess.call('cd {} && git submodule init'.format(path), shell = True)
if ret:
raise Exception('git submodule init failed')
if at_origin in preset_origins:
# redirect esp-idf submodules if esp-idf itself is redirected (just redirect one-level submodules currently)
if redirect and path == 'esp-idf':
preset_origins[at_origin]['postprocess'](path, None)
if rev_parse_head != commit or new_clone:
cmd = 'cd {} && git submodule update --init --recursive'.format(path)
ret = subprocess.call(cmd, shell = True)
if ret:
raise Exception('git submodule update failed! Please manually run:\r\n{}'.format(cmd))
def at_parse_idf_version(idf_ver_file, pairs):
if not os.path.exists(idf_ver_file):
ESP_LOGE('File does not exist: {}'.format(idf_ver_file))
sys.exit(2)
with open(idf_ver_file) as f:
for line in f.readlines():
index = line.strip().find('branch:')
if index >= 0:
branch = line[index + len('branch:'):].rstrip('\n')
continue
index = line.strip().find('commit:')
if index >= 0:
commit = line[index + len('commit:'):].rstrip('\n')
continue
index = line.strip().find('repository:')
if index >= 0:
repo = line[index + len('repository:'):].rstrip('\n')
continue
if len(branch) <= 0:
sys.exit('ERROR: idf branch is not defined')
if len(commit) <= 0:
sys.exit('ERROR: idf commit is not defined')
if len(repo) <= 0:
sys.exit('ERROR: idf url is not defined')
pairs.append(('esp-idf', repo, branch, commit, 1))
def at_parse_submodules(submodules_file, pairs):
import configparser
if not os.path.exists(submodules_file):
return None
config = configparser.ConfigParser()
config.read(submodules_file)
for item in config.sections():
at_macro_pairs.append('AT_' + item.split()[1].strip('"').upper() + '_SUPPORT')
pairs.append((config[item]['path'], config[item]['url'], config[item]['branch'], config[item]['commit'], 0))
def at_submodules_update(platform, module):
config_dir = os.path.join(os.getcwd(), 'module_config', 'module_{}'.format(module.lower()))
if not os.path.exists(config_dir):
config_dir = os.path.join(os.getcwd(), 'module_config', 'module_{}_default'.format(platform.lower()))
pairs = []
ext_module_cfg = os.environ.get('AT_EXT_MODULE_CFG')
if ext_module_cfg and os.path.exists(os.path.join(ext_module_cfg, 'IDF_VERSION')):
idf_ver_file = os.path.join(ext_module_cfg, 'IDF_VERSION')
else:
idf_ver_file = os.path.join(config_dir, 'IDF_VERSION')
at_parse_idf_version(idf_ver_file, pairs)
try:
if ext_module_cfg and os.path.exists(os.path.join(ext_module_cfg, 'submodules')):
submodules_file = os.path.join(ext_module_cfg, 'submodules')
else:
submodules_file = os.path.join(config_dir, 'submodules')
at_parse_submodules(submodules_file, pairs)
except Exception as e:
ESP_LOGE('Failed to parse submodules:"{}" ({})'.format(submodules_file, e))
sys.exit(2)
for path, repo, branch, commit, redirect in list(filter(None, pairs)):
at_sync_submodule(path, repo, branch, commit, redirect)
ESP_LOGI('submodules check completed for updates.')
def at_patch_if_config(platform, module):
ext_module_cfg = os.environ.get('AT_EXT_MODULE_CFG')
if ext_module_cfg and os.path.exists(os.path.join(ext_module_cfg, 'patch')):
config_dir = ext_module_cfg
else:
config_dir = os.path.join(os.getcwd(), 'module_config', 'module_{}'.format(module.lower()))
if not os.path.exists(config_dir):
config_dir = os.path.join(os.getcwd(), 'module_config', 'module_{}_default'.format(platform.lower()))
patch_tool = os.path.join(os.getcwd(), 'tools', 'patch.py')
if os.path.exists(patch_tool) and os.path.exists(config_dir):
cmd = 'python {} {}'.format(patch_tool, config_dir)
if subprocess.call(cmd, shell = True):
raise Exception('apply patches failed.')
ESP_LOGI('patches check completed for updates.')
else:
ESP_LOGE('patches update check has failed.')
def build_project(platform_name, module_name, silence, build_args):
tool = os.path.join('esp-idf', 'tools', 'idf.py')
if sys.platform == 'win32':
sys_python_path = sys.executable
elif sys.platform == 'linux2':
sys_python_path = sys.executable
else:
if os.environ.get('IDF_PYTHON_ENV_PATH') is None:
sys_python_path = 'python'
else:
sys_python_path = os.path.join(os.environ.get('IDF_PYTHON_ENV_PATH'), 'bin', 'python')
exp_macro_cmd = ''
for item in at_macro_pairs:
exp_macro_cmd += '{} {}={} &&'.format(sys_cmd, item, item)
exp_macro_cmd += '{} ESP_AT_PROJECT_PLATFORM=PLATFORM_{} &&'.format(sys_cmd, platform_name)
exp_macro_cmd += '{} ESP_AT_MODULE_NAME={} &&'.format(sys_cmd, module_name)
exp_macro_cmd += '{} ESP_AT_PROJECT_PATH={} &&'.format(sys_cmd, os.getcwd())
exp_macro_cmd += '{} SILENCE={}'.format(sys_cmd, silence)
compile_cmd = '{} {} -DIDF_TARGET={} {}'.format(sys_python_path, tool, platform_name.lower(), build_args)
cmd = exp_macro_cmd + '&&' + compile_cmd
ret = subprocess.call(cmd, shell = True)
if ret:
raise Exception('idf.py build failed')
with open(os.path.join('build', 'flash_project_args'), 'r') as rd_f:
with open(os.path.join('build', 'download.config'), 'w') as wr_f:
data = rd_f.read().splitlines()
wr_f.write(' '.join(data))
def get_param_data_info(source_file, sheet_name):
import xlrd
import csv
filename, filetype = os.path.splitext(source_file)
if filetype == '.csv':
with open(source_file) as f:
csv_data = csv.reader(f)
param_data_list = list(csv_data)
else:
print('The file type is not supported.')
exit()
return param_data_list
def get_platform_and_module_lists():
platform_lists = {}
data_lists = get_param_data_info(
os.path.join('components', 'customized_partitions', 'raw_data', 'factory_param', 'factory_param_data.csv'), 'Param_Data')
headers = data_lists[0]
nrows = len(data_lists)
ncols = len(data_lists[0])
platform_index = ncols
module_name_index = ncols
description_index = ncols
for i in range(ncols): # get platform index
if headers[i] == 'platform':
platform_index = i
break
for i in range(ncols): # get module name index
if headers[i] == 'module_name':
module_name_index = i
break
for i in range(ncols): # get description index
if headers[i] == 'description':
description_index = i
break
if platform_index == ncols:
sys.exit('ERROR: Not found platform in header.')
if module_name_index == ncols:
sys.exit('ERROR: Not found module name in header.')
if description_index == ncols:
sys.exit('ERROR: Not found description in header.')
for row in range(1, nrows): # skip header
data_list = data_lists[row]
modules = []
platform_name = data_list[platform_index].upper()
module_name = data_list[module_name_index].upper()
module_info = {'module_name': module_name, 'description': data_list[description_index]}
if platform_name in platform_lists:
platform_lists.fromkeys(platform_name, platform_lists[platform_name].append(module_info))
else:
platform_lists[platform_name] = [module_info]
return platform_lists
def choose_project_config():
info = {}
info_lists = get_platform_and_module_lists()
platform_lists = list(info_lists.keys())
module_info_file = os.path.join('build', 'module_info.json')
if os.path.exists(module_info_file):
with open(module_info_file, 'r') as f:
info = json.load(f)
if not 'platform' in info or not 'module' in info or not 'silence' in info:
sys.exit('"{}" configuration error, please delete and reconfigure it'.format(module_info_file))
platform_name = info['platform']
module_name = info['module']
if not platform_name in info_lists:
sys.exit('"{}" configuration error, please delete and reconfigure it'.format(module_info_file))
# get module_info
found = False
for index, module in enumerate(info_lists[platform_name]):
if module_name == module['module_name']:
found = True
break
if not found:
sys.exit('"{}" configuration error, please delete and reconfigure it'.format(module_info_file))
if info['silence'] != 0 and info['silence'] != 1:
sys.exit('"{}" configuration error, please delete and reconfigure it'.format(module_info_file))
return platform_name.replace('PLATFORM_', ''), module_name, info['silence']
print('Platform name:')
for i, platform in enumerate(platform_lists):
print('{}. {}'.format(i + 1, platform))
try:
platform_index = raw_input('choose(range[1,{}]):'.format(i + 1))
except NameError:
platform_index = input('choose(range[1,{}]):'.format(i + 1))
if (not platform_index.isdigit()) or (int(platform_index) - 1 > i):
sys.exit('Invalid index')
print('\r\nModule name:')
platform_name = platform_lists[int(platform_index) - 1]
info['platform'] = platform_name
for i, module in enumerate(info_lists[platform_name]):
if len(module['description']) > 0:
print('{}. {} (Firmware description: {})'.format(i + 1, module['module_name'], module['description']))
else:
print('{}. {}'.format(i + 1, module['module_name']))
try:
module_index = raw_input('choose(range[1,{}]):'.format(i + 1))
except NameError:
module_index = input('choose(range[1,{}]):'.format(i + 1))
if (not module_index.isdigit()) or (int(module_index) - 1 > i):
sys.exit('Invalid index')
module_name = info_lists[platform_name][int(module_index) - 1]['module_name']
module = info_lists[platform_name][int(module_index) - 1]
info['module'] = module_name
info['description'] = module['description']
print('\r\nEnable silence mode to remove some logs and reduce the firmware size?')
print('0. No')
print('1. Yes')
try:
silence_index = raw_input('choose(range[0,1]):')
except NameError:
silence_index = input('choose(range[0,1]):')
if not silence_index.isdigit():
sys.exit('Invalid index')
if int(silence_index) == 0:
info['silence'] = 0
elif int(silence_index) == 1:
info['silence'] = 1
else:
sys.exit('Invalid index')
res = json.dumps(info)
if not os.path.exists('build'):
os.mkdir('build')
with open(module_info_file, 'w+') as f:
f.write(res)
if os.path.exists('sdkconfig'):
os.remove('sdkconfig')
return platform_name.replace('PLATFORM_', ''), module_name, info['silence']
def setup_env_variables():
ESP_LOGI('Ready to set up environment variables..')
# set IDF_PATH
idf_path=os.path.join(os.getcwd(), 'esp-idf')
os.environ['IDF_PATH']=idf_path
# get ESP-IDF toolchain path and virtual python path
print('PATH is {}'.format(os.environ.get('PATH')))
print('IDF_PYTHON_ENV_PATH is {}'.format(os.environ.get('IDF_PYTHON_ENV_PATH')))
print('sys.platform is {}'.format(sys.platform))
export_str = ''
if sys.platform != 'linux2':
cmd = '{} {} export --format=key-value'.format(sys.executable, os.path.join('esp-idf', 'tools', 'idf_tools.py'))
try:
export_str = subprocess.check_output(cmd, shell=True).decode('utf-8')
except Exception as e:
print('Not found the environment installed by "install" command, and using the default system environment')
if export_str:
# extract toolchain PATH and IDF_PYTHON_ENV_PATH
idf_tc_env_path = ''
idf_python_env_path = os.environ.get('IDF_PYTHON_ENV_PATH')
for line in export_str.splitlines():
if line.startswith('PATH='):
idf_tc_env_path = line.split('PATH=')[1]
if line.startswith('IDF_PYTHON_ENV_PATH='):
idf_python_env_path = line.split('IDF_PYTHON_ENV_PATH=')[1]
# set PATH and IDF_PYTHON_ENV_PATH and print
at_env_path = idf_tc_env_path + sys_delimiter + os.environ.get('PATH')
os.environ['PATH'] = at_env_path
if idf_python_env_path:
os.environ['IDF_PYTHON_ENV_PATH'] = idf_python_env_path
print('export str is {}'.format(export_str))
print('PATH is {}'.format(os.environ.get('PATH')))
print('IDF_PYTHON_ENV_PATH is {}'.format(os.environ.get('IDF_PYTHON_ENV_PATH')))
def install_compilation_env(target):
# set up ESP-IDF tools
ESP_LOGI('Ready to set up ESP-IDF tools..')
cmd = '{} {} install-python-env'.format(sys.executable, os.path.join('esp-idf', 'tools', 'idf_tools.py'))
ret = subprocess.call(cmd, shell = True)
if ret:
raise Exception('set up ESP-IDF python-env failed')
cmd = '{} {} install --targets {}'.format(sys.executable, os.path.join('esp-idf', 'tools', 'idf_tools.py'), target)
ret = subprocess.call(cmd, shell = True)
if ret:
raise Exception('set up ESP-IDF toolchains failed')
# set up environment variables
setup_env_variables()
# install ESP-AT python packages
ESP_LOGI('Ready to install ESP-AT python packages..')
if sys.platform == 'win32':
py_env_path = sys.executable
else:
py_env_path = os.path.join(os.environ.get('IDF_PYTHON_ENV_PATH'), 'bin', 'python')
cmd = '{} -m pip install -r requirements.txt'.format(py_env_path)
ret = subprocess.call(cmd, shell = True)
if ret:
raise Exception('install ESP-AT python packages failed!')
print('\r\nAll done! You can now run:\r\n\r\n {}build.py build\r\n'.format('python ' if sys.platform == 'win32' else './'))
def install_prerequisites():
# install ESP-IDF prerequisites
ESP_LOGI('Ready to install ESP-IDF prerequisites..')
cmd = ''
if sys.platform == 'linux':
cmd = 'sudo apt-get install git wget flex bison gperf python3 python3-pip python3-venv python3-setuptools cmake ninja-build ccache libffi-dev libssl-dev dfu-util libusb-1.0-0'
elif sys.platform == 'darwin':
cmd = 'sudo easy_install pip && brew install cmake ninja dfu-util ccache python3'
elif sys.platform == 'win32':
print('Windows Installer Download has already installed all prerequisites.')
elif sys.platform == 'linux2':
print('GitLab CI has already installed all prerequisites.')
else:
raise Exception('unsupported platform: {} till now.'.format(sys.platform))
if not os.environ.get('HAS_IDF_PREREQUISITES'):
ret = subprocess.call(cmd, shell = True)
if ret:
raise Exception('install prerequisites failed! Please manually run:\r\n{}'.format(cmd))
# install ESP-AT prerequisites
ESP_LOGI('Ready to install ESP-AT prerequisites..')
cmd = '{} -m pip install -r requirements.txt'.format(sys.executable)
ret = subprocess.call(cmd, shell = True)
if ret:
raise Exception('install ESP-AT prerequisites failed!')
def get_doc_target():
command = ['git', 'rev-parse', '--abbrev-ref', 'HEAD']
try:
result = subprocess.check_output(command).decode().strip()
except Exception as e:
raise Exception('cannot fetch the branch name: {}'.format(e))
if not result.startswith('release'):
return 'latest'
return result.replace('/', '-')
"""
TODOs:
1. optimise ESP-IDF clone and version update workflow
2. optimise ESP-AT and ESP-IDF tools/packages install workflow
3. remove workaround for windows
"""
def main():
if sys.platform == 'win32':
init(autoreset=True)
argv = sys.argv[1:]
# unset IDF_PATH
if os.environ.get('IDF_PATH'):
os.environ['IDF_PATH']=''
# install prerequisites
if (len(argv) == 1 and sys.argv[1] == 'install'):
install_prerequisites()
platform_name, module_name, silence = choose_project_config()
if platform_name.lower() in at_targets:
ESP_LOGI('Platform name:{}\tModule name:{}\tSilence:{}'.format(platform_name, module_name, silence))
else:
ESP_LOGE('Unsupported platform: <{}> till now.'.format(platform_name))
sys.exit(2)
at_submodules_update(platform_name, module_name)
# apply possible patches to source code
at_patch_if_config(platform_name, module_name)
if (len(argv) == 1 and sys.argv[1] == 'install'):
# install tools and packages only after esp-idf cloned
install_compilation_env(platform_name.lower())
sys.exit(0)
elif len(argv) == 0:
ESP_LOGE('Incorrect usage, please refer to https://docs.espressif.com/projects/esp-at/en/{}/{}/Compile_and_Develop/How_to_clone_project_and_compile_it.html for more details.'.format(get_doc_target(), platform_name.lower()))
sys.exit(0)
setup_env_variables()
build_args = ' '.join(argv)
build_project(platform_name, module_name, silence, build_args)
if __name__ == '__main__':
try:
main()
except Exception as e:
ESP_LOGE('A fatal error occurred: {}'.format(e))
sys.exit(2)