blob: 91a83bf28ede0ee57ae2914c0b8b783d92fd04d6 [file] [log] [blame]
package com.savoirfairelinux.sflphone.loaders;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import android.content.AsyncTaskLoader;
import android.content.Context;
import android.database.Cursor;
import android.os.RemoteException;
import android.provider.ContactsContract;
import android.provider.ContactsContract.Contacts;
import android.util.Log;
import com.savoirfairelinux.sflphone.model.CallContact;
import com.savoirfairelinux.sflphone.model.CallContact.ContactBuilder;
import com.savoirfairelinux.sflphone.model.HistoryEntry;
import com.savoirfairelinux.sflphone.model.HistoryEntry.HistoryCall;
import com.savoirfairelinux.sflphone.service.ISipService;
import com.savoirfairelinux.sflphone.service.ServiceConstants;
public class HistoryLoader extends AsyncTaskLoader<ArrayList<HistoryEntry>> {
private static final String TAG = HistoryLoader.class.getSimpleName();
private ISipService service;
HashMap<String, HistoryEntry> historyEntries;
static final String[] CONTACTS_SUMMARY_PROJECTION = new String[] { Contacts._ID, Contacts.DISPLAY_NAME, Contacts.PHOTO_ID, Contacts.LOOKUP_KEY,
Contacts.STARRED };
public HistoryLoader(Context context, ISipService isip) {
super(context);
service = isip;
}
@Override
public ArrayList<HistoryEntry> loadInBackground() {
historyEntries = new HashMap<String, HistoryEntry>();
try {
ArrayList<HashMap<String, String>> history = (ArrayList<HashMap<String, String>>) service.getHistory();
Log.i(TAG, "history size:" + history.size());
CallContact.ContactBuilder builder = new CallContact.ContactBuilder();
for (HashMap<String, String> entry : history) {
entry.get(ServiceConstants.HISTORY_ACCOUNT_ID_KEY);
long timestampEnd = Long.parseLong(entry.get(ServiceConstants.HISTORY_TIMESTAMP_STOP_KEY));
long timestampStart = Long.parseLong(entry.get(ServiceConstants.HISTORY_TIMESTAMP_START_KEY));
System.out.println("HISTORY_TIMESTAMP_START_KEY" + entry.get(ServiceConstants.HISTORY_TIMESTAMP_START_KEY));
System.out.println("HISTORY_INCOMING_STRING" + entry.get(ServiceConstants.HISTORY_INCOMING_STRING));
System.out.println("HISTORY_OUTGOING_STRING" + entry.get(ServiceConstants.HISTORY_OUTGOING_STRING));
System.out.println("HISTORY_MISSED_STRING" + entry.get(ServiceConstants.HISTORY_MISSED_STRING));
System.out.println("HISTORY_STATE_KEY" + entry.get(ServiceConstants.HISTORY_STATE_KEY));
String number_called = entry.get(ServiceConstants.HISTORY_PEER_NUMBER_KEY);
CallContact c = null;
if (historyEntries.containsKey(number_called)) {
historyEntries.get(number_called).addHistoryCall(new HistoryCall(timestampStart, timestampEnd, number_called));
} else {
Pattern p = Pattern.compile("<sip:([^@]+)@([^>]+)>");
Matcher m = p.matcher(number_called);
if (m.find()) {
String s1 = m.group(1);
System.out.println(s1);
String s2 = m.group(2);
System.out.println(s2);
Cursor result = getContext().getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null,
ContactsContract.CommonDataKinds.Phone.NUMBER + " = " + m.group(1), null, null);
if (result.getCount() > 0) {
result.moveToFirst();
builder.startNewContact(result.getLong(result.getColumnIndex(ContactsContract.CommonDataKinds.Phone.CONTACT_ID)),
result.getString(result.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME)),
result.getLong(result.getColumnIndex(ContactsContract.CommonDataKinds.Phone.PHOTO_ID)));
builder.addPhoneNumber(number_called, 0);
c = builder.build();
}
result.close();
} else {
c = ContactBuilder.buildUnknownContact(number_called);
}
HistoryEntry e = new HistoryEntry(entry.get(ServiceConstants.HISTORY_ACCOUNT_ID_KEY), c, timestampStart, timestampEnd,
number_called);
historyEntries.put(number_called, e);
}
}
} catch (RemoteException e) {
Log.i(TAG, e.toString());
}
return new ArrayList<HistoryEntry>(historyEntries.values());
}
}