blob: f6020203320cd08e84f5ed6225505ee385cd154d [file] [log] [blame]
alision2ec64f92013-06-17 17:28:58 -04001/*
2 * Copyright (C) 2004-2013 Savoir-Faire Linux Inc.
3 *
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.fragments;
alisiond9e29442013-04-17 16:10:18 -040032
alisione2a38e12013-04-25 14:20:20 -040033import java.util.ArrayList;
alision50fa0722013-06-25 17:29:44 -040034import java.util.concurrent.ExecutorService;
35import java.util.concurrent.Executors;
alisione2a38e12013-04-25 14:20:20 -040036
Alexandre Lision064e1e02013-10-01 16:18:42 -040037import org.sflphone.R;
38import org.sflphone.adapters.ContactPictureTask;
Alexandre Lision2e52d392013-11-06 15:14:31 -050039import org.sflphone.client.DetailHistoryActivity;
Alexandre Lision064e1e02013-10-01 16:18:42 -040040import org.sflphone.loaders.HistoryLoader;
41import org.sflphone.loaders.LoaderConstants;
42import org.sflphone.model.HistoryEntry;
43import org.sflphone.service.ISipService;
44
alisione2a38e12013-04-25 14:20:20 -040045import android.app.Activity;
46import android.app.ListFragment;
alision2ec64f92013-06-17 17:28:58 -040047import android.app.LoaderManager.LoaderCallbacks;
Alexandre Lision4ab53972013-11-04 16:59:18 -050048import android.content.Context;
Alexandre Lision2e52d392013-11-06 15:14:31 -050049import android.content.Intent;
alision2ec64f92013-06-17 17:28:58 -040050import android.content.Loader;
alisiond9e29442013-04-17 16:10:18 -040051import android.os.Bundle;
alisione2a38e12013-04-25 14:20:20 -040052import android.os.RemoteException;
53import android.util.Log;
alisiond9e29442013-04-17 16:10:18 -040054import android.view.LayoutInflater;
55import android.view.View;
alision50fa0722013-06-25 17:29:44 -040056import android.view.View.OnClickListener;
alisiond9e29442013-04-17 16:10:18 -040057import android.view.ViewGroup;
alision2ec64f92013-06-17 17:28:58 -040058import android.widget.AdapterView;
alision2ec64f92013-06-17 17:28:58 -040059import android.widget.AdapterView.OnItemClickListener;
Alexandre Lision2e52d392013-11-06 15:14:31 -050060import android.widget.AdapterView.OnItemLongClickListener;
alision50fa0722013-06-25 17:29:44 -040061import android.widget.BaseAdapter;
62import android.widget.Button;
63import android.widget.ImageButton;
64import android.widget.ImageView;
Alexandre Lision4ab53972013-11-04 16:59:18 -050065import android.widget.ListAdapter;
alision50fa0722013-06-25 17:29:44 -040066import android.widget.TextView;
Alexandre Lision2e52d392013-11-06 15:14:31 -050067import android.widget.Toast;
alisiond9e29442013-04-17 16:10:18 -040068
alision2ec64f92013-06-17 17:28:58 -040069public class HistoryFragment extends ListFragment implements LoaderCallbacks<ArrayList<HistoryEntry>> {
alisione2a38e12013-04-25 14:20:20 -040070
71 private static final String TAG = HistoryFragment.class.getSimpleName();
alision2ec64f92013-06-17 17:28:58 -040072
alisione2a38e12013-04-25 14:20:20 -040073 HistoryAdapter mAdapter;
74 private Callbacks mCallbacks = sDummyCallbacks;
Alexandre Lision2e52d392013-11-06 15:14:31 -050075
alisione2a38e12013-04-25 14:20:20 -040076 private static Callbacks sDummyCallbacks = new Callbacks() {
77 @Override
alision907bde72013-06-20 14:40:37 -040078 public void onCallDialed(String to) {
alisione2a38e12013-04-25 14:20:20 -040079 }
80
81 @Override
82 public ISipService getService() {
83 Log.i(TAG, "Dummy");
84 return null;
85 }
86
87 };
88
Alexandre Lision2e52d392013-11-06 15:14:31 -050089 public static String ARGS = "Bundle.args";
90
alisione2a38e12013-04-25 14:20:20 -040091 public interface Callbacks {
alision907bde72013-06-20 14:40:37 -040092 public void onCallDialed(String to);
alisione2a38e12013-04-25 14:20:20 -040093
94 public ISipService getService();
95
96 }
97
98 @Override
99 public void onAttach(Activity activity) {
Alexandre Lision4a56d432013-07-19 11:37:53 -0400100 Log.i(TAG, "Attaching HISTORY");
alisione2a38e12013-04-25 14:20:20 -0400101 super.onAttach(activity);
alision2ec64f92013-06-17 17:28:58 -0400102
alisione2a38e12013-04-25 14:20:20 -0400103 if (!(activity instanceof Callbacks)) {
104 throw new IllegalStateException("Activity must implement fragment's callbacks.");
105 }
106
107 mCallbacks = (Callbacks) activity;
108 }
109
110 @Override
111 public void onDetach() {
112 super.onDetach();
113 mCallbacks = sDummyCallbacks;
114 }
115
116 @Override
117 public void onCreate(Bundle savedInstanceState) {
118 super.onCreate(savedInstanceState);
Alexandre Lision72e37322013-11-04 17:14:11 -0500119 mAdapter = new HistoryAdapter(getActivity(), new ArrayList<HistoryEntry>());
alisione2a38e12013-04-25 14:20:20 -0400120 }
alisiond9e29442013-04-17 16:10:18 -0400121
122 @Override
123 public View onCreateView(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState) {
alisione2a38e12013-04-25 14:20:20 -0400124 View inflatedView = inflater.inflate(R.layout.frag_history, parent, false);
alision2ec64f92013-06-17 17:28:58 -0400125
Alexandre Lision2e52d392013-11-06 15:14:31 -0500126 return inflatedView;
127 }
128
129 @Override
130 public void onActivityCreated(Bundle savedInstanceState) {
131
132 super.onActivityCreated(savedInstanceState);
133 getListView().setAdapter(mAdapter);
134
135 getListView().setOnItemClickListener(new OnItemClickListener() {
alision2ec64f92013-06-17 17:28:58 -0400136
137 @Override
138 public void onItemClick(AdapterView<?> arg0, View arg1, int pos, long arg3) {
Alexandre Lision2e52d392013-11-06 15:14:31 -0500139
140 Bundle b = new Bundle();
141 b.putParcelable("entry", mAdapter.getItem(pos));
142 Intent toStart = new Intent(getActivity(), DetailHistoryActivity.class).putExtra(HistoryFragment.ARGS, b);
143 startActivity(toStart);
144
alision2ec64f92013-06-17 17:28:58 -0400145 }
146 });
alisione2a38e12013-04-25 14:20:20 -0400147 }
148
149 @Override
150 public void onStart() {
151 super.onStart();
152 Log.w(TAG, "onStart");
Alexandre Lision4a56d432013-07-19 11:37:53 -0400153 getLoaderManager().restartLoader(LoaderConstants.HISTORY_LOADER, null, this);
alisione2a38e12013-04-25 14:20:20 -0400154 }
155
alision1005ba12013-06-19 13:52:44 -0400156 public void makeNewCall(int position) {
alision907bde72013-06-20 14:40:37 -0400157 mCallbacks.onCallDialed(mAdapter.getItem(position).getNumber());
alision2ec64f92013-06-17 17:28:58 -0400158 }
alisione2a38e12013-04-25 14:20:20 -0400159
alision2ec64f92013-06-17 17:28:58 -0400160 @Override
161 public Loader<ArrayList<HistoryEntry>> onCreateLoader(int id, Bundle args) {
alision1005ba12013-06-19 13:52:44 -0400162
alision2ec64f92013-06-17 17:28:58 -0400163 HistoryLoader loader = new HistoryLoader(getActivity(), mCallbacks.getService());
164 loader.forceLoad();
165 return loader;
alision50fa0722013-06-25 17:29:44 -0400166
alision2ec64f92013-06-17 17:28:58 -0400167 }
168
169 @Override
170 public void onLoadFinished(Loader<ArrayList<HistoryEntry>> arg0, ArrayList<HistoryEntry> history) {
Alexandre Lision72e37322013-11-04 17:14:11 -0500171 mAdapter.clear();
172 mAdapter.addAll(history);
alision2ec64f92013-06-17 17:28:58 -0400173 mAdapter.notifyDataSetChanged();
174
175 }
176
177 @Override
178 public void onLoaderReset(Loader<ArrayList<HistoryEntry>> arg0) {
179 // TODO Auto-generated method stub
alisione2a38e12013-04-25 14:20:20 -0400180
alisiond9e29442013-04-17 16:10:18 -0400181 }
alision1005ba12013-06-19 13:52:44 -0400182
Alexandre Lision72e37322013-11-04 17:14:11 -0500183 public class HistoryAdapter extends BaseAdapter implements ListAdapter {
alision50fa0722013-06-25 17:29:44 -0400184
Alexandre Lision72e37322013-11-04 17:14:11 -0500185 Context mContext;
alision50fa0722013-06-25 17:29:44 -0400186 ArrayList<HistoryEntry> dataset;
187 private ExecutorService infos_fetcher = Executors.newCachedThreadPool();
188
Alexandre Lision72e37322013-11-04 17:14:11 -0500189 public HistoryAdapter(Context activity, ArrayList<HistoryEntry> history) {
alision50fa0722013-06-25 17:29:44 -0400190 mContext = activity;
191 dataset = history;
192 }
193
194 @Override
195 public View getView(final int pos, View convertView, ViewGroup arg2) {
Alexandre Lision72e37322013-11-04 17:14:11 -0500196
alision50fa0722013-06-25 17:29:44 -0400197 HistoryView entryView = null;
198
Alexandre Lision40954dc2013-10-09 15:24:03 -0400199 if (convertView == null) {
alision50fa0722013-06-25 17:29:44 -0400200 // Get a new instance of the row layout view
Alexandre Lision72e37322013-11-04 17:14:11 -0500201 LayoutInflater inflater = LayoutInflater.from(mContext);
Alexandre Lision40954dc2013-10-09 15:24:03 -0400202 convertView = inflater.inflate(R.layout.item_history, null);
alision50fa0722013-06-25 17:29:44 -0400203
204 // Hold the view objects in an object
205 // so they don't need to be re-fetched
206 entryView = new HistoryView();
Alexandre Lision2e52d392013-11-06 15:14:31 -0500207 entryView.photo = (ImageButton) convertView.findViewById(R.id.photo);
Alexandre Lision40954dc2013-10-09 15:24:03 -0400208 entryView.displayName = (TextView) convertView.findViewById(R.id.display_name);
Alexandre Lision40954dc2013-10-09 15:24:03 -0400209 entryView.date = (TextView) convertView.findViewById(R.id.date_start);
Alexandre Lision40954dc2013-10-09 15:24:03 -0400210 entryView.incoming = (TextView) convertView.findViewById(R.id.incomings);
211 entryView.outgoing = (TextView) convertView.findViewById(R.id.outgoings);
212 entryView.replay = (Button) convertView.findViewById(R.id.replay);
Alexandre Lision40954dc2013-10-09 15:24:03 -0400213 convertView.setTag(entryView);
alision50fa0722013-06-25 17:29:44 -0400214 } else {
Alexandre Lision40954dc2013-10-09 15:24:03 -0400215 entryView = (HistoryView) convertView.getTag();
alision50fa0722013-06-25 17:29:44 -0400216 }
217
218 // Transfer the stock data from the data object
219 // to the view objects
220
221 // SipCall call = (SipCall) mCallList.values().toArray()[position];
222 entryView.displayName.setText(dataset.get(pos).getContact().getmDisplayName());
Alexandre Lision35c3cbb2013-11-04 17:11:54 -0500223 infos_fetcher.execute(new ContactPictureTask(mContext, entryView.photo, dataset.get(pos).getContact()));
Alexandre Lisionc2bd7b62013-09-30 10:45:00 -0400224
Alexandre Lisionc2bd7b62013-09-30 10:45:00 -0400225 entryView.incoming.setText(getString(R.string.hist_in_calls, dataset.get(pos).getIncoming_sum()));
226 entryView.outgoing.setText(getString(R.string.hist_out_calls, dataset.get(pos).getOutgoing_sum()));
alision50fa0722013-06-25 17:29:44 -0400227
228 if (dataset.get(pos).getCalls().lastEntry().getValue().getRecordPath().length() > 0) {
229 entryView.replay.setVisibility(View.VISIBLE);
230 entryView.replay.setTag(R.id.replay, true);
231 entryView.replay.setOnClickListener(new OnClickListener() {
232
233 @Override
234 public void onClick(View v) {
235 try {
236 if ((Boolean) v.getTag(R.id.replay)) {
237 mCallbacks.getService().startRecordedFilePlayback(dataset.get(pos).getCalls().lastEntry().getValue().getRecordPath());
238 v.setTag(R.id.replay, false);
Alexandre Lision35c3cbb2013-11-04 17:11:54 -0500239 ((Button) v).setText(getString(R.string.hist_replay_button_stop));
alision50fa0722013-06-25 17:29:44 -0400240 } else {
241 mCallbacks.getService().stopRecordedFilePlayback(dataset.get(pos).getCalls().lastEntry().getValue().getRecordPath());
242 v.setTag(R.id.replay, true);
Alexandre Lision35c3cbb2013-11-04 17:11:54 -0500243 ((Button) v).setText(getString(R.string.hist_replay_button));
alision50fa0722013-06-25 17:29:44 -0400244 }
245 } catch (RemoteException e) {
246 // TODO Auto-generated catch block
247 e.printStackTrace();
248 }
249 }
250 });
251 }
252
Alexandre Lision2e52d392013-11-06 15:14:31 -0500253 entryView.date.setText(dataset.get(pos).getCalls().lastEntry().getValue().getDate());
254 entryView.photo.setOnClickListener(new OnClickListener() {
Alexandre Lision3ee516e2013-10-07 17:32:15 -0400255
256 @Override
257 public void onClick(View v) {
Alexandre Lision72e37322013-11-04 17:14:11 -0500258 makeNewCall(pos);
Alexandre Lision3ee516e2013-10-07 17:32:15 -0400259
260 }
261 });
alision50fa0722013-06-25 17:29:44 -0400262
Alexandre Lision40954dc2013-10-09 15:24:03 -0400263 return convertView;
alision50fa0722013-06-25 17:29:44 -0400264
265 }
266
267 /*********************
268 * ViewHolder Pattern
269 *********************/
270 public class HistoryView {
Alexandre Lision2e52d392013-11-06 15:14:31 -0500271 public ImageButton photo;
alision50fa0722013-06-25 17:29:44 -0400272 protected TextView displayName;
273 protected TextView date;
alision50fa0722013-06-25 17:29:44 -0400274 private Button replay;
alision50fa0722013-06-25 17:29:44 -0400275 private TextView outgoing;
276 private TextView incoming;
277 }
278
279 @Override
280 public int getCount() {
281
282 return dataset.size();
283 }
284
285 @Override
286 public HistoryEntry getItem(int pos) {
287 return dataset.get(pos);
288 }
289
290 @Override
291 public long getItemId(int arg0) {
292 return 0;
293 }
294
295 public void clear() {
296 dataset.clear();
297
298 }
299
Alexandre Lision72e37322013-11-04 17:14:11 -0500300 public void addAll(ArrayList<HistoryEntry> history) {
301 dataset.addAll(history);
alision50fa0722013-06-25 17:29:44 -0400302 }
303
304 }
305
alisiond9e29442013-04-17 16:10:18 -0400306}