[tools][vsc] Add the workspace of vscode (#7017)
This commit is contained in:
parent
d1baf1f5b5
commit
bd22ff5f8e
35
tools/vsc.py
35
tools/vsc.py
|
@ -20,6 +20,7 @@
|
||||||
# Change Logs:
|
# Change Logs:
|
||||||
# Date Author Notes
|
# Date Author Notes
|
||||||
# 2018-05-30 Bernard The first version
|
# 2018-05-30 Bernard The first version
|
||||||
|
# 2023-03-03 Supperthomas Add the vscode workspace config file
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Utils for VSCode
|
Utils for VSCode
|
||||||
|
@ -31,6 +32,10 @@ import utils
|
||||||
import rtconfig
|
import rtconfig
|
||||||
from utils import _make_path_relative
|
from utils import _make_path_relative
|
||||||
|
|
||||||
|
def delete_repeatelist(data):
|
||||||
|
temp_dict = set([str(item) for item in data])
|
||||||
|
data = [eval(i) for i in temp_dict]
|
||||||
|
return data
|
||||||
|
|
||||||
def GenerateCFiles(env):
|
def GenerateCFiles(env):
|
||||||
"""
|
"""
|
||||||
|
@ -69,6 +74,36 @@ def GenerateCFiles(env):
|
||||||
vsc_file.write(json.dumps(json_obj, ensure_ascii=False, indent=4))
|
vsc_file.write(json.dumps(json_obj, ensure_ascii=False, indent=4))
|
||||||
vsc_file.close()
|
vsc_file.close()
|
||||||
|
|
||||||
|
"""
|
||||||
|
Generate vscode.code-workspace files
|
||||||
|
"""
|
||||||
|
vsc_space_file = open('vscode.code-workspace', 'w')
|
||||||
|
if vsc_space_file:
|
||||||
|
info = utils.ProjectInfo(env)
|
||||||
|
path_list = []
|
||||||
|
for i in info['CPPPATH']:
|
||||||
|
if _make_path_relative(os.getcwd(), i)[0] == '.':
|
||||||
|
if i[0] == '\"' and i[len(i) - 2:len(i)] == '\",':
|
||||||
|
path_list.append({'path':_make_path_relative(os.getcwd(), i[1:len(i) - 2])})
|
||||||
|
else:
|
||||||
|
path_list.append({'path':_make_path_relative(os.getcwd(), i)})
|
||||||
|
for i in info['DIRS']:
|
||||||
|
if _make_path_relative(os.getcwd(), i)[0] == '.':
|
||||||
|
if i[0] == '\"' and i[len(i) - 2:len(i)] == '\",':
|
||||||
|
path_list.append({'path':_make_path_relative(os.getcwd(), i[1:len(i) - 2])})
|
||||||
|
else:
|
||||||
|
path_list.append({'path':_make_path_relative(os.getcwd(), i)})
|
||||||
|
|
||||||
|
json_obj = {}
|
||||||
|
path_list = delete_repeatelist(path_list)
|
||||||
|
path_list = sorted(path_list, key=lambda x: x["path"])
|
||||||
|
target_path_list = []
|
||||||
|
for path in path_list:
|
||||||
|
if path['path'] != '.':
|
||||||
|
path['name'] = 'rtthread/' + '/'.join([p for p in path['path'].split('\\') if p != '..'])
|
||||||
|
json_obj['folders'] = path_list
|
||||||
|
vsc_space_file.write(json.dumps(json_obj, ensure_ascii=False, indent=4))
|
||||||
|
vsc_space_file.close()
|
||||||
return
|
return
|
||||||
|
|
||||||
def GenerateVSCode(env):
|
def GenerateVSCode(env):
|
||||||
|
|
Loading…
Reference in New Issue