/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/edam/importcontacts/Doit.java

  • Committer: edam
  • Date: 2011-05-05 21:49:43 UTC
  • Revision ID: edam@waxworlds.org-20110505214943-bg0cn6qz0gr49dlk
- updated TODO
- made varibale names consistent (camelCaseVariables now_use_underscores)

Show diffs side-by-side

added added

removed removed

21
21
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
22
 */
23
23
 
24
 
package org.waxworlds.importcontacts;
 
24
package org.waxworlds.edam.importcontacts;
25
25
 
26
26
import android.app.AlertDialog;
27
27
import android.app.Dialog;
46
46
        private final static int DIALOG_CONTINUEORABORT = 1;
47
47
        private final static int DIALOG_MERGEPROMPT = 2;
48
48
 
49
 
        public final static int MESSAGE_FINISHED_ALLDONE = 0;
50
 
        public final static int MESSAGE_FINISHED = 1;
51
 
        public final static int MESSAGE_FINISHED_GOBACK = 2;
 
49
        public final static int MESSAGE_ALLDONE = 0;
 
50
        public final static int MESSAGE_ABORT = 1;
52
51
        public final static int MESSAGE_ERROR = 3;
53
52
        public final static int MESSAGE_CONTINUEORABORT = 4;
54
53
        public final static int MESSAGE_SETPROGRESSMESSAGE = 5;
69
68
        public final static int NEXT_BEGIN = 0;
70
69
        public final static int NEXT_CLOSE = 1;
71
70
 
72
 
        private boolean _startedProgress;
73
 
        private int _maxProgress;
74
 
        private int _tmpProgress;
 
71
        private boolean _started_progress;
 
72
        private int _max_progress;
 
73
        private int _tmp_progress;
75
74
        private int _progress;
76
 
        protected String _dialogMessage;
77
 
        private Dialog _mergePromptDialog;
78
 
        private boolean _mergePromptAlwaysSelected;
79
 
        private int _nextAction;
 
75
        protected String _dialog_message;
 
76
        private Dialog _merge_prompt_dialog;
 
77
        private boolean _merge_prompt_always_selected;
 
78
        private int _next_action;
 
79
        private int _current_dialog_id;
80
80
 
81
 
        private int _countOverwrites;
82
 
        private int _countCreates;
83
 
        private int _countMerges;
84
 
        private int _countSkips;
 
81
        private int _count_overwrites;
 
82
        private int _count_creates;
 
83
        private int _count_merges;
 
84
        private int _count_skips;
85
85
 
86
86
        protected Importer _importer = null;
87
87
 
