/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/Importer.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

1
 
package org.waxworlds.importcontacts;
 
1
/*
 
2
 * Importer.java
 
3
 *
 
4
 * Copyright (C) 2009 to 2011 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
package org.waxworlds.edam.importcontacts;
2
25
 
3
26
import java.util.HashMap;
4
 
import java.util.HashSet;
5
27
import java.util.Iterator;
6
28
import java.util.Set;
7
29
import java.util.regex.Matcher;
10
32
import android.content.ContentUris;
11
33
import android.content.ContentValues;
12
34
import android.content.SharedPreferences;
13
 
import android.database.Cursor;
14
35
import android.net.Uri;
15
36
import android.os.Message;
16
37
import android.provider.Contacts;
17
38
 
 
39
 
18
40
public class Importer extends Thread
19
41
{
20
 
        public final static int ACTION_GOBACK = 0;
21
42
        public final static int ACTION_ABORT = 1;
22
43
        public final static int ACTION_ALLDONE = 2;
23
44
 
29
50
 
30
51
        private Doit _doit;
31
52
        private int _response;
32
 
        private int _responseExtra;
33
 
        private HashMap< String, Long > _contacts;
34
 
        private HashMap< Long, HashSet< String > > _contactNumbers;
35
 
        private HashMap< Long, HashSet< String > > _contactEmails;
36
 
        private int _mergeSetting;
37
 
        private int _lastMergeDecision;
 
53
        private int _response_extra;
 
54
        private int _merge_setting;
 
55
        private int _last_merge_decision;
38
56
        private boolean _abort = false;
39
 
        private boolean _isFinished = false;
40
 
 
 
57
        private boolean _is_finished = false;
 
58
        private ContactsCache _contacts_cache = null;
 
59
 
 
60
        @SuppressWarnings("serial")
 
61
        protected class ContactNeedsMoreInfoException extends Exception
 
62
        {
 
63
        }
 
64
 
 
65
        /**
 
66
         * Data about a contact
 
67
         */
41
68
        public class ContactData
