From 3b55d06b89bf64873e685c3d78fce5affbba3d17 Mon Sep 17 00:00:00 2001 From: zheng_wenlong Date: Tue, 16 Apr 2019 11:20:38 +0900 Subject: Add warehouse server source code. [Patch Set 2] Add ReadMe.md Change-Id: I6ade52d2490f5ca4ba107c1a27ed6d5b39048725 Signed-off-by: zheng_wenlong --- warehouse/src/main/webapp/js/AglSocket.js | 80 +++++++++++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 warehouse/src/main/webapp/js/AglSocket.js (limited to 'warehouse/src/main/webapp/js/AglSocket.js') diff --git a/warehouse/src/main/webapp/js/AglSocket.js b/warehouse/src/main/webapp/js/AglSocket.js new file mode 100644 index 0000000..7b3da63 --- /dev/null +++ b/warehouse/src/main/webapp/js/AglSocket.js @@ -0,0 +1,80 @@ +/* + * Copyright (c) 2019 TOYOTA MOTOR CORPORATION + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ +var TAG_LOG = "AglSocket log -- "; + +class AglSocket { + constructor() { + this.onopen = this.onopen.bind(this); + this.onabort = this.onabort.bind(this); + this.replyerr = this.replyerr.bind(this); + this.replyok = this.replyok.bind(this); + this.ws = new afb.ws(this.onopen, this.onabort); + this.appList = null; + } + + onopen() { + this.ws.onevent("*",this.gotevent); + } + + onabort() { + } + + imgNotFound() { + var img = event.srcElement; + img.src = "images/icon_Default.svg"; + img.onerror = null; + } + + replyerr(obj) { + console.log(TAG_LOG + "replyerr:\n" + JSON.stringify(obj)); + } + + replyok(obj) { + console.log(TAG_LOG + "replyok:\n" + JSON.stringify(obj)); + } + + gotevent(obj) { + console.log(TAG_LOG + "gotevent:\n" + JSON.stringify(obj)); + } + + launchApp(request) { + //console.log(TAG_LOG + ", app id is " + appId); + //this.ws.call("afm-main/start", appId); + this.ws.call("homescreen/showWindow", request); + + } + + listInstalledApps(listReplyok, replyerr) { + console.log(TAG_LOG + "list installed apps"); + this.ws.call("afm-main/runnables", "").then(listReplyok, replyerr); + } + + installApp(path, replyok, replyerr, param) { + console.log(TAG_LOG + "installApp"); + this.ws.call("afm-main/install", path, param).then(replyok, replyerr); + } + + uninstallApp(appId) { + console.log(TAG_LOG + "uninstallApp"); + this.ws.call("afm-main/uninstall", appId).then(this.replyok, this.replyerr); + } +} + +var remoteIp = $("#remoteIp").val(); +var param = $("#params").val(); +var port = param.split("&")[0].split("=")[1]; +var token = param.split("&")[1].split("=")[1]; +var afb = new AFB(remoteIp, port, "api", token); -- cgit 1.2.3-korg