blob: 7f4623523d73700367f9973913de7edeed2f196f [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 = '*',
Yuta HIGUCHIf05db402016-08-12 18:36:33 -0700106 dynamicimport_packages = '',
Brian O'Connore5817c92016-04-06 15:41:48 -0700107 export_packages = '*',
Ray Milkey2a749832016-08-02 15:22:20 -0700108 package_name_root = 'org.onosproject',
Brian O'Connor79b70672016-10-20 13:44:52 -0700109 include_resources = {},
Brian O'Connore5817c92016-04-06 15:41:48 -0700110 web_context = NONE,
Brian O'Connor79b70672016-10-20 13:44:52 -0700111 api_title = None,
Brian O'Connore8468b52016-07-25 13:42:36 -0700112 api_version = NONE,
113 api_package = NONE,
114 api_description = NONE,
Brian O'Connore4da59d2016-04-08 00:32:18 -0700115 resources = NONE,
Brian O'Connor0f6677d2016-04-06 23:26:51 -0700116 resources_root = None,
Brian O'Connoree674952016-09-13 16:31:45 -0700117 tests = None,
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700118 **kwargs
119 ):
120
Brian O'Connore4da59d2016-04-08 00:32:18 -0700121 # if name and _get_name() != name:
122 # print _get_name(), '!=', name
123 if name is None:
124 name = _get_name()
125
126 if srcs is None:
127 srcs = glob([SRC + '/*.java'])
128
129 if resources == NONE and resources_root is not None:
130 resources = glob([resources_root + '**'])
131 elif resources == NONE:
132 resources = glob([RESOURCES_ROOT + '**'])
133
134 if resources and not resources_root:
135 resources_root = RESOURCES_ROOT
136
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700137 mvn_coords = group_id + ':' + name + ':' + version
138
Brian O'Connore8468b52016-07-25 13:42:36 -0700139 onos_jar(
Brian O'Connoree674952016-09-13 16:31:45 -0700140 name = name,
141 srcs = srcs + glob(['src/main/webapp/**']),
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700142 deps = deps,
Brian O'Connoree674952016-09-13 16:31:45 -0700143 visibility = visibility,
Brian O'Connor0f6677d2016-04-06 23:26:51 -0700144 resources = resources,
145 resources_root = resources_root,
Brian O'Connoree674952016-09-13 16:31:45 -0700146 bundle_name = name,
147 group_id = group_id,
148 bundle_version = version,
149 bundle_license = license,
150 bundle_description = description,
151 import_packages = import_packages,
152 export_packages = export_packages,
153 include_resources = include_resources,
154 dynamicimport_packages = dynamicimport_packages,
Brian O'Connore8468b52016-07-25 13:42:36 -0700155 web_context = web_context,
156 api_title = api_title,
157 api_version = api_version,
158 api_package = api_package,
159 api_description = api_description,
Brian O'Connoree674952016-09-13 16:31:45 -0700160 tests = tests,
161 maven_coords = mvn_coords,
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700162 **kwargs
163 )
164
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700165 ### Checkstyle
Brian O'Connor40a3fbd2016-06-08 13:54:46 -0700166 checkstyle(
Brian O'Connorbe95f682016-05-18 15:40:19 -0700167 name = name + '-checkstyle-files',
Brian O'Connor4847ea32016-04-29 16:33:06 -0700168 srcs = srcs,
Brian O'Connoree674952016-09-13 16:31:45 -0700169 jar_target = ':'+ name,
Brian O'Connor40a3fbd2016-06-08 13:54:46 -0700170 )
Brian O'Connorb3cc6042016-04-25 11:55:51 -0700171
Ray Milkeyc340e282016-06-30 14:45:42 -0700172 java_doc(
173 name = name + '-javadoc',
174 title = 'Java Docs',
Ray Milkey2a749832016-08-02 15:22:20 -0700175 pkgs = [ package_name_root ],
Ray Milkeyc340e282016-06-30 14:45:42 -0700176 paths = [ 'src/main/java' ],
177 srcs = srcs,
178 deps = deps,
179 visibility = visibility,
180 do_it_wrong = False,
181 )
182
Brian O'Connorb3cc6042016-04-25 11:55:51 -0700183 # TODO add project config for intellij
184 # project_config(
Brian O'Connoree674952016-09-13 16:31:45 -0700185 # src_target = ':' + name,
Brian O'Connorb3cc6042016-04-25 11:55:51 -0700186 # src_roots = [ 'src/main/java' ],
187 # test_target = ':' + name + '-tests',
188 # test_roots = [ 'src/test/java' ],
189 # )
190
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700191 ### .m2 Install
Brian O'Connorb86c9202016-04-05 20:15:04 -0700192 mvn_cmd = ' '.join(( 'mvn install:install-file',
193 '-Dfile=$(location :%s)' % name,
194 '-DgroupId=%s' % group_id,
195 '-DartifactId=%s' % name,
196 '-Dversion=%s' % version,
197 '-Dpackaging=jar' ))
Brian O'Connore5817c92016-04-06 15:41:48 -0700198 cmd = mvn_cmd + ' > $OUT'
199 if FORCE_INSTALL:
200 # Add a random number to the command to force this rule to run.
201 # TODO We should make this configurable from CLI, perhaps with a flag.
202 cmd = 'FOO=%s ' % random.random() + cmd
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700203 genrule(
204 name = name + '-install',
Brian O'Connorb86c9202016-04-05 20:15:04 -0700205 bash = cmd,
Brian O'Connor42c38cf2016-04-05 17:05:57 -0700206 out = 'install.log',
207 visibility = visibility,
208 )
209
Brian O'Connore4da59d2016-04-08 00:32:18 -0700210def osgi_jar_with_tests(
211 name = None,
212 deps = [],
Brian O'Connoree674952016-09-13 16:31:45 -0700213 group_id = ONOS_GROUP_ID,
214 version = ONOS_VERSION,
Brian O'Connore4da59d2016-04-08 00:32:18 -0700215 test_srcs = None,
216 test_deps = [ '//lib:TEST' ],
217 test_resources = None,
218 test_resources_root = None,
219 visibility = [ 'PUBLIC' ],
220 **kwargs
221 ):
222
223 if name is None:
224 name = _get_name()
225
226 osgi_jar(name = name,
227 deps = deps,
Brian O'Connoree674952016-09-13 16:31:45 -0700228 group_id = group_id,
229 version = version,
Brian O'Connore4da59d2016-04-08 00:32:18 -0700230 visibility = visibility,
Brian O'Connoree674952016-09-13 16:31:45 -0700231 tests = [':' + name + '-tests'],
Brian O'Connore4da59d2016-04-08 00:32:18 -0700232 **kwargs)
Brian O'Connor0f6677d2016-04-06 23:26:51 -0700233
234 if test_resources and not test_resources_root:
Brian O'Connore4da59d2016-04-08 00:32:18 -0700235 test_resources_root = TEST_RESOURCES_ROOT
236 if test_resources_root and not test_resources:
237 test_resources = glob([test_resources_root + '**'])
238 if not test_resources and not test_resources_root:
239 test_resources = glob([TEST_RESOURCES_ROOT + '**'])
240 if test_resources:
241 test_resources_root = TEST_RESOURCES_ROOT
Brian O'Connor0f6677d2016-04-06 23:26:51 -0700242
Brian O'Connore4da59d2016-04-08 00:32:18 -0700243 if test_srcs is None:
244 test_srcs = glob([TEST + '/*.java'])
245
Brian O'Connoree674952016-09-13 16:31:45 -0700246 mvn_coords = group_id + ':' + name + ':jar:tests:' + version
247
Brian O'Connore4da59d2016-04-08 00:32:18 -0700248 java_test(
249 name = name + '-tests',
250 srcs = test_srcs,
251 deps = deps +
252 test_deps +
Brian O'Connoree674952016-09-13 16:31:45 -0700253 [':' + name + '#non-osgi'],
Brian O'Connore4da59d2016-04-08 00:32:18 -0700254 resources = test_resources,
255 resources_root = test_resources_root,
Brian O'Connoree674952016-09-13 16:31:45 -0700256 maven_coords = mvn_coords,
257 visibility = visibility,
Brian O'Connorbe95f682016-05-18 15:40:19 -0700258 )
259
Brian O'Connor40a3fbd2016-06-08 13:54:46 -0700260 checkstyle(
261 name = name + '-tests',
262 srcs = test_srcs,
263 jar_target = ':' + name + '-tests',
264 )