blob: 0f7f66adb36437fdf60ab899dbf14d8a31a1649b [file] [log] [blame]
Alexandre Savard14323be2012-10-24 10:02:13 -04001/*
2 * Copyright (C) 2004-2012 Savoir-Faire Linux Inc.
3 *
4 * Author: Alexandre Savard <alexandre.savard@savoirfairelinux.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 *
20 * Additional permission under GNU GPL version 3 section 7:
21 *
22 * If you modify this program, or any covered work, by linking or
23 * combining it with the OpenSSL project's OpenSSL library (or a
24 * modified version of that library), containing parts covered by the
25 * terms of the OpenSSL or SSLeay licenses, Savoir-Faire Linux Inc.
26 * grants you additional permission to convey the resulting work.
27 * Corresponding Source for a non-source form of such a combination
28 * shall include the source code for the parts of OpenSSL used as well
29 * as that of the covered work.
30 */
31
32package com.savoirfairelinux.sflphone.utils;
33
34import com.savoirfairelinux.sflphone.client.SipCall;
35
36import android.content.BroadcastReceiver;
37import android.content.Context;
38import android.content.Intent;
39import android.util.Log;
40
41import java.util.ArrayList;
42
Alexandre Savard3bdce7b2012-10-24 18:27:45 -040043import com.savoirfairelinux.sflphone.service.CallManagerCallBack;
44
Alexandre Savard14323be2012-10-24 10:02:13 -040045public class CallList extends BroadcastReceiver
46{
47 static final String TAG = "CallList";
Alexandre Savard74c1cad2012-10-24 16:39:00 -040048 static ArrayList<SipCall> mList = new ArrayList<SipCall>();
Alexandre Savard14323be2012-10-24 10:02:13 -040049
50 private enum Signals {
51 NEW_CALL_CREATED,
52 INCOMING_CALL,
53 INCOMING_MESSAGE,
54 CALL_STATE_CHANGED
55 }
56
Alexandre Savard74c1cad2012-10-24 16:39:00 -040057 /**
58 * Factory method to create/retreive call instance
59 */
60 public static SipCall getCallInstance(SipCall.CallInfo info)
61 {
62 if(mList.isEmpty())
63 return new SipCall(info);
64
65 for(SipCall sipcall : mList) {
66 if(sipcall.mCallInfo.mCallID.equals(info.mCallID)) {
67 return sipcall;
68 }
69 }
70
71 SipCall call = new SipCall(info);
72 mList.add(call);
73
74 return call;
75 }
76
Alexandre Savard14323be2012-10-24 10:02:13 -040077 @Override
78 public void onReceive(Context context, Intent intent)
79 {
Alexandre Savard3bdce7b2012-10-24 18:27:45 -040080 String signalName = intent.getStringExtra(CallManagerCallBack.SIGNAL_NAME);
Alexandre Savard14323be2012-10-24 10:02:13 -040081 Log.d(TAG, "Signal received: " + signalName);
82
Alexandre Savard3bdce7b2012-10-24 18:27:45 -040083 if(signalName.equals(CallManagerCallBack.NEW_CALL_CREATED)) {
84 } else if(signalName.equals(CallManagerCallBack.CALL_STATE_CHANGED)) {
85 } else if(signalName.equals(CallManagerCallBack.INCOMING_CALL)) {
Alexandre Savard14323be2012-10-24 10:02:13 -040086 }
87 }
88}