42
69
        {
43
 
                class PhoneData
44
 
                {
45
 
                        public String _number;
46
 
                        public int _type;
47
 
                        public boolean _isPreferred;
48
 
 
49
 
                        public PhoneData( String number, int type, boolean isPreferred ) {
50
 
                                _number = number;
51
 
                                _type = type;
52
 
                                _isPreferred = isPreferred;
53
 
                        }
54
 
 
55
 
                        public String getNumber() {
56
 
                                return _number;
57
 
                        }
58
 
 
59
 
                        public int getType() {
60
 
                                return _type;
61
 
                        }
62
 
 
63
 
                        public boolean isPreferred() {
64
 
                                return _isPreferred;
65
 
                        }
66
 
                }
67
 
 
68
 
                class EmailData
69
 
                {
70
 
                        private String _email;
71
 
                        public int _type;
72
 
                        private boolean _isPreferred;
73
 
 
74
 
                        public EmailData( String email, int type, boolean isPreferred ) {
75
 
                                _email = email;
76
 
                                _type = type;
77
 
                                _isPreferred = isPreferred;
78
 
                        }
79
 
 
80
 
                        public String getAddress() {
81
 
                                return _email;
82
 
                        }
83
 
 
84
 
                        public int getType() {
85
 
                                return _type;
86
 
                        }
87
 
 
88
 
                        public boolean isPreferred() {
89
 
                                return _isPreferred;
90
 
                        }
91
 
                }
92
 
 
93
 
                public String _name = null;
94
 
                public HashMap< String, PhoneData > _phones = null;
95
 
                public HashMap< String, EmailData > _emails = null;
 
70
                class TypeDetail
 
71
                {
 
72
                        protected int _type;
 
73
 
 
74
                        public TypeDetail( int type )
 
75
                        {
 
76
                                _type = type;
 
77
                        }
 
78
 
 
79
                        public int getType()
 
80
                        {
 
81
                                return _type;
 
82
                        }
 
83
                }
 
84
 
 
85
                class PreferredDetail extends TypeDetail
 
86
                {
 
87
                        protected boolean _is_preferred;
 
88
 
 
89
                        public PreferredDetail( int type, boolean is_preferred )
 
90
                        {
 
91
                                super( type );
 
92
                                _is_preferred = is_preferred;
 
93
                        }
 
94
 
 
95
                        public boolean isPreferred()
 
96
                        {
 
97
                                return _is_preferred;
 
98
                        }
 
99
                }
 
100
 
 
101
                class ExtraDetail extends PreferredDetail
 
102
                {
 
103
                        protected String _extra;
 
104
 
 
105
                        public ExtraDetail( int type, boolean is_preferred, String extra )
 
106
                        {
 
107
                                super( type, is_preferred );
 
108
 
 
109
                                if( extra != null ) extra = extra.trim();
 
110
                                _extra = extra;
 
111
                        }
 
112
 
 
113
                        public String getExtra()
 
114
                        {
 
115
                                return _extra;
 
116
                        }
 
117
 
 
118
                        public void setExtra( String extra )
 
119
                        {
 
120
                                if( extra != null ) extra = extra.trim();
 
121
                                _extra = extra;
 
122
                        }
 
123
                }
 
124
 
 
125
                protected String _name = null;
 
126
                protected String _primary_organisation = null;
 
127
                protected boolean _primary_organisation_is_preferred = false;
 
128
                protected String _primary_number = null;
 
129
                protected boolean _primary_number_is_preferred = false;
 
130
                protected String _primary_email = null;
 
131
                protected boolean _primary_email_is_preferred = false;
 
132
                protected HashMap< String, ExtraDetail > _organisations = null;
 
133
                protected HashMap< String, PreferredDetail > _numbers = null;
 
134
                protected HashMap< String, PreferredDetail > _emails = null;
 
135
                protected HashMap< String, TypeDetail > _addresses = null;
96
136
 
97
137
                protected void setName( String name )
98
138
                {
99
139
                        _name = name;
100
140
                }
101
141
 
 
142
                public boolean hasName()
 
143
                {
 
144
                        return _name != null;
 
145
                }
 
146
 
102
147
                public String getName()
103
148
                {
104
149
                        return _name;
105
150
                }
106
151
 
107
 
                protected void addPhone( String number, int type, boolean isPreferred )
108
 
                {
109
 
                        if( _phones == null ) _phones = new HashMap< String, PhoneData >();
110
 
                        if( !_phones.containsKey( number ) )
111
 
                                _phones.put( number,
112
 
                                                new PhoneData( number, type, isPreferred ) );
113
 
                }
114
 
 
115
 
                protected void addEmail( String email, int type, boolean isPreferred )
116
 
                {
117
 
                        if( _emails == null ) _emails = new HashMap< String, EmailData >();
 
152
                protected void addOrganisation( String organisation, String title,
 
153
                        boolean is_preferred )
 
154
                {
 
155
                        organisation = organisation.trim();
 
156
                        if( organisation.length() <= 0 )
 
157
                        {
 
158
                                // TODO: warn that an imported organisation is being ignored
 
159
                                return;
 
160
                        }
 
161
 
 
162
                        if( title != null ) {
 
163
                                title = title.trim();
 
164
                                if( title.length() <= 0 ) title = null;
 
165
                        }
 
166
 
 
167
                        // add the organisation, as non-preferred (we prefer only one
 
168
                        // organisation in finalise() after they're all imported)
 
169
                        if( _organisations == null )
 
170
                                _organisations = new HashMap< String, ExtraDetail >();
 
171
                        if( !_organisations.containsKey( organisation ) )
 
172
                                _organisations.put( organisation,
 
173
                                        new ExtraDetail( 0, false, title ) );
 
174
 
 
175
                        // if this is the first organisation added, or it's a preferred
 
176
                        // organisation and a previous organisation wasn't, then remember
 
177
                        // that this is the "primary organisation".
 
178
                        if( _primary_organisation == null ||
 
179
                                ( is_preferred && !_primary_organisation_is_preferred ) )
 
180
                        {
 
181
                                _primary_organisation = organisation;
 
182
                                _primary_organisation_is_preferred = is_preferred;
 
183
                        }
 
184
                }
 
185
 
 
186
                public boolean hasOrganisations()
 
187
                {
 
188
                        return _organisations != null && _organisations.size() > 0;
 
189
                }
 
190
 
 
191
                public HashMap< String, ExtraDetail > getOrganisations()
 
192
                {
 
193
                        return _organisations;
 
194
                }
 
195
 
 
196
                public boolean hasPrimaryOrganisation()
 
197
                {
 
198
                        return _primary_organisation != null;
 
199
                }
 
200
 
 
201
                public String getPrimaryOrganisation()
 
202
                {
 
203
                        return _primary_organisation;
 
204
                }
 
205
 
 
206
                protected void addNumber( String number, int type,
 
207
                        boolean is_preferred )
 
208
                {
 
209
                        number = sanitisePhoneNumber( number );
 
210
                        if( number == null )
 
211
                        {
 
212
                                // TODO: warn that an imported phone number is being ignored
 
213
                                return;
 
214
                        }
 
215
 
 
216
                        // add the number, as non-preferred (we prefer only one number
 
217
                        // in finalise() after they're all imported)
 
218
                        if( _numbers == null )
 
219
                                _numbers = new HashMap< String, PreferredDetail >();
 
220
                        if( !_numbers.containsKey( number ) )
 
221
                                _numbers.put( number,
 
222
                                        new PreferredDetail( type, false ) );
 
223
 
 
224
                        // if this is the first number added, or it's a preferred number
 
225
                        // and a previous number wasn't, then remember that this is the
 
226
                        // "primary number".
 
227
                        if( _primary_number == null ||
 
228
                                ( is_preferred && !_primary_number_is_preferred ) )
 
229
                        {
 
230
                                _primary_number = number;
 
231
                                _primary_number_is_preferred = is_preferred;
 
232
                        }
 
233
                }
 
234
 
 
235
                public boolean hasNumbers()
 
236
                {
 
237
                        return _numbers != null && _numbers.size() > 0;
 
238
                }
 
239
 
 
240
                public HashMap< String, PreferredDetail > getNumbers()
 
241
                {
 
242
                        return _numbers;
 
243
                }
 
244
 
 
245
                public boolean hasPrimaryNumber()
 
246
                {
 
247
                        return _primary_number != null;
 
248
                }
 
249
 
 
250
                public String getPrimaryNumber()
 
251
                {
 
252
                        return _primary_number;
 
253
                }
 
254
 
 
255
                protected void addEmail( String email, int type, boolean is_preferred )
 
256
                {
 
257
 
 
258
                        email = sanitisesEmailAddress( email );
 
259
                        if( email == null )
 
260
                        {
 
261
                                // TODO: warn that an imported email addtrss is being ignored
 
262
                                return;
 
263
                        }
 
264
 
 
265
                        // add the email, as non-preferred (we prefer only one email in
 
266
                        // finalise() after they're all imported)
 
267
                        if( _emails == null )
 
268
                                _emails = new HashMap< String, PreferredDetail >();
118
269
                        if( !_emails.containsKey( email ) )
119
 
                                _emails.put( email, new EmailData( email, type, isPreferred ) );
 
270
                                _emails.put( email, new PreferredDetail( type, false ) );
 
271
 
 
272
                        // if this is the first email added, or it's a preferred email
 
273
                        // and a previous email wasn't, then remember that this is the
 
274
                        // "primary email".
 
275
                        if( _primary_email == null ||
 
276
                                ( is_preferred && !_primary_email_is_preferred ) )
 
277
                        {
 
278
                                _primary_email = email;
 
279
                                _primary_email_is_preferred = is_preferred;
 
280
                        }
 
281
                }
 
282
 
 
283
                public boolean hasEmails()
 
284
                {
 
285
                        return _emails != null && _emails.size() > 0;
 
286
                }
 
287
 
 
288
                public HashMap< String, PreferredDetail > getEmails()
 
289
                {
 
290
                        return _emails;
 
291
                }
 
292
 
 
293
                public boolean hasPrimaryEmail()
 
294
                {
 
295
                        return _primary_email != null;
 
296
                }
 
297
 
 
298
                public String getPrimaryEmail()
 
299
                {
 
300
                        return _primary_email;
 
301
                }
 
302
 
 
303
                protected void addAddress( String address, int type )
 
304
                {
 
305
                        address = address.trim();
 
306
                        if( address.length() <= 0 )
 
307
                        {
 
308
                                // TODO: warn that an imported address is being ignored
 
309
                                return;
 
310
                        }
 
311
 
 
312
                        if( _addresses == null ) _addresses =
 
313
                                new HashMap< String, TypeDetail >();
 
314
                        if( !_addresses.containsKey( address ) )
 
315
                                _addresses.put( address, new TypeDetail( type ) );
 
316
                }
 
317
 
 
318
                public boolean hasAddresses()
 
319
                {
 
320
                        return _addresses != null && _addresses.size() > 0;
 
321
                }
 
322
 
 
323
                public HashMap< String, TypeDetail > getAddresses()
 
324
                {
 
325
                        return _addresses;
 
326
                }
 
327
 
 
328
                protected void finalise()
 
329
                {
 
330
                        // ensure that if there is a primary number, it is preferred so
 
331
                        // that there is always one preferred number. Android will assign
 
332
                        // preference to one anyway so we might as well decide one sensibly.
 
333
                        if( _primary_number != null ) {
 
334
                                PreferredDetail data = _numbers.get( _primary_number );
 
335
                                _numbers.put( _primary_number,
 
336
                                        new PreferredDetail( data.getType(), true ) );
 
337
                        }
 
338
 
 
339
                        // do the same for the primary email
 
340
                        if( _primary_email != null ) {
 
341
                                PreferredDetail data = _emails.get( _primary_email );
 
342
                                _emails.put( _primary_email,
 
343
                                        new PreferredDetail( data.getType(), true ) );
 
344
                        }
 
345
 
 
346
                        // do the same for the primary organisation
 
347
                        if( _primary_organisation != null ) {
 
348
                                ExtraDetail data = _organisations.get( _primary_organisation );
 
349
                                _organisations.put( _primary_organisation,
 
350
                                        new ExtraDetail( 0, true, data.getExtra() ) );
 
351
                        }
 
352
                }
 
353
 
 
354
                private String sanitisePhoneNumber( String number )
 
355
                {
 
356
                        number = number.trim();
 
357
                        Pattern p = Pattern.compile( "^[-\\(\\) \\+0-9#*]+" );
 
358
                        Matcher m = p.matcher( number );
 
359
                        if( m.lookingAt() ) return m.group( 0 );
 
360
                        return null;
 
361
                }
 
362
 
 
363
                private String sanitisesEmailAddress( String email )
 
364
                {
 
365
                        email = email.trim();
 
366
                        Pattern p = Pattern.compile(
 
367
                                "^[^ @]+@[a-zA-Z]([-a-zA-Z0-9]*[a-zA-z0-9])?(\\.[a-zA-Z]([-a-zA-Z0-9]*[a-zA-z0-9])?)+$" );
 
368
                        Matcher m = p.matcher( email );
 
369
                        if( m.matches() ) {
 
370
                                String[] bits = email.split( "@" );
 
371
                                return bits[ 0 ] + "@" + bits[ 1 ].toLowerCase();
 
372
                        }
 
373
                        return null;
120
374
                }
121
375
        }
122
376
 
 
377
        @SuppressWarnings("serial")
123
378
        protected class AbortImportException extends Exception { };
124
379
 
125
380
        public Importer( Doit doit )
127
382
                _doit = doit;
128
383
 
129
384
                SharedPreferences prefs = getSharedPreferences();
130
 
                _mergeSetting = prefs.getInt( "merge_setting", 0 );
 
385
                _merge_setting = prefs.getInt( "merge_setting", Doit.ACTION_PROMPT );
131
386
        }
