-
Notifications
You must be signed in to change notification settings - Fork 3
/
config_helper.py
244 lines (186 loc) · 6.23 KB
/
config_helper.py
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Library General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
# Helper code for the Open Lighting Project buildbot configs.
import os
def LoadConfig(config_file):
"""Load the buildbot config from a config file."""
config = {}
global_dict = {
'Slave': SlaveConfig,
}
execfile(config_file, global_dict, config)
return config
class SlaveConfig(object):
def __init__(self, suffix, has_cpp_lint=False, has_js_lint=False,
has_tcmalloc=False, has_ola_ja_rule_deps=True, is_slow=False,
generate_conf=False, generate_doc=False, generate_man=False,
no_build=False, ola_slave=True, ja_rule_slave=False):
self._suffix = suffix
self._has_cpp_lint = has_cpp_lint
self._has_js_lint = has_js_lint
self._has_tcmalloc = has_tcmalloc
self._has_ola_ja_rule_deps = has_ola_ja_rule_deps
self._is_slow = is_slow
self._generate_conf = generate_conf
self._generate_doc = generate_doc
self._generate_man = generate_man
self._no_build = no_build
self._ola_slave = ola_slave
self._ja_rule_slave = ja_rule_slave
@property
def suffix(self):
return self._suffix
@property
def has_cpp_lint(self):
return self._has_cpp_lint
@property
def has_js_lint(self):
return self._has_js_lint
@property
def has_tcmalloc(self):
return self._has_tcmalloc
@property
def has_ola_ja_rule_deps(self):
return self._has_ola_ja_rule_deps
@property
def is_slow(self):
return self._is_slow
@property
def generate_conf(self):
return self._generate_conf
@property
def generate_doc(self):
return self._generate_doc
@property
def generate_man(self):
return self._generate_man
@property
def no_build(self):
return self._no_build
@property
def ola_slave(self):
return self._ola_slave
@property
def ja_rule_slave(self):
return self._ja_rule_slave
class BuildSlave(object):
def __init__(self, platform, arch, slave_config):
self._platform = platform
self._arch = arch
self._suffix = slave_config.suffix
self._has_cpp_lint = slave_config.has_cpp_lint
self._has_js_lint = slave_config.has_js_lint
self._has_tcmalloc = slave_config.has_tcmalloc
self._has_ola_ja_rule_deps = slave_config.has_ola_ja_rule_deps
self._is_slow = slave_config.is_slow
self._generate_conf = slave_config.generate_conf
self._generate_doc = slave_config.generate_doc
self._generate_man = slave_config.generate_man
self._no_build = slave_config.no_build
self._ola_slave = slave_config.ola_slave
self._ja_rule_slave = slave_config.ja_rule_slave
def name(self):
"""Return the name of this slave."""
return '%s-%s-%s' % (self._platform, self._arch, self._suffix)
def password_file_path(self):
"""Get the file path that contains the password for this slave."""
return os.path.join(os.path.dirname(__file__), "%s.pass" % self.name())
def password(self):
"""Get the password for this slave."""
path = self.password_file_path()
return open(path).read().strip()
@property
def has_cpp_lint(self):
return self._has_cpp_lint
@property
def has_js_lint(self):
return self._has_js_lint
@property
def has_tcmalloc(self):
return self._has_tcmalloc
@property
def has_ola_ja_rule_deps(self):
return self._has_ola_ja_rule_deps
@property
def is_slow(self):
return self._is_slow
@property
def generate_conf(self):
return self._generate_conf
@property
def generate_doc(self):
return self._generate_doc
@property
def generate_man(self):
return self._generate_man
@property
def no_build(self):
return self._no_build
@property
def ola_slave(self):
return self._ola_slave
@property
def ja_rule_slave(self):
return self._ja_rule_slave
def HasCPPLintFilter(slave):
"""Filter on slaves that have C++ lint installed."""
return slave.has_cpp_lint
def HasJSLintFilter(slave):
"""Filter on slaves that have JS lint installed."""
return slave.has_js_lint
def HasTCMalloc(slave):
"""Filter on slaves that have tcmalloc installed."""
return slave.has_tcmalloc
def HasOLAJaRuleDeps(slave):
"""Filter on slaves that have OLA Ja Rule dependencies installed."""
return slave.has_ola_ja_rule_deps
def IsSlow(slave):
"""Filter on slaves that are slow."""
return slave.is_slow
def GenerateConf(slave):
"""Filter on slaves that generate conf pages."""
return slave.generate_conf
def GenerateDoc(slave):
"""Filter on slaves that generate doxygen doc."""
return slave.generate_doc
def GenerateMan(slave):
"""Filter on slaves that generate man pages."""
return slave.generate_man
def HasBuild(slave):
"""Filter on slaves that perform builds."""
return not slave.no_build
def OlaSlave(slave):
"""Filter on slaves that are OLA slaves."""
return slave.ola_slave
def JaRuleSlave(slave):
"""Filter on slaves that are Ja-Rule slaves."""
return slave.ja_rule_slave
class SlaveStore(object):
"""Holds the BuildSlave objects."""
def __init__(self, slave_config):
self._slaves = []
for platform, platform_spec in slave_config.iteritems():
for arch, slave_names in platform_spec.iteritems():
for slave in slave_names:
self._slaves.append(BuildSlave(platform, arch, slave))
def GetSlaves(self, project_filter=None, slave_filter=None):
"""Returns all slaves matching the optional filter(s)."""
if project_filter is None:
if slave_filter is None:
return self._slaves[:]
else:
return [s for s in self._slaves if slave_filter(s)]
else:
return [s for s in self._slaves if project_filter(s) and slave_filter(s)]