2019-04-29 18:17:47 +08:00
|
|
|
#
|
|
|
|
# Copyright (c) 2006-2019, RT-Thread Development Team
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
#
|
|
|
|
# Change Logs:
|
|
|
|
# Date Author Notes
|
|
|
|
# 2019-03-21 Bernard the first version
|
|
|
|
# 2019-04-15 armink fix project update error
|
|
|
|
#
|
|
|
|
|
2019-03-21 23:04:37 +08:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
import glob
|
|
|
|
|
|
|
|
from utils import *
|
|
|
|
from utils import _make_path_relative
|
|
|
|
from utils import xml_indent
|
|
|
|
|
|
|
|
import xml.etree.ElementTree as etree
|
|
|
|
from xml.etree.ElementTree import SubElement
|
|
|
|
|
|
|
|
source_pattern = ['*.c', '*.cpp', '*.cxx', '*.s', '*.S', '*.asm']
|
|
|
|
|
|
|
|
def OSPath(path):
|
|
|
|
import platform
|
|
|
|
|
|
|
|
if type(path) == type('str'):
|
|
|
|
if platform.system() == 'Windows':
|
|
|
|
return path.replace('/', '\\')
|
|
|
|
else:
|
|
|
|
return path.replace('\\', '/')
|
|
|
|
else:
|
|
|
|
if platform.system() == 'Windows':
|
|
|
|
return [item.replace('/', '\\') for item in path]
|
|
|
|
else:
|
|
|
|
return [item.replace('\\', '/') for item in path]
|
|
|
|
|
2019-04-29 18:17:47 +08:00
|
|
|
|
|
|
|
# collect the build source code path and parent path
|
2019-03-21 23:04:37 +08:00
|
|
|
def CollectPaths(paths):
|
|
|
|
all_paths = []
|
|
|
|
|
|
|
|
def ParentPaths(path):
|
|
|
|
ret = os.path.dirname(path)
|
|
|
|
if ret == path or ret == '':
|
|
|
|
return []
|
|
|
|
|
|
|
|
return [ret] + ParentPaths(ret)
|
|
|
|
|
|
|
|
for path in paths:
|
|
|
|
# path = os.path.abspath(path)
|
|
|
|
path = path.replace('\\', '/')
|
|
|
|
all_paths = all_paths + [path] + ParentPaths(path)
|
|
|
|
|
|
|
|
all_paths = list(set(all_paths))
|
|
|
|
return sorted(all_paths)
|
|
|
|
|
|
|
|
'''
|
|
|
|
Collect all of files under paths
|
|
|
|
'''
|
|
|
|
def CollectFiles(paths, pattern):
|
|
|
|
files = []
|
|
|
|
for path in paths:
|
|
|
|
if type(pattern) == type(''):
|
|
|
|
files = files + glob.glob(path + '/' + pattern)
|
|
|
|
else:
|
|
|
|
for item in pattern:
|
|
|
|
# print('--> %s' % (path + '/' + item))
|
|
|
|
files = files + glob.glob(path + '/' + item)
|
|
|
|
|
|
|
|
return sorted(files)
|
|
|
|
|
|
|
|
def CollectAllFilesinPath(path, pattern):
|
|
|
|
files = []
|
|
|
|
|
|
|
|
for item in pattern:
|
|
|
|
files += glob.glob(path + '/' + item)
|
|
|
|
|
|
|
|
list = os.listdir(path)
|
|
|
|
if len(list):
|
|
|
|
for item in list:
|
|
|
|
if item.startswith('.'):
|
|
|
|
continue
|
|
|
|
if item == 'bsp':
|
|
|
|
continue
|
|
|
|
|
|
|
|
if os.path.isdir(os.path.join(path, item)):
|
|
|
|
files = files + CollectAllFilesinPath(os.path.join(path, item), pattern)
|
|
|
|
return files
|
|
|
|
|
|
|
|
'''
|
|
|
|
Exclude files from infiles
|
|
|
|
'''
|
|
|
|
def ExcludeFiles(infiles, files):
|
|
|
|
in_files = set([OSPath(file) for file in infiles])
|
|
|
|
exl_files = set([OSPath(file) for file in files])
|
|
|
|
|
|
|
|
exl_files = in_files - exl_files
|
|
|
|
|
|
|
|
return exl_files
|
|
|
|
|
2019-04-29 18:17:47 +08:00
|
|
|
|
|
|
|
# caluclate the exclude path for project
|
2019-06-18 20:08:00 +08:00
|
|
|
def ExcludePaths(rootpath, paths):
|
2019-03-21 23:04:37 +08:00
|
|
|
ret = []
|
|
|
|
|
2019-06-18 20:08:00 +08:00
|
|
|
files = os.listdir(rootpath)
|
2019-03-21 23:04:37 +08:00
|
|
|
for file in files:
|
|
|
|
if file.startswith('.'):
|
|
|
|
continue
|
|
|
|
|
2019-06-18 20:08:00 +08:00
|
|
|
fullname = os.path.join(rootpath, file)
|
2019-03-21 23:04:37 +08:00
|
|
|
|
|
|
|
if os.path.isdir(fullname):
|
|
|
|
# print(fullname)
|
|
|
|
if not fullname in paths:
|
|
|
|
ret = ret + [fullname]
|
|
|
|
else:
|
|
|
|
ret = ret + ExcludePaths(fullname, paths)
|
|
|
|
|
|
|
|
return ret
|
|
|
|
|
2019-04-29 18:17:47 +08:00
|
|
|
|
|
|
|
def ConverToEclipsePathFormat(path):
|
|
|
|
if path.startswith('.'):
|
|
|
|
path = path[1:]
|
|
|
|
return '"${workspace_loc:/${ProjName}/' + path + '}"'
|
|
|
|
|
|
|
|
|
2019-06-18 20:08:00 +08:00
|
|
|
def HandleToolOption(tools, env, project, reset):
|
2019-03-21 23:04:37 +08:00
|
|
|
BSP_ROOT = os.path.abspath(env['BSP_ROOT'])
|
|
|
|
|
|
|
|
CPPDEFINES = project['CPPDEFINES']
|
2019-04-29 18:17:47 +08:00
|
|
|
paths = [ConverToEclipsePathFormat(RelativeProjectPath(env, os.path.normpath(i)).replace('\\', '/')) for i in project['CPPPATH']]
|
2019-03-21 23:04:37 +08:00
|
|
|
|
|
|
|
for tool in tools:
|
|
|
|
if tool.get('id').find('c.compile') != 1:
|
|
|
|
options = tool.findall('option')
|
|
|
|
for option in options:
|
|
|
|
if option.get('id').find('c.compiler.include.paths') != -1:
|
|
|
|
# find all of paths in this project
|
|
|
|
include_paths = option.findall('listOptionValue')
|
|
|
|
project_paths = []
|
|
|
|
for item in include_paths:
|
2019-06-18 20:08:00 +08:00
|
|
|
if reset is True:
|
|
|
|
# clean all old configuration
|
|
|
|
option.remove(item)
|
|
|
|
else:
|
|
|
|
project_paths += [item.get('value')]
|
2019-03-21 23:04:37 +08:00
|
|
|
|
|
|
|
if len(project_paths) > 0:
|
|
|
|
cproject_paths = set(paths) - set(project_paths)
|
|
|
|
else:
|
|
|
|
cproject_paths = paths
|
|
|
|
|
|
|
|
# print('c.compiler.include.paths')
|
|
|
|
cproject_paths = sorted(cproject_paths)
|
|
|
|
for item in cproject_paths:
|
|
|
|
SubElement(option, 'listOptionValue', {'builtIn': 'false', 'value': item})
|
|
|
|
|
|
|
|
if option.get('id').find('c.compiler.defs') != -1:
|
|
|
|
defs = option.findall('listOptionValue')
|
|
|
|
project_defs = []
|
|
|
|
for item in defs:
|
2019-06-18 20:08:00 +08:00
|
|
|
if reset is True:
|
|
|
|
# clean all old configuration
|
|
|
|
option.remove(item)
|
|
|
|
else:
|
|
|
|
project_defs += [item.get('value')]
|
2019-03-21 23:04:37 +08:00
|
|
|
if len(project_defs) > 0:
|
|
|
|
cproject_defs = set(CPPDEFINES) - set(project_defs)
|
|
|
|
else:
|
|
|
|
cproject_defs = CPPDEFINES
|
|
|
|
|
|
|
|
# print('c.compiler.defs')
|
|
|
|
cproject_defs = sorted(cproject_defs)
|
|
|
|
for item in cproject_defs:
|
|
|
|
SubElement(option, 'listOptionValue', {'builtIn': 'false', 'value': item})
|
|
|
|
|
|
|
|
if tool.get('id').find('c.linker') != -1:
|
|
|
|
options = tool.findall('option')
|
|
|
|
for option in options:
|
|
|
|
if option.get('id').find('c.linker.scriptfile') != -1:
|
|
|
|
linker_script = 'link.lds'
|
|
|
|
items = env['LINKFLAGS'].split(' ')
|
|
|
|
if '-T' in items:
|
|
|
|
linker_script = items[items.index('-T') + 1]
|
2019-04-29 18:17:47 +08:00
|
|
|
linker_script = ConverToEclipsePathFormat(linker_script)
|
2019-03-21 23:04:37 +08:00
|
|
|
|
|
|
|
listOptionValue = option.find('listOptionValue')
|
|
|
|
if listOptionValue != None:
|
|
|
|
listOptionValue.set('value', linker_script)
|
|
|
|
else:
|
|
|
|
SubElement(option, 'listOptionValue', {'builtIn': 'false', 'value': linker_script})
|
|
|
|
|
|
|
|
if option.get('id').find('c.linker.nostart') != -1:
|
|
|
|
if env['LINKFLAGS'].find('-nostartfiles') != -1:
|
|
|
|
option.set('value', 'true')
|
|
|
|
else:
|
|
|
|
option.set('value', 'false')
|
|
|
|
|
|
|
|
return
|
|
|
|
|
2019-06-18 20:08:00 +08:00
|
|
|
|
|
|
|
def UpdateProjectStructure(env, prj_name):
|
2019-03-21 23:04:37 +08:00
|
|
|
bsp_root = env['BSP_ROOT']
|
|
|
|
rtt_root = env['RTT_ROOT']
|
|
|
|
|
2019-06-18 20:08:00 +08:00
|
|
|
project = etree.parse('.project')
|
|
|
|
root = project.getroot()
|
2019-03-21 23:04:37 +08:00
|
|
|
|
2019-06-18 20:08:00 +08:00
|
|
|
if rtt_root.startswith(bsp_root):
|
|
|
|
linkedResources = root.find('linkedResources')
|
|
|
|
if linkedResources == None:
|
|
|
|
linkedResources = SubElement(root, 'linkedResources')
|
2019-03-21 23:04:37 +08:00
|
|
|
|
2019-06-18 20:08:00 +08:00
|
|
|
links = linkedResources.findall('link')
|
|
|
|
# delete all RT-Thread folder links
|
|
|
|
for link in links:
|
|
|
|
if link.find('name').text.startswith('rt-thread'):
|
|
|
|
linkedResources.remove(link)
|
2019-04-29 18:17:47 +08:00
|
|
|
|
2019-06-18 20:08:00 +08:00
|
|
|
if prj_name:
|
|
|
|
name = root.find('name')
|
|
|
|
if name == None:
|
|
|
|
name = SubElement(root, 'name')
|
|
|
|
name.text = prj_name
|
|
|
|
|
|
|
|
out = open('.project', 'w')
|
|
|
|
out.write('<?xml version="1.0" encoding="UTF-8"?>\n')
|
|
|
|
xml_indent(root)
|
|
|
|
out.write(etree.tostring(root, encoding = 'utf-8'))
|
|
|
|
out.close()
|
2019-03-21 23:04:37 +08:00
|
|
|
|
|
|
|
return
|
|
|
|
|
2019-04-29 18:17:47 +08:00
|
|
|
def GenExcluding(env, project):
|
|
|
|
rtt_root = os.path.abspath(env['RTT_ROOT'])
|
2019-06-18 20:08:00 +08:00
|
|
|
bsp_root = os.path.abspath(env['BSP_ROOT'])
|
2019-04-29 18:17:47 +08:00
|
|
|
coll_dirs = CollectPaths(project['DIRS'])
|
|
|
|
all_paths = [OSPath(path) for path in coll_dirs]
|
2019-03-21 23:04:37 +08:00
|
|
|
|
2019-06-18 20:08:00 +08:00
|
|
|
if bsp_root.startswith(rtt_root):
|
|
|
|
# bsp folder is in the RT-Thread root folder, such as the RT-Thread source code on GitHub
|
|
|
|
exclude_paths = ExcludePaths(rtt_root, all_paths)
|
|
|
|
elif rtt_root.startswith(bsp_root):
|
|
|
|
# RT-Thread root folder is in the bsp folder, such as project folder which generate by 'scons --dist' cmd
|
|
|
|
exclude_paths = ExcludePaths(bsp_root, all_paths)
|
|
|
|
else:
|
|
|
|
exclude_paths = ExcludePaths(rtt_root, all_paths)
|
|
|
|
exclude_paths += ExcludePaths(bsp_root, all_paths)
|
2019-03-21 23:04:37 +08:00
|
|
|
|
|
|
|
paths = exclude_paths
|
|
|
|
exclude_paths = []
|
2019-04-29 18:17:47 +08:00
|
|
|
# remove the folder which not has source code by source_pattern
|
2019-03-21 23:04:37 +08:00
|
|
|
for path in paths:
|
|
|
|
# add bsp and libcpu folder and not collect source files (too more files)
|
|
|
|
if path.endswith('rt-thread\\bsp') or path.endswith('rt-thread\\libcpu'):
|
|
|
|
exclude_paths += [path]
|
|
|
|
continue
|
|
|
|
|
|
|
|
set = CollectAllFilesinPath(path, source_pattern)
|
|
|
|
if len(set):
|
|
|
|
exclude_paths += [path]
|
|
|
|
|
2019-04-29 18:17:47 +08:00
|
|
|
exclude_paths = [RelativeProjectPath(env, path).replace('\\', '/') for path in exclude_paths]
|
2019-03-21 23:04:37 +08:00
|
|
|
env['ExPaths'] = exclude_paths
|
|
|
|
|
|
|
|
all_files = CollectFiles(all_paths, source_pattern)
|
|
|
|
src_files = project['FILES']
|
|
|
|
|
|
|
|
exclude_files = ExcludeFiles(all_files, src_files)
|
2019-04-29 18:17:47 +08:00
|
|
|
exclude_files = [RelativeProjectPath(env, file).replace('\\', '/') for file in exclude_files]
|
2019-03-21 23:04:37 +08:00
|
|
|
env['ExFiles'] = exclude_files
|
2019-04-29 18:17:47 +08:00
|
|
|
|
|
|
|
return exclude_paths + exclude_files
|
|
|
|
|
|
|
|
|
|
|
|
def RelativeProjectPath(env, path):
|
|
|
|
project_root = os.path.abspath(env['BSP_ROOT'])
|
|
|
|
rtt_root = os.path.abspath(env['RTT_ROOT'])
|
|
|
|
|
|
|
|
if path.startswith(project_root):
|
|
|
|
return _make_path_relative(project_root, path)
|
|
|
|
|
|
|
|
if path.startswith(rtt_root):
|
|
|
|
return 'rt-thread/' + _make_path_relative(rtt_root, path)
|
|
|
|
|
|
|
|
# TODO add others folder
|
|
|
|
print('ERROR: the ' + path + 'not support')
|
|
|
|
|
|
|
|
return path
|
|
|
|
|
|
|
|
|
2019-06-18 20:08:00 +08:00
|
|
|
def UpdateCproject(env, project, excluding, reset):
|
2019-04-29 18:17:47 +08:00
|
|
|
excluding = sorted(excluding)
|
2019-03-21 23:04:37 +08:00
|
|
|
|
|
|
|
cproject = etree.parse('.cproject')
|
|
|
|
|
|
|
|
root = cproject.getroot()
|
|
|
|
cconfigurations = root.findall('storageModule/cconfiguration')
|
|
|
|
for cconfiguration in cconfigurations:
|
|
|
|
tools = cconfiguration.findall('storageModule/configuration/folderInfo/toolChain/tool')
|
2019-06-18 20:08:00 +08:00
|
|
|
HandleToolOption(tools, env, project, reset)
|
2019-03-21 23:04:37 +08:00
|
|
|
|
|
|
|
sourceEntries = cconfiguration.find('storageModule/configuration/sourceEntries')
|
|
|
|
entry = sourceEntries.find('entry')
|
|
|
|
if entry != None:
|
|
|
|
sourceEntries.remove(entry)
|
|
|
|
|
|
|
|
value = ''
|
|
|
|
for item in excluding:
|
|
|
|
if value == '':
|
|
|
|
value = item
|
|
|
|
else:
|
|
|
|
value += '|' + item
|
|
|
|
|
2019-04-29 18:17:47 +08:00
|
|
|
SubElement(sourceEntries, 'entry', {'excluding': value, 'flags': 'VALUE_WORKSPACE_PATH|RESOLVED', 'kind':'sourcePath', 'name':""})
|
2019-03-21 23:04:37 +08:00
|
|
|
|
|
|
|
# write back to .cproject
|
|
|
|
out = open('.cproject', 'w')
|
|
|
|
out.write('<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n')
|
|
|
|
out.write('<?fileVersion 4.0.0?>')
|
|
|
|
xml_indent(root)
|
|
|
|
out.write(etree.tostring(root, encoding='utf-8'))
|
|
|
|
out.close()
|
|
|
|
|
2019-04-29 18:17:47 +08:00
|
|
|
|
2019-06-18 20:08:00 +08:00
|
|
|
def TargetEclipse(env, reset = False, prj_name = None):
|
2019-04-29 18:17:47 +08:00
|
|
|
global source_pattern
|
|
|
|
|
|
|
|
print('Update eclipse setting...')
|
|
|
|
|
|
|
|
if not os.path.exists('.cproject'):
|
|
|
|
print('no eclipse CDT project found!')
|
|
|
|
return
|
|
|
|
|
|
|
|
project = ProjectInfo(env)
|
|
|
|
|
|
|
|
# update the project file structure info on '.project' file
|
2019-06-18 20:08:00 +08:00
|
|
|
UpdateProjectStructure(env, prj_name)
|
2019-04-29 18:17:47 +08:00
|
|
|
|
|
|
|
# generate the exclude paths and files
|
|
|
|
excluding = GenExcluding(env, project)
|
|
|
|
|
|
|
|
# update the project configuration on '.cproject' file
|
2019-06-18 20:08:00 +08:00
|
|
|
UpdateCproject(env, project, excluding, reset)
|
2019-04-29 18:17:47 +08:00
|
|
|
|
2019-03-21 23:04:37 +08:00
|
|
|
print('done!')
|
|
|
|
|
|
|
|
return
|