93
93
                public void handleMessage( Message msg ) {
94
94
                        switch( msg.what )
95
95
                        {
96
 
                        case MESSAGE_FINISHED_ALLDONE:
 
96
                        case MESSAGE_ALLDONE:
97
97
                                ( (TextView)findViewById( R.id.doit_alldone ) ).
98
 
                                                setVisibility( View.VISIBLE );
99
 
                                // fall through
100
 
                        case MESSAGE_FINISHED:
 
98
                                        setVisibility( View.VISIBLE );
 
99
                                ( (Button)findViewById( R.id.back ) ).setEnabled( false );
101
100
                                updateNext( NEXT_CLOSE );
102
101
                                findViewById( R.id.doit_abort_disp ).setVisibility(
103
 
                                                View.GONE );
 
102
                                        View.GONE );
104
103
                                break;
105
 
                        case MESSAGE_FINISHED_GOBACK:
106
 
                                ( (Button)findViewById( R.id.back ) ).setEnabled( true );
107
 
                                findViewById( R.id.doit_abort_disp ).setVisibility(
108
 
                                                View.GONE );
 
104
                        case MESSAGE_ABORT:
 
105
                                manualAbort();
109
106
                                break;
110
107
                        case MESSAGE_ERROR:
111
 
                                Doit.this._dialogMessage = (String)msg.obj;
 
108
                                _dialog_message = (String)msg.obj;
112
109
                                showDialog( DIALOG_ERROR );
113
110
                                break;
114
111
                        case MESSAGE_CONTINUEORABORT:
115
 
                                Doit.this._dialogMessage = (String)msg.obj;
 
112
                                _dialog_message = (String)msg.obj;
116
113
                                showDialog( DIALOG_CONTINUEORABORT );
117
114
                                break;
118
115
                        case MESSAGE_SETPROGRESSMESSAGE:
119
116
                                ( (TextView)findViewById( R.id.doit_percentage ) ).
120
 
                                                setText( (String)msg.obj );
 
117
                                        setText( (String)msg.obj );
121
118
                                break;
122
119
                        case MESSAGE_SETMAXPROGRESS:
123
 
                                if( _maxProgress > 0 ) {
124
 
                                        if( _tmpProgress == _maxProgress - 1 )
125
 
                                                _tmpProgress = (Integer)msg.obj;
126
 
                                        if( _progress == _maxProgress - 1 )
 
120
                                if( _max_progress > 0 ) {
 
121
                                        if( _tmp_progress == _max_progress - 1 )
 
122
                                                _tmp_progress = (Integer)msg.obj;
 
123
                                        if( _progress == _max_progress - 1 )
127
124
                                                _progress = (Integer)msg.obj;
128
125
                                }
129
 
                                _maxProgress = (Integer)msg.obj;
 
126
                                _max_progress = (Integer)msg.obj;
130
127
                                updateProgress();
131
128
                                break;
132
129
                        case MESSAGE_SETTMPPROGRESS:
133
 
                                _tmpProgress = (Integer)msg.obj;
 
130
                                _tmp_progress = (Integer)msg.obj;
134
131
                                updateProgress();
135
132
                                break;
136
133
                        case MESSAGE_SETPROGRESS:
137
 
                                _startedProgress = true;
 
134
                                _started_progress = true;
138
135
                                _progress = (Integer)msg.obj;
139
136
                                updateProgress();
140
137
                                break;
141
138
                        case MESSAGE_MERGEPROMPT:
142
 
                                _dialogMessage = (String)msg.obj;
 
139
                                _dialog_message = (String)msg.obj;
143
140
                                showDialog( DIALOG_MERGEPROMPT );
144
141
                                break;
145
142
                        case MESSAGE_CONTACTOVERWRITTEN:
146
 
                                _countOverwrites++;
 
143
                                _count_overwrites++;
147
144
                                updateStats();
148
145
                                break;
149
146
                        case MESSAGE_CONTACTCREATED:
150
 
                                _countCreates++;
 
147
                                _count_creates++;
151
148
                                updateStats();
152
149
                                break;
153
150
                        case MESSAGE_CONTACTMERGED:
154
 
                                _countMerges++;
 
151
                                _count_merges++;
155
152
                                updateStats();
156
153
                                break;
157
154
                        case MESSAGE_CONTACTSKIPPED:
158
 
                                _countSkips++;
 
155
                                _count_skips++;
159
156
                                updateStats();
160
157
                                break;
161
158
                        default:
165
162
        }
166
163
 
167
164
        @Override
168
 
        protected void onCreate(Bundle savedInstanceState)
 
165
        protected void onCreate(Bundle saved_instance_state)
169
166
        {
170
167
                setContentView( R.layout.doit );
171
 
                super.onCreate( savedInstanceState );
 
168
                super.onCreate( saved_instance_state );
172
169
 
173
170
                // hide page 2
174
171
                ( findViewById( R.id.doit_page_2 ) ).setVisibility( View.GONE );
181
178
                        }
182
179
                } );
183
180
 
184
 
                _startedProgress = false;
185
 
                _maxProgress = 0;
186
 
                _tmpProgress = 0;
 
181
                _started_progress = false;
 
182
                _max_progress = 0;
 
183
                _tmp_progress = 0;
187
184
                _progress = 0;
188
185
                _handler = new DoitHandler();
189
186
 
190
 
                _countOverwrites = 0;
191
 
                _countCreates = 0;
192
 
                _countMerges = 0;
193
 
                _countSkips = 0;
 
187
                _count_overwrites = 0;
 
188
                _count_creates = 0;
 
189
                _count_merges = 0;
 
