blob: e3aa372e94d8b128ea087d33da11465a2d43dc9b [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
24 if srcs and jar_target:
25 base = get_base_path()
26 files = '%s\n%s\n' % (name, base) + '\n'.join(['%s/%s' % (base, s) for s in srcs])
27
28 genrule(
29 name = name + '-checkstyle-files',
30 bash = "echo '%s' > $OUT" % files,
31 srcs = srcs,
32 out = 'checkstyle-files.txt',
33 )
34
35 sh_test(
36 name = name + '-checkstyle',
Thomas Vachuska275d2e82016-07-14 17:41:34 -070037 test = '//tools/build/conf:start-buck-daemon',
Brian O'Connor40a3fbd2016-06-08 13:54:46 -070038 deps = [ jar_target ],
39 args = [
Thomas Vachuska275d2e82016-07-14 17:41:34 -070040 '$(location //tools/build/conf:buck-daemon-jar)',
41 'checkstyle',
Brian O'Connor40a3fbd2016-06-08 13:54:46 -070042 '$(location :' + name + '-checkstyle-files)',
43 '$(location //tools/build/conf:checkstyle-xml)',
44 '$(location //tools/build/conf:suppressions-xml)',
45 ],
46 test_rule_timeout_ms = 20000,
47 labels = [ 'checkstyle' ],
48 )
Brian O'Connor40a3fbd2016-06-08 13:54:46 -070049
Ray Milkeyc340e282016-06-30 14:45:42 -070050def java_doc(
51 name,
52 title,
53 pkgs,
54 paths,
55 srcs = [],
56 deps = [],
57 visibility = [],
58 do_it_wrong = False,
59 ):
60 if do_it_wrong:
61 sourcepath = paths
62 else:
63 sourcepath = ['$SRCDIR/' + n for n in paths]
Ray Milkey2a749832016-08-02 15:22:20 -070064
65 if len(srcs) != 0:
Ray Milkeyc340e282016-06-30 14:45:42 -070066 cmd = ' '.join([
Ray Milkey2a749832016-08-02 15:22:20 -070067 'while ! test -f .buckconfig; do cd ..; done;',
68 'javadoc',
69 '-tag onos.rsModel:a:"onos model"',
70 '-quiet',
71 '-protected',
72 '-encoding UTF-8',
73 '-charset UTF-8',
74 '-notimestamp',
75 '-windowtitle "' + title + '"',
76 '-link http://docs.oracle.com/javase/8/docs/api',
77 '-subpackages ',
78 ':'.join(pkgs),
79 '-sourcepath ',
80 ':'.join(sourcepath),
81 ' -classpath ',
82 ':'.join(['$(classpath %s)' % n for n in deps]),
83 '-d $TMP',
84 ]) + ';jar cf $OUT -C $TMP .'
85
86 genrule(
87 name = name,
88 cmd = cmd,
89 srcs = srcs,
90 out = name + '.jar',
91 visibility = visibility,
Ray Milkeyc340e282016-06-30 14:45:42 -070092)
93
94
Brian O'Connor42c38cf2016-04-05 17:05:57 -070095def osgi_jar(
Brian O'Connore4da59d2016-04-08 00:32:18 -070096 name = None,
97 srcs = None,
Brian O'Connor1f165982016-04-06 21:36:09 -070098 group_id = ONOS_GROUP_ID,
99 version = ONOS_VERSION,
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700100 deps = [],
101 visibility = ['PUBLIC'],
102 license = 'NONE',
103 description = '',
104 debug = False,
Brian O'Connore5817c92016-04-06 15:41:48 -0700105 import_packages = '*',
106 export_packages = '*',
Ray Milkey2a749832016-08-02 15:22:20 -0700107 package_name_root = 'org.onosproject',
Brian O'Connore5817c92016-04-06 15:41:48 -0700108 include_resources = NONE,
109 web_context = NONE,
Brian O'Connore4da59d2016-04-08 00:32:18 -0700110 resources = NONE,
Brian O'Connor0f6677d2016-04-06 23:26:51 -0700111 resources_root = None,
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700112 **kwargs
113 ):
114
Brian O'Connore4da59d2016-04-08 00:32:18 -0700115 # if name and _get_name() != name:
116 # print _get_name(), '!=', name
117 if name is None:
118 name = _get_name()
119
120 if srcs is None:
121 srcs = glob([SRC + '/*.java'])
122
123 if resources == NONE and resources_root is not None:
124 resources = glob([resources_root + '**'])
125 elif resources == NONE:
126 resources = glob([RESOURCES_ROOT + '**'])
127
128 if resources and not resources_root:
129 resources_root = RESOURCES_ROOT
130
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700131 bare_jar_name = name + '-jar'
132 osgi_jar_name = name + '-osgi'
133 mvn_coords = group_id + ':' + name + ':' + version
134
Brian O'Connor0f6677d2016-04-06 23:26:51 -0700135
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700136 java_library(
137 name = bare_jar_name,
138 srcs = srcs,
139 deps = deps,
Brian O'Connor0f6677d2016-04-06 23:26:51 -0700140 visibility = [], #intentially, not visible
141 resources = resources,
142 resources_root = resources_root,
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700143 **kwargs
144 )
145
Brian O'Connor4847ea32016-04-29 16:33:06 -0700146 cp = ':'.join(['$(classpath %s)' % c for c in deps]) if deps else '""'
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700147
148 args = ( '$(location :%s)' % bare_jar_name, #input jar
149 '$OUT', #output jar
150 cp, #classpath
151 name, #bundle name
152 group_id, #group id
153 version, #version
154 license, #license url
Brian O'Connore5817c92016-04-06 15:41:48 -0700155 "'%s'" % import_packages, #packages to import
156 "'%s'" % export_packages, #packages to export
157 include_resources, #custom includes to classpath
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700158 web_context, #web context (REST API only)
159 description, #description
160 )
161
162 #TODO stage_jar is a horrendous hack
163 stage_jar = 'pushd $SRCDIR; mkdir bin; cd bin; jar xf $(location :%s); ls; popd; ' % bare_jar_name
164 wrap_jar = '$(exe //utils/osgiwrap:osgi-jar) ' + ' '.join(args)
165 bash = stage_jar + wrap_jar
166 if debug:
167 bash = stage_jar + DEBUG_ARG + ' ' + wrap_jar
168 print bash
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700169
170 genrule(
171 name = osgi_jar_name,
172 bash = bash,
Brian O'Connor1f165982016-04-06 21:36:09 -0700173 out = '%s-%s.jar' % (name, version), #FIXME add version to jar file
Brian O'Connore5817c92016-04-06 15:41:48 -0700174 srcs = glob(['src/main/webapp/**']),
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700175 visibility = [], #intentially, not visible
176 )
177
178 # TODO we really should shade the jar with maven flavor
179 prebuilt_jar(
180 name = name,
181 maven_coords = mvn_coords,
182 binary_jar = ':' + osgi_jar_name,
183 visibility = visibility,
184 )
185
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700186 ### Checkstyle
Brian O'Connor40a3fbd2016-06-08 13:54:46 -0700187 checkstyle(
Brian O'Connorbe95f682016-05-18 15:40:19 -0700188 name = name + '-checkstyle-files',
Brian O'Connor4847ea32016-04-29 16:33:06 -0700189 srcs = srcs,
Brian O'Connor40a3fbd2016-06-08 13:54:46 -0700190 jar_target = ':'+ bare_jar_name,
191 )
Brian O'Connorb3cc6042016-04-25 11:55:51 -0700192
Ray Milkeyc340e282016-06-30 14:45:42 -0700193 java_doc(
194 name = name + '-javadoc',
195 title = 'Java Docs',
Ray Milkey2a749832016-08-02 15:22:20 -0700196 pkgs = [ package_name_root ],
Ray Milkeyc340e282016-06-30 14:45:42 -0700197 paths = [ 'src/main/java' ],
198 srcs = srcs,
199 deps = deps,
200 visibility = visibility,
201 do_it_wrong = False,
202 )
203
Brian O'Connorb3cc6042016-04-25 11:55:51 -0700204 # TODO add project config for intellij
205 # project_config(
206 # src_target = ':' + bare_jar_name,
207 # src_roots = [ 'src/main/java' ],
208 # test_target = ':' + name + '-tests',
209 # test_roots = [ 'src/test/java' ],
210 # )
211
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700212 ### .m2 Install
Brian O'Connorb86c9202016-04-05 20:15:04 -0700213 mvn_cmd = ' '.join(( 'mvn install:install-file',
214 '-Dfile=$(location :%s)' % name,
215 '-DgroupId=%s' % group_id,
216 '-DartifactId=%s' % name,
217 '-Dversion=%s' % version,
218 '-Dpackaging=jar' ))
Brian O'Connore5817c92016-04-06 15:41:48 -0700219 cmd = mvn_cmd + ' > $OUT'
220 if FORCE_INSTALL:
221 # Add a random number to the command to force this rule to run.
222 # TODO We should make this configurable from CLI, perhaps with a flag.
223 cmd = 'FOO=%s ' % random.random() + cmd
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700224 genrule(
225 name = name + '-install',
Brian O'Connorb86c9202016-04-05 20:15:04 -0700226 bash = cmd,
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700227 out = 'install.log',
228 visibility = visibility,
229 )
230
Brian O'Connore4da59d2016-04-08 00:32:18 -0700231def osgi_jar_with_tests(
232 name = None,
233 deps = [],
234 test_srcs = None,
235 test_deps = [ '//lib:TEST' ],
236 test_resources = None,
237 test_resources_root = None,
238 visibility = [ 'PUBLIC' ],
239 **kwargs
240 ):
241
242 if name is None:
243 name = _get_name()
244
245 osgi_jar(name = name,
246 deps = deps,
247 visibility = visibility,
248 **kwargs)
Brian O'Connor0f6677d2016-04-06 23:26:51 -0700249
250 if test_resources and not test_resources_root:
Brian O'Connore4da59d2016-04-08 00:32:18 -0700251 test_resources_root = TEST_RESOURCES_ROOT
252 if test_resources_root and not test_resources:
253 test_resources = glob([test_resources_root + '**'])
254 if not test_resources and not test_resources_root:
255 test_resources = glob([TEST_RESOURCES_ROOT + '**'])
256 if test_resources:
257 test_resources_root = TEST_RESOURCES_ROOT
Brian O'Connor0f6677d2016-04-06 23:26:51 -0700258
Brian O'Connore4da59d2016-04-08 00:32:18 -0700259 if test_srcs is None:
260 test_srcs = glob([TEST + '/*.java'])
261
Brian O'Connore4da59d2016-04-08 00:32:18 -0700262 java_test(
263 name = name + '-tests',
264 srcs = test_srcs,
265 deps = deps +
266 test_deps +
267 [':' + name + '-jar'],
268 source_under_test = [':' + name + '-jar'],
269 resources = test_resources,
270 resources_root = test_resources_root,
271 visibility = visibility
Brian O'Connorbe95f682016-05-18 15:40:19 -0700272 )
273
Brian O'Connor40a3fbd2016-06-08 13:54:46 -0700274 checkstyle(
275 name = name + '-tests',
276 srcs = test_srcs,
277 jar_target = ':' + name + '-tests',
278 )
279
Brian O'Connore642f7c2016-05-23 18:33:04 -0700280 #FIXME need to run checkstyle on test sources