rt-thread-official/tools/codeblocks.py

141 lines
4.5 KiB
Python
Raw Normal View History

#
# File : codeblocks.py
# This file is part of RT-Thread RTOS
# COPYRIGHT (C) 2006 - 2015, RT-Thread Development Team
#
# This program 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 2 of the License, or
# (at your option) any later version.
#
# This program 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 this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Change Logs:
# Date Author Notes
# 2015-01-20 Bernard Add copyright information
#
2013-02-21 17:37:30 +08:00
import os
import sys
import string
import building
import xml.etree.ElementTree as etree
from xml.etree.ElementTree import SubElement
from utils import _make_path_relative
from utils import xml_indent
2017-12-13 20:13:45 +08:00
import utils
2013-02-21 17:37:30 +08:00
fs_encoding = sys.getfilesystemencoding()
def CB_AddHeadFiles(program, elem, project_path):
2017-12-13 20:13:45 +08:00
utils.source_ext = []
utils.source_ext = ["h"]
2013-02-21 17:37:30 +08:00
for item in program:
2022-08-02 13:33:29 +08:00
utils.walk_children(item)
2017-12-13 20:13:45 +08:00
utils.source_list.sort()
# print utils.source_list
2022-08-02 13:33:29 +08:00
2017-12-13 20:13:45 +08:00
for f in utils.source_list:
2013-02-21 17:37:30 +08:00
path = _make_path_relative(project_path, f)
Unit = SubElement(elem, 'Unit')
Unit.set('filename', path.decode(fs_encoding))
def CB_AddCFiles(ProjectFiles, parent, gname, files, project_path):
for f in files:
fn = f.rfile()
name = fn.name
path = os.path.dirname(fn.abspath)
path = _make_path_relative(project_path, path)
path = os.path.join(path, name)
Unit = SubElement(parent, 'Unit')
Unit.set('filename', path.decode(fs_encoding))
Option = SubElement(Unit, 'Option')
Option.set('compilerVar', "CC")
def CBProject(target, script, program):
project_path = os.path.dirname(os.path.abspath(target))
2013-06-16 23:18:16 +08:00
if os.path.isfile('template.cbp'):
tree = etree.parse('template.cbp')
else:
tree = etree.parse(os.path.join(os.path.dirname(__file__), 'template.cbp'))
2022-08-02 13:33:29 +08:00
2013-02-21 17:37:30 +08:00
root = tree.getroot()
2022-08-02 13:33:29 +08:00
2018-11-10 18:29:08 +08:00
out = open(target, 'w')
2013-02-21 17:37:30 +08:00
out.write('<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>\n')
2022-08-02 13:33:29 +08:00
2013-02-21 17:37:30 +08:00
ProjectFiles = []
2022-08-02 13:33:29 +08:00
2013-02-21 17:37:30 +08:00
# SECTION 1. add "*.c|*.h" files group
for elem in tree.iter(tag='Project'):
# print elem.tag, elem.attrib
break
# add c files
for group in script:
group_xml = CB_AddCFiles(ProjectFiles, elem, group['name'], group['src'], project_path)
# add h files
CB_AddHeadFiles(program, elem, project_path)
2022-08-02 13:33:29 +08:00
# SECTION 2.
2013-02-21 17:37:30 +08:00
# write head include path
2018-11-10 18:29:08 +08:00
if 'CPPPATH' in building.Env:
2013-02-21 17:37:30 +08:00
cpp_path = building.Env['CPPPATH']
paths = set()
for path in cpp_path:
inc = _make_path_relative(project_path, os.path.normpath(path))
paths.add(inc) #.replace('\\', '/')
2022-08-02 13:33:29 +08:00
2013-02-21 17:37:30 +08:00
paths = [i for i in paths]
paths.sort()
# write include path, definitions
for elem in tree.iter(tag='Compiler'):
break
for path in paths:
Add = SubElement(elem, 'Add')
Add.set('directory', path)
for macro in building.Env.get('CPPDEFINES', []):
2013-02-21 17:37:30 +08:00
Add = SubElement(elem, 'Add')
2018-05-24 16:44:31 +08:00
for d in macro:
Add.set('option', "-D"+d)
2022-08-02 13:33:29 +08:00
2013-02-21 17:37:30 +08:00
# write link flags
'''
2022-08-02 13:33:29 +08:00
# write lib dependence
2018-11-10 18:29:08 +08:00
if 'LIBS' in building.Env:
2013-02-21 17:37:30 +08:00
for elem in tree.iter(tag='Tool'):
if elem.attrib['Name'] == 'VCLinkerTool':
break
libs_with_extention = [i+'.lib' for i in building.Env['LIBS']]
libs = ' '.join(libs_with_extention)
elem.set('AdditionalDependencies', libs)
2022-08-02 13:33:29 +08:00
2013-02-21 17:37:30 +08:00
# write lib include path
2018-11-10 18:29:08 +08:00
if 'LIBPATH' in building.Env:
2013-02-21 17:37:30 +08:00
lib_path = building.Env['LIBPATH']
paths = set()
for path in lib_path:
inc = _make_path_relative(project_path, os.path.normpath(path))
paths.add(inc) #.replace('\\', '/')
2022-08-02 13:33:29 +08:00
2013-02-21 17:37:30 +08:00
paths = [i for i in paths]
paths.sort()
lib_paths = ';'.join(paths)
elem.set('AdditionalLibraryDirectories', lib_paths)
'''
xml_indent(root)
out.write(etree.tostring(root, encoding='utf-8'))
out.close()