Diff: tools/export/__init__.py
- Revision:
- 0:6c56fb4bc5f0
diff -r 000000000000 -r 6c56fb4bc5f0 tools/export/__init__.py
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/export/__init__.py Fri Nov 04 20:27:58 2016 +0000
@@ -0,0 +1,106 @@
+"""The generic interface for all exporters.
+"""
+# mbed SDK
+# Copyright (c) 2011-2016 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.
+import os, tempfile
+from os.path import join, exists, basename
+from shutil import copytree, rmtree, copy
+import yaml
+
+from tools.export import uvision4, uvision5, codered, gccarm, ds5_5, iar
+from tools.export import emblocks, coide, kds, simplicityv3, atmelstudio
+from tools.export import sw4stm32, e2studio, zip
+from tools.export.exporters import OldLibrariesException, FailedBuildException
+from tools.targets import TARGET_NAMES, EXPORT_MAP, TARGET_MAP
+
+from project_generator_definitions.definitions import ProGenDef
+
+EXPORTERS = {
+ 'uvision': uvision4.Uvision4,
+ 'uvision4': uvision4.Uvision4,
+ 'uvision5': uvision5.Uvision5,
+ 'lpcxpresso': codered.CodeRed,
+ 'gcc_arm': gccarm.GccArm,
+ 'ds5_5': ds5_5.DS5_5,
+ 'iar': iar.IAREmbeddedWorkbench,
+ 'emblocks' : emblocks.IntermediateFile,
+ 'coide' : coide.CoIDE,
+ 'kds' : kds.KDS,
+ 'simplicityv3' : simplicityv3.SimplicityV3,
+ 'atmelstudio' : atmelstudio.AtmelStudio,
+ 'sw4stm32' : sw4stm32.Sw4STM32,
+ 'e2studio' : e2studio.E2Studio,
+ 'zip' : zip.ZIP,
+}
+
+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 mcu_ide_matrix(verbose_html=False):
+ """Shows target map using prettytable
+
+ Keyword argumets:
+ verbose_html - print the matrix in html format
+ """
+ supported_ides = sorted(EXPORTERS.keys())
+ # Only use it in this function so building works without extra modules
+ from prettytable import PrettyTable, ALL
+
+ # All tests status table print
+ table_printer = PrettyTable(["Platform"] + supported_ides)
+ # Align table
+ for col in supported_ides:
+ table_printer.align[col] = "c"
+ table_printer.align["Platform"] = "l"
+
+ perm_counter = 0
+ for target in sorted(TARGET_NAMES):
+ row = [target] # First column is platform name
+ for ide in supported_ides:
+ text = "-"
+ if target in EXPORTERS[ide].TARGETS:
+ if verbose_html:
+ text = "✓"
+ else:
+ text = "x"
+ perm_counter += 1
+ row.append(text)
+ table_printer.add_row(row)
+
+ table_printer.border = True
+ table_printer.vrules = ALL
+ table_printer.hrules = ALL
+ # creates a html page in a shorter format suitable for readme.md
+ if verbose_html:
+ result = table_printer.get_html_string()
+ else:
+ result = table_printer.get_string()
+ result += "\n"
+ result += "Total IDEs: %d\n"% (len(supported_ides))
+ if verbose_html:
+ result += "<br>"
+ result += "Total platforms: %d\n"% (len(TARGET_NAMES))
+ if verbose_html:
+ result += "<br>"
+ result += "Total permutations: %d"% (perm_counter)
+ if verbose_html:
+ result = result.replace("&", "&")
+ return result