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
|
# Copyright 2014-2015 0xc0170
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import copy
import logging
from collections import OrderedDict
# eclipse works with linux paths
from posixpath import normpath, join, basename
from .tool import Tool, Builder, Exporter
from .gccarm import MakefileGccArm
from ..util import SOURCE_KEYS
logger = logging.getLogger('progen.tools.eclipse')
class EclipseGnuARM(Tool, Exporter, Builder):
file_types = {'cpp': 1, 'c': 1, 's': 1, 'obj': 1, 'lib': 1, 'h': 1}
generated_project = {
'path': '',
'files': {
'proj_file': '',
'cproj': '',
'makefile': '',
}
}
def __init__(self, workspace, env_settings):
self.definitions = 0
self.exporter = MakefileGccArm(workspace, env_settings)
self.workspace = workspace
self.env_settings = env_settings
@staticmethod
def get_toolnames():
return ['eclipse_make_gcc_arm', 'make_gcc_arm']
@staticmethod
def get_toolchain():
return 'gcc_arm'
def _expand_one_file(self, source, new_data, extension):
# Remove rel prefix.
rel_path = new_data['output_dir']['rel_path']
if source.startswith(rel_path):
non_rel_source = source[len(rel_path):]
return {"path": join('PARENT-%s-PROJECT_LOC' % new_data['output_dir']['rel_count'], normpath(non_rel_source)), "name": basename(
non_rel_source), "type": self.file_types[extension.lower()]}
def _expand_sort_key(self, file) :
return file['name'].lower()
def export_workspace(self):
logger.debug("Current version of CoIDE does not support workspaces")
def export_project(self):
""" Processes groups and misc options specific for eclipse, and run generator """
output = copy.deepcopy(self.generated_project)
data_for_make = self.workspace.copy()
self.exporter.process_data_for_makefile(data_for_make)
output['path'], output['files']['makefile'] = self.gen_file_jinja('makefile_gcc.tmpl', data_for_make, 'Makefile', data_for_make['output_dir']['path'])
expanded_dic = self.workspace.copy()
expanded_dic['rel_path'] = data_for_make['output_dir']['rel_path']
groups = self._get_groups(expanded_dic)
expanded_dic['groups'] = {}
for group in groups:
expanded_dic['groups'][group] = []
self._iterate(self.workspace, expanded_dic)
# Project file
project_path, output['files']['cproj'] = self.gen_file_jinja(
'eclipse_makefile.cproject.tmpl', expanded_dic, '.cproject', data_for_make['output_dir']['path'])
project_path, output['files']['proj_file'] = self.gen_file_jinja(
'eclipse.project.tmpl', expanded_dic, '.project', data_for_make['output_dir']['path'])
return output
def get_generated_project_files(self):
return {'path': self.workspace['path'], 'files': [self.workspace['files']['proj_file'], self.workspace['files']['cproj'],
self.workspace['files']['makefile']]}
|