132
387
 
133
388
        @Override
135
390
        {
136
391
                try
137
392
                {
138
 
                        // cache current contact names
139
 
                        buildContactsCache();
 
393
                        // update UI
 
394
                        setProgressMessage( R.string.doit_caching );
 
395
 
 
396
                        // build a cache of existing contacts
 
397
                        _contacts_cache = new ContactsCache();
 
398
                        _contacts_cache.buildCache( _doit );
140
399
 
141
400
                        // do the import
142
401
                        onImport();
153
412
 
154
413
        synchronized private void setIsFinished()
155
414
        {
156
 
                _isFinished = true;
 
415
                _is_finished = true;
157
416
        }
158
417
 
159
418
        protected void onImport() throws AbortImportException
170
429
                wake( response, RESPONSEEXTRA_NONE );
171
430
        }
172
431
 
173
 
        synchronized public void wake( int response, int responseExtra )
 
432
        synchronized public void wake( int response, int response_extra )
174
433
        {
175
434
                _response = response;
176
 
                _responseExtra = responseExtra;
 
435
                _response_extra = response_extra;
177
436
                notify();
178
437
        }
179
438
 
180
439
        synchronized public boolean setAbort()
181
440
        {
182
 
                if( !_isFinished && !_abort ) {
 
441
                if( !_is_finished && !_abort ) {
183
442
                        _abort = true;
184
443
                        notify();
185
444
                        return true;
202
461
        {
203
462
                checkAbort();
204
463
                _doit._handler.sendMessage( Message.obtain(
205
 
                                _doit._handler, Doit.MESSAGE_ERROR, message ) );
 
464
                        _doit._handler, Doit.MESSAGE_ERROR, message ) );
206
465
                try {
207
466
                        wait();
208
467
                }
209
468
                catch( InterruptedException e ) { }
 
469
 
210
470
                // no need to check if an abortion happened during the wait, we are
211
471
                // about to finish anyway!
212
472
                finish( ACTION_ABORT );
222
482
        {
223
483
                checkAbort();
224
484
                _doit._handler.sendMessage( Message.obtain(
225
 
                                _doit._handler, Doit.MESSAGE_ERROR, message ) );
 
485
                        _doit._handler, Doit.MESSAGE_ERROR, message ) );
226
486
                try {
227
487
                        wait();
228
488
                }
229
489
                catch( InterruptedException e ) { }
 
490
 
230
491
                // no need to check if an abortion happened during the wait, we are
231
492
                // about to finish anyway!
232
493
                finish( ACTION_ABORT );
242
503
        {
243
504
                checkAbort();
244
505
                _doit._handler.sendMessage( Message.obtain(
245
 
                                _doit._handler, Doit.MESSAGE_CONTINUEORABORT, message ) );
 
506
                        _doit._handler, Doit.MESSAGE_CONTINUEORABORT, message ) );
246
507
                try {
247
508
                        wait();
248
509
                }
258
519
        {
259
520
                checkAbort();
260
521
                _doit._handler.sendMessage( Message.obtain( _doit._handler,
261
 
                                Doit.MESSAGE_SETPROGRESSMESSAGE, getText( res ) ) );
 
522
                        Doit.MESSAGE_SETPROGRESSMESSAGE, getText( res ) ) );