190
                _count_skips = 0;
194
191
 
195
192
                updateNext( NEXT_BEGIN );
196
193
 
204
201
                super.onPause();
205
202
 
206
203
                // saving the state of an import sounds complicated! Lets just abort!
207
 
                abortImport( true );
 
204
                if( _next_action != NEXT_CLOSE )
 
205
                        manualAbort( true );
208
206
        }
209
207
 
210
208
        @Override
211
 
        protected Dialog onCreateDialog(int id)
 
209
        protected Dialog onCreateDialog( int id )
212
210
        {
213
211
                switch( id )
214
212
                {
215
213
                case DIALOG_ERROR:
216
214
                        return new AlertDialog.Builder( this )
217
 
                                        .setIcon( R.drawable.alert_dialog_icon )
218
 
                                        .setTitle( R.string.error_title )
219
 
                                        .setMessage( "" )
220
 
                                        .setPositiveButton( R.string.error_ok,
221
 
                                                        new DialogInterface.OnClickListener() {
222
 
                                                public void onClick(DialogInterface dialog,
223
 
                                                                int whichButton) {
 
215
                                .setIcon( R.drawable.alert_dialog_icon )
 
216
                                .setTitle( R.string.error_title )
 
217
                                .setMessage( "" )
 
218
                                .setPositiveButton( R.string.error_ok,
 
219
                                        new DialogInterface.OnClickListener() {
 
220
                                                public void onClick( DialogInterface dialog,
 
221
                                                        int whichButton )
 
222
                                                {
224
223
                                                        Doit.this._importer.wake();
225
224
                                                }
226
225
                                        } )
227
 
                                        .setOnCancelListener( _dialogOnCancelListener )
228
 
                                        .create();
 
226
                                .setOnCancelListener( _dialog_on_cancel_listener )
 
227
                                .create();
229
228
                case DIALOG_CONTINUEORABORT:
230
229
                        return new AlertDialog.Builder( this )
231
 
                                        .setIcon( R.drawable.alert_dialog_icon )
232
 
                                        .setTitle( R.string.error_title )
233
 
                                        .setMessage( "" )
234
 
                                        .setPositiveButton( R.string.error_continue,
235
 
                                                        new DialogInterface.OnClickListener() {
236
 
                                                public void onClick(DialogInterface dialog,
237
 
                                                                int whichButton) {
238
 
                                                        Doit.this._importer.wake(
239
 
                                                                        Importer.RESPONSE_POSITIVE );
240
 
                                                }
241
 
                                        } )
242
 
                                        .setNegativeButton( R.string.error_abort,
243
 
                                                        new DialogInterface.OnClickListener() {
244
 
                                                public void onClick(DialogInterface dialog,
245
 
                                                                int whichButton) {
246
 
                                                        Doit.this._importer.wake(
247
 
                                                                        Importer.RESPONSE_NEGATIVE );
248
 
                                                }
249
 
                                        } )
250
 
                                        .setOnCancelListener( _dialogOnCancelListener )
251
 
                                        .create();
 
230
                                .setIcon( R.drawable.alert_dialog_icon )
 
231
                                .setTitle( R.string.error_title )
 
232
                                .setMessage( "" )
 
233
                                .setPositiveButton( R.string.error_continue,
 
234
                                        new DialogInterface.OnClickListener() {
 
235
                                                public void onClick( DialogInterface dialog,
 
236
                                                        int which_button )
 
237
                                                {
 
238
                                                        Doit.this._importer.wake(
 
239
                                                                Importer.RESPONSE_POSITIVE );
 
240
                                                }
 
241
                                        } )
 
242
                                .setNegativeButton( R.string.error_abort,
 
243
                                        new DialogInterface.OnClickListener() {
 
244
                                                public void onClick( DialogInterface dialog,
 
245
                                                        int which_button )
 
246
                                                {
 
247
                                                        Doit.this._importer.wake(
 
248
                                                                Importer.RESPONSE_NEGATIVE );
 
249
                                                }
 
250
                                        } )
 
251
                                .setOnCancelListener( _dialog_on_cancel_listener )
 
252
                                .create();
252
253
                case DIALOG_MERGEPROMPT:
253
254
                        // custom layout in an AlertDialog
254
255
                        LayoutInflater factory = LayoutInflater.from( this );
255
 
                        final View dialogView = factory.inflate(
256
 
                                        R.layout.mergeprompt, null );
257
 
                        ( (CheckBox)dialogView.findViewById( R.id.mergeprompt_always ) ).
258
 
                                        setOnCheckedChangeListener(
259
 
                                                        new CompoundButton.OnCheckedChangeListener() {
260
 
                                public void onCheckedChanged( CompoundButton buttonView,
261
 
                                                boolean isChecked ) {
262
 
                                        Doit.this._mergePromptAlwaysSelected = isChecked;
263
 
                                }
264
 
                        } );
265
 
                        ( (Button)dialogView.findViewById( R.id.merge_keep ) ).
266
 
                                        setOnClickListener( _mergePromptButtonListener );
267
 
                        ( (Button)dialogView.findViewById( R.id.merge_overwrite ) ).
268
 
                                        setOnClickListener( _mergePromptButtonListener );
269
 
                        ( (Button)dialogView.findViewById( R.id.merge_merge ) ).
270
 
                                        setOnClickListener( _mergePromptButtonListener );
271
 
                        ( (Button)dialogView.findViewById( R.id.abort ) ).
272
 
                                        setOnClickListener( _mergePromptButtonListener );
273
 
                        _mergePromptAlwaysSelected = false;
 
256
                        final View dialog_view = factory.inflate(
 
257
                                R.layout.mergeprompt, null );
 
258
                        ( (CheckBox)dialog_view.findViewById( R.id.mergeprompt_always ) ).
 
259
                                setOnCheckedChangeListener(
 
260
                                        new CompoundButton.OnCheckedChangeListener() {
 
261
                                                public void onCheckedChanged(
 
262
                                                        CompoundButton button_view, boolean is_checked )
 
263
                                                {
 
264
                                                        Doit.this._merge_prompt_always_selected =
 
265
                                                                is_checked;
 
266
                                                }
 
267
                                        } );
 
268
                        ( (Button)dialog_view.findViewById( R.id.merge_keep ) ).
 
269
                                setOnClickListener( _merge_prompt_button_listener );
 
270
                        ( (Button)dialog_view.findViewById( R.id.merge_overwrite ) ).
 
271
                                setOnClickListener( _merge_prompt_button_listener );
 
272
                        ( (Button)dialog_view.findViewById( R.id.merge_merge ) ).
 
273
                                setOnClickListener( _merge_prompt_button_listener );
 
274
                        ( (Button)dialog_view.findViewById( R.id.abort ) ).
 
275
                                setOnClickListener( _merge_prompt_button_listener );
 
276
                        _merge_prompt_always_selected = false;
274
277
                        return new AlertDialog.Builder( this )
275
 
                                        .setIcon( R.drawable.alert_dialog_icon )
276
 
                                        .setTitle( R.string.mergeprompt_title )
277
 
                                        .setView( dialogView )
278
 
                                        .setOnCancelListener( _dialogOnCancelListener )
279
 
                                        .create();
 
278
                                .setIcon( R.drawable.alert_dialog_icon )
 
279
                                .setTitle( R.string.mergeprompt_title )
 
280
                                .setView( dialog_view )
 
281
                                .setOnCancelListener( _dialog_on_cancel_listener )
 
282
                                .create();
280
283
                }
281
284
                return null;
282
285
        }
283
286
 
284
 
    private OnClickListener _mergePromptButtonListener = new OnClickListener() {
 
287
        private OnClickListener _merge_prompt_button_listener =
 
288
                new OnClickListener()
 
289
        {
285
290
                public void onClick( View view )
286
291
                {
287
292
                        // handle abort
288
293
                        if( view.getId() == R.id.abort )
289
294
                                manualAbort();
290
295
 
291
 
                        // else, response
292
 
                        else {
293
 
                                int responseExtra = _mergePromptAlwaysSelected?
294
 
                                                Importer.RESPONSEEXTRA_ALWAYS : Importer.RESPONSEEXTRA_NONE;
 
296
                        // else, response (just check we haven't aborted already!)
 
297
                        else if( Doit.this._importer != null ) {
 
298
                                int response_extra = _merge_prompt_always_selected?
 
299
                                        Importer.RESPONSEEXTRA_ALWAYS : Importer.RESPONSEEXTRA_NONE;
295
300
                                Doit.this._importer.wake( convertIdToAction( view.getId() ),
296
 
                                                responseExtra );
 
301
                                        response_extra );
297
302
                        }
298
303
 
299
304
                        // close dialog and free (don't keep a reference)
300
 
                        Doit.this._mergePromptDialog.dismiss();
301
 
                        Doit.this._mergePromptDialog = null;
 
305
                        Doit.this._merge_prompt_dialog.dismiss();
 
306
                        Doit.this._merge_prompt_dialog = null;
302
307
                }
303
308
        };
304
309
 
308
313
                Button next = (Button)findViewById( R.id.next );
309
314
                next.setEnabled( false );
310
315
 
311
 
                switch( _nextAction )
 
316
                switch( _next_action )
312
317
                {
313
318
                case NEXT_BEGIN:
314
319
                        importContacts();
315
320
                        break;
316
321
                case NEXT_CLOSE:
317
 
                        setResult( RESULT_CANCELED );
 
322
                        setResult( RESULT_OK );
318
323
                        finish();
319
324
                        break;
320
325
                }
322
327
 
323
328
        private void manualAbort()
324
329
        {
325
 
                abortImport( false );
 
330
                manualAbort( false );
 
331
        }
 
332
 
 
333
        private void manualAbort( boolean show_toaster_popup )
 
334
        {
 
335
                abortImport( show_toaster_popup );
 
336
 
326
337
                updateNext( NEXT_CLOSE );
327
338
                ( (Button)findViewById( R.id.back ) ).setEnabled( true );
328
339
                findViewById( R.id.doit_abort_disp ).setVisibility( View.GONE );
 
340
                ( (TextView)findViewById( R.id.doit_aborted ) ).
 
341
                        setVisibility( View.VISIBLE );
 
342
                ( (TextView)findViewById( R.id.doit_alldone ) ).
 
343
                        setVisibility( View.GONE );
 
344
 
 
345
                // close any open dialogs
 
346
                try {
 
347
                        dismissDialog( _current_dialog_id );
 
348
                }
 
349
                catch( Exception e ) {
 
350
                        // ignore errors
 
351
                }
329
352
        }
330
353
 
331
 
        private void updateNext( int nextAction )
 
354
        private void updateNext( int next_action )
332
355
        {
333
356
                Button next = (Button)findViewById( R.id.next );
334
 
                switch( nextAction ) {
 
357
                switch( next_action ) {
335
358
                case NEXT_BEGIN:        next.setText( R.string.doit_begin ); break;
336
359
                case NEXT_CLOSE:        next.setText( R.string.doit_close ); break;
337
360
                }
338
361
                next.setEnabled( true );
339
 
                _nextAction = nextAction;
 
362
                _next_action = next_action;
340
363
        }
341
364
 
342
365
        public static int convertIdToAction( int id ) {
357
380
                }
358
381
        }
359
382
 
360
 
        private DialogInterface.OnCancelListener _dialogOnCancelListener =
361
 
                        new DialogInterface.OnCancelListener() {
 
383
        private DialogInterface.OnCancelListener _dialog_on_cancel_listener =
 
384
                new DialogInterface.OnCancelListener()
 
385
        {
362
386
                public void onCancel( DialogInterface dialog ) {
363
 
                        setResult( RESULT_CANCELED );
364
 
                        finish();
 
387
                        manualAbort();
365
388
                }
366
389
        };
367
390
 
 
391
 
368
392
        @Override
369
 
        protected void onActivityResult( int requestCode, int resultCode,
370
 
                        Intent data )
 
393
        protected void onActivityResult( int request_code, int result_code,
 
394
                Intent data )
371
395
        {
372
396
                // if we're cancelling, abort any import
373
 
                if( resultCode == RESULT_CANCELED )
 
397
                if( result_code == RESULT_CANCELED )
374
398
                        abortImport( true );
375
399
        }
376
400
 
377
401
        @Override
378
 
        protected void onPrepareDialog(int id, Dialog dialog)
 
402
        protected void onPrepareDialog( int id, Dialog dialog )
379
403
        {
 
404
                _current_dialog_id = id;
 
405
 
380
406
                switch( id )
381
407
                {
382
408
                case DIALOG_ERROR:      // fall through
383
409
                case DIALOG_CONTINUEORABORT:
384
410
                        // set dialog message
385
 
                        ( (AlertDialog)dialog ).setMessage( _dialogMessage );
 
411
                        ( (AlertDialog)dialog ).setMessage( _dialog_message );
386
412
                        break;
387
413
                case DIALOG_MERGEPROMPT:
388
414
                        // set contact's name
389
 
                        ( (TextView)dialog.findViewById( R.id.mergeprompt_name ) ).setText(
390
 
                                        _dialogMessage );
 
415
                        ( (TextView)dialog.findViewById( R.id.mergeprompt_name ) )
 
416
                                .setText( _dialog_message );
391
417
                        // and set up reference to dialog
392
 
                        _mergePromptDialog = dialog;
 
418
                        _merge_prompt_dialog = dialog;
393
419
                        break;
394
420
                }
395
421
 
415
441
        private void updateProgress()
416
442
        {
417
443
                ProgressBar bar = (ProgressBar)findViewById( R.id.doit_progress );
418
 
                TextView outOf = (TextView)findViewById( R.id.doit_outof );
 
444
                TextView out_of = (TextView)findViewById( R.id.doit_outof );
419
445
 
420
 
                if( _maxProgress > 0 )
 
446
                if( _max_progress > 0 )
421
447
                {
422
 
                        bar.setMax( _maxProgress );
423
 
                        bar.setSecondaryProgress( _tmpProgress );
 
448
                        bar.setMax( _max_progress );
 
449
                        bar.setSecondaryProgress( _tmp_progress );
424
450
 
425
 
                        if( _startedProgress )
 
451
                        if( _started_progress )
426
452
                        {
427
453
                                ( (TextView)findViewById( R.id.doit_percentage ) ).setText(
428
 
                                                (int)Math.round( 100 * _progress / _maxProgress ) + "%" );
429
 
                                outOf.setText( _progress + "/" + _maxProgress );
 
454
                                        (int)Math.round( 100 * _progress / _max_progress ) + "%" );
 
455
                                out_of.setText( _progress + "/" + _max_progress );
430
456
                                bar.setProgress( _progress );
431
457
                        }
432
458
                }
435
461
        private void updateStats()
436
462
        {
437
463
                ( (TextView)findViewById( R.id.doit_overwrites ) ).setText(
438
 
                                "" + _countOverwrites );
 
464
                        "" + _count_overwrites );
439
465
                ( (TextView)findViewById( R.id.doit_creates ) ).setText(
440
 
                                "" + _countCreates );
 
466
                        "" + _count_creates );
441
467
                ( (TextView)findViewById( R.id.doit_merges ) ).setText(
442
 
                                "" + _countMerges );
 
468
                        "" + _count_merges );
443
469
                ( (TextView)findViewById( R.id.doit_skips ) ).setText(
444
 
                                "" + _countSkips );
 
470
                        "" + _count_skips );
445
471
        }
446
472
 
447
 
        private void abortImport( boolean showToasterPopup )
 
473
        private void abortImport( boolean show_toaster_popup )
448
474
        {
449
475
                if( _importer != null )
450
476
                {
461
487
                                }
462
488
 
463
489
                                // notify the user
464
 
                                if( showToasterPopup )
 
490
                                if( show_toaster_popup )
465
491
                                        Toast.makeText( this, R.string.doit_importaborted,
466
 
                                                        Toast.LENGTH_LONG ).show();
 
492
                                                Toast.LENGTH_LONG ).show();
467
493
                        }
468
494
                }
469
495