blob: 8a456599eab715097552624c10061b3b902c31b5 [file] [log] [blame]
alision84813a12013-05-27 17:40:39 -04001/*
alisioncc7bb422013-06-06 15:31:39 -04002 * Copyright (C) 2004-2013 Savoir-Faire Linux Inc.
alision84813a12013-05-27 17:40:39 -04003 *
4 * Author: Alexandre Lision <alexandre.lision@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 */
Alexandre Lision064e1e02013-10-01 16:18:42 -040031package org.sflphone.receivers;
32
33import org.sflphone.interfaces.CallInterface;
34import org.sflphone.service.CallManagerCallBack;
alision84813a12013-05-27 17:40:39 -040035
36import android.content.BroadcastReceiver;
37import android.content.Context;
38import android.content.Intent;
39import android.util.Log;
40
alisiondf1dac92013-06-27 17:35:53 -040041public class CallReceiver extends BroadcastReceiver {
42
alision84813a12013-05-27 17:40:39 -040043 static final String TAG = CallReceiver.class.getSimpleName();
44
45 CallInterface callback;
alisiondf1dac92013-06-27 17:35:53 -040046
47 public CallReceiver(CallInterface client) {
alision84813a12013-05-27 17:40:39 -040048 callback = client;
49 }
alision84813a12013-05-27 17:40:39 -040050
alisiondf1dac92013-06-27 17:35:53 -040051 @Override
52 public void onReceive(Context context, Intent intent) {
53 if (intent.getAction().contentEquals(CallManagerCallBack.INCOMING_CALL)) {
54 callback.incomingCall(intent);
55 } else if (intent.getAction().contentEquals(CallManagerCallBack.INCOMING_TEXT)) {
56 callback.incomingText(intent);
57 } else if (intent.getAction().contentEquals(CallManagerCallBack.CALL_STATE_CHANGED)) {
58 callback.callStateChanged(intent);
59 } else if (intent.getAction().contentEquals(CallManagerCallBack.CONF_CREATED)) {
60 callback.confCreated(intent);
61 } else if (intent.getAction().contentEquals(CallManagerCallBack.CONF_REMOVED)) {
62 callback.confRemoved(intent);
63 } else if (intent.getAction().contentEquals(CallManagerCallBack.CONF_CHANGED)) {
64 callback.confChanged(intent);
65 } else if (intent.getAction().contentEquals(CallManagerCallBack.RECORD_STATE_CHANGED)) {
66 callback.recordingChanged(intent);
67 } else {
68 Log.e(TAG, "Unknown action: " + intent.getAction());
69 }
70
71 }
alision84813a12013-05-27 17:40:39 -040072
73}