Update isr name.
[bertos.git] / wizard / bertos_utils.py
1 #!/usr/bin/env python
2 # encoding: utf-8
3 #
4 # Copyright 2008 Develer S.r.l. (http://www.develer.com/)
5 # All rights reserved.
6 #
7 # $Id:$
8 #
9 # Author: Lorenzo Berni <duplo@develer.com>
10 #
11
12 import os
13 import fnmatch
14 import glob
15 import re
16
17 import const
18
19 def isBertosDir(directory):
20    return os.path.exists(directory + "/VERSION")
21
22 def bertosVersion(directory):
23    return open(directory + "/VERSION").readline().strip()
24
25 def createBertosProject(directory):
26     if not os.path.isdir(directory):
27         os.mkdir(directory)
28     open(directory + "/project.bertos", "w")
29
30 def getSystemPath():
31     path = os.environ["PATH"]
32     if os.name == "nt":
33         path = path.split(";")
34     else:
35         path = path.split(":")
36     return path
37
38 def findToolchains(pathList):
39     toolchains = []
40     for element in pathList:
41         for toolchain in glob.glob(element+ "/" + const.GCC_NAME):
42             if not os.path.islink(toolchain):
43                 toolchains.append(toolchain)
44     return list(set(toolchains))
45
46 def getToolchainInfo(output):
47     info = {}
48     expr = re.compile("Target: .*")
49     target = expr.findall(output)
50     if len(target) == 1:
51         info["target"] = target[0].split("Target: ")[1]
52     expr = re.compile("gcc version [0-9,.]*")
53     version = expr.findall(output)
54     if len(version) == 1:
55         info["version"] = version[0].split("gcc version ")[1]
56     expr = re.compile("gcc version [0-9,.]* \(.*\)")
57     build = expr.findall(output)
58     if len(build) == 1:
59         build = build[0].split("gcc version ")[1]
60         build = build[build.find("(") + 1 : build.find(")")]
61         info["build"] = build
62     expr = re.compile("Configured with: .*")
63     configured = expr.findall(output)
64     if len(configured) == 1:
65         info["configured"] = configured[0].split("Configured with: ")[1]
66     expr = re.compile("Thread model: .*")
67     thread = expr.findall(output)
68     if len(thread) == 1:
69         info["thread"] = thread[0].split("Thread model: ")[1]
70     return info
71
72 def findDefinitions(ftype, path):
73     L = os.walk(path)
74     for element in L:
75         for filename in element[2]:
76             if fnmatch.fnmatch(filename, ftype):
77                 yield (filename, element[0])
78
79 def loadCpuInfos(path):
80     cpuInfos = []
81     for definition in findDefinitions(const.CPU_DEFINITION, path):
82         cpuInfos.append(getInfos(definition))
83     return cpuInfos
84
85 def getInfos(definition):
86     D = {}
87     D.update(const.CPU_DEF)
88     def include(filename, dict = D, directory=definition[1]):
89         execfile(directory + "/" + filename, {}, D)
90     D["include"] = include
91     include(definition[0], D)
92     D["CPU_NAME"] = definition[0].split(".")[0]
93     D["DEFINITION_PATH"] = definition[1] + "/" + definition[0]
94     del D["include"]
95     return D
96
97 def getDefinitionBlocks(text):
98     block = []
99     block_tmp = re.findall("^/\*+\s*(.*?)\s*?\*/\s*#define\s+(\w+[\s\w]*?)\s*$", text, re.DOTALL | re.MULTILINE)
100     for comment, define in block_tmp:
101         block.append((" ".join(re.findall("^\s*\*?\s*(.*?)\s*?$", comment, re.MULTILINE)), define))
102     block += re.findall("/{3}<?\s*(.*)\s*#define\s+(.*)\s*?$", text, re.MULTILINE)
103     return block