1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187
|
/*
* Copyright (c) 2016 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 com.android.ims.internal.uce.uceservice;
import android.content.Context;
import android.content.Intent;
import android.os.Handler;
import android.os.HandlerThread;
import android.os.IBinder;
import android.os.Message;
import android.os.ServiceManager;
import android.os.RemoteException;
import java.util.HashMap;
import android.util.Log;
/**
* ImsUceManager Declaration
* @hide
*/
public class ImsUceManager {
private static final String LOG_TAG = "ImsUceManager";
/**
* Uce Service name Internal Uce only
* @hide
*/
private static final String UCE_SERVICE = "uce";
/**
* IUceService object
* @hide
*/
private IUceService mUceService = null;
private UceServiceDeathRecipient mDeathReceipient = new UceServiceDeathRecipient();
private Context mContext;
private int mPhoneId;
/**
* Stores the UceManager instaces of Clients identified by
* phoneId
* @hide
*/
private static HashMap<Integer, ImsUceManager> sUceManagerInstances =
new HashMap<Integer, ImsUceManager>();
public static final String ACTION_UCE_SERVICE_UP =
"com.android.ims.internal.uce.UCE_SERVICE_UP";
public static final String ACTION_UCE_SERVICE_DOWN =
"com.android.ims.internal.uce.UCE_SERVICE_DOWN";
/** Uce Service status received in IUceListener.setStatus()
* callback
* @hide
*/
public static final int UCE_SERVICE_STATUS_FAILURE = 0;
/** indicate UI to call Presence/Options API. */
public static final int UCE_SERVICE_STATUS_ON = 1;
/** Indicate UI destroy Presence/Options */
public static final int UCE_SERVICE_STATUS_CLOSED = 2;
/** Service up and trying to register for network events */
public static final int UCE_SERVICE_STATUS_READY = 3;
/**
* Part of the ACTION_UCE_SERVICE_UP or _DOWN intents. A long
* value; the phone ID corresponding to the IMS service coming up or down.
* Internal use only.
* @hide
*/
public static final String EXTRA_PHONE_ID = "android:phone_id";
/**
* Gets the instance of UCE Manager
* @hide
*/
public static ImsUceManager getInstance(Context context, int phoneId) {
//if (DBG) Log.d (LOG_TAG, "GetInstance Called");
synchronized (sUceManagerInstances) {
if (sUceManagerInstances.containsKey(phoneId)) {
return sUceManagerInstances.get(phoneId);
} else {
ImsUceManager uceMgr = new ImsUceManager(context, phoneId);
sUceManagerInstances.put(phoneId, uceMgr);
return uceMgr;
}
}
}
/**
* Constructor
* @hide
*/
private ImsUceManager(Context context, int phoneId) {
//if (DBG) Log.d (LOG_TAG, "Constructor");
mContext = context;
mPhoneId = phoneId;
createUceService(true);
}
/**
* Gets the Uce service Instance
*
* client should call this API only after createUceService()
* this instance is deleted when ACTION_UCE_SERVICE_DOWN event
* is received.
* @hide
*/
public IUceService getUceServiceInstance() {
//if (DBG) Log.d (LOG_TAG, "GetUceServiceInstance Called");
return mUceService;
}
/**
* Gets the UCE service name
* @hide
*/
private String getUceServiceName(int phoneId) {
return UCE_SERVICE;
}
/**
* Gets the IBinder to UCE service
*
* Client should call this after receving ACTION_UCE_SERVICE_UP
* event.
* @hide
*/
public void createUceService(boolean checkService) {
//if (DBG) Log.d (LOG_TAG, "CreateUceService Called");
if (checkService) {
IBinder binder = ServiceManager.checkService(getUceServiceName(mPhoneId));
if (binder == null) {
//if (DBG)Log.d (LOG_TAG, "Unable to find IBinder");
return;
}
}
IBinder b = ServiceManager.getService(getUceServiceName(mPhoneId));
if (b != null) {
try {
b.linkToDeath(mDeathReceipient, 0);
} catch (RemoteException e) {
}
}
this.mUceService = IUceService.Stub.asInterface(b);
}
/**
* Death recipient class for monitoring IMS service.
*
* After receiving ACTION_UCE_SERVICE_DOWN event, the client
* should wait to receive ACTION_UCE_SERVICE_UP and call
* createUceService inorder to create mUceService instance.
* @hide
*/
private class UceServiceDeathRecipient implements IBinder.DeathRecipient {
@Override
public void binderDied() {
//if (DBG) Log.d (LOG_TAG, "found IBinder/IUceService Service Died");
mUceService = null;
if (mContext != null) {
Intent intent = new Intent(ACTION_UCE_SERVICE_DOWN);
intent.putExtra(EXTRA_PHONE_ID, mPhoneId);
mContext.sendBroadcast(new Intent(intent));
}
}
}
}
|