diff options
author | Sailesh Nepal <sail@google.com> | 2014-02-11 22:51:32 -0800 |
---|---|---|
committer | Evan Charlton <evanc@google.com> | 2014-02-20 15:26:18 -0800 |
commit | 968740b5f574fee11d71a35c321f4e9e13d13570 (patch) | |
tree | aef56ff9817c9188cffc44e2999e0908c803b5e4 /telephony | |
parent | 77e0d606f63c8526931018a3ae86f8b9d722c0bd (diff) | |
download | frameworks_base-968740b5f574fee11d71a35c321f4e9e13d13570.zip frameworks_base-968740b5f574fee11d71a35c321f4e9e13d13570.tar.gz frameworks_base-968740b5f574fee11d71a35c321f4e9e13d13570.tar.bz2 |
Add abstract base implementation of CallService.
Base implementation takes care of a lot of boilerplate code.
Change-Id: Iaf5a16f5718727cee0f7efb4af53a021536f50d8
Diffstat (limited to 'telephony')
-rw-r--r-- | telephony/java/android/telephony/CallService.java | 165 | ||||
-rw-r--r-- | telephony/java/com/android/internal/telephony/ICallService.aidl | 2 |
2 files changed, 166 insertions, 1 deletions
diff --git a/telephony/java/android/telephony/CallService.java b/telephony/java/android/telephony/CallService.java new file mode 100644 index 0000000..0ea55b2 --- /dev/null +++ b/telephony/java/android/telephony/CallService.java @@ -0,0 +1,165 @@ +/* + * Copyright (C) 2013 The Android Open Source Project + * + * 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. + */ + +package android.telephony; + +import android.app.Service; +import android.content.Intent; +import android.os.Handler; +import android.os.IBinder; +import android.os.Message; + +import com.android.internal.telephony.ICallService; +import com.android.internal.telephony.ICallServiceAdapter; + +/** + * Base implementation of CallService which can be used to provide calls for the system + * in-call UI. CallService is a one-way service from the framework's CallsManager to any app + * that would like to provide calls managed by the default system in-call user interface. + * When the service is bound by the framework, CallsManager will call setCallServiceAdapter + * which will provide CallService with an instance of {@link CallServiceAdapter} to be used + * for communicating back to CallsManager. Subsequently, more specific methods of the service + * will be called to perform various call actions including making an outgoing call and + * disconnected existing calls. + * TODO(santoscordon): Needs more about AndroidManifest.xml service registrations before + * we can unhide this API. + * + * Most public methods of this function are backed by a one-way AIDL interface which precludes + * syncronous responses. As a result, most responses are handled by (or have TODOs to handle) + * response objects instead of return values. + * TODO(santoscordon): Improve paragraph above once the final design is in place. + * @hide + */ +public abstract class CallService extends Service { + + /** + * Default Handler used to consolidate binder method calls onto a single thread. + */ + private final class CallServiceMessageHandler extends Handler { + @Override + public void handleMessage(Message msg) { + switch (msg.what) { + case MSG_SET_CALL_SERVICE_ADAPTER: + setCallServiceAdapter((ICallServiceAdapter) msg.obj); + break; + case MSG_IS_COMPATIBLE_WITH: + isCompatibleWith((String) msg.obj); + break; + case MSG_CALL: + call((String) msg.obj); + break; + case MSG_DISCONNECT: + disconnect((String) msg.obj); + break; + default: + break; + } + } + } + + /** + * Default ICallService implementation provided to CallsManager via {@link #onBind}. + */ + private final class CallServiceWrapper extends ICallService.Stub { + @Override + public void setCallServiceAdapter(ICallServiceAdapter callServiceAdapter) { + mMessageHandler.obtainMessage(MSG_SET_CALL_SERVICE_ADAPTER, callServiceAdapter) + .sendToTarget(); + } + + @Override + public void isCompatibleWith(String handle) { + mMessageHandler.obtainMessage(MSG_IS_COMPATIBLE_WITH, handle).sendToTarget(); + } + + @Override + public void call(String handle) { + mMessageHandler.obtainMessage(MSG_CALL, handle).sendToTarget(); + } + + @Override + public void disconnect(String callId) { + mMessageHandler.obtainMessage(MSG_DISCONNECT, callId).sendToTarget(); + } + } + + // Only used internally by this class. + // Binder method calls on this service can occur on multiple threads. These messages are used + // in conjunction with {@link #mMessageHandler} to ensure that all callbacks are handled on a + // single thread. Keeping it on a single thread allows CallService implementations to avoid + // needing multi-threaded code in their own callback routines. + private static final int + MSG_SET_CALL_SERVICE_ADAPTER = 1, + MSG_IS_COMPATIBLE_WITH = 2, + MSG_CALL = 3, + MSG_DISCONNECT = 4; + + /** + * Message handler for consolidating binder callbacks onto a single thread. + * See {@link #CallServiceMessageHandler}. + */ + private final CallServiceMessageHandler mMessageHandler; + + /** + * Default binder implementation of {@link ICallService} interface. + */ + private final CallServiceWrapper mBinder; + + /** + * Protected constructor called only by subclasses creates the binder interface and + * single-threaded message handler. + */ + protected CallService() { + mMessageHandler = new CallServiceMessageHandler(); + mBinder = new CallServiceWrapper(); + } + + /** {@inheritDoc} */ + public IBinder onBind(Intent intent) { + return mBinder; + } + + /** + * Sets an implementation of ICallServiceAdapter for adding new calls and communicating state + * changes of existing calls. + * @param callServiceAdapter Adapter object for communicating call to CallsManager + * TODO(santoscordon): Should we not reference ICallServiceAdapter directly from here? Should we + * wrap that in a wrapper like we do for CallService/ICallService? + * TODO(santoscordon): Consider rename of CallServiceAdapter to CallsManager. + */ + public abstract void setCallServiceAdapter(ICallServiceAdapter callServiceAdapter); + + /** + * Determines if the CallService can make calls to the handle. + * @param handle The handle to test for compatibility. + * TODO(santoscordon): Need response parameter. + */ + public abstract void isCompatibleWith(String handle); + + /** + * Calls the specified handle. Handle type is dynamically extensible and can be a phone number, + * a SIP address, or other types. Only called if {@link #isCompatibleWith} returns true for the + * same handle and this service is selected by the switchboard to handle the call. + * @param handle The handle to call. + */ + public abstract void call(String handle); + + /** + * Disconnects the specified call. + * @param callId The ID of the call to disconnect. + */ + public abstract void disconnect(String callId); +} diff --git a/telephony/java/com/android/internal/telephony/ICallService.aidl b/telephony/java/com/android/internal/telephony/ICallService.aidl index a24c860..cb9b2e8 100644 --- a/telephony/java/com/android/internal/telephony/ICallService.aidl +++ b/telephony/java/com/android/internal/telephony/ICallService.aidl @@ -57,5 +57,5 @@ oneway interface ICallService { * and communicate state changes of existing calls. This is the first method that is called * after a the framework binds to the call service. */ - void setCallServiceAdapter(ICallServiceAdapter CallServiceAdapter); + void setCallServiceAdapter(ICallServiceAdapter callServiceAdapter); } |