eclipse.py 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459
  1. #
  2. # Copyright (c) 2006-2019, RT-Thread Development Team
  3. #
  4. # SPDX-License-Identifier: Apache-2.0
  5. #
  6. # Change Logs:
  7. # Date Author Notes
  8. # 2019-03-21 Bernard the first version
  9. # 2019-04-15 armink fix project update error
  10. #
  11. import os
  12. import sys
  13. import glob
  14. from utils import *
  15. from utils import _make_path_relative
  16. from utils import xml_indent
  17. import xml.etree.ElementTree as etree
  18. from xml.etree.ElementTree import SubElement
  19. source_pattern = ['*.c', '*.cpp', '*.cxx', '*.s', '*.S', '*.asm']
  20. def OSPath(path):
  21. import platform
  22. if type(path) == type('str'):
  23. if platform.system() == 'Windows':
  24. return path.replace('/', '\\')
  25. else:
  26. return path.replace('\\', '/')
  27. else:
  28. if platform.system() == 'Windows':
  29. return [item.replace('/', '\\') for item in path]
  30. else:
  31. return [item.replace('\\', '/') for item in path]
  32. # collect the build source code path and parent path
  33. def CollectPaths(paths):
  34. all_paths = []
  35. def ParentPaths(path):
  36. ret = os.path.dirname(path)
  37. if ret == path or ret == '':
  38. return []
  39. return [ret] + ParentPaths(ret)
  40. for path in paths:
  41. # path = os.path.abspath(path)
  42. path = path.replace('\\', '/')
  43. all_paths = all_paths + [path] + ParentPaths(path)
  44. all_paths = list(set(all_paths))
  45. return sorted(all_paths)
  46. '''
  47. Collect all of files under paths
  48. '''
  49. def CollectFiles(paths, pattern):
  50. files = []
  51. for path in paths:
  52. if type(pattern) == type(''):
  53. files = files + glob.glob(path + '/' + pattern)
  54. else:
  55. for item in pattern:
  56. # print('--> %s' % (path + '/' + item))
  57. files = files + glob.glob(path + '/' + item)
  58. return sorted(files)
  59. def CollectAllFilesinPath(path, pattern):
  60. files = []
  61. for item in pattern:
  62. files += glob.glob(path + '/' + item)
  63. list = os.listdir(path)
  64. if len(list):
  65. for item in list:
  66. if item.startswith('.'):
  67. continue
  68. if item == 'bsp':
  69. continue
  70. if os.path.isdir(os.path.join(path, item)):
  71. files = files + CollectAllFilesinPath(os.path.join(path, item), pattern)
  72. return files
  73. '''
  74. Exclude files from infiles
  75. '''
  76. def ExcludeFiles(infiles, files):
  77. in_files = set([OSPath(file) for file in infiles])
  78. exl_files = set([OSPath(file) for file in files])
  79. exl_files = in_files - exl_files
  80. return exl_files
  81. # caluclate the exclude path for project
  82. def ExcludePaths(rootpath, paths):
  83. ret = []
  84. files = os.listdir(rootpath)
  85. for file in files:
  86. if file.startswith('.'):
  87. continue
  88. fullname = os.path.join(rootpath, file)
  89. if os.path.isdir(fullname):
  90. # print(fullname)
  91. if not fullname in paths:
  92. ret = ret + [fullname]
  93. else:
  94. ret = ret + ExcludePaths(fullname, paths)
  95. return ret
  96. rtt_path_prefix = '"${workspace_loc://${ProjName}//'
  97. def ConverToRttEclipsePathFormat(path):
  98. return rtt_path_prefix + path + '}"'
  99. def IsRttEclipsePathFormat(path):
  100. if path.startswith(rtt_path_prefix):
  101. return True
  102. else :
  103. return False
  104. def HandleToolOption(tools, env, project, reset):
  105. BSP_ROOT = os.path.abspath(env['BSP_ROOT'])
  106. CPPDEFINES = project['CPPDEFINES']
  107. paths = [ConverToRttEclipsePathFormat(RelativeProjectPath(env, os.path.normpath(i)).replace('\\', '/')) for i in project['CPPPATH']]
  108. compile_include_paths_option = None
  109. compile_include_files_option = None
  110. compile_defs_option = None
  111. linker_scriptfile_option = None
  112. linker_script_option = None
  113. linker_nostart_option = None
  114. linker_libs_option = None
  115. linker_paths_option = None
  116. linker_newlib_nano_option = None
  117. for tool in tools:
  118. if tool.get('id').find('c.compile') != 1:
  119. options = tool.findall('option')
  120. # find all compile options
  121. for option in options:
  122. if option.get('id').find('c.compiler.include.paths') != -1 or option.get('id').find('c.compiler.option.includepaths') != -1:
  123. compile_include_paths_option = option
  124. elif option.get('id').find('c.compiler.include.files') != -1 or option.get('id').find('c.compiler.option.includefiles') != -1 :
  125. compile_include_files_option = option
  126. elif option.get('id').find('c.compiler.defs') != -1 or option.get('id').find('c.compiler.option.definedsymbols') != -1:
  127. compile_defs_option = option
  128. if tool.get('id').find('c.linker') != -1:
  129. options = tool.findall('option')
  130. # find all linker options
  131. for option in options:
  132. if option.get('id').find('c.linker.scriptfile') != -1:
  133. linker_scriptfile_option = option
  134. elif option.get('id').find('c.linker.option.script') != -1:
  135. linker_script_option = option
  136. elif option.get('id').find('c.linker.nostart') != -1:
  137. linker_nostart_option = option
  138. elif option.get('id').find('c.linker.libs') != -1 and env.has_key('LIBS'):
  139. linker_libs_option = option
  140. elif option.get('id').find('c.linker.paths') != -1 and env.has_key('LIBPATH'):
  141. linker_paths_option = option
  142. elif option.get('id').find('c.linker.usenewlibnano') != -1:
  143. linker_newlib_nano_option = option
  144. # change the inclue path
  145. if compile_include_paths_option is not None :
  146. option = compile_include_paths_option
  147. # find all of paths in this project
  148. include_paths = option.findall('listOptionValue')
  149. for item in include_paths:
  150. if reset is True or IsRttEclipsePathFormat(item.get('value')) :
  151. # clean old configuration
  152. option.remove(item)
  153. # print('c.compiler.include.paths')
  154. paths = sorted(paths)
  155. for item in paths:
  156. SubElement(option, 'listOptionValue', {'builtIn': 'false', 'value': item})
  157. # change the inclue files (default) or definitions
  158. if compile_include_files_option is not None:
  159. option = compile_include_files_option
  160. # add '_REENT_SMALL' to CPPDEFINES when --specs=nano.specs has select
  161. if linker_newlib_nano_option is not None and linker_newlib_nano_option.get('value') == 'true' and '_REENT_SMALL' not in CPPDEFINES:
  162. CPPDEFINES += ['_REENT_SMALL']
  163. print(linker_newlib_nano_option.get('value'))
  164. file_header = '''
  165. #ifndef RTCONFIG_PREINC_H__
  166. #define RTCONFIG_PREINC_H__
  167. /* Automatically generated file; DO NOT EDIT. */
  168. /* RT-Thread pre-include file */
  169. '''
  170. file_tail = '\n#endif /*RTCONFIG_PREINC_H__*/\n'
  171. rtt_pre_inc_item = '"${workspace_loc:/${ProjName}/rtconfig_preinc.h}"'
  172. # save the CPPDEFINES in to rtconfig_preinc.h
  173. with open('rtconfig_preinc.h', mode = 'w+') as f:
  174. f.write(file_header)
  175. for cppdef in CPPDEFINES:
  176. f.write("#define " + cppdef + '\n')
  177. f.write(file_tail)
  178. # change the c.compiler.include.files
  179. files = option.findall('listOptionValue')
  180. find_ok = False
  181. for item in files:
  182. if item.get('value') == rtt_pre_inc_item:
  183. find_ok = True
  184. break
  185. if find_ok is False:
  186. SubElement(option, 'listOptionValue', {'builtIn': 'false', 'value': rtt_pre_inc_item})
  187. elif compile_defs_option is not None :
  188. option = compile_defs_option
  189. defs = option.findall('listOptionValue')
  190. project_defs = []
  191. for item in defs:
  192. if reset is True:
  193. # clean all old configuration
  194. option.remove(item)
  195. else:
  196. project_defs += [item.get('value')]
  197. if len(project_defs) > 0:
  198. cproject_defs = set(CPPDEFINES) - set(project_defs)
  199. else:
  200. cproject_defs = CPPDEFINES
  201. # print('c.compiler.defs')
  202. cproject_defs = sorted(cproject_defs)
  203. for item in cproject_defs:
  204. SubElement(option, 'listOptionValue', {'builtIn': 'false', 'value': item})
  205. # update linker script config
  206. if linker_scriptfile_option is not None :
  207. option = linker_scriptfile_option
  208. linker_script = 'link.lds'
  209. items = env['LINKFLAGS'].split(' ')
  210. if '-T' in items:
  211. linker_script = items[items.index('-T') + 1]
  212. linker_script = ConverToRttEclipsePathFormat(linker_script)
  213. listOptionValue = option.find('listOptionValue')
  214. if listOptionValue != None:
  215. listOptionValue.set('value', linker_script)
  216. else:
  217. SubElement(option, 'listOptionValue', {'builtIn': 'false', 'value': linker_script})
  218. # scriptfile in stm32cubeIDE
  219. if linker_script_option is not None :
  220. option = linker_script_option
  221. items = env['LINKFLAGS'].split(' ')
  222. if '-T' in items:
  223. linker_script = ConverToRttEclipsePathFormat(items[items.index('-T') + 1]).strip('"')
  224. option.set('value', linker_script)
  225. # update nostartfiles config
  226. if linker_nostart_option is not None :
  227. option = linker_nostart_option
  228. if env['LINKFLAGS'].find('-nostartfiles') != -1:
  229. option.set('value', 'true')
  230. else:
  231. option.set('value', 'false')
  232. # update libs
  233. if linker_libs_option is not None :
  234. option = linker_libs_option
  235. # remove old libs
  236. for item in option.findall('listOptionValue'):
  237. option.remove(item)
  238. # add new libs
  239. for lib in env['LIBS']:
  240. SubElement(option, 'listOptionValue', {'builtIn': 'false', 'value': lib})
  241. # update lib paths
  242. if linker_paths_option is not None :
  243. option = linker_paths_option
  244. # remove old lib paths
  245. for item in option.findall('listOptionValue'):
  246. option.remove(item)
  247. # add new old lib paths
  248. for path in env['LIBPATH']:
  249. SubElement(option, 'listOptionValue', {'builtIn': 'false', 'value': path})
  250. return
  251. def UpdateProjectStructure(env, prj_name):
  252. bsp_root = env['BSP_ROOT']
  253. rtt_root = env['RTT_ROOT']
  254. project = etree.parse('.project')
  255. root = project.getroot()
  256. if rtt_root.startswith(bsp_root):
  257. linkedResources = root.find('linkedResources')
  258. if linkedResources == None:
  259. linkedResources = SubElement(root, 'linkedResources')
  260. links = linkedResources.findall('link')
  261. # delete all RT-Thread folder links
  262. for link in links:
  263. if link.find('name').text.startswith('rt-thread'):
  264. linkedResources.remove(link)
  265. if prj_name:
  266. name = root.find('name')
  267. if name == None:
  268. name = SubElement(root, 'name')
  269. name.text = prj_name
  270. out = open('.project', 'w')
  271. out.write('<?xml version="1.0" encoding="UTF-8"?>\n')
  272. xml_indent(root)
  273. out.write(etree.tostring(root, encoding = 'utf-8'))
  274. out.close()
  275. return
  276. def GenExcluding(env, project):
  277. rtt_root = os.path.abspath(env['RTT_ROOT'])
  278. bsp_root = os.path.abspath(env['BSP_ROOT'])
  279. coll_dirs = CollectPaths(project['DIRS'])
  280. all_paths = [OSPath(path) for path in coll_dirs]
  281. if bsp_root.startswith(rtt_root):
  282. # bsp folder is in the RT-Thread root folder, such as the RT-Thread source code on GitHub
  283. exclude_paths = ExcludePaths(rtt_root, all_paths)
  284. elif rtt_root.startswith(bsp_root):
  285. # RT-Thread root folder is in the bsp folder, such as project folder which generate by 'scons --dist' cmd
  286. check_path = []
  287. exclude_paths = []
  288. # analyze the primary folder which relative to BSP_ROOT and in all_paths
  289. for path in all_paths :
  290. if path.startswith(bsp_root) :
  291. folders = RelativeProjectPath(env, path).split('\\')
  292. if folders[0] != '.' and '\\' + folders[0] not in check_path:
  293. check_path += ['\\' + folders[0]]
  294. # exclue the folder which has managed by scons
  295. for path in check_path:
  296. exclude_paths += ExcludePaths(bsp_root + path, all_paths)
  297. else:
  298. exclude_paths = ExcludePaths(rtt_root, all_paths)
  299. exclude_paths += ExcludePaths(bsp_root, all_paths)
  300. paths = exclude_paths
  301. exclude_paths = []
  302. # remove the folder which not has source code by source_pattern
  303. for path in paths:
  304. # add bsp and libcpu folder and not collect source files (too more files)
  305. if path.endswith('rt-thread\\bsp') or path.endswith('rt-thread\\libcpu'):
  306. exclude_paths += [path]
  307. continue
  308. set = CollectAllFilesinPath(path, source_pattern)
  309. if len(set):
  310. exclude_paths += [path]
  311. exclude_paths = [RelativeProjectPath(env, path).replace('\\', '/') for path in exclude_paths]
  312. all_files = CollectFiles(all_paths, source_pattern)
  313. src_files = project['FILES']
  314. exclude_files = ExcludeFiles(all_files, src_files)
  315. exclude_files = [RelativeProjectPath(env, file).replace('\\', '/') for file in exclude_files]
  316. env['ExPaths'] = exclude_paths
  317. env['ExFiles'] = exclude_files
  318. return exclude_paths + exclude_files
  319. def RelativeProjectPath(env, path):
  320. project_root = os.path.abspath(env['BSP_ROOT'])
  321. rtt_root = os.path.abspath(env['RTT_ROOT'])
  322. if path.startswith(project_root):
  323. return _make_path_relative(project_root, path)
  324. if path.startswith(rtt_root):
  325. return 'rt-thread/' + _make_path_relative(rtt_root, path)
  326. # TODO add others folder
  327. print('ERROR: the ' + path + ' not support')
  328. return path
  329. def UpdateCproject(env, project, excluding, reset):
  330. excluding = sorted(excluding)
  331. cproject = etree.parse('.cproject')
  332. root = cproject.getroot()
  333. cconfigurations = root.findall('storageModule/cconfiguration')
  334. for cconfiguration in cconfigurations:
  335. tools = cconfiguration.findall('storageModule/configuration/folderInfo/toolChain/tool')
  336. HandleToolOption(tools, env, project, reset)
  337. sourceEntries = cconfiguration.find('storageModule/configuration/sourceEntries')
  338. entry = sourceEntries.find('entry')
  339. if entry != None:
  340. sourceEntries.remove(entry)
  341. value = ''
  342. for item in excluding:
  343. if value == '':
  344. value = item
  345. else:
  346. value += '|' + item
  347. SubElement(sourceEntries, 'entry', {'excluding': value, 'flags': 'VALUE_WORKSPACE_PATH|RESOLVED', 'kind':'sourcePath', 'name':""})
  348. # write back to .cproject
  349. out = open('.cproject', 'w')
  350. out.write('<?xml version="1.0" encoding="UTF-8" standalone="no"?>\n')
  351. out.write('<?fileVersion 4.0.0?>')
  352. xml_indent(root)
  353. out.write(etree.tostring(root, encoding='utf-8'))
  354. out.close()
  355. def TargetEclipse(env, reset = False, prj_name = None):
  356. global source_pattern
  357. print('Update eclipse setting...')
  358. if not os.path.exists('.cproject'):
  359. print('no eclipse CDT project found!')
  360. return
  361. project = ProjectInfo(env)
  362. # update the project file structure info on '.project' file
  363. UpdateProjectStructure(env, prj_name)
  364. # generate the exclude paths and files
  365. excluding = GenExcluding(env, project)
  366. # update the project configuration on '.cproject' file
  367. UpdateCproject(env, project, excluding, reset)
  368. print('done!')
  369. return