262
523
        }
263
524
 
264
 
        protected void setProgressMax( int maxProgress )
 
525
        protected void setProgressMax( int max_progress )
265
526
                        throws AbortImportException
266
527
        {
267
528
                checkAbort();
268
529
                _doit._handler.sendMessage( Message.obtain(
269
 
                                _doit._handler, Doit.MESSAGE_SETMAXPROGRESS,
270
 
                                new Integer( maxProgress ) ) );
 
530
                        _doit._handler, Doit.MESSAGE_SETMAXPROGRESS,
 
531
                        new Integer( max_progress ) ) );
271
532
        }
272
533
 
273
 
        protected void setTmpProgress( int tmpProgress ) throws AbortImportException
 
534
        protected void setTmpProgress( int tmp_progress )
 
535
                throws AbortImportException
274
536
        {
275
537
                checkAbort();
276
538
                _doit._handler.sendMessage( Message.obtain(
277
 
                                _doit._handler, Doit.MESSAGE_SETTMPPROGRESS,
278
 
                                new Integer( tmpProgress ) ) );
 
539
                        _doit._handler, Doit.MESSAGE_SETTMPPROGRESS,
 
540
                        new Integer( tmp_progress ) ) );
279
541
        }
280
542
 
281
543
        protected void setProgress( int progress ) throws AbortImportException
282
544
        {
283
545
                checkAbort();
284
546
                _doit._handler.sendMessage( Message.obtain(
285
 
                                _doit._handler, Doit.MESSAGE_SETPROGRESS,
286
 
                                new Integer( progress ) ) );
 
547
                        _doit._handler, Doit.MESSAGE_SETPROGRESS,
 
548
                        new Integer( progress ) ) );
287
549
        }
288
550
 
289
551
        protected void finish( int action ) throws AbortImportException
292
554
                int message;
293
555
                switch( action )
294
556
                {
295
 
                case ACTION_GOBACK:             message = Doit.MESSAGE_FINISHED_GOBACK; break;
296
 
                case ACTION_ALLDONE:    message = Doit.MESSAGE_FINISHED_ALLDONE; break;
 
557
                case ACTION_ALLDONE:    message = Doit.MESSAGE_ALLDONE; break;
297
558
                default:        // fall through
298
 
                case ACTION_ABORT:              message = Doit.MESSAGE_FINISHED; break;
 
559
                case ACTION_ABORT:              message = Doit.MESSAGE_ABORT; break;
299
560
                }
300
561
                _doit._handler.sendEmptyMessage( message );
301
562
 
308
569
                return _doit.getText( res );
309
570
        }
310
571
 
311
 
        protected boolean isImportRequired( String name )
312
 
                        throws AbortImportException
 
572
        protected boolean isImportRequired( ContactData contact )
 
573
                        throws AbortImportException, ContactNeedsMoreInfoException
313
574
        {
314
575
                checkAbort();
315
 
                return isImportRequired( name, _mergeSetting );
 
576
                return isImportRequired( contact, _merge_setting );
316
577
        }
317
578
 
318
 
        synchronized private boolean isImportRequired( String name,
319
 
                        int mergeSetting ) throws AbortImportException
 
579
        synchronized private boolean isImportRequired(
 
580
                ContactData contact, int merge_setting )
 
581
                throws AbortImportException, ContactNeedsMoreInfoException
