/android/import-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/import-contacts

« back to all changes in this revision

Viewing changes to src/org/waxworlds/importcontacts/Doit.java

  • Committer: edam
  • Date: 2009-01-11 13:00:52 UTC
  • Revision ID: edam@waxworlds.org-20090111130052-q9bh0zz4ey47egbv
- updated todo list

Show diffs side-by-side

added added

removed removed

1
 
/*
2
 
 * Doit.java
3
 
 *
4
 
 * Copyright (C) 2009 Tim Marston <edam@waxworlds.org>
5
 
 *
6
 
 * This file is part of the Import Contacts program (hereafter referred
7
 
 * to as "this program"). For more information, see
8
 
 * http://www.waxworlds.org/edam/software/android/import-contacts
9
 
 *
10
 
 * This program is free software: you can redistribute it and/or modify
11
 
 * it under the terms of the GNU General Public License as published by
12
 
 * the Free Software Foundation, either version 3 of the License, or
13
 
 * (at your option) any later version.
14
 
 *
15
 
 * This program is distributed in the hope that it will be useful,
16
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 
 * GNU General Public License for more details.
19
 
 *
20
 
 * You should have received a copy of the GNU General Public License
21
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
 
 */
23
 
 
24
1
package org.waxworlds.importcontacts;
25
2
 
26
3
import android.app.AlertDialog;
36
13
import android.widget.Button;
37
14
import android.widget.CheckBox;
38
15
import android.widget.CompoundButton;
 
16
import android.widget.LinearLayout;
39
17
import android.widget.ProgressBar;
40
18
import android.widget.TextView;
41
19
import android.widget.Toast;
61
39
        public final static int MESSAGE_CONTACTMERGED = 12;
62
40
        public final static int MESSAGE_CONTACTSKIPPED = 13;
63
41
 
64
 
        public final static int ACTION_PROMPT = 0;
65
 
        public final static int ACTION_KEEP = 1;
66
 
        public final static int ACTION_MERGE_MERGE = 2;
67
 
        public final static int ACTION_OVERWRITE = 3;
68
 
 
69
 
        public final static int NEXT_BEGIN = 0;
70
 
        public final static int NEXT_CLOSE = 1;
71
 
 
72
42
        private boolean _startedProgress;
73
43
        private int _maxProgress;
74
44
        private int _tmpProgress;
76
46
        protected String _dialogMessage;
77
47
        private Dialog _mergePromptDialog;
78
48
        private boolean _mergePromptAlwaysSelected;
79
 
        private int _nextAction;
80
49
 
81
50
        private int _countOverwrites;
82
51
        private int _countCreates;
98
67
                                                setVisibility( View.VISIBLE );
99
68
                                // fall through
100
69
                        case MESSAGE_FINISHED:
101
 
                                updateNext( NEXT_CLOSE );
102
 
                                findViewById( R.id.doit_abort_disp ).setVisibility(
103
 
                                                View.GONE );
 
70
                                ( (LinearLayout)findViewById( R.id.doit_closedisplay ) ).
 
71
                                                setVisibility( View.VISIBLE );
104
72
                                break;
105
73
                        case MESSAGE_FINISHED_GOBACK:
106
74
                                ( (Button)findViewById( R.id.back ) ).setEnabled( true );
107
 
                                findViewById( R.id.doit_abort_disp ).setVisibility(
108
 
                                                View.GONE );
109
75
                                break;
110
76
                        case MESSAGE_ERROR:
111
77
                                Doit.this._dialogMessage = (String)msg.obj;
121
87
                                break;
122
88
                        case MESSAGE_SETMAXPROGRESS:
123
89
                                if( _maxProgress > 0 ) {
124
 
                                        if( _tmpProgress == _maxProgress - 1 )
 
90
                                        if( _tmpProgress == _maxProgress )
125
91
                                                _tmpProgress = (Integer)msg.obj;
126
 
                                        if( _progress == _maxProgress - 1 )
 
92
                                        if( _progress == _maxProgress )
127
93
                                                _progress = (Integer)msg.obj;
128
94
                                }
129
95
                                _maxProgress = (Integer)msg.obj;
173
139
                // hide page 2
174
140
                ( findViewById( R.id.doit_page_2 ) ).setVisibility( View.GONE );
175
141
 
176
 
                // set up abort button
177
 
                Button begin = (Button)findViewById( R.id.abort );
 
142
                // set up begin button
 
143
                Button begin = (Button)findViewById( R.id.doit_begin );
178
144
                begin.setOnClickListener( new View.OnClickListener() {
179
145
                        public void onClick( View view ) {
180
 
                                manualAbort();
 
146
                                importContacts();
 
147
                        }
 
148
                } );
 
149
 
 
150
                // set up close button
 
151
                Button close = (Button)findViewById( R.id.doit_close );
 
152
                close.setOnClickListener( new View.OnClickListener() {
 
153
                        public void onClick( View view ) {
 
154
                                setResult( RESULT_CANCELED );
 
155
                                finish();
181
156
                        }
182
157
                } );
183
158
 
192
167
                _countMerges = 0;
193
168
                _countSkips = 0;
194
169
 
195
 
                updateNext( NEXT_BEGIN );
196
 
 
197
170
                updateProgress();
198
171
                updateStats();
199
172
        }
204
177
                super.onPause();
205
178
 
206
179
                // saving the state of an import sounds complicated! Lets just abort!
207
 
                abortImport( true );
 
180
                abortImport();
 
181
 
 
182
                // destroy some stuff
 
183
                _importer = null;
 
184
                _handler = null;
