blob: 7d06e376381b70fa4ce056842adbce5be96cf986 [file] [log] [blame]
/*
** Copyright 2007, 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.internal.telephony.gsm;
import java.util.concurrent.atomic.AtomicBoolean;
import android.os.Message;
import android.telephony.Rlog;
import com.android.internal.telephony.IccPhoneBookInterfaceManager;
import com.android.internal.telephony.uicc.IccFileHandler;
/**
* SimPhoneBookInterfaceManager to provide an inter-process communication to
* access ADN-like SIM records.
*/
public class SimPhoneBookInterfaceManager extends IccPhoneBookInterfaceManager {
static final String LOG_TAG = "SimPhoneBookIM";
public SimPhoneBookInterfaceManager(GSMPhone phone) {
super(phone);
//NOTE service "simphonebook" added by IccSmsInterfaceManagerProxy
}
@Override
public void dispose() {
super.dispose();
}
@Override
protected void finalize() {
try {
super.finalize();
} catch (Throwable throwable) {
Rlog.e(LOG_TAG, "Error while finalizing:", throwable);
}
if(DBG) Rlog.d(LOG_TAG, "SimPhoneBookInterfaceManager finalized");
}
@Override
public int[] getAdnRecordsSize(int efid) {
if (DBG) logd("getAdnRecordsSize: efid=" + efid);
synchronized(mLock) {
checkThread();
mRecordSize = new int[3];
//Using mBaseHandler, no difference in EVENT_GET_SIZE_DONE handling
AtomicBoolean status = new AtomicBoolean(false);
Message response = mBaseHandler.obtainMessage(EVENT_GET_SIZE_DONE, status);
IccFileHandler fh = mPhone.getIccFileHandler();
if (fh != null) {
fh.getEFLinearRecordSize(efid, response);
waitForResult(status);
}
}
return mRecordSize;
}
@Override
protected void logd(String msg) {
Rlog.d(LOG_TAG, "[SimPbInterfaceManager] " + msg);
}
@Override
protected void loge(String msg) {
Rlog.e(LOG_TAG, "[SimPbInterfaceManager] " + msg);
}
}