320
582
        {
321
 
                _lastMergeDecision = mergeSetting;
 
583
                _last_merge_decision = merge_setting;
 
584
 
 
585
                // create a cache identifier which we can use to detect if this contact
 
586
                // is valid for importing
 
587
                ContactsCache.CacheIdentifier identifier =
 
588
                        ContactsCache.createIdentifier( contact );
 
589
                if( identifier == null )
 
590
                        throw new ContactNeedsMoreInfoException();
322
591
 
323
592
                // handle special cases
324
 
                switch( mergeSetting )
 
593
                switch( merge_setting )
325
594
                {
326
 
                case R.id.merge_keep:
 
595
                case Doit.ACTION_KEEP:
327
596
                        // if we keep contacts on duplicate, we better check for one
328
 
                        return !_contacts.containsKey( name );
 
597
                        return !_contacts_cache.canLookup( identifier );
329
598
 
330
 
                case R.id.merge_prompt:
331
 
                        // if we are prompting on duplicate, we better check for one
332
 
                        if( !_contacts.containsKey( name ) )
 
599
                case Doit.ACTION_PROMPT:
 
600
                        // if we are prompting on duplicate, we better check for one and if
 
601
                        // the contact doesn'te exist, we want to import it
 
602
                        if( !_contacts_cache.canLookup( identifier ) )
333
603
                                return true;
334
604
 
335
605
                        // ok, it exists, so do prompt
336
 
                        _doit._handler.sendMessage( Message.obtain(
337
 
                                        _doit._handler, Doit.MESSAGE_MERGEPROMPT, name ) );
 
606
                        _doit._handler.sendMessage( Message.obtain( _doit._handler,
 
607
                                Doit.MESSAGE_MERGEPROMPT, identifier.getDetail() ) );
338
608
                        try {
339
609
                                wait();
340
610
                        }
343
613
                        // check if an abortion happened during the wait
344
614
                        checkAbort();
345
615
 
346
 
                        // if "always" was selected, make choice permenant
347
 
                        if( _responseExtra == RESPONSEEXTRA_ALWAYS )
348
 
                                _mergeSetting = _response;
 
616
                        // if "always" was selected, make choice permanent
 
617
                        if( _response_extra == RESPONSEEXTRA_ALWAYS )
 
618
                                _merge_setting = _response;
349
619
 
350
 
                        // recurse, with out new merge setting
351
 
                        return isImportRequired( name, _response );
 
620
                        // recurse, with our new merge setting
 
621
                        return isImportRequired( contact, _response );
352
622
                }
353
623
 
354
624
                // for all other cases (either overwriting or merging) we will need the
371
641
//                      finish( ACTION_ABORT );
372
642
 
373
643
                ContentValues values = new ContentValues();
374
 
                boolean uiInformed = false;
 
644
                boolean ui_informed = false;
 
645
                Long id = null;
 
646
 
 
647
                // give the contact a chance to finalise it's data
 
648
                contact.finalise();
 
649
 
 
650
                // create something, from the contact data, that we can use to identify
 
651
                // a cache entry and attempt to lookup the id of an existing contact in
 
652
                // the cache with it
 
653
                ContactsCache.CacheIdentifier identifier =
 
654
                        ContactsCache.createIdentifier( contact );
 
655
                if( identifier != null ) id = (Long)_contacts_cache.lookup( identifier );
375
656
 
376
657
                // does contact exist already?
377
 
                Uri contactUri = null;
378
 
                Long id;
379
 
                if( ( id = (Long)_contacts.get( contact._name ) ) != null )
 
658
                if( id != null )
380
659
                {
381
660
                        // should we skip this import altogether?
382
 
                        if( _lastMergeDecision == R.id.merge_keep ) return;
 
661
                        if( _last_merge_decision == Doit.ACTION_KEEP ) return;
383
662
 
384
663
                        // get contact's URI
385
 
                        contactUri = ContentUris.withAppendedId(
386
 
                                        Contacts.People.CONTENT_URI, id );
 
664
                        Uri contact_uri = ContentUris.withAppendedId(
 
665
                                Contacts.People.CONTENT_URI, id );
387
666
 
388
667
                        // should we destroy the existing contact before importing?
389
 
                        if( _lastMergeDecision == R.id.merge_overwrite ) {
390
 
                                _doit.getContentResolver().delete( contactUri, null, null );
391
 
                                contactUri = null;
392
 
 
393
 
                                // upate the UI
394
 
                                _doit._handler.sendEmptyMessage( Doit.MESSAGE_CONTACTOVERWRITTEN );
395
 
                                uiInformed = true;
 
668
                        if( _last_merge_decision == Doit.ACTION_OVERWRITE )
 
669
                        {
 
670
                                // remove from device
 
671
                                _doit.getContentResolver().delete( contact_uri, null, null );
396
672
 
397
673
                                // update cache
398
 
                                _contacts.remove( contact._name );
 
674
                                _contacts_cache.removeLookup( identifier );
 
675
                                _contacts_cache.removeAssociatedData( id );
 
676
 
 
677
                                // show that we're overwriting a contact
 
678
                                _doit._handler.sendEmptyMessage(
 
679
                                                Doit.MESSAGE_CONTACTOVERWRITTEN );
 
680
                                ui_informed = true;
 
681
 
 
682
                                // discard the contact id
 
683
                                id = null;
399
684
                        }
400
685
                }
401
686
 
402
 
                // if we don't have a contact URI it is because the contact never
403
 
                // existed or because we deleted it
404
 
                if( contactUri == null )
 
687
                // if we don't have a contact id yet (or if we did, but we destroyed it
 
688
                // when we deleted the contact), we'll have to create a new contact
 
689
                if( id == null )
405
690
                {
406
691
                        // create a new contact
407
692
                        values.put( Contacts.People.NAME, contact._name );
408
 
                        contactUri = _doit.getContentResolver().insert(
409
 
                                        Contacts.People.CONTENT_URI, values );
410
 
                        id = ContentUris.parseId( contactUri );
411
 
                        if( id <= 0 ) return;   // shouldn't happen!
 
693
                        Uri contact_uri = _doit.getContentResolver().insert(
 
694
                                Contacts.People.CONTENT_URI, values );
 
695
                        id = ContentUris.parseId( contact_uri );
 
696
                        if( id == null || id <= 0 )
 
697
                                showError( R.string.error_unabletoaddcontact );
412
698
 
413
 
                        // add them to the "My Contacts" group
414
 
                        Contacts.People.addToGroup(
415
 
                                        _doit.getContentResolver(), id,
416
 
                                        Contacts.Groups.GROUP_MY_CONTACTS );
 
699
                        // try to add them to the "My Contacts" group
 
700
                        try {
 
701
                                Contacts.People.addToMyContactsGroup(
 
702
                                        _doit.getContentResolver(), id );
 
703
                        }
 
704
                        catch( IllegalStateException e ) {
 
705
                                // ignore any failure
 
706
                        }
417
707
 
418
708
                        // update cache
419
 
                        _contacts.put( contact._name, id );
 
709
                        _contacts_cache.addLookup(
 
710
                                ContactsCache.createIdentifier( contact ), id );
420
711
 
421
 
                        // update UI
422
 
                        if( !uiInformed ) {
 
712
                        // if we haven't already shown that we're overwriting a contact,
 
713
                        // show that we're creating a new contact
 
714
                        if( !ui_informed ) {
423
715
                                _doit._handler.sendEmptyMessage( Doit.MESSAGE_CONTACTCREATED );
424
 
                                uiInformed = true;
 
716
                                ui_informed = true;
425
717
                        }
426
718
                }
427
719
 
428
 
                // update UI
429
 
                if( !uiInformed )
 
720
                // if we haven't already shown that we're overwriting or creating a
 
721
                // contact show that we're merging a contact
 
722
                if( !ui_informed )
430
723
                        _doit._handler.sendEmptyMessage( Doit.MESSAGE_CONTACTMERGED );
431
724
 
432
725
                // import contact parts
433
 
                if( contact._phones != null )
434
 
                        importContactPhones( contactUri, contact._phones );
435
 
                if( contact._emails != null )
436
 
                        importContactEmails( contactUri, contact._emails );
 
726
                if( contact.hasNumbers() )
 
727
                        importContactPhones( id, contact.getNumbers() );
 
728
                if( contact.hasEmails() )
 
729
                        importContactEmails( id, contact.getEmails() );
 
730
                if( contact.hasAddresses() )
 
731
                        importContactAddresses( id, contact.getAddresses() );
 
732
                if( contact.hasOrganisations() )
 
733
                        importContactOrganisations( id, contact.getOrganisations() );
437
734
        }
438
735
 
439
 
        private void importContactPhones( Uri contactUri,
440
 
                        HashMap< String, ContactData.PhoneData > phones )
 
736
        private void importContactPhones( Long id,
 
737
                        HashMap< String, ContactData.PreferredDetail > datas )
441
738
        {
442
 
                Long contactId = ContentUris.parseId( contactUri );
443
 
                Uri contactPhonesUri = Uri.withAppendedPath( contactUri,
444
 
                                Contacts.People.Phones.CONTENT_DIRECTORY );
 
739
                // get URI to contact's phones
 
740
                Uri contact_phones_uri = Uri.withAppendedPath(
 
741
                        ContentUris.withAppendedId( Contacts.People.CONTENT_URI, id ),
 
742
                        Contacts.People.Phones.CONTENT_DIRECTORY );
 
743
                Set< String > datas_keys = datas.keySet();
445
744
 
446
745
                // add phone numbers
447
 
                Set phonesKeys = phones.keySet();
448
 
                Iterator i = phonesKeys.iterator();
 
746
                Iterator< String > i = datas_keys.iterator();
449
747
                while( i.hasNext() ) {
450
 
                        ContactData.PhoneData phone = phones.get( i.next() );
 
748
                        String number = i.next();
 
749
                        ContactData.PreferredDetail data = datas.get( number );
451
750
 
452
751
                        // we don't want to add this number if it's crap, or it already
453
752
                        // exists (which would cause a duplicate to be created). We don't
456
755
                        // if the number exists at all, it doesn't need importing. Because
457
756
                        // of this, we also can't update the cache (which we don't need to
458
757
                        // anyway, so it's not a problem).
459
 
                        String number = sanitisePhoneNumber( phone._number );
460
 
                        if( number == null ) continue;
461
 
                        HashSet< String > numbers = _contactNumbers.get( contactId );
462
 
                        if( numbers != null && numbers.contains( number ) ) continue;
 
758
                        if( _contacts_cache.hasAssociatedNumber( id, number ) )
 
759
                                continue;
463
760
 
464
761
                        // add phone number
465
762
                        ContentValues values = new ContentValues();
466
 
                        values.put( Contacts.Phones.TYPE, phone._type );
467
 
                        values.put( Contacts.Phones.NUMBER, phone._number );
468
 
                        if( phone._isPreferred ) values.put( Contacts.Phones.ISPRIMARY, 1 );
469
 
                        _doit.getContentResolver().insert( contactPhonesUri, values );
 
763
                        values.put( Contacts.Phones.TYPE, data.getType() );
 
764
                        values.put( Contacts.Phones.NUMBER, number );
 
765
                        if( data.isPreferred() )
 
766
                                values.put( Contacts.Phones.ISPRIMARY, 1 );
 
767
                        _doit.getContentResolver().insert( contact_phones_uri, values );
 
768
 
 
769
                        // and add this address to the cache to prevent a addition of
 
770
                        // duplicate date from another file
 
771
                        _contacts_cache.addAssociatedNumber( id, number );
470
772
                }
471
773
        }
472
774
 
473
 
        private void importContactEmails( Uri contactUri,
474
 
                        HashMap< String, ContactData.EmailData > emails )
 
775
        private void importContactEmails( Long id,
 
776
                        HashMap< String, ContactData.PreferredDetail > datas )
475
777
        {
476
 
                Long contactId = ContentUris.parseId( contactUri );
477
 
                Uri contactContactMethodsUri = Uri.withAppendedPath( contactUri,
478
 
                                Contacts.People.ContactMethods.CONTENT_DIRECTORY );
 
778
                // get URI to contact's contact methods
 
779
                Uri contact_contact_methods_uri = Uri.withAppendedPath(
 
780
                        ContentUris.withAppendedId( Contacts.People.CONTENT_URI, id ),
 
781
                        Contacts.People.ContactMethods.CONTENT_DIRECTORY );
 
782
                Set< String > datas_keys = datas.keySet();
479
783
 
480
 
                // add phone numbers
481
 
                Set emailsKeys = emails.keySet();
482
 
                Iterator i = emailsKeys.iterator();
 
784
                // add email addresses
 
785
                Iterator< String > i = datas_keys.iterator();
483
786
                while( i.hasNext() ) {
484
 
                        ContactData.EmailData email = emails.get( i.next() );
 
787
                        String email = i.next();
 
788
                        ContactData.PreferredDetail data = datas.get( email );
485
789
 
486
 
                        // like with phone numbers, we don't want to add this email address
487
 
                        // if it exists already or we would introduce duplicates.
488
 
                        String address = sanitiseEmailAddress( email.getAddress() );
489
 
                        if( address == null ) continue;
490
 
                        HashSet< String > addresses = _contactEmails.get( contactId );
491
 
                        if( addresses != null && addresses.contains( address ) ) continue;
 
790
                        // we don't want to add this email address if it exists already or
 
791
                        // we would introduce duplicates.
 
792
                        if( _contacts_cache.hasAssociatedEmail( id, email ) )
 
793
                                continue;
492
794
 
493
795
                        // add phone number
494
796
                        ContentValues values = new ContentValues();
495
797
                        values.put( Contacts.ContactMethods.KIND, Contacts.KIND_EMAIL );
496
 
                        values.put( Contacts.ContactMethods.DATA, email.getAddress() );
497
 
                        values.put( Contacts.ContactMethods.TYPE, email.getType() );
498
 
                        if( email.isPreferred() )
 
798
                        values.put( Contacts.ContactMethods.DATA, email );
 
799
                        values.put( Contacts.ContactMethods.TYPE, data.getType() );
 
800
                        if( data.isPreferred() )
499
801
                                values.put( Contacts.ContactMethods.ISPRIMARY, 1 );
500
 
                        _doit.getContentResolver().insert( contactContactMethodsUri,
501
 
                                        values );
 
802
                        _doit.getContentResolver().insert( contact_contact_methods_uri,
 
803
                                values );
 
804
 
 
805
                        // and add this address to the cache to prevent a addition of
 
806
                        // duplicate date from another file
 
807
                        _contacts_cache.addAssociatedEmail( id, email );
 
808
                }
 
809
        }
 
810
 
 
811
        private void importContactAddresses( Long id,
 
812
                HashMap< String, ContactData.TypeDetail > datas )
 
813
        {
 
814
                // get URI to contact's contact methods
 
815
                Uri contact_contact_methods_uri = Uri.withAppendedPath(
 
816
                        ContentUris.withAppendedId( Contacts.People.CONTENT_URI, id ),
 
817
                        Contacts.People.ContactMethods.CONTENT_DIRECTORY );
 
818
 
 
819
                // add addresses
 
820
                Set< String > datas_keys = datas.keySet();
 
821
                Iterator< String > i = datas_keys.iterator();
 
822
                while( i.hasNext() ) {
 
823
                        String address = i.next();
 
824
                        ContactData.TypeDetail data = datas.get( address );
 
825
 
 
826
                        // we don't want to add this address if it exists already or we
 
827
                        // would introduce duplicates
 
828
                        if( _contacts_cache.hasAssociatedAddress( id, address ) )
 
829
                                continue;
 
830
 
 
831
                        // add postal address
 
832
                        ContentValues values = new ContentValues();
 
833
                        values.put( Contacts.ContactMethods.KIND, Contacts.KIND_POSTAL );
 
834
                        values.put( Contacts.ContactMethods.DATA, address );
 
835
                        values.put( Contacts.ContactMethods.TYPE, data.getType() );
 
836
                        _doit.getContentResolver().insert( contact_contact_methods_uri,
 
837
                                values );
 
838
 
 
839
                        // and add this address to the cache to prevent a addition of
 
840
                        // duplicate date from another file
 
841
                        _contacts_cache.addAssociatedAddress( id, address );
 
842
                }
 
843
        }
 
844
 
 
845
        private void importContactOrganisations( Long id,
 
846
                HashMap< String, ContactData.ExtraDetail > datas )
 
847
        {
 
848
                // add addresses
 
849
                Set< String > datas_keys = datas.keySet();
 
850
                Iterator< String > i = datas_keys.iterator();
 
851
                while( i.hasNext() ) {
 
852
                        String organisation = i.next();
 
853
                        ContactData.ExtraDetail data = datas.get( organisation );
 
854
 
 
855
                        // we don't want to add this address if it exists already or we
 
856
                        // would introduce duplicates
 
857
                        if( _contacts_cache.hasAssociatedOrganisation( id, organisation ) )
 
858
                                continue;
 
859
 
 
860
                        // add organisation address
 
861
                        ContentValues values = new ContentValues();
 
862
                        values.put( Contacts.Organizations.PERSON_ID, id );
 
863
                        values.put( Contacts.Organizations.COMPANY, organisation );
 
864
                        values.put( Contacts.ContactMethods.TYPE,
 
865
                                Contacts.OrganizationColumns.TYPE_WORK );
 
866
                        if( data.getExtra() != null )
 
867
                                values.put( Contacts.Organizations.TITLE, data.getExtra() );
 
868
                        _doit.getContentResolver().insert(
 
869
                                Contacts.Organizations.CONTENT_URI, values );
 
870
 
 
871
                        // and add this address to the cache to prevent a addition of
 
872
                        // duplicate date from another file
 
873
                        _contacts_cache.addAssociatedOrganisation( id, organisation );
502
874
                }
503
875
        }
504
876
 
509
881
                        throw new AbortImportException();
510
882
                }
511
883
        }