208
185
        }
209
186
 
210
187
        @Override
268
245
                                        setOnClickListener( _mergePromptButtonListener );
269
246
                        ( (Button)dialogView.findViewById( R.id.merge_merge ) ).
270
247
                                        setOnClickListener( _mergePromptButtonListener );
271
 
                        ( (Button)dialogView.findViewById( R.id.abort ) ).
272
 
                                        setOnClickListener( _mergePromptButtonListener );
273
248
                        _mergePromptAlwaysSelected = false;
274
249
                        return new AlertDialog.Builder( this )
275
250
                                        .setIcon( R.drawable.alert_dialog_icon )
281
256
                return null;
282
257
        }
283
258
 
284
 
        private OnClickListener _mergePromptButtonListener = new OnClickListener() {
285
 
                public void onClick( View view )
286
 
                {
287
 
                        // handle abort
288
 
                        if( view.getId() == R.id.abort )
289
 
                                manualAbort();
290
 
 
291
 
                        // else, response
292
 
                        else {
293
 
                                int responseExtra = _mergePromptAlwaysSelected?
294
 
                                                Importer.RESPONSEEXTRA_ALWAYS : Importer.RESPONSEEXTRA_NONE;
295
 
                                Doit.this._importer.wake( convertIdToAction( view.getId() ),
296
 
                                                responseExtra );
297
 
                        }
298
 
 
299
 
                        // close dialog and free (don't keep a reference)
 
259
    private OnClickListener _mergePromptButtonListener = new OnClickListener() {
 
260
                public void onClick( View view ) {
 
261
                        int responseExtra = _mergePromptAlwaysSelected?
 
262
                                        Importer.RESPONSEEXTRA_ALWAYS : Importer.RESPONSEEXTRA_NONE;
300
263
                        Doit.this._mergePromptDialog.dismiss();
301
 
                        Doit.this._mergePromptDialog = null;
 
264
                        Doit.this._mergePromptDialog = null;    // dont keep a reference!
 
265
                        Doit.this._importer.wake( view.getId(), responseExtra );
302
266
                }
303
267
        };
304
268
 
305
 
        @Override
306
 
        protected void onNext()
307
 
        {
308
 
                Button next = (Button)findViewById( R.id.next );
309
 
                next.setEnabled( false );
310
 
 
311
 
                switch( _nextAction )
312
 
                {
313
 
                case NEXT_BEGIN:
314
 
                        importContacts();
315
 
                        break;
316
 
                case NEXT_CLOSE:
317
 
                        setResult( RESULT_CANCELED );
318
 
                        finish();
319
 
                        break;
320
 
                }
321
 
        }
322
 
 
323
 
        private void manualAbort()
324
 
        {
325
 
                abortImport( false );
326
 
                updateNext( NEXT_CLOSE );
327
 
                ( (Button)findViewById( R.id.back ) ).setEnabled( true );
328
 
                findViewById( R.id.doit_abort_disp ).setVisibility( View.GONE );
329
 
        }
330
 
 
331
 
        private void updateNext( int nextAction )
332
 
        {
333
 
                Button next = (Button)findViewById( R.id.next );
334
 
                switch( nextAction ) {
335
 
                case NEXT_BEGIN:        next.setText( R.string.doit_begin ); break;
336
 
                case NEXT_CLOSE:        next.setText( R.string.doit_close ); break;
337
 
                }
338
 
                next.setEnabled( true );
339
 
                _nextAction = nextAction;
340
 
        }
341
 
 
342
 
        public static int convertIdToAction( int id ) {
343
 
                switch( id ) {
344
 
                case R.id.merge_keep:           return ACTION_KEEP;
345
 
                case R.id.merge_merge:          return ACTION_MERGE_MERGE;
346
 
                case R.id.merge_overwrite:      return ACTION_OVERWRITE;
347
 
                default: return ACTION_PROMPT;
348
 
                }
349
 
        }
350
 
 
351
 
        public static int convertActionToId( int action ) {
352
 
                switch( action ) {
353
 
                case ACTION_KEEP:               return R.id.merge_keep;
354
 
                case ACTION_MERGE_MERGE:return R.id.merge_merge;
355
 
                case ACTION_OVERWRITE:  return R.id.merge_overwrite;
356
 
                default: return R.id.merge_prompt;
357
 
                }
358
 
        }
359
 
 
360
269
        private DialogInterface.OnCancelListener _dialogOnCancelListener =
361
270
                        new DialogInterface.OnCancelListener() {
362
271
                public void onCancel( DialogInterface dialog ) {
371
280
        {
372
281
                // if we're cancelling, abort any import
373
282
                if( resultCode == RESULT_CANCELED )
374
 
                        abortImport( true );
 
283
                        abortImport();
375
284
        }
376
285
 
377
286
        @Override
444
353
                                "" + _countSkips );
445
354
        }
446
355
 
447
 
        private void abortImport( boolean showToasterPopup )
 
356
        private void abortImport()
448
357
        {
449
358
                if( _importer != null )
450
359
                {
461
370
                                }
462
371
 
463
372
                                // notify the user
464
 
                                if( showToasterPopup )
465
 
                                        Toast.makeText( this, R.string.doit_importaborted,
466
 
                                                        Toast.LENGTH_LONG ).show();
 
373
                        Toast.makeText( this, R.string.doit_importaborted,
 
374
                                        Toast.LENGTH_LONG ).show();
467
375
                        }
468
376
                }
469
 
 
470
 
                // destroy some stuff
471
 
                _importer = null;
472
 
                _handler = null;
473
377
        }
474
378
}