aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRohan Martin <rohan.martin@dynastream.com>2013-02-20 14:45:26 -0700
committerRohan Martin <rohan.martin@dynastream.com>2013-02-20 14:45:26 -0700
commit517112d059f36a7e5604ee1dba77feac2dd5d244 (patch)
tree1ade7486599008e5160859b291ba4bbfa2dfe4a5
parent5ce4c3b6e124d3948528bdc1e664fa99cc327b53 (diff)
downloadandroid_external_ant-wireless_ant_service-517112d059f36a7e5604ee1dba77feac2dd5d244.tar.gz
android_external_ant-wireless_ant_service-517112d059f36a7e5604ee1dba77feac2dd5d244.tar.bz2
android_external_ant-wireless_ant_service-517112d059f36a7e5604ee1dba77feac2dd5d244.zip
Pull in Android_System_Package_3-0-0
(Android_System_ANTHALService_3-0-0)
-rw-r--r--AndroidManifest.xml4
-rw-r--r--src/com/dsi/ant/server/AntService.java229
2 files changed, 45 insertions, 188 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 11dc7f0..9336b82 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -16,8 +16,8 @@ limitations under the License.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dsi.ant.server"
- android:versionName="2.1.0"
- android:versionCode="020100"
+ android:versionName="3.0.0"
+ android:versionCode="030000"
android:sharedUserId="android.uid.system">
<uses-sdk
diff --git a/src/com/dsi/ant/server/AntService.java b/src/com/dsi/ant/server/AntService.java
index 5afae5a..1619c0b 100644
--- a/src/com/dsi/ant/server/AntService.java
+++ b/src/com/dsi/ant/server/AntService.java
@@ -18,19 +18,11 @@
package com.dsi.ant.server;
-import java.lang.reflect.InvocationTargetException;
-import java.lang.reflect.Method;
-
-import android.bluetooth.BluetoothAdapter;
-import android.bluetooth.IBluetooth;
-import android.bluetooth.IBluetoothStateChangeCallback;
import android.content.Context;
import android.content.Intent;
import android.app.Service;
import android.os.IBinder;
import android.os.RemoteException;
-import android.os.ServiceManager;
-import android.server.BluetoothService;
import android.util.Log;
import com.dsi.ant.core.*;
@@ -57,13 +49,6 @@ public class AntService extends Service
IAntHalCallback mCallback;
- private BluetoothService mBluetoothService;
-
- /** We requested an ANT enable in the BT service, and are waiting for it to complete */
- private boolean mBluetoothServiceAntEnabling;
- /** We requested an ANT disable in the BT service, and are waiting for it to complete */
- private boolean mBluetoothServiceAntDisabling;
-
public static boolean startService(Context context)
{
return ( null != context.startService(new Intent(IAntHal.class.getName())) );
@@ -141,23 +126,7 @@ public class AntService extends Service
{
if(DEBUG) Log.v(TAG, "doGetAntState start");
- int retState;
- if (mBluetoothServiceAntEnabling)
- {
- if(DEBUG) Log.d(TAG, "Bluetooth Service ANT Enabling");
-
- retState = AntHalDefine.ANT_HAL_STATE_ENABLING;
- }
- else if(mBluetoothServiceAntDisabling)
- {
- if(DEBUG) Log.d(TAG, "Bluetooth Service ANT Disabling");
-
- retState = AntHalDefine.ANT_HAL_STATE_DISABLING;
- }
- else
- {
- retState = mJAnt.getRadioEnabledStatus(); // ANT state is native state
- }
+ int retState = mJAnt.getRadioEnabledStatus(); // ANT state is native state
if(DEBUG) Log.i(TAG, "Get ANT State = "+ retState +" / "+ AntHalDefine.getAntHalStateString(retState));
@@ -165,43 +134,6 @@ public class AntService extends Service
}
/**
- * The callback that the BluetoothAdapterStateMachine will call back on when power is on / off.
- * When called back, this function will call the native enable() or disable()
- */
- private final IBluetoothStateChangeCallback.Stub mBluetoothStateChangeCallback = new IBluetoothStateChangeCallback.Stub()
- {
- @Override
- public void onBluetoothStateChange(boolean on) throws RemoteException
- {
- synchronized(mChangeAntPowerState_LOCK) {
- if (DEBUG) Log.i(TAG, "bluetooth state change callback: " + on);
-
- if (on) {
- mBluetoothServiceAntEnabling = false;
-
- if (enableBlocking() == AntHalDefine.ANT_HAL_RESULT_SUCCESS) {
- if(DEBUG) Log.v(TAG, "ANT native enable: Success");
- setState(AntHalDefine.ANT_HAL_STATE_ENABLED);
- } else {
- Log.e(TAG, "ANT native enable failed");
- setState(AntHalDefine.ANT_HAL_STATE_DISABLED);
- }
- } else {
- mBluetoothServiceAntDisabling = false;
-
- if (disableBlocking() == AntHalDefine.ANT_HAL_RESULT_SUCCESS) {
- if(DEBUG) Log.v(TAG, "ANT native disable: Success");
- setState(AntHalDefine.ANT_HAL_STATE_DISABLED);
- } else {
- Log.e(TAG, "ANT native disable failed");
- setState(doGetAntState());
- }
- }
- }
- }
- };
-
- /**
* Perform a power change if required.
* Tries to use changeAntWirelessState() in {@link BluetoothService}. If it does not exist then
* it defaults to a native enable() or disable() call
@@ -211,93 +143,44 @@ public class AntService extends Service
*/
private int asyncSetAntPowerState(final boolean state)
{
- synchronized(mChangeAntPowerState_LOCK) {
- // Check we are not already in/transitioning to the state we want
- int currentState = doGetAntState();
- boolean doNativePower = false;
-
- if(state) {
- if((AntHalDefine.ANT_HAL_STATE_ENABLED == currentState)
- || (AntHalDefine.ANT_HAL_STATE_ENABLING == currentState)) {
- if(DEBUG) Log.d(TAG, "Enable request ignored as already enabled/enabling");
-
- return AntHalDefine.ANT_HAL_RESULT_SUCCESS;
- } else if(AntHalDefine.ANT_HAL_STATE_DISABLING == currentState) {
- Log.w(TAG, "Enable request ignored as already disabling");
-
- return AntHalDefine.ANT_HAL_RESULT_FAIL_UNKNOWN;
- }
- } else {
- if((AntHalDefine.ANT_HAL_STATE_DISABLED == currentState)
- || (AntHalDefine.ANT_HAL_STATE_DISABLING == currentState)) {
- if(DEBUG)Log.d(TAG, "Disable request ignored as already disabled/disabling");
-
- return AntHalDefine.ANT_HAL_RESULT_SUCCESS;
- } else if(AntHalDefine.ANT_HAL_STATE_ENABLING == currentState) {
- Log.w(TAG, "Disable request ignored as already enabling");
-
- return AntHalDefine.ANT_HAL_RESULT_FAIL_UNKNOWN;
- }
- }
-
- if (mBluetoothService != null) {
- try {
- Method method_changeAntWirelessState = BluetoothService.class.getMethod(
- "changeAntWirelessState", boolean.class,
- IBluetoothStateChangeCallback.class);
-
- boolean result = (Boolean) method_changeAntWirelessState.invoke(mBluetoothService,
- state, mBluetoothStateChangeCallback);
- if (result) {
- if (state) {
- if (DEBUG) Log.d(TAG, "enable request successful");
- mBluetoothServiceAntEnabling = true;
- setState(AntHalDefine.ANT_HAL_STATE_ENABLING);
- } else {
- if (DEBUG) Log.d(TAG, "disable request successful");
- mBluetoothServiceAntDisabling = true;
- setState(AntHalDefine.ANT_HAL_STATE_DISABLING);
- }
- return AntHalDefine.ANT_HAL_RESULT_SUCCESS;
- } else {
- Log.e(TAG, "power " + state + " request failed");
- return AntHalDefine.ANT_HAL_RESULT_FAIL_UNKNOWN;
- }
- } catch (NoSuchMethodException e) {
- // BluetoothService does not contain the ANT frameworks power function, which means
- // the native code will do the chip power.
- doNativePower = true;
- } catch (IllegalAccessException e) {
- // This exception should never happen, but if it does it is something we need to fix.
- // This call is made on a Binder Thread, so rather than crash it and have it silently
- // fail, we re-throw a supported IPC exception so that the higher level will know
- // about the error.
- throw new SecurityException("BluetoothService.changeAntWirelessState() function should be public\n" + e.getMessage());
- } catch (InvocationTargetException e) {
- // This exception should never happen, but if it does it is something we need to fix.
- // This call is made on a Binder Thread, so rather than crash it and have it silently
- // fail, we re-throw a supported IPC exception so that the higher level will know
- // about the error.
- throw new IllegalArgumentException("BluetoothService.changeAntWirelessState() should not throw exceptions\n" + e.getMessage());
- }
- }
- else
- {
- Log.w(TAG, "in disable: No BluetoothService");
- doNativePower = true;
- }
-
- if(doNativePower) {
- if (state) {
- enableBackground();
- } else {
- disableBackground();
- }
- return AntHalDefine.ANT_HAL_RESULT_SUCCESS;
- }
-
- return AntHalDefine.ANT_HAL_RESULT_FAIL_UNKNOWN;
+ int result = AntHalDefine.ANT_HAL_RESULT_FAIL_UNKNOWN;
+
+ synchronized(mChangeAntPowerState_LOCK) {
+ // Check we are not already in/transitioning to the state we want
+ int currentState = doGetAntState();
+
+ if(state) {
+ if((AntHalDefine.ANT_HAL_STATE_ENABLED == currentState)
+ || (AntHalDefine.ANT_HAL_STATE_ENABLING == currentState)) {
+ if(DEBUG) Log.d(TAG, "Enable request ignored as already enabled/enabling");
+
+ return AntHalDefine.ANT_HAL_RESULT_SUCCESS;
+ } else if(AntHalDefine.ANT_HAL_STATE_DISABLING == currentState) {
+ Log.w(TAG, "Enable request ignored as already disabling");
+
+ return AntHalDefine.ANT_HAL_RESULT_FAIL_UNKNOWN;
+ }
+ } else {
+ if((AntHalDefine.ANT_HAL_STATE_DISABLED == currentState)
+ || (AntHalDefine.ANT_HAL_STATE_DISABLING == currentState)) {
+ if(DEBUG)Log.d(TAG, "Disable request ignored as already disabled/disabling");
+
+ return AntHalDefine.ANT_HAL_RESULT_SUCCESS;
+ } else if(AntHalDefine.ANT_HAL_STATE_ENABLING == currentState) {
+ Log.w(TAG, "Disable request ignored as already enabling");
+
+ return AntHalDefine.ANT_HAL_RESULT_FAIL_UNKNOWN;
+ }
+ }
+
+ if (state) {
+ result = enableBackground();
+ } else {
+ result = disableBackground();
+ }
}
+
+ return result;
}
/**
@@ -539,9 +422,6 @@ public class AntService extends Service
if (DEBUG) Log.d(TAG, "onCreate() entered");
super.onCreate();
-
- mBluetoothServiceAntEnabling = false;
- mBluetoothServiceAntDisabling = false;
if(null != mJAnt)
{
@@ -554,19 +434,9 @@ public class AntService extends Service
if (createResult == JAntStatus.SUCCESS)
{
- mBluetoothService = (BluetoothService) IBluetooth.Stub.asInterface(ServiceManager.getService(BluetoothAdapter.BLUETOOTH_SERVICE));
-
- if (mBluetoothService == null)
- {
- Log.e(TAG, "mBluetoothService == null");
- mInitialized = false;
- }
- else
- {
- mInitialized = true;
+ mInitialized = true;
- if (DEBUG) Log.d(TAG, "JAntJava create success");
- }
+ if (DEBUG) Log.d(TAG, "JAntJava create success");
}
else
{
@@ -583,16 +453,13 @@ public class AntService extends Service
try
{
- if(null != mJAnt)
+ synchronized(sAntHalServiceDestroy_LOCK)
{
- synchronized(sAntHalServiceDestroy_LOCK)
+ if(null != mJAnt)
{
- if (asyncSetAntPowerState(false) != AntHalDefine.ANT_HAL_RESULT_SUCCESS)
- {
- Log.w(TAG, "onDestroy disable failed");
- }
int result = disableBlocking();
if (DEBUG) Log.d(TAG, "onDestroy: disable result is: " + AntHalDefine.getAntHalResultString(result));
+
mJAnt.destroy();
mJAnt = null;
}
@@ -681,16 +548,6 @@ public class AntService extends Service
{
if (DEBUG) Log.i(TAG, "ANTStateChange callback to " + NewState);
- if(mBluetoothServiceAntEnabling) {
- Log.w(TAG, "Native state change ignored while waiting for BluetoothService ANT enable");
- return;
- }
-
- if(mBluetoothServiceAntDisabling) {
- Log.w(TAG, "Native state change ignored while waiting for BluetoothService ANT disable");
- return;
- }
-
setState(NewState);
}
};