512
 
 
513
 
        private void buildContactsCache() throws AbortImportException
514
 
        {
515
 
                // update UI
516
 
                setProgressMessage( R.string.doit_caching );
517
 
 
518
 
                String[] cols;
519
 
                Cursor cur;
520
 
 
521
 
                // init contacts caches
522
 
                _contacts = new HashMap< String, Long >();
523
 
                _contactNumbers = new HashMap< Long, HashSet< String > >();
524
 
                _contactEmails = new HashMap< Long, HashSet< String > >();
525
 
 
526
 
                // query and store map of contact names to ids
527
 
                cols = new String[] { Contacts.People._ID, Contacts.People.NAME };
528
 
                cur = _doit.managedQuery( Contacts.People.CONTENT_URI,
529
 
                                cols, null, null, null);
530
 
                if( cur.moveToFirst() ) {
531
 
                        int idCol = cur.getColumnIndex( Contacts.People._ID );
532
 
                        int nameCol = cur.getColumnIndex( Contacts.People.NAME );
533
 
                        do {
534
 
                                _contacts.put( cur.getString( nameCol ), cur.getLong( idCol ) );
535
 
                        } while( cur.moveToNext() );
536
 
                }
537
 
 
538
 
                // query and store map of contact ids to sets of phone numbers
539
 
                cols = new String[] { Contacts.Phones.PERSON_ID,
540
 
                                Contacts.Phones.NUMBER };
541
 
                cur = _doit.managedQuery( Contacts.Phones.CONTENT_URI,
542
 
                                cols, null, null, null);
543
 
                if( cur.moveToFirst() ) {
544
 
                        int personIdCol = cur.getColumnIndex( Contacts.Phones.PERSON_ID );
545
 
                        int numberCol = cur.getColumnIndex( Contacts.Phones.NUMBER );
546
 
                        do {
547
 
                                Long id = cur.getLong( personIdCol );
548
 
                                String number = sanitisePhoneNumber(
549
 
                                                cur.getString( numberCol ) );
550
 
                                if( number != null ) {
551
 
                                        HashSet< String > numbers = _contactNumbers.get( id );
552
 
                                        if( numbers == null ) {
553
 
                                                _contactNumbers.put( id, new HashSet< String >() );
554
 
                                                numbers = _contactNumbers.get( id );
555
 
                                        }
556
 
                                        numbers.add( number );
557
 
                                }
558
 
                        } while( cur.moveToNext() );
559
 
                }
560
 
 
561
 
                // query and store map of contact ids to sets of email addresses
562
 
                cols = new String[] { Contacts.ContactMethods.PERSON_ID,
563
 
                                Contacts.ContactMethods.DATA };
564
 
                cur = _doit.managedQuery( Contacts.ContactMethods.CONTENT_URI,
565
 
                                cols, Contacts.ContactMethods.KIND + " = ?",
566
 
                                new String[] { "" + Contacts.KIND_EMAIL }, null );
567
 
                if( cur.moveToFirst() ) {
568
 
                        int personIdCol = cur.getColumnIndex(
569
 
                                        Contacts.ContactMethods.PERSON_ID );
570
 
                        int addressCol = cur.getColumnIndex(
571
 
                                        Contacts.ContactMethods.DATA );
572
 
                        do {
573
 
                                Long id = cur.getLong( personIdCol );
574
 
                                String address = sanitiseEmailAddress(
575
 
                                                cur.getString( addressCol ) );
576
 
                                if( address != null ) {
577
 
                                        HashSet< String > addresses = _contactEmails.get( id );
578
 
                                        if( addresses == null ) {
579
 
                                                _contactEmails.put( id, new HashSet< String >() );
580
 
                                                addresses = _contactEmails.get( id );
581
 
                                        }
582
 
                                        addresses.add( address );
583
 
                                }
584
 
                        } while( cur.moveToNext() );
585
 
                }
586
 
        }
587
 
 
588
 
        private String sanitisePhoneNumber( String number )
589
 
        {
590
 
                number = number.replaceAll( "[-\\(\\) ]", "" );
591
 
                Pattern p = Pattern.compile( "^\\+?[0-9]+" );
592
 
                Matcher m = p.matcher( number );
593
 
                if( m.lookingAt() ) return m.group( 0 );
594
 
                return null;
595
 
        }
596
 
 
597
 
        private String sanitiseEmailAddress( String address )
598
 
        {
599
 
                address = address.trim();
600
 
                Pattern p = Pattern.compile(
601
 
                                "^[^ @]+@[a-zA-Z]([-a-zA-Z0-9]*[a-zA-z0-9])?(\\.[a-zA-Z]([-a-zA-Z0-9]*[a-zA-z0-9])?)+$" );
602
 
                Matcher m = p.matcher( address );
603
 
                if( m.matches() ) {
604
 
                        String[] bits = address.split( "@" );
605
 
                        return bits[ 0 ] + "@" + bits[ 1 ].toLowerCase();
606
 
                }
607
 
                return null;
608
 
        }
609
884
}