2013-08-06 13:38:00 +00:00
|
|
|
"""
|
|
|
|
mbed SDK
|
|
|
|
Copyright (c) 2011-2013 ARM Limited
|
|
|
|
|
|
|
|
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.
|
|
|
|
"""
|
2013-02-18 15:32:11 +00:00
|
|
|
import os, tempfile
|
2013-08-16 15:39:30 +00:00
|
|
|
from os.path import join, exists, basename
|
|
|
|
from os import makedirs
|
|
|
|
from shutil import copytree, rmtree
|
2013-02-18 15:32:11 +00:00
|
|
|
|
2013-08-16 15:39:30 +00:00
|
|
|
from workspace_tools.utils import mkdir
|
2014-09-30 14:27:09 +00:00
|
|
|
from workspace_tools.export import uvision4, codesourcery, codered, gccarm, ds5_5, iar, emblocks, coide, kds
|
2013-02-18 15:32:11 +00:00
|
|
|
from workspace_tools.export.exporters import zip_working_directory_and_clean_up, OldLibrariesException
|
2013-11-18 18:24:51 +00:00
|
|
|
from workspace_tools.targets import EXPORT_MAP
|
2013-02-18 15:32:11 +00:00
|
|
|
|
|
|
|
EXPORTERS = {
|
|
|
|
'uvision': uvision4.Uvision4,
|
2014-04-01 15:23:19 +00:00
|
|
|
'lpcxpresso': codered.CodeRed,
|
2013-02-18 15:32:11 +00:00
|
|
|
'codesourcery': codesourcery.CodeSourcery,
|
|
|
|
'gcc_arm': gccarm.GccArm,
|
|
|
|
'ds5_5': ds5_5.DS5_5,
|
2014-01-12 08:03:46 +00:00
|
|
|
'iar': iar.IAREmbeddedWorkbench,
|
2014-10-06 13:25:59 +00:00
|
|
|
'emblocks' : emblocks.IntermediateFile,
|
2014-06-11 15:30:43 +00:00
|
|
|
'coide' : coide.CoIDE,
|
|
|
|
'kds' : kds.KDS,
|
2013-02-18 15:32:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ERROR_MESSAGE_UNSUPPORTED_TOOLCHAIN = """
|
|
|
|
Sorry, the target %s is not currently supported on the %s toolchain.
|
|
|
|
Please refer to <a href='/handbook/Exporting-to-offline-toolchains' target='_blank'>Exporting to offline toolchains</a> for more information.
|
|
|
|
"""
|
|
|
|
|
|
|
|
ERROR_MESSAGE_NOT_EXPORT_LIBS = """
|
|
|
|
To export this project please <a href='http://mbed.org/compiler/?import=http://mbed.org/users/mbed_official/code/mbed-export/k&mode=lib' target='_blank'>import the export version of the mbed library</a>.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def online_build_url_resolver(url):
|
|
|
|
# TODO: Retrieve the path and name of an online library build URL
|
|
|
|
return {'path':'', 'name':''}
|
|
|
|
|
|
|
|
|
|
|
|
def export(project_path, project_name, ide, target, destination='/tmp/', tempdir=None, clean=True, build_url_resolver=online_build_url_resolver):
|
|
|
|
# Convention: we are using capitals for toolchain and target names
|
|
|
|
if target is not None:
|
|
|
|
target = target.upper()
|
2014-01-12 08:03:46 +00:00
|
|
|
|
2013-02-18 15:32:11 +00:00
|
|
|
if tempdir is None:
|
|
|
|
tempdir = tempfile.mkdtemp()
|
2014-01-12 08:03:46 +00:00
|
|
|
|
2013-02-18 15:32:11 +00:00
|
|
|
if ide is None:
|
|
|
|
# Simply copy everything, no project files to be generated
|
|
|
|
for d in ['src', 'lib']:
|
|
|
|
os.system("cp -r %s/* %s" % (join(project_path, d), tempdir))
|
|
|
|
report = {'success': True}
|
2014-01-12 08:03:46 +00:00
|
|
|
|
2013-02-18 15:32:11 +00:00
|
|
|
else:
|
|
|
|
report = {'success': False}
|
|
|
|
if ide not in EXPORTERS:
|
|
|
|
report['errormsg'] = "Unsupported toolchain"
|
|
|
|
else:
|
|
|
|
Exporter = EXPORTERS[ide]
|
2013-11-18 18:24:51 +00:00
|
|
|
target = EXPORT_MAP.get(target, target)
|
2013-02-18 15:32:11 +00:00
|
|
|
if target not in Exporter.TARGETS:
|
|
|
|
report['errormsg'] = ERROR_MESSAGE_UNSUPPORTED_TOOLCHAIN % (target, ide)
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
exporter = Exporter(target, tempdir, project_name, build_url_resolver)
|
|
|
|
exporter.scan_and_copy_resources(project_path, tempdir)
|
|
|
|
exporter.generate()
|
|
|
|
report['success'] = True
|
|
|
|
except OldLibrariesException, e:
|
|
|
|
report['errormsg'] = ERROR_MESSAGE_NOT_EXPORT_LIBS
|
2014-01-12 08:03:46 +00:00
|
|
|
|
2013-02-18 15:32:11 +00:00
|
|
|
zip_path = None
|
|
|
|
if report['success']:
|
|
|
|
zip_path = zip_working_directory_and_clean_up(tempdir, destination, project_name, clean)
|
2014-01-12 08:03:46 +00:00
|
|
|
|
2013-02-18 15:32:11 +00:00
|
|
|
return zip_path, report
|
2013-08-16 15:39:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# Generate project folders following the online conventions
|
|
|
|
###############################################################################
|
|
|
|
def copy_tree(src, dst, clean=True):
|
|
|
|
if exists(dst):
|
|
|
|
if clean:
|
|
|
|
rmtree(dst)
|
|
|
|
else:
|
|
|
|
return
|
2014-01-12 08:03:46 +00:00
|
|
|
|
2013-08-16 15:39:30 +00:00
|
|
|
copytree(src, dst)
|
|
|
|
|
|
|
|
|
|
|
|
def setup_user_prj(user_dir, prj_path, lib_paths=None):
|
|
|
|
"""
|
|
|
|
Setup a project with the same directory structure of the mbed online IDE
|
|
|
|
"""
|
|
|
|
mkdir(user_dir)
|
2014-01-12 08:03:46 +00:00
|
|
|
|
2013-08-16 15:39:30 +00:00
|
|
|
# Project Path
|
|
|
|
copy_tree(prj_path, join(user_dir, "src"))
|
2014-01-12 08:03:46 +00:00
|
|
|
|
2013-08-16 15:39:30 +00:00
|
|
|
# Project Libraries
|
|
|
|
user_lib = join(user_dir, "lib")
|
|
|
|
mkdir(user_lib)
|
2014-01-12 08:03:46 +00:00
|
|
|
|
2013-08-16 15:39:30 +00:00
|
|
|
if lib_paths is not None:
|
|
|
|
for lib_path in lib_paths:
|
|
|
|
copy_tree(lib_path, join(user_lib, basename(lib_path)))
|