blob: 27509deb958f910c4ab8fa1afdd77a38f6801448 [file] [log] [blame]
Ashutosh Joshi1d1ac542016-01-18 17:19:27 -08001/*
2 * Copyright (C) 2016 The Android Open Source Project
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
Ashutosh Joshi420e45e2016-12-20 16:34:41 -080017package com.android.server.location;
Ashutosh Joshi1d1ac542016-01-18 17:19:27 -080018
Ashutosh Joshi1d1ac542016-01-18 17:19:27 -080019import android.content.Context;
Arthur Ishiguro7a23a962017-11-01 10:52:28 -070020import android.hardware.contexthub.V1_0.AsyncEventType;
21import android.hardware.contexthub.V1_0.ContextHub;
22import android.hardware.contexthub.V1_0.ContextHubMsg;
Arthur Ishiguro7a23a962017-11-01 10:52:28 -070023import android.hardware.contexthub.V1_0.HubAppInfo;
24import android.hardware.contexthub.V1_0.IContexthub;
25import android.hardware.contexthub.V1_0.IContexthubCallback;
26import android.hardware.contexthub.V1_0.Result;
27import android.hardware.contexthub.V1_0.TransactionResult;
Ashutosh Joshi420e45e2016-12-20 16:34:41 -080028import android.hardware.location.ContextHubInfo;
Ashutosh Joshi420e45e2016-12-20 16:34:41 -080029import android.hardware.location.ContextHubMessage;
Arthur Ishiguroebb0e862017-11-17 14:55:32 -080030import android.hardware.location.ContextHubTransaction;
Ashutosh Joshi420e45e2016-12-20 16:34:41 -080031import android.hardware.location.IContextHubCallback;
Arthur Ishiguro4e39aa12017-11-14 14:59:08 -080032import android.hardware.location.IContextHubClient;
33import android.hardware.location.IContextHubClientCallback;
Arthur Ishiguro7a23a962017-11-01 10:52:28 -070034import android.hardware.location.IContextHubService;
35import android.hardware.location.IContextHubTransactionCallback;
Ashutosh Joshi420e45e2016-12-20 16:34:41 -080036import android.hardware.location.NanoApp;
Arthur Ishiguro7a23a962017-11-01 10:52:28 -070037import android.hardware.location.NanoAppBinary;
38import android.hardware.location.NanoAppFilter;
Ashutosh Joshi420e45e2016-12-20 16:34:41 -080039import android.hardware.location.NanoAppInstanceInfo;
Arthur Ishiguroebb0e862017-11-17 14:55:32 -080040import android.hardware.location.NanoAppMessage;
Arthur Ishiguro7a23a962017-11-01 10:52:28 -070041import android.hardware.location.NanoAppState;
destradaa78cebca2016-04-14 18:40:14 -070042import android.os.RemoteCallbackList;
Ashutosh Joshi1d1ac542016-01-18 17:19:27 -080043import android.os.RemoteException;
44import android.util.Log;
45
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -060046import com.android.internal.util.DumpUtils;
47
Ashutosh Joshi6239cc62016-04-04 16:19:29 -070048import java.io.FileDescriptor;
49import java.io.PrintWriter;
Ashutosh Joshi19753cc2016-11-23 13:56:39 -080050import java.nio.ByteBuffer;
51import java.nio.ByteOrder;
Ashutosh Joshi1d1ac542016-01-18 17:19:27 -080052import java.util.ArrayList;
Arthur Ishiguro7a23a962017-11-01 10:52:28 -070053import java.util.Collections;
Arthur Ishiguroebb0e862017-11-17 14:55:32 -080054import java.util.HashMap;
Arthur Ishiguro7a23a962017-11-01 10:52:28 -070055import java.util.List;
Arthur Ishiguroebb0e862017-11-17 14:55:32 -080056import java.util.Map;
Arthur Ishiguro7a23a962017-11-01 10:52:28 -070057import java.util.NoSuchElementException;
Ashutosh Joshi1d1ac542016-01-18 17:19:27 -080058
59/**
60 * @hide
61 */
Peng Xu9ff7d222016-02-11 13:02:05 -080062public class ContextHubService extends IContextHubService.Stub {
Ashutosh Joshi1d1ac542016-01-18 17:19:27 -080063 private static final String TAG = "ContextHubService";
Ashutosh Joshi1d1ac542016-01-18 17:19:27 -080064
Arthur Ishiguro7a23a962017-11-01 10:52:28 -070065 /*
66 * Constants for the type of transaction that is defined by ContextHubService.
67 * This is used to report the transaction callback to clients, and is different from
68 * ContextHubTransaction.Type.
69 */
70 public static final int MSG_ENABLE_NANO_APP = 1;
71 public static final int MSG_DISABLE_NANO_APP = 2;
72 public static final int MSG_LOAD_NANO_APP = 3;
Ashutosh Joshicafdee92016-04-04 16:19:29 -070073 public static final int MSG_UNLOAD_NANO_APP = 4;
Arthur Ishiguro7a23a962017-11-01 10:52:28 -070074 public static final int MSG_QUERY_NANO_APPS = 5;
75 public static final int MSG_QUERY_MEMORY = 6;
76 public static final int MSG_HUB_RESET = 7;
Ashutosh Joshib741e3b2016-03-29 09:19:56 -070077
Ashutosh Joshib741e3b2016-03-29 09:19:56 -070078 private static final int OS_APP_INSTANCE = -1;
Ashutosh Joshi1d1ac542016-01-18 17:19:27 -080079
Arthur Ishigurob4f59872018-07-31 16:38:08 -070080 /*
81 * Local flag to enable debug logging.
82 */
83 private static final boolean DEBUG_LOG_ENABLED = false;
84
Peng Xu9ff7d222016-02-11 13:02:05 -080085 private final Context mContext;
Arthur Ishiguro7a23a962017-11-01 10:52:28 -070086
Arthur Ishiguroab7113d2017-12-15 14:32:51 -080087 private final Map<Integer, ContextHubInfo> mContextHubIdToInfoMap;
Arthur Ishigurofdbbd462017-11-27 16:33:36 -080088 private final List<ContextHubInfo> mContextHubInfoList;
destradaa78cebca2016-04-14 18:40:14 -070089 private final RemoteCallbackList<IContextHubCallback> mCallbacksList =
90 new RemoteCallbackList<>();
Ashutosh Joshi1d1ac542016-01-18 17:19:27 -080091
Arthur Ishiguro7a23a962017-11-01 10:52:28 -070092 // Proxy object to communicate with the Context Hub HAL
93 private final IContexthub mContextHubProxy;
94
95 // The manager for transaction queue
96 private final ContextHubTransactionManager mTransactionManager;
97
Arthur Ishiguro4e39aa12017-11-14 14:59:08 -080098 // The manager for sending messages to/from clients
99 private final ContextHubClientManager mClientManager;
100
Arthur Ishiguroebb0e862017-11-17 14:55:32 -0800101 // The default client for old API clients
102 private final Map<Integer, IContextHubClient> mDefaultClientMap;
103
Arthur Ishigurofb9e4c72017-11-21 15:33:21 -0800104 // The manager for the internal nanoapp state cache
105 private final NanoAppStateManager mNanoAppStateManager = new NanoAppStateManager();
106
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700107 /**
108 * Class extending the callback to register with a Context Hub.
109 */
110 private class ContextHubServiceCallback extends IContexthubCallback.Stub {
111 private final int mContextHubId;
112
113 ContextHubServiceCallback(int contextHubId) {
114 mContextHubId = contextHubId;
115 }
116
117 @Override
118 public void handleClientMsg(ContextHubMsg message) {
119 handleClientMessageCallback(mContextHubId, message);
120 }
121
122 @Override
123 public void handleTxnResult(int transactionId, int result) {
124 handleTransactionResultCallback(mContextHubId, transactionId, result);
125 }
126
127 @Override
128 public void handleHubEvent(int eventType) {
129 handleHubEventCallback(mContextHubId, eventType);
130 }
131
132 @Override
133 public void handleAppAbort(long nanoAppId, int abortCode) {
134 handleAppAbortCallback(mContextHubId, nanoAppId, abortCode);
135 }
136
137 @Override
138 public void handleAppsInfo(ArrayList<HubAppInfo> nanoAppInfoList) {
139 handleQueryAppsCallback(mContextHubId, nanoAppInfoList);
140 }
141 }
Ashutosh Joshib741e3b2016-03-29 09:19:56 -0700142
Peng Xu9ff7d222016-02-11 13:02:05 -0800143 public ContextHubService(Context context) {
144 mContext = context;
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700145
146 mContextHubProxy = getContextHubProxy();
147 if (mContextHubProxy == null) {
148 mTransactionManager = null;
Arthur Ishiguro4e39aa12017-11-14 14:59:08 -0800149 mClientManager = null;
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800150 mDefaultClientMap = Collections.emptyMap();
151 mContextHubIdToInfoMap = Collections.emptyMap();
Arthur Ishigurofdbbd462017-11-27 16:33:36 -0800152 mContextHubInfoList = Collections.emptyList();
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700153 return;
154 }
155
Arthur Ishiguro4e39aa12017-11-14 14:59:08 -0800156 mClientManager = new ContextHubClientManager(mContext, mContextHubProxy);
Arthur Ishigurofb9e4c72017-11-21 15:33:21 -0800157 mTransactionManager = new ContextHubTransactionManager(
158 mContextHubProxy, mClientManager, mNanoAppStateManager);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700159
160 List<ContextHub> hubList;
161 try {
162 hubList = mContextHubProxy.getHubs();
163 } catch (RemoteException e) {
Arthur Ishiguro4e39aa12017-11-14 14:59:08 -0800164 Log.e(TAG, "RemoteException while getting Context Hub info", e);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700165 hubList = Collections.emptyList();
166 }
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800167 mContextHubIdToInfoMap = Collections.unmodifiableMap(
168 ContextHubServiceUtil.createContextHubInfoMap(hubList));
Arthur Ishigurofdbbd462017-11-27 16:33:36 -0800169 mContextHubInfoList = new ArrayList<>(mContextHubIdToInfoMap.values());
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700170
Arthur Ishiguroebb0e862017-11-17 14:55:32 -0800171 HashMap<Integer, IContextHubClient> defaultClientMap = new HashMap<>();
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800172 for (int contextHubId : mContextHubIdToInfoMap.keySet()) {
Arthur Ishiguroebb0e862017-11-17 14:55:32 -0800173 IContextHubClient client = mClientManager.registerClient(
174 createDefaultClientCallback(contextHubId), contextHubId);
175 defaultClientMap.put(contextHubId, client);
Arthur Ishiguroebb0e862017-11-17 14:55:32 -0800176
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700177 try {
178 mContextHubProxy.registerCallback(
179 contextHubId, new ContextHubServiceCallback(contextHubId));
180 } catch (RemoteException e) {
181 Log.e(TAG, "RemoteException while registering service callback for hub (ID = "
Arthur Ishiguro4e39aa12017-11-14 14:59:08 -0800182 + contextHubId + ")", e);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700183 }
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700184
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800185 // Do a query to initialize the service cache list of nanoapps
186 // TODO(b/69270990): Remove this when old API is deprecated
187 queryNanoAppsInternal(contextHubId);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700188 }
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800189 mDefaultClientMap = Collections.unmodifiableMap(defaultClientMap);
Peng Xu9ff7d222016-02-11 13:02:05 -0800190 }
Ashutosh Joshi1d1ac542016-01-18 17:19:27 -0800191
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700192 /**
Arthur Ishiguroebb0e862017-11-17 14:55:32 -0800193 * Creates a default client callback for old API clients.
194 *
195 * @param contextHubId the ID of the hub to attach this client to
196 * @return the internal callback interface
197 */
198 private IContextHubClientCallback createDefaultClientCallback(int contextHubId) {
199 return new IContextHubClientCallback.Stub() {
200 @Override
201 public void onMessageFromNanoApp(NanoAppMessage message) {
Arthur Ishiguro2fc5a4b2017-12-11 15:15:44 -0800202 int nanoAppHandle = mNanoAppStateManager.getNanoAppHandle(
Arthur Ishigurofb9e4c72017-11-21 15:33:21 -0800203 contextHubId, message.getNanoAppId());
Arthur Ishiguroebb0e862017-11-17 14:55:32 -0800204
205 onMessageReceiptOldApi(
Arthur Ishiguro2fc5a4b2017-12-11 15:15:44 -0800206 message.getMessageType(), contextHubId, nanoAppHandle,
Arthur Ishiguroebb0e862017-11-17 14:55:32 -0800207 message.getMessageBody());
208 }
209
210 @Override
211 public void onHubReset() {
Arthur Ishiguro6d47c542017-11-17 15:49:07 -0800212 byte[] data = {TransactionResult.SUCCESS};
213 onMessageReceiptOldApi(MSG_HUB_RESET, contextHubId, OS_APP_INSTANCE, data);
Arthur Ishiguroebb0e862017-11-17 14:55:32 -0800214 }
215
216 @Override
217 public void onNanoAppAborted(long nanoAppId, int abortCode) {
218 }
219
220 @Override
221 public void onNanoAppLoaded(long nanoAppId) {
222 }
223
224 @Override
225 public void onNanoAppUnloaded(long nanoAppId) {
226 }
227
228 @Override
229 public void onNanoAppEnabled(long nanoAppId) {
230 }
231
232 @Override
233 public void onNanoAppDisabled(long nanoAppId) {
234 }
235 };
236 }
237
238 /**
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700239 * @return the IContexthub proxy interface
240 */
241 private IContexthub getContextHubProxy() {
242 IContexthub proxy = null;
243 try {
244 proxy = IContexthub.getService(true /* retry */);
245 } catch (RemoteException e) {
Arthur Ishiguro4e39aa12017-11-14 14:59:08 -0800246 Log.e(TAG, "RemoteException while attaching to Context Hub HAL proxy", e);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700247 } catch (NoSuchElementException e) {
248 Log.i(TAG, "Context Hub HAL service not found");
249 }
250
251 return proxy;
252 }
253
Peng Xu9ff7d222016-02-11 13:02:05 -0800254 @Override
Ashutosh Joshib741e3b2016-03-29 09:19:56 -0700255 public int registerCallback(IContextHubCallback callback) throws RemoteException {
destradaa8bad3fe2016-03-15 12:33:40 -0700256 checkPermissions();
destradaa78cebca2016-04-14 18:40:14 -0700257 mCallbacksList.register(callback);
Arthur Ishiguroebb0e862017-11-17 14:55:32 -0800258
Ashutosh Joshi1d941812017-03-09 15:21:24 -0800259 Log.d(TAG, "Added callback, total callbacks " +
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700260 mCallbacksList.getRegisteredCallbackCount());
Peng Xu9ff7d222016-02-11 13:02:05 -0800261 return 0;
262 }
263
264 @Override
265 public int[] getContextHubHandles() throws RemoteException {
destradaa8bad3fe2016-03-15 12:33:40 -0700266 checkPermissions();
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800267 return ContextHubServiceUtil.createPrimitiveIntArray(mContextHubIdToInfoMap.keySet());
Peng Xu9ff7d222016-02-11 13:02:05 -0800268 }
269
270 @Override
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800271 public ContextHubInfo getContextHubInfo(int contextHubHandle) throws RemoteException {
destradaa8bad3fe2016-03-15 12:33:40 -0700272 checkPermissions();
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800273 if (!mContextHubIdToInfoMap.containsKey(contextHubHandle)) {
274 Log.e(TAG, "Invalid Context Hub handle " + contextHubHandle + " in getContextHubInfo");
275 return null;
Peng Xu9ff7d222016-02-11 13:02:05 -0800276 }
277
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800278 return mContextHubIdToInfoMap.get(contextHubHandle);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700279 }
280
281 /**
Arthur Ishigurofdbbd462017-11-27 16:33:36 -0800282 * Returns a List of ContextHubInfo object describing the available hubs.
283 *
284 * @return the List of ContextHubInfo objects
285 */
286 @Override
287 public List<ContextHubInfo> getContextHubs() throws RemoteException {
288 checkPermissions();
289 return mContextHubInfoList;
290 }
291
292 /**
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700293 * Creates an internal load transaction callback to be used for old API clients
294 *
295 * @param contextHubId the ID of the hub to load the binary
296 * @param nanoAppBinary the binary to load
297 * @return the callback interface
298 */
299 private IContextHubTransactionCallback createLoadTransactionCallback(
300 int contextHubId, NanoAppBinary nanoAppBinary) {
301 return new IContextHubTransactionCallback.Stub() {
302 @Override
303 public void onTransactionComplete(int result) {
304 handleLoadResponseOldApi(contextHubId, result, nanoAppBinary);
305 }
306
307 @Override
308 public void onQueryResponse(int result, List<NanoAppState> nanoAppStateList) {
309 }
310 };
311 }
312
313 /**
314 * Creates an internal unload transaction callback to be used for old API clients
315 *
316 * @param contextHubId the ID of the hub to unload the nanoapp
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700317 * @return the callback interface
318 */
Arthur Ishigurofb9e4c72017-11-21 15:33:21 -0800319 private IContextHubTransactionCallback createUnloadTransactionCallback(int contextHubId) {
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700320 return new IContextHubTransactionCallback.Stub() {
321 @Override
322 public void onTransactionComplete(int result) {
Arthur Ishigurofb9e4c72017-11-21 15:33:21 -0800323 handleUnloadResponseOldApi(contextHubId, result);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700324 }
325
326 @Override
327 public void onQueryResponse(int result, List<NanoAppState> nanoAppStateList) {
328 }
329 };
330 }
331
332 /**
333 * Creates an internal query transaction callback to be used for old API clients
334 *
335 * @param contextHubId the ID of the hub to query
336 * @return the callback interface
337 */
338 private IContextHubTransactionCallback createQueryTransactionCallback(int contextHubId) {
339 return new IContextHubTransactionCallback.Stub() {
340 @Override
341 public void onTransactionComplete(int result) {
342 }
343
344 @Override
345 public void onQueryResponse(int result, List<NanoAppState> nanoAppStateList) {
346 byte[] data = {(byte) result};
Arthur Ishiguro4e39aa12017-11-14 14:59:08 -0800347 onMessageReceiptOldApi(MSG_QUERY_NANO_APPS, contextHubId, OS_APP_INSTANCE, data);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700348 }
349 };
350 }
351
Peng Xu9ff7d222016-02-11 13:02:05 -0800352 @Override
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800353 public int loadNanoApp(int contextHubHandle, NanoApp nanoApp) throws RemoteException {
destradaa8bad3fe2016-03-15 12:33:40 -0700354 checkPermissions();
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700355 if (mContextHubProxy == null) {
356 return -1;
357 }
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800358 if (!isValidContextHubId(contextHubHandle)) {
359 Log.e(TAG, "Invalid Context Hub handle " + contextHubHandle + " in loadNanoApp");
Ashutosh Joshi6239cc62016-04-04 16:19:29 -0700360 return -1;
Peng Xu9ff7d222016-02-11 13:02:05 -0800361 }
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800362 if (nanoApp == null) {
363 Log.e(TAG, "NanoApp cannot be null in loadNanoApp");
Jeff Sharkey49ca5292016-05-10 12:54:45 -0600364 return -1;
365 }
Peng Xu9ff7d222016-02-11 13:02:05 -0800366
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700367 // Create an internal IContextHubTransactionCallback for the old API clients
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800368 NanoAppBinary nanoAppBinary = new NanoAppBinary(nanoApp.getAppBinary());
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700369 IContextHubTransactionCallback onCompleteCallback =
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800370 createLoadTransactionCallback(contextHubHandle, nanoAppBinary);
Ashutosh Joshi54787a52016-04-27 11:19:16 -0700371
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700372 ContextHubServiceTransaction transaction = mTransactionManager.createLoadTransaction(
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800373 contextHubHandle, nanoAppBinary, onCompleteCallback);
Ashutosh Joshi54787a52016-04-27 11:19:16 -0700374
Arthur Ishiguroe60f91a2017-11-30 09:48:00 -0800375 mTransactionManager.addTransaction(transaction);
Ashutosh Joshib741e3b2016-03-29 09:19:56 -0700376 return 0;
Peng Xu9ff7d222016-02-11 13:02:05 -0800377 }
378
destradaa8bad3fe2016-03-15 12:33:40 -0700379 @Override
Arthur Ishiguro2fc5a4b2017-12-11 15:15:44 -0800380 public int unloadNanoApp(int nanoAppHandle) throws RemoteException {
destradaa8bad3fe2016-03-15 12:33:40 -0700381 checkPermissions();
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700382 if (mContextHubProxy == null) {
383 return -1;
384 }
385
Arthur Ishigurofb9e4c72017-11-21 15:33:21 -0800386 NanoAppInstanceInfo info =
Arthur Ishiguro2fc5a4b2017-12-11 15:15:44 -0800387 mNanoAppStateManager.getNanoAppInstanceInfo(nanoAppHandle);
Peng Xu9ff7d222016-02-11 13:02:05 -0800388 if (info == null) {
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800389 Log.e(TAG, "Invalid nanoapp handle " + nanoAppHandle + " in unloadNanoApp");
Arthur Ishiguro2fc5a4b2017-12-11 15:15:44 -0800390 return -1;
Peng Xu9ff7d222016-02-11 13:02:05 -0800391 }
392
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700393 int contextHubId = info.getContexthubId();
394 long nanoAppId = info.getAppId();
395 IContextHubTransactionCallback onCompleteCallback =
Arthur Ishigurofb9e4c72017-11-21 15:33:21 -0800396 createUnloadTransactionCallback(contextHubId);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700397 ContextHubServiceTransaction transaction = mTransactionManager.createUnloadTransaction(
398 contextHubId, nanoAppId, onCompleteCallback);
Peng Xu9ff7d222016-02-11 13:02:05 -0800399
Arthur Ishiguroe60f91a2017-11-30 09:48:00 -0800400 mTransactionManager.addTransaction(transaction);
Ashutosh Joshib741e3b2016-03-29 09:19:56 -0700401 return 0;
destradaa8bad3fe2016-03-15 12:33:40 -0700402 }
Peng Xu9ff7d222016-02-11 13:02:05 -0800403
404 @Override
Arthur Ishiguro2fc5a4b2017-12-11 15:15:44 -0800405 public NanoAppInstanceInfo getNanoAppInstanceInfo(int nanoAppHandle) throws RemoteException {
destradaa8bad3fe2016-03-15 12:33:40 -0700406 checkPermissions();
Arthur Ishigurofb9e4c72017-11-21 15:33:21 -0800407
Arthur Ishiguro2fc5a4b2017-12-11 15:15:44 -0800408 return mNanoAppStateManager.getNanoAppInstanceInfo(nanoAppHandle);
Ashutosh Joshi1d1ac542016-01-18 17:19:27 -0800409 }
410
411 @Override
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800412 public int[] findNanoAppOnHub(
413 int contextHubHandle, NanoAppFilter filter) throws RemoteException {
destradaa8bad3fe2016-03-15 12:33:40 -0700414 checkPermissions();
Peng Xu9ff7d222016-02-11 13:02:05 -0800415
Arthur Ishigurofb9e4c72017-11-21 15:33:21 -0800416 ArrayList<Integer> foundInstances = new ArrayList<>();
417 for (NanoAppInstanceInfo info : mNanoAppStateManager.getNanoAppInstanceInfoCollection()) {
Ashutosh Joshi6239cc62016-04-04 16:19:29 -0700418 if (filter.testMatch(info)) {
Arthur Ishigurofb9e4c72017-11-21 15:33:21 -0800419 foundInstances.add(info.getHandle());
Peng Xu9ff7d222016-02-11 13:02:05 -0800420 }
421 }
422
423 int[] retArray = new int[foundInstances.size()];
424 for (int i = 0; i < foundInstances.size(); i++) {
425 retArray[i] = foundInstances.get(i).intValue();
426 }
Peng Xu9ff7d222016-02-11 13:02:05 -0800427 return retArray;
Ashutosh Joshi1d1ac542016-01-18 17:19:27 -0800428 }
429
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700430 /**
431 * Performs a query at the specified hub.
432 *
433 * This method should only be invoked internally by the service, either to update the service
434 * cache or as a result of an explicit query requested by a client through the sendMessage API.
435 *
436 * @param contextHubId the ID of the hub to do the query
437 * @return the result of the query
Arthur Ishiguroe60f91a2017-11-30 09:48:00 -0800438 *
439 * @throws IllegalStateException if the transaction queue is full
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700440 */
441 private int queryNanoAppsInternal(int contextHubId) {
442 if (mContextHubProxy == null) {
443 return Result.UNKNOWN_FAILURE;
444 }
Ashutosh Joshib741e3b2016-03-29 09:19:56 -0700445
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700446 IContextHubTransactionCallback onCompleteCallback =
447 createQueryTransactionCallback(contextHubId);
448 ContextHubServiceTransaction transaction = mTransactionManager.createQueryTransaction(
449 contextHubId, onCompleteCallback);
450
Arthur Ishiguroe60f91a2017-11-30 09:48:00 -0800451 mTransactionManager.addTransaction(transaction);
452 return Result.OK;
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700453 }
454
455 @Override
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800456 public int sendMessage(int contextHubHandle, int nanoAppHandle, ContextHubMessage msg)
457 throws RemoteException {
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700458 checkPermissions();
459 if (mContextHubProxy == null) {
460 return -1;
461 }
462 if (msg == null) {
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800463 Log.e(TAG, "ContextHubMessage cannot be null in sendMessage");
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700464 return -1;
465 }
466 if (msg.getData() == null) {
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800467 Log.e(TAG, "ContextHubMessage message body cannot be null in sendMessage");
Arthur Ishiguroebb0e862017-11-17 14:55:32 -0800468 return -1;
469 }
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800470 if (!isValidContextHubId(contextHubHandle)) {
471 Log.e(TAG, "Invalid Context Hub handle " + contextHubHandle + " in sendMessage");
Jeff Sharkey49ca5292016-05-10 12:54:45 -0600472 return -1;
473 }
474
Arthur Ishiguroebb0e862017-11-17 14:55:32 -0800475 boolean success = false;
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700476 if (nanoAppHandle == OS_APP_INSTANCE) {
477 if (msg.getMsgType() == MSG_QUERY_NANO_APPS) {
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800478 success = (queryNanoAppsInternal(contextHubHandle) == Result.OK);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700479 } else {
480 Log.e(TAG, "Invalid OS message params of type " + msg.getMsgType());
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700481 }
482 } else {
483 NanoAppInstanceInfo info = getNanoAppInstanceInfo(nanoAppHandle);
484 if (info != null) {
Arthur Ishiguroebb0e862017-11-17 14:55:32 -0800485 NanoAppMessage message = NanoAppMessage.createMessageToNanoApp(
486 info.getAppId(), msg.getMsgType(), msg.getData());
Peng Xu9ff7d222016-02-11 13:02:05 -0800487
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800488 IContextHubClient client = mDefaultClientMap.get(contextHubHandle);
Arthur Ishiguroebb0e862017-11-17 14:55:32 -0800489 success = (client.sendMessageToNanoApp(message) ==
Arthur Ishiguro6100aa72017-12-20 09:35:00 -0800490 ContextHubTransaction.RESULT_SUCCESS);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700491 } else {
Arthur Ishiguro2fc5a4b2017-12-11 15:15:44 -0800492 Log.e(TAG, "Failed to send nanoapp message - nanoapp with handle "
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700493 + nanoAppHandle + " does not exist.");
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700494 }
495 }
496
Arthur Ishiguroebb0e862017-11-17 14:55:32 -0800497 return success ? 0 : -1;
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700498 }
499
500 /**
501 * Handles a unicast or broadcast message from a nanoapp.
502 *
503 * @param contextHubId the ID of the hub the message came from
504 * @param message the message contents
505 */
506 private void handleClientMessageCallback(int contextHubId, ContextHubMsg message) {
Arthur Ishiguro4e39aa12017-11-14 14:59:08 -0800507 mClientManager.onMessageFromNanoApp(contextHubId, message);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700508 }
509
510 /**
511 * A helper function to handle a load response from the Context Hub for the old API.
512 *
513 * TODO(b/69270990): Remove this once the old APIs are obsolete.
514 */
515 private void handleLoadResponseOldApi(
516 int contextHubId, int result, NanoAppBinary nanoAppBinary) {
517 if (nanoAppBinary == null) {
518 Log.e(TAG, "Nanoapp binary field was null for a load transaction");
519 return;
520 }
521
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700522 byte[] data = new byte[5];
523 data[0] = (byte) result;
Arthur Ishiguro2fc5a4b2017-12-11 15:15:44 -0800524 int nanoAppHandle = mNanoAppStateManager.getNanoAppHandle(
Arthur Ishigurofb9e4c72017-11-21 15:33:21 -0800525 contextHubId, nanoAppBinary.getNanoAppId());
Arthur Ishiguro2fc5a4b2017-12-11 15:15:44 -0800526 ByteBuffer.wrap(data, 1, 4).order(ByteOrder.nativeOrder()).putInt(nanoAppHandle);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700527
Arthur Ishiguro4e39aa12017-11-14 14:59:08 -0800528 onMessageReceiptOldApi(MSG_LOAD_NANO_APP, contextHubId, OS_APP_INSTANCE, data);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700529 }
530
531 /**
532 * A helper function to handle an unload response from the Context Hub for the old API.
533 *
534 * TODO(b/69270990): Remove this once the old APIs are obsolete.
535 */
Arthur Ishigurofb9e4c72017-11-21 15:33:21 -0800536 private void handleUnloadResponseOldApi(int contextHubId, int result) {
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700537 byte[] data = new byte[1];
538 data[0] = (byte) result;
Arthur Ishiguro4e39aa12017-11-14 14:59:08 -0800539 onMessageReceiptOldApi(MSG_UNLOAD_NANO_APP, contextHubId, OS_APP_INSTANCE, data);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700540 }
541
542 /**
543 * Handles a transaction response from a Context Hub.
544 *
545 * @param contextHubId the ID of the hub the response came from
546 * @param transactionId the ID of the transaction
547 * @param result the result of the transaction reported by the hub
548 */
549 private void handleTransactionResultCallback(int contextHubId, int transactionId, int result) {
550 mTransactionManager.onTransactionResponse(transactionId, result);
551 }
552
553 /**
554 * Handles an asynchronous event from a Context Hub.
555 *
556 * @param contextHubId the ID of the hub the response came from
557 * @param eventType the type of the event as defined in Context Hub HAL AsyncEventType
558 */
559 private void handleHubEventCallback(int contextHubId, int eventType) {
560 if (eventType == AsyncEventType.RESTARTED) {
561 mTransactionManager.onHubReset();
562 queryNanoAppsInternal(contextHubId);
563
Arthur Ishiguro6d47c542017-11-17 15:49:07 -0800564 mClientManager.onHubReset(contextHubId);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700565 } else {
566 Log.i(TAG, "Received unknown hub event (hub ID = " + contextHubId + ", type = "
567 + eventType + ")");
568 }
569 }
570
571 /**
572 * Handles an asynchronous abort event of a nanoapp.
573 *
574 * @param contextHubId the ID of the hub that the nanoapp aborted in
575 * @param nanoAppId the ID of the aborted nanoapp
576 * @param abortCode the nanoapp-specific abort code
577 */
578 private void handleAppAbortCallback(int contextHubId, long nanoAppId, int abortCode) {
Arthur Ishiguro02ff50b2017-12-18 10:02:35 -0800579 mClientManager.onNanoAppAborted(contextHubId, nanoAppId, abortCode);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700580 }
581
582 /**
583 * Handles a query response from a Context Hub.
584 *
585 * @param contextHubId the ID of the hub of the response
586 * @param nanoAppInfoList the list of loaded nanoapps
587 */
588 private void handleQueryAppsCallback(int contextHubId, List<HubAppInfo> nanoAppInfoList) {
589 List<NanoAppState> nanoAppStateList =
590 ContextHubServiceUtil.createNanoAppStateList(nanoAppInfoList);
591
Arthur Ishigurofb9e4c72017-11-21 15:33:21 -0800592 mNanoAppStateManager.updateCache(contextHubId, nanoAppInfoList);
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700593 mTransactionManager.onQueryResponse(nanoAppStateList);
594 }
595
596 /**
Arthur Ishiguro4e39aa12017-11-14 14:59:08 -0800597 * @param contextHubId the hub ID to validate
598 * @return {@code true} if the ID represents that of an available hub, {@code false} otherwise
599 */
600 private boolean isValidContextHubId(int contextHubId) {
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800601 return mContextHubIdToInfoMap.containsKey(contextHubId);
Arthur Ishiguro4e39aa12017-11-14 14:59:08 -0800602 }
603
604 /**
605 * Creates and registers a client at the service for the specified Context Hub.
606 *
607 * @param clientCallback the client interface to register with the service
608 * @param contextHubId the ID of the hub this client is attached to
609 * @return the generated client interface, null if registration was unsuccessful
610 *
611 * @throws IllegalArgumentException if contextHubId is not a valid ID
612 * @throws IllegalStateException if max number of clients have already registered
613 * @throws NullPointerException if clientCallback is null
614 */
615 @Override
616 public IContextHubClient createClient(
617 IContextHubClientCallback clientCallback, int contextHubId) throws RemoteException {
618 checkPermissions();
619 if (!isValidContextHubId(contextHubId)) {
620 throw new IllegalArgumentException("Invalid context hub ID " + contextHubId);
621 }
622 if (clientCallback == null) {
623 throw new NullPointerException("Cannot register client with null callback");
624 }
625
626 return mClientManager.registerClient(clientCallback, contextHubId);
627 }
628
Arthur Ishiguroe1ade432017-11-27 10:45:33 -0800629 /**
630 * Loads a nanoapp binary at the specified Context hub.
631 *
Arthur Ishiguro0ed545c2017-12-12 15:01:32 -0800632 * @param contextHubId the ID of the hub to load the binary
Arthur Ishiguroe1ade432017-11-27 10:45:33 -0800633 * @param transactionCallback the client-facing transaction callback interface
Arthur Ishiguro0ed545c2017-12-12 15:01:32 -0800634 * @param nanoAppBinary the binary to load
Arthur Ishiguroe1ade432017-11-27 10:45:33 -0800635 *
Arthur Ishiguroe60f91a2017-11-30 09:48:00 -0800636 * @throws IllegalStateException if the transaction queue is full
Arthur Ishiguroe1ade432017-11-27 10:45:33 -0800637 */
638 @Override
639 public void loadNanoAppOnHub(
640 int contextHubId, IContextHubTransactionCallback transactionCallback,
641 NanoAppBinary nanoAppBinary) throws RemoteException {
642 checkPermissions();
Arthur Ishiguro4493e142017-11-27 16:26:34 -0800643 if (!checkHalProxyAndContextHubId(
644 contextHubId, transactionCallback, ContextHubTransaction.TYPE_LOAD_NANOAPP)) {
Arthur Ishiguroe1ade432017-11-27 10:45:33 -0800645 return;
646 }
647 if (nanoAppBinary == null) {
648 Log.e(TAG, "NanoAppBinary cannot be null in loadNanoAppOnHub");
649 transactionCallback.onTransactionComplete(
Arthur Ishiguro6100aa72017-12-20 09:35:00 -0800650 ContextHubTransaction.RESULT_FAILED_BAD_PARAMS);
Arthur Ishiguroe1ade432017-11-27 10:45:33 -0800651 return;
652 }
653
654 ContextHubServiceTransaction transaction = mTransactionManager.createLoadTransaction(
655 contextHubId, nanoAppBinary, transactionCallback);
Arthur Ishiguroe60f91a2017-11-30 09:48:00 -0800656 mTransactionManager.addTransaction(transaction);
Arthur Ishiguroe1ade432017-11-27 10:45:33 -0800657 }
658
659 /**
660 * Unloads a nanoapp from the specified Context Hub.
661 *
Arthur Ishiguro0ed545c2017-12-12 15:01:32 -0800662 * @param contextHubId the ID of the hub to unload the nanoapp
Arthur Ishiguroe1ade432017-11-27 10:45:33 -0800663 * @param transactionCallback the client-facing transaction callback interface
Arthur Ishiguro0ed545c2017-12-12 15:01:32 -0800664 * @param nanoAppId the ID of the nanoapp to unload
Arthur Ishiguroe1ade432017-11-27 10:45:33 -0800665 *
Arthur Ishiguroe60f91a2017-11-30 09:48:00 -0800666 * @throws IllegalStateException if the transaction queue is full
Arthur Ishiguroe1ade432017-11-27 10:45:33 -0800667 */
668 @Override
669 public void unloadNanoAppFromHub(
670 int contextHubId, IContextHubTransactionCallback transactionCallback, long nanoAppId)
671 throws RemoteException {
672 checkPermissions();
Arthur Ishiguro4493e142017-11-27 16:26:34 -0800673 if (!checkHalProxyAndContextHubId(
674 contextHubId, transactionCallback, ContextHubTransaction.TYPE_UNLOAD_NANOAPP)) {
Arthur Ishiguroe1ade432017-11-27 10:45:33 -0800675 return;
676 }
677
678 ContextHubServiceTransaction transaction = mTransactionManager.createUnloadTransaction(
679 contextHubId, nanoAppId, transactionCallback);
Arthur Ishiguroe60f91a2017-11-30 09:48:00 -0800680 mTransactionManager.addTransaction(transaction);
Arthur Ishiguro4493e142017-11-27 16:26:34 -0800681 }
Arthur Ishiguroe1ade432017-11-27 10:45:33 -0800682
Arthur Ishiguro4493e142017-11-27 16:26:34 -0800683 /**
Arthur Ishiguro0ed545c2017-12-12 15:01:32 -0800684 * Enables a nanoapp at the specified Context Hub.
685 *
686 * @param contextHubId the ID of the hub to enable the nanoapp
687 * @param transactionCallback the client-facing transaction callback interface
688 * @param nanoAppId the ID of the nanoapp to enable
689 *
690 * @throws IllegalStateException if the transaction queue is full
691 */
692 @Override
693 public void enableNanoApp(
694 int contextHubId, IContextHubTransactionCallback transactionCallback, long nanoAppId)
695 throws RemoteException {
696 checkPermissions();
697 if (!checkHalProxyAndContextHubId(
698 contextHubId, transactionCallback, ContextHubTransaction.TYPE_ENABLE_NANOAPP)) {
699 return;
700 }
701
702 ContextHubServiceTransaction transaction = mTransactionManager.createEnableTransaction(
703 contextHubId, nanoAppId, transactionCallback);
704 mTransactionManager.addTransaction(transaction);
705 }
706
707 /**
Arthur Ishiguro54e1a892017-12-12 15:09:31 -0800708 * Disables a nanoapp at the specified Context Hub.
709 *
710 * @param contextHubId the ID of the hub to disable the nanoapp
711 * @param transactionCallback the client-facing transaction callback interface
712 * @param nanoAppId the ID of the nanoapp to disable
713 *
714 * @throws IllegalStateException if the transaction queue is full
715 */
716 @Override
717 public void disableNanoApp(
718 int contextHubId, IContextHubTransactionCallback transactionCallback, long nanoAppId)
719 throws RemoteException {
720 checkPermissions();
721 if (!checkHalProxyAndContextHubId(
722 contextHubId, transactionCallback, ContextHubTransaction.TYPE_DISABLE_NANOAPP)) {
723 return;
724 }
725
726 ContextHubServiceTransaction transaction = mTransactionManager.createDisableTransaction(
727 contextHubId, nanoAppId, transactionCallback);
728 mTransactionManager.addTransaction(transaction);
729 }
730
731 /**
Arthur Ishiguro4493e142017-11-27 16:26:34 -0800732 * Queries for a list of nanoapps from the specified Context hub.
733 *
Arthur Ishiguro0ed545c2017-12-12 15:01:32 -0800734 * @param contextHubId the ID of the hub to query
Arthur Ishiguro4493e142017-11-27 16:26:34 -0800735 * @param transactionCallback the client-facing transaction callback interface
736 *
Arthur Ishiguroe60f91a2017-11-30 09:48:00 -0800737 * @throws IllegalStateException if the transaction queue is full
Arthur Ishiguro4493e142017-11-27 16:26:34 -0800738 */
739 @Override
740 public void queryNanoApps(int contextHubId, IContextHubTransactionCallback transactionCallback)
741 throws RemoteException {
742 checkPermissions();
743 if (!checkHalProxyAndContextHubId(
744 contextHubId, transactionCallback, ContextHubTransaction.TYPE_QUERY_NANOAPPS)) {
745 return;
746 }
747
Arthur Ishiguro0ed545c2017-12-12 15:01:32 -0800748 ContextHubServiceTransaction transaction = mTransactionManager.createQueryTransaction(
749 contextHubId, transactionCallback);
Arthur Ishiguroe60f91a2017-11-30 09:48:00 -0800750 mTransactionManager.addTransaction(transaction);
Arthur Ishiguroe1ade432017-11-27 10:45:33 -0800751 }
752
Ashutosh Joshi6239cc62016-04-04 16:19:29 -0700753 @Override
754 protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
Jeff Sharkeyfe9a53b2017-03-31 14:08:23 -0600755 if (!DumpUtils.checkDumpPermission(mContext, TAG, pw)) return;
Ashutosh Joshi6239cc62016-04-04 16:19:29 -0700756
757 pw.println("Dumping ContextHub Service");
758
759 pw.println("");
760 // dump ContextHubInfo
761 pw.println("=================== CONTEXT HUBS ====================");
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800762 for (ContextHubInfo hubInfo : mContextHubIdToInfoMap.values()) {
763 pw.println(hubInfo);
Ashutosh Joshi6239cc62016-04-04 16:19:29 -0700764 }
765 pw.println("");
766 pw.println("=================== NANOAPPS ====================");
767 // Dump nanoAppHash
Arthur Ishigurofb9e4c72017-11-21 15:33:21 -0800768 for (NanoAppInstanceInfo info : mNanoAppStateManager.getNanoAppInstanceInfoCollection()) {
769 pw.println(info);
Ashutosh Joshi6239cc62016-04-04 16:19:29 -0700770 }
771
772 // dump eventLog
773 }
774
destradaa8bad3fe2016-03-15 12:33:40 -0700775 private void checkPermissions() {
Arthur Ishiguro4e39aa12017-11-14 14:59:08 -0800776 ContextHubServiceUtil.checkPermissions(mContext);
destradaa8bad3fe2016-03-15 12:33:40 -0700777 }
Ashutosh Joshi2c697fb2016-04-01 20:48:13 +0000778
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800779 private int onMessageReceiptOldApi(
780 int msgType, int contextHubHandle, int appInstance, byte[] data) {
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700781 if (data == null) {
782 return -1;
Ashutosh Joshib741e3b2016-03-29 09:19:56 -0700783 }
Ashutosh Joshi1d941812017-03-09 15:21:24 -0800784
Arthur Ishiguro7a23a962017-11-01 10:52:28 -0700785 int msgVersion = 0;
destradaa78cebca2016-04-14 18:40:14 -0700786 int callbacksCount = mCallbacksList.beginBroadcast();
Arthur Ishigurob4f59872018-07-31 16:38:08 -0700787 if (DEBUG_LOG_ENABLED) {
788 Log.v(TAG, "Sending message " + msgType + " version " + msgVersion + " from hubHandle "
789 + contextHubHandle + ", appInstance " + appInstance + ", callBackCount "
790 + callbacksCount);
791 }
Ashutosh Joshi1d941812017-03-09 15:21:24 -0800792
destradaa78cebca2016-04-14 18:40:14 -0700793 if (callbacksCount < 1) {
Arthur Ishigurob4f59872018-07-31 16:38:08 -0700794 if (DEBUG_LOG_ENABLED) {
795 Log.v(TAG, "No message callbacks registered.");
796 }
destradaa78cebca2016-04-14 18:40:14 -0700797 return 0;
798 }
Ashutosh Joshi54787a52016-04-27 11:19:16 -0700799
Ashutosh Joshi1d941812017-03-09 15:21:24 -0800800 ContextHubMessage msg = new ContextHubMessage(msgType, msgVersion, data);
destradaa78cebca2016-04-14 18:40:14 -0700801 for (int i = 0; i < callbacksCount; ++i) {
802 IContextHubCallback callback = mCallbacksList.getBroadcastItem(i);
803 try {
Arthur Ishiguroab7113d2017-12-15 14:32:51 -0800804 callback.onMessageReceipt(contextHubHandle, appInstance, msg);
destradaa78cebca2016-04-14 18:40:14 -0700805 } catch (RemoteException e) {
806 Log.i(TAG, "Exception (" + e + ") calling remote callback (" + callback + ").");
807 continue;
Ashutosh Joshib741e3b2016-03-29 09:19:56 -0700808 }
809 }
destradaa78cebca2016-04-14 18:40:14 -0700810 mCallbacksList.finishBroadcast();
Ashutosh Joshib741e3b2016-03-29 09:19:56 -0700811 return 0;
812 }
813
Arthur Ishiguro4493e142017-11-27 16:26:34 -0800814 /**
815 * Validates the HAL proxy state and context hub ID to see if we can start the transaction.
816 *
817 * @param contextHubId the ID of the hub to start the transaction
818 * @param callback the client transaction callback interface
819 * @param transactionType the type of the transaction
820 *
821 * @return {@code true} if mContextHubProxy and contextHubId is valid, {@code false} otherwise
822 */
823 private boolean checkHalProxyAndContextHubId(
824 int contextHubId, IContextHubTransactionCallback callback,
825 @ContextHubTransaction.Type int transactionType) {
826 if (mContextHubProxy == null) {
827 try {
828 callback.onTransactionComplete(
Arthur Ishiguro6100aa72017-12-20 09:35:00 -0800829 ContextHubTransaction.RESULT_FAILED_HAL_UNAVAILABLE);
Arthur Ishiguro4493e142017-11-27 16:26:34 -0800830 } catch (RemoteException e) {
831 Log.e(TAG, "RemoteException while calling onTransactionComplete", e);
832 }
833 return false;
834 }
835 if (!isValidContextHubId(contextHubId)) {
836 Log.e(TAG, "Cannot start "
837 + ContextHubTransaction.typeToString(transactionType, false /* upperCase */)
838 + " transaction for invalid hub ID " + contextHubId);
839 try {
Arthur Ishiguro6100aa72017-12-20 09:35:00 -0800840 callback.onTransactionComplete(ContextHubTransaction.RESULT_FAILED_BAD_PARAMS);
Arthur Ishiguro4493e142017-11-27 16:26:34 -0800841 } catch (RemoteException e) {
842 Log.e(TAG, "RemoteException while calling onTransactionComplete", e);
843 }
844 return false;
845 }
846
847 return true;
848 }
Ashutosh Joshib741e3b2016-03-29 09:19:56 -0700849}