blob: 40234856b8ad46c1e6ad633029a1ad45c778cb77 [file] [log] [blame]
Jaikumar Ganeshfb658c72011-07-06 17:37:02 -07001/*
2 * Copyright (C) 2011 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
17
18package android.bluetooth;
19
Tor Norbye83c68962015-03-10 20:55:31 -070020import android.annotation.BinderThread;
Jaikumar Ganeshfb658c72011-07-06 17:37:02 -070021import android.os.ParcelFileDescriptor;
22import android.util.Log;
23
24/**
Jaikumar Ganesheb9d3462011-08-31 15:36:05 -070025 * This abstract class is used to implement {@link BluetoothHealth} callbacks.
Jaikumar Ganeshfb658c72011-07-06 17:37:02 -070026 */
27public abstract class BluetoothHealthCallback {
Jaikumar Ganeshfb658c72011-07-06 17:37:02 -070028 private static final String TAG = "BluetoothHealthCallback";
29
Jaikumar Ganesheb9d3462011-08-31 15:36:05 -070030 /**
31 * Callback to inform change in registration state of the health
32 * application.
33 * <p> This callback is called on the binder thread (not on the UI thread)
34 *
35 * @param config Bluetooth Health app configuration
Jack Hea355e5e2017-08-22 16:06:54 -070036 * @param status Success or failure of the registration or unregistration calls. Can be one of
37 * {@link BluetoothHealth#APP_CONFIG_REGISTRATION_SUCCESS} or {@link
38 * BluetoothHealth#APP_CONFIG_REGISTRATION_FAILURE} or
39 * {@link BluetoothHealth#APP_CONFIG_UNREGISTRATION_SUCCESS}
40 * or {@link BluetoothHealth#APP_CONFIG_UNREGISTRATION_FAILURE}
Jaikumar Ganesheb9d3462011-08-31 15:36:05 -070041 */
Tor Norbye83c68962015-03-10 20:55:31 -070042 @BinderThread
Jaikumar Ganeshfb658c72011-07-06 17:37:02 -070043 public void onHealthAppConfigurationStatusChange(BluetoothHealthAppConfiguration config,
Jaikumar Ganesheb9d3462011-08-31 15:36:05 -070044 int status) {
45 Log.d(TAG, "onHealthAppConfigurationStatusChange: " + config + "Status: " + status);
Jaikumar Ganeshfb658c72011-07-06 17:37:02 -070046 }
47
Jaikumar Ganesheb9d3462011-08-31 15:36:05 -070048 /**
49 * Callback to inform change in channel state.
50 * <p> Its the responsibility of the implementor of this callback to close the
51 * parcel file descriptor when done. This callback is called on the Binder
52 * thread (not the UI thread)
53 *
54 * @param config The Health app configutation
55 * @param device The Bluetooth Device
56 * @param prevState The previous state of the channel
57 * @param newState The new state of the channel.
58 * @param fd The Parcel File Descriptor when the channel state is connected.
Jack Hea355e5e2017-08-22 16:06:54 -070059 * @param channelId The id associated with the channel. This id will be used in future calls
60 * like when disconnecting the channel.
Jaikumar Ganesheb9d3462011-08-31 15:36:05 -070061 */
Tor Norbye83c68962015-03-10 20:55:31 -070062 @BinderThread
Jaikumar Ganeshfb658c72011-07-06 17:37:02 -070063 public void onHealthChannelStateChange(BluetoothHealthAppConfiguration config,
Jaikumar Ganesheb9d3462011-08-31 15:36:05 -070064 BluetoothDevice device, int prevState, int newState, ParcelFileDescriptor fd,
65 int channelId) {
Jack He2992cd02017-08-22 21:21:23 -070066 Log.d(TAG, "onHealthChannelStateChange: " + config + "Device: " + device
67 + "prevState:" + prevState + "newState:" + newState + "ParcelFd:" + fd
68 + "ChannelId:" + channelId);
Jaikumar Ganeshfb658c72011-07-06 17:37:02 -070069 }
70}