X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fbertos_utils.py;h=a50df0f49e0eb5ac49288d6e2dbfcf2fc3dc06f6;hb=a32c2b3896360b7d3ed8360c3fc49c96c37ebc5a;hp=de56cfe6c2c3d3e65105e093c6691d57be841f36;hpb=96f5b22a16883476aed0d6ba1620dd48800ae4e2;p=bertos.git diff --git a/wizard/bertos_utils.py b/wizard/bertos_utils.py index de56cfe6..a50df0f4 100644 --- a/wizard/bertos_utils.py +++ b/wizard/bertos_utils.py @@ -10,6 +10,11 @@ # import os +import fnmatch +import glob +import re + +import const def isBertosDir(directory): return os.path.exists(directory + "/VERSION") @@ -21,4 +26,88 @@ def createBertosProject(directory): if not os.path.isdir(directory): os.mkdir(directory) open(directory + "/project.bertos", "w") - \ No newline at end of file + +def getSystemPath(): + path = os.environ["PATH"] + if os.name == "nt": + path = path.split(";") + else: + path = path.split(":") + return path + +def findToolchains(pathList): + toolchains = [] + for element in pathList: + for toolchain in glob.glob(element+ "/" + const.GCC_NAME): + if not os.path.islink(toolchain): + toolchains.append(toolchain) + return list(set(toolchains)) + +def getToolchainInfo(output): + info = {} + expr = re.compile("Target: .*") + target = expr.findall(output) + if len(target) == 1: + info["target"] = target[0].split("Target: ")[1] + expr = re.compile("gcc version [0-9,.]*") + version = expr.findall(output) + if len(version) == 1: + info["version"] = version[0].split("gcc version ")[1] + expr = re.compile("gcc version [0-9,.]* \(.*\)") + build = expr.findall(output) + if len(build) == 1: + build = build[0].split("gcc version ")[1] + build = build[build.find("(") + 1 : build.find(")")] + info["build"] = build + expr = re.compile("Configured with: .*") + configured = expr.findall(output) + if len(configured) == 1: + info["configured"] = configured[0].split("Configured with: ")[1] + expr = re.compile("Thread model: .*") + thread = expr.findall(output) + if len(thread) == 1: + info["thread"] = thread[0].split("Thread model: ")[1] + return info + +def findDefinitions(ftype, path): + L = os.walk(path) + for element in L: + for filename in element[2]: + if fnmatch.fnmatch(filename, ftype): + yield (filename, element[0]) + +def loadCpuInfos(path): + cpuInfos = [] + for definition in findDefinitions(const.CPU_DEFINITION, path): + cpuInfos.append(getInfos(definition)) + return cpuInfos + +def getInfos(definition): + D = {} + D.update(const.CPU_DEF) + def include(filename, dict = D, directory=definition[1]): + execfile(directory + "/" + filename, {}, D) + D["include"] = include + include(definition[0], D) + D["CPU_NAME"] = definition[0].split(".")[0] + D["DEFINITION_PATH"] = definition[1] + "/" + definition[0] + del D["include"] + return D + +def getDefinitionBlocks(text): + block = [] + block_tmp = re.findall(r"/\*{2}\s*([^*]*\*(?:[^/*][^*]*\*+)*)/\s*#define\s+(.*?)\s*?$", text, re.MULTILINE) + for comment, define in block_tmp: + block.append((" ".join(re.findall(r"^\s*\*?\s*(.*?)\s*?$", comment, re.MULTILINE)), define)) + block += re.findall(r"/{3}