blob: 88012b03bc71cfd145948723b3e796b606678103 [file] [log] [blame]
Ray Milkeyd7be3622018-07-12 10:29:21 -07001"""
2 Copyright 2018-present Open Networking Foundation
3
4 Licensed under the Apache License, Version 2.0 (the "License");
5 you may not use this file except in compliance with the License.
6 You may obtain a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10 Unless required by applicable law or agreed to in writing, software
11 distributed under the License is distributed on an "AS IS" BASIS,
12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 See the License for the specific language governing permissions and
14 limitations under the License.
15"""
16
17"""
18 Rules to build the ONOS GUI
19
20 Bazel and npm are incompatibe in how they deal with files. npm likes to follow links
21 to get back to the original canonical path names, and bazel uses links extensively when
22 populating the sandbox. To get around these problems, the rules that follow use filegroups
23 to specify the files as dependencies and then use a genrule to convert the files into a tar
24 ball. Once the tar ball is unrolled into the sandbox, the links are broken, but the build is
25 still hermetic since those files are referred to as dependencies in the genrule.
26
27 Also note that the onos-gui.tar contains files from //tools/gui and //web/gui, so the files are placed into
28 the sandbox at the proper locations and then returned as a tar ball.
29"""
Ray Milkey6b3775a2018-06-28 11:18:44 -070030
Ray Milkey86ad7bb2018-09-27 12:32:28 -070031COMPILE_DEPS = CORE_DEPS + JACKSON + KRYO + CLI + [
Ray Milkey6b3775a2018-06-28 11:18:44 -070032 "@javax_ws_rs_api//jar",
33 "@servlet_api//jar",
34 "@jetty_websocket//jar",
Ray Milkeyd84f89b2018-08-17 14:54:17 -070035 "@jetty_websocket_api//jar",
Ray Milkey6b3775a2018-06-28 11:18:44 -070036 "@jetty_util//jar",
37 "@jersey_media_multipart//jar",
Ray Milkey6b3775a2018-06-28 11:18:44 -070038 "@jersey_server//jar",
Ray Milkey6b3775a2018-06-28 11:18:44 -070039 "//incubator/api:onos-incubator-api",
40 "//incubator/net:onos-incubator-net",
41 "//utils/rest:onlab-rest",
42 "//core/store/serializers:onos-core-serializers",
43]
44
45TEST_DEPS = TEST + [
46 "//core/api:onos-api-tests",
47 "//drivers/default:onos-drivers-default",
48]
49
Ray Milkeyd7be3622018-07-12 10:29:21 -070050"""
51 Files that get put at the top level of the tar ball
52"""
Ray Milkey6b3775a2018-06-28 11:18:44 -070053
54filegroup(
55 name = "_root_level_files",
56 srcs =
57 [
58 ":src/main/webapp/bower.json",
59 ":src/main/webapp/bs-config.js",
60 ":src/main/webapp/dev_server.js",
61 ":src/main/webapp/package.json",
62 ],
63)
64
Ray Milkeyd7be3622018-07-12 10:29:21 -070065"""
66 Files that get put into the WEB-INF directory of the tar ball
67"""
68
Ray Milkey6b3775a2018-06-28 11:18:44 -070069filegroup(
70 name = "_web_inf_classes_files",
71 srcs =
72 [
73 ":src/main/webapp/error.html",
74 ":src/main/webapp/index.html",
75 ":src/main/webapp/login.html",
76 ":src/main/webapp/nav.html",
77 ":src/main/webapp/not-ready.html",
78 ":src/main/webapp/onos.js",
79 ],
80)
81
Ray Milkeyd7be3622018-07-12 10:29:21 -070082"""
83 webapp raw files
84"""
85
Ray Milkey6b3775a2018-06-28 11:18:44 -070086filegroup(
87 name = "_raw_classes_files",
88 srcs = glob(["src/main/webapp/raw/**"]),
89)
90
Ray Milkeyd7be3622018-07-12 10:29:21 -070091"""
Ray Milkeyd7be3622018-07-12 10:29:21 -070092 Install node.js and npm, and gather files needed from //tools/gui
93"""
94
95genrule(
96 name = "_onos-gui-npm-install",
97 srcs = [
98 "@nodejs//:bin/npm",
Sean Condonf6af2a52018-08-19 10:43:24 +010099 "@nodejs//:bin/node",
100 "@nodejs//:bin/node.js",
101 "@nodejs//:bin/nodejs/bin/node",
102 "@nodejs//:bin/nodejs/bin/npm",
Ray Milkeyd7be3622018-07-12 10:29:21 -0700103 "//tools/gui:tools-gui-gulp",
Thomas Vachuska34328622018-08-03 09:21:17 -0700104 ],
105 outs = ["onos-gui-npm-install.jar"],
Ray Milkeyd7be3622018-07-12 10:29:21 -0700106 cmd = " ROOT=`pwd` &&" +
Thomas Vachuska06206132018-08-06 16:43:43 -0700107 " export HOME=. &&" +
Ray Milkeyd7be3622018-07-12 10:29:21 -0700108 " export XDG_CONFIG_HOME=$(@D)/config &&" + # npm config cache to the sandbos
Ray Milkeycc9620a2018-07-31 14:22:40 -0700109 " export BABEL_DISABLE_CACHE=1 &&" + # turn off babel cache
Thomas Vachuska277ec4e2018-08-29 17:59:47 +0000110 ' if [[ ! -z $${HTTP_PROXY-} ]]; then NPM_ARGS="--proxy $$HTTP_PROXY --without-ssl --insecure"; else NPM_ARGS=""; fi &&' +
Ray Milkeyd7be3622018-07-12 10:29:21 -0700111 " NPM=$$ROOT/$(location @nodejs//:bin/npm) &&" +
112 " mkdir -p tools/gui &&" +
113 " cd tools/gui &&" +
Thomas Vachuska34328622018-08-03 09:21:17 -0700114 " jar xf ../../$(location //tools/gui:tools-gui-gulp) &&" +
Ray Milkey61289c12018-08-27 17:09:25 -0700115 " $$NPM $$NPM_ARGS install --no-cache --loglevel=error >npm-install.out 2>&1 &&" +
Thomas Vachuska34328622018-08-03 09:21:17 -0700116 " find . -name package.json | while read pjson; do egrep -v '/execroot/' $$pjson > ptmp; mv ptmp $$pjson; done &&" +
117 " find package.json gulpfile.babel.js node_modules gulp-tasks -type f -exec touch -t 201806280000 {} \; &&" +
118 " jar Mcf $$ROOT/$@ package.json gulpfile.babel.js node_modules gulp-tasks",
Ray Milkeyd7be3622018-07-12 10:29:21 -0700119)
120
121"""
122 Run npm build to create node.js files
123"""
124
125genrule(
126 name = "_onos-gui-npm-build",
127 srcs = [
128 "@nodejs//:bin/npm",
Sean Condonf6af2a52018-08-19 10:43:24 +0100129 "@nodejs//:bin/node",
130 "@nodejs//:bin/node.js",
131 "@nodejs//:bin/nodejs/bin/node",
132 "@nodejs//:bin/nodejs/bin/npm",
Ray Milkeyd7be3622018-07-12 10:29:21 -0700133 ":_onos-gui-npm-install",
134 ":_web_app_all",
135 ],
Thomas Vachuska34328622018-08-03 09:21:17 -0700136 outs = ["onos-gui-npm-build.jar"],
Ray Milkeyd7be3622018-07-12 10:29:21 -0700137 cmd = "(ROOT=`pwd` &&" +
Thomas Vachuska06206132018-08-06 16:43:43 -0700138 " export HOME=. &&" +
Ray Milkeyd7be3622018-07-12 10:29:21 -0700139 " export XDG_CONFIG_HOME=$(@D)/config &&" +
Ray Milkey61289c12018-08-27 17:09:25 -0700140 " export BABEL_DISABLE_CACHE=1 &&" +
141 ' if [[ ! -z $${HTTP_PROXY-} ]]; then NPM_ARGS="--proxy $$HTTP_PROXY --without-ssl --insecure"; else NPM_ARGS=""; fi &&' +
Ray Milkeyd7be3622018-07-12 10:29:21 -0700142 " NPM=$(location @nodejs//:bin/npm) &&" +
Thomas Vachuska34328622018-08-03 09:21:17 -0700143 " (mkdir -p web/gui && cd web/gui && jar xf ../../$(location :_web_app_all)) &&" +
Ray Milkeyd7be3622018-07-12 10:29:21 -0700144 " mkdir -p tools/gui && cd tools/gui &&" +
Thomas Vachuska34328622018-08-03 09:21:17 -0700145 " jar xf $$ROOT/$(location :_onos-gui-npm-install) &&" +
146 " chmod a+x ./node_modules/gulp/bin/gulp.js &&" +
Ray Milkey61289c12018-08-27 17:09:25 -0700147 " $$ROOT/$$NPM $$NPM_ARGS run build --no-cache --loglevel=error >npm-build.out &&" +
Ray Milkeyd7be3622018-07-12 10:29:21 -0700148 " cd ../../web/gui/src/main/webapp &&" +
Thomas Vachuska34328622018-08-03 09:21:17 -0700149 " find dist vendor data README.md _doc _dev app/fw app/*.css app/*.js app/*.txt -type f -exec touch -t 201806280000 {} \; &&" +
150 " jar Mcf $$ROOT/$@ dist vendor data README.md _doc _dev app/fw app/*.css app/*.js app/*.txt)",
Ray Milkeyd7be3622018-07-12 10:29:21 -0700151)
152
153"""
154 Make a jar file of all the webapp files. Useful for breaking symblic links in the sandbox
155"""
156
157genrule(
158 name = "_web_app_all",
Jian Lid486a732018-08-03 00:32:11 +0900159 srcs = glob(
160 [
161 "src/main/webapp/**",
162 "src/main/webapp/app/**/*.js",
163 ],
164 exclude = [
165 "src/main/webapp/tests/**",
166 "src/main/webapp/node_modules/**",
167 "src/main/webapp/dist/**",
168 "src/main/webapp/vendor/**",
169 "src/main/webapp/npm-debug.log",
170 ],
171 ),
Thomas Vachuska34328622018-08-03 09:21:17 -0700172 outs = ["web_app_all.jar"],
173 cmd = "cd web/gui &&" +
174 " find src/main/webapp -type f -exec touch -t 201806280000 {} \; &&" +
175 " jar Mcf ../../$@ src/main/webapp",
Ray Milkeyd7be3622018-07-12 10:29:21 -0700176)
177
178"""
179 app/view is packaged as a tar file because it has subdirectories that need to be preserved
180"""
181
Ray Milkey6b3775a2018-06-28 11:18:44 -0700182genrule(
183 name = "_app_view_tar",
184 srcs = glob(["src/main/webapp/app/view/**"]),
Thomas Vachuska34328622018-08-03 09:21:17 -0700185 outs = ["app_view_tar.jar"],
Ray Milkey6b3775a2018-06-28 11:18:44 -0700186 cmd = " ROOT=`pwd` &&" +
187 " cd web/gui/src/main/webapp/app/view &&" +
Thomas Vachuska34328622018-08-03 09:21:17 -0700188 " find . -type f -exec touch -t 201806280000 {} \; &&" +
189 " jar Mcf $$ROOT/$@ .",
Ray Milkey6b3775a2018-06-28 11:18:44 -0700190)
191
Ray Milkeyd7be3622018-07-12 10:29:21 -0700192"""
193 Builds the java jar for the java code provided by the GUI
194"""
195
196osgi_jar_with_tests(
197 name = "_onos-gui-base-jar",
198 exclude_tests = [
199 "org.onosproject.ui.impl.AbstractUiImplTest",
200 "org.onosproject.ui.impl.topo.model.AbstractTopoModelTest",
201 ],
202 test_deps = TEST_DEPS,
203 web_context = "/onos/ui",
204 deps = COMPILE_DEPS,
205)
206
Sean Condon3c8e5582018-08-28 23:22:43 +0100207genrule(
208 name = "onos-gui-java-for-gui2",
209 srcs = glob([
210 "src/main/java/org/onosproject/ui/impl/Main*Resource.java",
211 "src/main/java/org/onosproject/ui/impl/ApplicationResource.java",
212 ]),
213 outs = ["onos-gui-java-for-gui2.srcjar"],
214 cmd = "jar cf $@ $(SRCS)",
215 visibility = ["//visibility:public"],
216)
217
Ray Milkeyd7be3622018-07-12 10:29:21 -0700218"""
219 Builds the tar ball for the ONOS GUI
220"""
221
Ray Milkey6b3775a2018-06-28 11:18:44 -0700222genrule(
223 name = "onos-gui",
224 srcs = [
225 ":_onos-gui-npm-build",
226 ":_onos-gui-base-jar",
227 ":_root_level_files",
228 ":_web_inf_classes_files",
229 ":_raw_classes_files",
230 ":_app_view_tar",
231 ],
232 outs = ["onos-gui.jar"],
233 cmd = " ROOT=`pwd` &&" +
234 " mkdir -p gui/WEB-INF/classes &&" +
235 " cd gui &&" +
Thomas Vachuska34328622018-08-03 09:21:17 -0700236 " jar xf $$ROOT/$(location :_onos-gui-npm-build) &&" +
237 " (cd WEB-INF/classes && mkdir -p app/view && cd app/view && jar xf $$ROOT/$(location :_app_view_tar)) &&" +
Ray Milkey6b3775a2018-06-28 11:18:44 -0700238 " for i in $(locations :_root_level_files); do cp $$ROOT/$$i .; done &&" +
239 " for i in $(locations :_web_inf_classes_files); do cp $$ROOT/$$i ./WEB-INF/classes/; done &&" +
Ray Milkeyd7be3622018-07-12 10:29:21 -0700240 " mkdir ./WEB-INF/classes/raw && " +
241 " for i in $(locations :_raw_classes_files); do cp $$ROOT/$$i ./WEB-INF/classes/raw/; done &&" +
Ray Milkey6b3775a2018-06-28 11:18:44 -0700242 " jar xf $$ROOT/$(location :_onos-gui-base-jar) &&" +
Thomas Vachuska34328622018-08-03 09:21:17 -0700243 " find . -type f -exec touch -t 201806280000 {} \; &&" +
Ray Milkey6b3775a2018-06-28 11:18:44 -0700244 " jar cmf META-INF/MANIFEST.MF $$ROOT/$@ .",
Ray Milkey6b3775a2018-06-28 11:18:44 -0700245 output_to_bindir = 1,
246 visibility = ["//visibility:public"],
247)