blob: d863db1d5514e1bec27154d3b85e010be6c20a1c [file] [log] [blame]
Brian O'Connorb86c9202016-04-05 20:15:04 -07001import random
Brian O'Connor42c38cf2016-04-05 17:05:57 -07002
3DEBUG_ARG='JAVA_TOOL_OPTIONS="-Xdebug -Xrunjdwp:server=y,transport=dt_socket,address=5005,suspend=y"'
Brian O'Connore5817c92016-04-06 15:41:48 -07004FORCE_INSTALL=True
5NONE='NONE'
Brian O'Connor42c38cf2016-04-05 17:05:57 -07006
Brian O'Connore4da59d2016-04-08 00:32:18 -07007SRC = 'src/main/java/**/'
8TEST = 'src/test/java/**/'
Brian O'Connor0f6677d2016-04-06 23:26:51 -07009RESOURCES_ROOT = 'src/main/resources/'
Brian O'Connore4da59d2016-04-08 00:32:18 -070010TEST_RESOURCES_ROOT = 'src/test/resources/'
11
Ray Milkey171b89a2016-07-28 15:22:26 -070012include_defs('//onos.defs')
Brian O'Connore4da59d2016-04-08 00:32:18 -070013
14def _get_name():
15 base_path = get_base_path()
16 return ONOS_ARTIFACT_BASE + base_path.replace('/', '-') #TODO Unix-separator
Brian O'Connor1f165982016-04-06 21:36:09 -070017
Brian O'Connor40a3fbd2016-06-08 13:54:46 -070018def checkstyle(
19 name,
20 srcs = None,
21 jar_target = None,
22 ):
23
Yuta HIGUCHI295ee072017-06-21 15:48:21 -070024 if srcs:
Brian O'Connor40a3fbd2016-06-08 13:54:46 -070025 base = get_base_path()
Brian O'Connorbd0e7202017-11-27 18:40:08 -080026 # module name; base filepath; files (line-separated); empty line (to signify end of stream)
27 files = '%s\n%s\n' % (name, base) + '\n'.join(['%s/%s' % (base, s) for s in srcs]) + '\n\n'
Brian O'Connor40a3fbd2016-06-08 13:54:46 -070028
29 genrule(
30 name = name + '-checkstyle-files',
31 bash = "echo '%s' > $OUT" % files,
32 srcs = srcs,
33 out = 'checkstyle-files.txt',
34 )
35
36 sh_test(
37 name = name + '-checkstyle',
Thomas Vachuska275d2e82016-07-14 17:41:34 -070038 test = '//tools/build/conf:start-buck-daemon',
Yuta HIGUCHI295ee072017-06-21 15:48:21 -070039 deps = [ ':' + name + '-checkstyle-files',
Ray Milkey2d572dd2017-04-14 10:01:24 -070040 '//tools/build/conf:onos-java-header',
41 '//tools/build/conf:onos-build-conf', ],
Brian O'Connor40a3fbd2016-06-08 13:54:46 -070042 args = [
Thomas Vachuska275d2e82016-07-14 17:41:34 -070043 '$(location //tools/build/conf:buck-daemon-jar)',
44 'checkstyle',
Brian O'Connor40a3fbd2016-06-08 13:54:46 -070045 '$(location :' + name + '-checkstyle-files)',
46 '$(location //tools/build/conf:checkstyle-xml)',
47 '$(location //tools/build/conf:suppressions-xml)',
48 ],
Brian O'Connorbd0e7202017-11-27 18:40:08 -080049 #TODO test_rule_timeout_ms seems to be ignored on Linux
Ray Milkey84dafd92017-10-25 16:20:23 -070050 test_rule_timeout_ms = 45000,
Brian O'Connor40a3fbd2016-06-08 13:54:46 -070051 labels = [ 'checkstyle' ],
52 )
Brian O'Connor40a3fbd2016-06-08 13:54:46 -070053
Ray Milkeyc340e282016-06-30 14:45:42 -070054def java_doc(
55 name,
56 title,
57 pkgs,
58 paths,
59 srcs = [],
60 deps = [],
61 visibility = [],
62 do_it_wrong = False,
63 ):
64 if do_it_wrong:
65 sourcepath = paths
66 else:
67 sourcepath = ['$SRCDIR/' + n for n in paths]
Ray Milkey2a749832016-08-02 15:22:20 -070068
69 if len(srcs) != 0:
Ray Milkeyc340e282016-06-30 14:45:42 -070070 cmd = ' '.join([
Ray Milkey2a749832016-08-02 15:22:20 -070071 'while ! test -f .buckconfig; do cd ..; done;',
72 'javadoc',
73 '-tag onos.rsModel:a:"onos model"',
74 '-quiet',
75 '-protected',
76 '-encoding UTF-8',
77 '-charset UTF-8',
78 '-notimestamp',
79 '-windowtitle "' + title + '"',
80 '-link http://docs.oracle.com/javase/8/docs/api',
81 '-subpackages ',
82 ':'.join(pkgs),
83 '-sourcepath ',
84 ':'.join(sourcepath),
85 ' -classpath ',
86 ':'.join(['$(classpath %s)' % n for n in deps]),
87 '-d $TMP',
88 ]) + ';jar cf $OUT -C $TMP .'
89
90 genrule(
91 name = name,
92 cmd = cmd,
93 srcs = srcs,
94 out = name + '.jar',
95 visibility = visibility,
Yuta HIGUCHI514ef1a2017-11-20 17:37:47 -080096 )
Ray Milkeyc340e282016-06-30 14:45:42 -070097
Brian O'Connor9c2c8232016-11-08 17:13:14 -080098def sonar(
99 name,
100 test = False
101 ):
102
103 cmd = '; '.join([ 'rm -f $OUT',
104 'printf "%(src_base)s = " >> $OUT',
105 '%(srcs)s >> $OUT',
106 'echo "%(binary_base)s = %(classes)s" >> $OUT',
107 'printf "%(lib_base)s = " >> $OUT',
108 '%(libraries)s >> $OUT'
109 ]) % {
110 'srcs' : "echo $(srcs :%s) | sed 's/ /,/g'" % name,
111 'classes' : ("$(bin_dir :%s#non-osgi)" if not test else "$(bin_dir :%s)") % name,
112 'libraries' : "echo $(classpath :%s) | sed 's/:/,/g'" % name,
113 'src_base' : 'sonar.sources' if not test else 'sonar.tests',
114 'binary_base' : 'sonar.java.binaries' if not test else 'sonar.java.test.binaries',
115 'lib_base' : 'sonar.java.libraries' if not test else 'sonar.java.test.libraries'
116 }
117 # FIXME do we need to specify dep here or with the expander cover it?
118 genrule(
119 name = name + "-sonar",
120 cmd = cmd,
121 out = 'sonar-project.properties'
122 )
Ray Milkeyc340e282016-06-30 14:45:42 -0700123
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700124def osgi_jar(
Brian O'Connore4da59d2016-04-08 00:32:18 -0700125 name = None,
126 srcs = None,
Brian O'Connor1f165982016-04-06 21:36:09 -0700127 group_id = ONOS_GROUP_ID,
128 version = ONOS_VERSION,
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700129 deps = [],
130 visibility = ['PUBLIC'],
131 license = 'NONE',
132 description = '',
133 debug = False,
Brian O'Connore5817c92016-04-06 15:41:48 -0700134 import_packages = '*',
Yuta HIGUCHIf05db402016-08-12 18:36:33 -0700135 dynamicimport_packages = '',
Viswanath KSPd4923cf2017-05-24 13:03:51 +0530136 embedded_dependencies = '',
Yuta HIGUCHI29d640c2017-04-19 19:37:18 -0700137 export_packages = '!.,!*.impl.*,!*.internal.*,*',
Ray Milkey2a749832016-08-02 15:22:20 -0700138 package_name_root = 'org.onosproject',
Brian O'Connor79b70672016-10-20 13:44:52 -0700139 include_resources = {},
Brian O'Connore5817c92016-04-06 15:41:48 -0700140 web_context = NONE,
Brian O'Connor79b70672016-10-20 13:44:52 -0700141 api_title = None,
Brian O'Connore8468b52016-07-25 13:42:36 -0700142 api_version = NONE,
143 api_package = NONE,
144 api_description = NONE,
Brian O'Connore4da59d2016-04-08 00:32:18 -0700145 resources = NONE,
Brian O'Connor0f6677d2016-04-06 23:26:51 -0700146 resources_root = None,
Brian O'Connoree674952016-09-13 16:31:45 -0700147 tests = None,
Thomas Vachuska73436b52017-03-22 19:50:47 -0700148 do_javadocs = True,
149 do_checkstyle = True,
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700150 **kwargs
151 ):
152
Brian O'Connore4da59d2016-04-08 00:32:18 -0700153 # if name and _get_name() != name:
154 # print _get_name(), '!=', name
155 if name is None:
156 name = _get_name()
157
158 if srcs is None:
159 srcs = glob([SRC + '/*.java'])
160
161 if resources == NONE and resources_root is not None:
162 resources = glob([resources_root + '**'])
163 elif resources == NONE:
164 resources = glob([RESOURCES_ROOT + '**'])
165
166 if resources and not resources_root:
167 resources_root = RESOURCES_ROOT
168
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700169 mvn_coords = group_id + ':' + name + ':' + version
170
Brian O'Connore8468b52016-07-25 13:42:36 -0700171 onos_jar(
Brian O'Connoree674952016-09-13 16:31:45 -0700172 name = name,
Yuta HIGUCHI514ef1a2017-11-20 17:37:47 -0800173 # FIXME webapp path hard coded here probably is not right
174 srcs = srcs + glob(['src/main/webapp/**'], excludes = ['src/main/webapp/tests/**']),
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700175 deps = deps,
Brian O'Connoree674952016-09-13 16:31:45 -0700176 visibility = visibility,
Brian O'Connor0f6677d2016-04-06 23:26:51 -0700177 resources = resources,
178 resources_root = resources_root,
Brian O'Connoree674952016-09-13 16:31:45 -0700179 bundle_name = name,
180 group_id = group_id,
181 bundle_version = version,
182 bundle_license = license,
183 bundle_description = description,
184 import_packages = import_packages,
185 export_packages = export_packages,
186 include_resources = include_resources,
187 dynamicimport_packages = dynamicimport_packages,
Viswanath KSPd4923cf2017-05-24 13:03:51 +0530188 embedded_dependencies = embedded_dependencies,
Brian O'Connore8468b52016-07-25 13:42:36 -0700189 web_context = web_context,
190 api_title = api_title,
191 api_version = api_version,
192 api_package = api_package,
193 api_description = api_description,
Brian O'Connoree674952016-09-13 16:31:45 -0700194 tests = tests,
195 maven_coords = mvn_coords,
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700196 **kwargs
197 )
198
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700199 ### Checkstyle
Thomas Vachuska73436b52017-03-22 19:50:47 -0700200 if do_checkstyle:
201 checkstyle(
Yuta HIGUCHI9312a802017-06-12 20:01:27 -0700202 name = name,
Thomas Vachuska73436b52017-03-22 19:50:47 -0700203 srcs = srcs,
Thomas Vachuska73436b52017-03-22 19:50:47 -0700204 )
Brian O'Connorb3cc6042016-04-25 11:55:51 -0700205
Thomas Vachuska73436b52017-03-22 19:50:47 -0700206 if do_javadocs:
207 java_doc(
208 name = name + '-javadoc',
209 title = 'Java Docs',
210 pkgs = [ package_name_root ],
211 paths = [ 'src/main/java' ],
212 srcs = srcs,
213 deps = deps,
214 visibility = visibility,
215 do_it_wrong = False,
216 )
Ray Milkeyc340e282016-06-30 14:45:42 -0700217
Brian O'Connorb3cc6042016-04-25 11:55:51 -0700218 # TODO add project config for intellij
219 # project_config(
Brian O'Connoree674952016-09-13 16:31:45 -0700220 # src_target = ':' + name,
Brian O'Connorb3cc6042016-04-25 11:55:51 -0700221 # src_roots = [ 'src/main/java' ],
222 # test_target = ':' + name + '-tests',
223 # test_roots = [ 'src/test/java' ],
224 # )
225
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700226 ### .m2 Install
Brian O'Connorb86c9202016-04-05 20:15:04 -0700227 mvn_cmd = ' '.join(( 'mvn install:install-file',
228 '-Dfile=$(location :%s)' % name,
229 '-DgroupId=%s' % group_id,
230 '-DartifactId=%s' % name,
231 '-Dversion=%s' % version,
232 '-Dpackaging=jar' ))
Brian O'Connore5817c92016-04-06 15:41:48 -0700233 cmd = mvn_cmd + ' > $OUT'
234 if FORCE_INSTALL:
235 # Add a random number to the command to force this rule to run.
236 # TODO We should make this configurable from CLI, perhaps with a flag.
237 cmd = 'FOO=%s ' % random.random() + cmd
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700238 genrule(
239 name = name + '-install',
Brian O'Connorb86c9202016-04-05 20:15:04 -0700240 bash = cmd,
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700241 out = 'install.log',
242 visibility = visibility,
243 )
Brian O'Connor9c2c8232016-11-08 17:13:14 -0800244 sonar(
245 name = name,
246 )
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700247
Brian O'Connore4da59d2016-04-08 00:32:18 -0700248def osgi_jar_with_tests(
249 name = None,
250 deps = [],
Brian O'Connoree674952016-09-13 16:31:45 -0700251 group_id = ONOS_GROUP_ID,
252 version = ONOS_VERSION,
Brian O'Connore4da59d2016-04-08 00:32:18 -0700253 test_srcs = None,
254 test_deps = [ '//lib:TEST' ],
255 test_resources = None,
256 test_resources_root = None,
257 visibility = [ 'PUBLIC' ],
258 **kwargs
259 ):
260
261 if name is None:
262 name = _get_name()
263
Brian O'Connor0f6677d2016-04-06 23:26:51 -0700264 if test_resources and not test_resources_root:
Brian O'Connore4da59d2016-04-08 00:32:18 -0700265 test_resources_root = TEST_RESOURCES_ROOT
266 if test_resources_root and not test_resources:
267 test_resources = glob([test_resources_root + '**'])
268 if not test_resources and not test_resources_root:
269 test_resources = glob([TEST_RESOURCES_ROOT + '**'])
270 if test_resources:
271 test_resources_root = TEST_RESOURCES_ROOT
Brian O'Connor0f6677d2016-04-06 23:26:51 -0700272
Brian O'Connore4da59d2016-04-08 00:32:18 -0700273 if test_srcs is None:
274 test_srcs = glob([TEST + '/*.java'])
275
Brian O'Connoree674952016-09-13 16:31:45 -0700276 mvn_coords = group_id + ':' + name + ':jar:tests:' + version
277
Brian O'Connor9c2c8232016-11-08 17:13:14 -0800278 if test_srcs:
279 java_test(
280 name = name + '-tests',
281 srcs = test_srcs,
282 deps = deps +
283 test_deps +
284 [':' + name + '#non-osgi'],
285 resources = test_resources,
286 resources_root = test_resources_root,
287 maven_coords = mvn_coords,
288 visibility = visibility,
289 )
Brian O'Connorbe95f682016-05-18 15:40:19 -0700290
Brian O'Connor9c2c8232016-11-08 17:13:14 -0800291 checkstyle(
Yuta HIGUCHI295ee072017-06-21 15:48:21 -0700292 name = name + '-tests',
Brian O'Connor9c2c8232016-11-08 17:13:14 -0800293 srcs = test_srcs,
Brian O'Connor9c2c8232016-11-08 17:13:14 -0800294 )
295
296 sonar(
297 name = name + '-tests',
298 test = True
299 )
300
301 osgi_jar(name = name,
302 deps = deps,
303 group_id = group_id,
304 version = version,
305 visibility = visibility,
306 tests = [':' + name + '-tests'],
307 **kwargs)
308 else:
309 osgi_jar(name = name,
310 deps = deps,
311 group_id = group_id,
312 version = version,
313 visibility = visibility,
314 **kwargs)
Thomas Vachuskabe1a1962016-10-25 16:59:29 -0700315
316def tar_file(
317 name,
318 srcs,
Brian O'Connor30322dd2017-08-14 19:11:29 -0700319 other_tars = [],
Thomas Vachuskabe1a1962016-10-25 16:59:29 -0700320 root = None,
321 out = None,
322 visibility = [ 'PUBLIC' ],
323 ):
324
Brian O'Connor30322dd2017-08-14 19:11:29 -0700325 cmds = [ 'mkdir -p $TMP/%(root_dir)s',
326 'cp -R -L $SRCDIR/* $TMP/%(root_dir)s' ]
327 for t in other_tars:
328 cmds += [ 'tar -zxf $(location %s)' % t + ' -C $TMP/%(root_dir)s' ]
329 cmds += [ 'tar -C $TMP -zcf $OUT %(root_dir)s' ]
330
331 cmd = ' && '.join(cmds) % {
Thomas Vachuskabe1a1962016-10-25 16:59:29 -0700332 'root_dir': root if root is not None else name
333 }
334
335 genrule(
336 name = name,
337 srcs = srcs,
338 bash = cmd,
339 out = out if out is not None else ( root if root is not None else name ) + '.tar.gz',
340 visibility = visibility,
341 )
Ray Milkey5c5454b2017-01-25 13:26:30 -0800342
343def only_lib_dep_pom(
344 name,
345 src,
346 out,
347 version = ONOS_VERSION,
348 onosGroupId = ONOS_GROUP_ID,
349 visibility = [ 'PUBLIC' ],
350 ):
351
Ray Milkeye46d31a2017-02-01 12:16:18 -0800352 cmd = 'grep -v \<module\> ' + src + ' | sed "s#<modules>#<modules><module>lib</module>#" >$OUT'
Ray Milkey5c5454b2017-01-25 13:26:30 -0800353
354 genrule(
355 name = name,
356 srcs = [ src ],
357 bash = cmd,
358 out = out,
359 visibility = visibility,
360 maven_coords = onosGroupId + ':onos:pom:' + version,
361 )
362
363def pass_thru_pom(
364 name,
365 src,
366 out,
367 artifactId,
368 version = ONOS_VERSION,
369 onosGroupId = ONOS_GROUP_ID,
370 visibility = [ 'PUBLIC' ],
371 ):
372
373 cmd = 'cp ' + src + ' $OUT'
374
375 genrule(
376 name = name,
377 srcs = [ src ],
378 bash = cmd,
379 out = out,
380 visibility = visibility,
381 maven_coords = onosGroupId + ':' + artifactId + ':pom:' + version,
382 )