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

  • Committer: edam
  • Date: 2009-02-02 07:07:52 UTC
  • Revision ID: edam@waxworlds.org-20090202070752-2lp8igdsdjyu9fic
- bugfix: add contacts to the "my contacts" group didn't actually work on a real device. So we're doing it a different way.
- updated todo list

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.edam.importcontacts;
 
24
package org.waxworlds.importcontacts;
25
25
 
26
26
import java.util.HashMap;
 
27
import java.util.HashSet;
27
28
import java.util.Iterator;
28
29
import java.util.Set;
29
30
import java.util.regex.Matcher;
32
33
import android.content.ContentUris;
33
34
import android.content.ContentValues;
34
35
import android.content.SharedPreferences;
 
36
import android.database.Cursor;
35
37
import android.net.Uri;
36
38
import android.os.Message;
37
39
import android.provider.Contacts;
38
40
 
39
 
 
40
41
public class Importer extends Thread
41
42
{
 
43
        public final static int ACTION_GOBACK = 0;
42
44
        public final static int ACTION_ABORT = 1;
43
45
        public final static int ACTION_ALLDONE = 2;
44
46
 
51
53
        private Doit _doit;
52
54
        private int _response;
53
55
        private int _responseExtra;
 
56
        private HashMap< String, Long > _contacts;
 
57
        private HashMap< Long, HashSet< String > > _contactNumbers;
 
58
        private HashMap< Long, HashSet< String > > _contactEmails;
54
59
        private int _mergeSetting;
55
60
        private int _lastMergeDecision;
56
61
        private boolean _abort = false;
57
62
        private boolean _isFinished = false;
58
 
        private ContactsCache _contactsCache = null;
59
63
 
60
64
        public class ContactData
61
65
        {
109
113
                        }
110
114
                }
111
115
 
112
 
                class AddressData
113
 
                {
114
 
                        private String _address;
115
 
                        public int _type;
116
 
 
117
 
                        public AddressData( String address, int type ) {
118
 
                                _address = address;
119
 
                                _type = type;
120
 
                        }
121
 
 
122
 
                        public String getAddress() {
123
 
                                return _address;
124
 
                        }
125
 
 
126
 
                        public int getType() {
127
 
                                return _type;
128
 
                        }
129
 
                }
130
 
 
131
116
                public String _name = null;
132
117
                public HashMap< String, PhoneData > _phones = null;
133
118
                public HashMap< String, EmailData > _emails = null;
134
 
                public HashMap< String, AddressData > _addresses = null;
135
119
 
136
120
                protected void setName( String name )
137
121
                {
148
132
                        if( _phones == null ) _phones = new HashMap< String, PhoneData >();
149
133
                        if( !_phones.containsKey( number ) )
150
134
                                _phones.put( number,
151
 
                                        new PhoneData( number, type, isPreferred ) );
 
135
                                                new PhoneData( number, type, isPreferred ) );
152
136
                }
153
137
 
154
138
                protected void addEmail( String email, int type, boolean isPreferred )
157
141
                        if( !_emails.containsKey( email ) )
158
142
                                _emails.put( email, new EmailData( email, type, isPreferred ) );
159
143
                }
160
 
 
161
 
                protected void addAddress( String address, int type )
162
 
                {
163
 
                        if( _addresses == null ) _addresses =
164
 
                                new HashMap< String, AddressData >();
165
 
                        if( !_addresses.containsKey( address ) )
166
 
                                _addresses.put( address, new AddressData( address, type ) );
167
 
                }
168
144
        }
169
145
 
170
 
        @SuppressWarnings("serial")
171
146
        protected class AbortImportException extends Exception { };
172
147
 
173
148
        public Importer( Doit doit )
183
158
        {
184
159
                try
185
160
                {
186
 
                        // update UI
187
 
                        setProgressMessage( R.string.doit_caching );
188
 
 
189
 
                        // build a cache of existing contacts
190
 
                        _contactsCache = new ContactsCache();
191
 
                        _contactsCache.buildCache( _doit );
 
161
                        // cache current contact names
 
162
                        buildContactsCache();
192
163
 
193
164
                        // do the import
194
165
                        onImport();
254
225
        {
255
226
                checkAbort();
256
227
                _doit._handler.sendMessage( Message.obtain(
257
 
                        _doit._handler, Doit.MESSAGE_ERROR, message ) );
 
228
                                _doit._handler, Doit.MESSAGE_ERROR, message ) );
258
229
                try {
259
230
                        wait();
260
231
                }
261
232
                catch( InterruptedException e ) { }
262
 
 
263
233
                // no need to check if an abortion happened during the wait, we are
264
234
                // about to finish anyway!
265
235
                finish( ACTION_ABORT );
275
245
        {
276
246
                checkAbort();
277
247
                _doit._handler.sendMessage( Message.obtain(
278
 
                        _doit._handler, Doit.MESSAGE_ERROR, message ) );
 
248
                                _doit._handler, Doit.MESSAGE_ERROR, message ) );
279
249
                try {
280
250
                        wait();
281
251
                }
282
252
                catch( InterruptedException e ) { }
283
 
 
284
253
                // no need to check if an abortion happened during the wait, we are
285
254
                // about to finish anyway!
286
255
                finish( ACTION_ABORT );
296
265
        {
297
266
                checkAbort();
298
267
                _doit._handler.sendMessage( Message.obtain(
299
 
                        _doit._handler, Doit.MESSAGE_CONTINUEORABORT, message ) );
 
268
                                _doit._handler, Doit.MESSAGE_CONTINUEORABORT, message ) );
300
269
                try {
301
270
                        wait();
302
271
                }
312
281
        {
313
282
                checkAbort();
314
283
                _doit._handler.sendMessage( Message.obtain( _doit._handler,
315
 
                        Doit.MESSAGE_SETPROGRESSMESSAGE, getText( res ) ) );
 
284
                                Doit.MESSAGE_SETPROGRESSMESSAGE, getText( res ) ) );
316
285
        }
317
286
 
318
287
        protected void setProgressMax( int maxProgress )
320
289
        {
321
290
                checkAbort();
322
291
                _doit._handler.sendMessage( Message.obtain(
323
 
                        _doit._handler, Doit.MESSAGE_SETMAXPROGRESS,
324
 
                        new Integer( maxProgress ) ) );
 
292
                                _doit._handler, Doit.MESSAGE_SETMAXPROGRESS,
 
293
                                new Integer( maxProgress ) ) );
325
294
        }
326
295
 
327
296
        protected void setTmpProgress( int tmpProgress ) throws AbortImportException
328
297
        {
329
298
                checkAbort();
330
299
                _doit._handler.sendMessage( Message.obtain(
331
 
                        _doit._handler, Doit.MESSAGE_SETTMPPROGRESS,
332
 
                        new Integer( tmpProgress ) ) );
 
300
                                _doit._handler, Doit.MESSAGE_SETTMPPROGRESS,
 
301
                                new Integer( tmpProgress ) ) );
333
302
        }
334
303
 
335
304
        protected void setProgress( int progress ) throws AbortImportException
336
305
        {
337
306
                checkAbort();
338
307
                _doit._handler.sendMessage( Message.obtain(
339
 
                        _doit._handler, Doit.MESSAGE_SETPROGRESS,
340
 
                        new Integer( progress ) ) );
 
308
                                _doit._handler, Doit.MESSAGE_SETPROGRESS,
 
309
                                new Integer( progress ) ) );
341
310
        }
342
311
 
343
312
        protected void finish( int action ) throws AbortImportException
346
315
                int message;
347
316
                switch( action )
348
317
                {
349
 
                case ACTION_ALLDONE:    message = Doit.MESSAGE_ALLDONE; break;
 
318
                case ACTION_GOBACK:             message = Doit.MESSAGE_FINISHED_GOBACK; break;
 
319
                case ACTION_ALLDONE:    message = Doit.MESSAGE_FINISHED_ALLDONE; break;
350
320
                default:        // fall through
351
 
                case ACTION_ABORT:              message = Doit.MESSAGE_ABORT; break;
 
321
                case ACTION_ABORT:              message = Doit.MESSAGE_FINISHED; break;
352
322
                }
353
323
                _doit._handler.sendEmptyMessage( message );
354
324
 
378
348
                {
379
349
                case Doit.ACTION_KEEP:
380
350
                        // if we keep contacts on duplicate, we better check for one
381
 
                        return !_contactsCache.exists( name );
 
351
                        return !_contacts.containsKey( name );
382
352
 
383
353
                case Doit.ACTION_PROMPT:
384
354
                        // if we are prompting on duplicate, we better check for one
385
 
                        if( !_contactsCache.exists( name ) )
 
355
                        if( !_contacts.containsKey( name ) )
386
356
                                return true;
387
357
 
388
358
                        // ok, it exists, so do prompt
389
359
                        _doit._handler.sendMessage( Message.obtain(
390
 
                                _doit._handler, Doit.MESSAGE_MERGEPROMPT, name ) );
 
360
                                        _doit._handler, Doit.MESSAGE_MERGEPROMPT, name ) );
391
361
                        try {
392
362
                                wait();
393
363
                        }
400
370
                        if( _responseExtra == RESPONSEEXTRA_ALWAYS )
401
371
                                _mergeSetting = _response;
402
372
 
403
 
                        // recurse, with our new merge setting
 
373
                        // recurse, with out new merge setting
404
374
                        return isImportRequired( name, _response );
405
375
                }
406
376
 
429
399
                // does contact exist already?
430
400
                Uri contactUri = null;
431
401
                Long id;
432
 
                if( ( id = (Long)_contactsCache.getId( contact._name ) ) != null )
 
402
                if( ( id = (Long)_contacts.get( contact._name ) ) != null )
433
403
                {
434
404
                        // should we skip this import altogether?
435
405
                        if( _lastMergeDecision == Doit.ACTION_KEEP ) return;
436
406
 
437
407
                        // get contact's URI
438
408
                        contactUri = ContentUris.withAppendedId(
439
 
                                Contacts.People.CONTENT_URI, id );
 
409
                                        Contacts.People.CONTENT_URI, id );
440
410
 
441
411
                        // should we destroy the existing contact before importing?
442
412
                        if( _lastMergeDecision == Doit.ACTION_OVERWRITE ) {
443
413
                                _doit.getContentResolver().delete( contactUri, null, null );
444
414
                                contactUri = null;
445
415
 
446
 
                                // update the UI
447
 
                                _doit._handler.sendEmptyMessage(
448
 
                                                Doit.MESSAGE_CONTACTOVERWRITTEN );
 
416
                                // upate the UI
 
417
                                _doit._handler.sendEmptyMessage( Doit.MESSAGE_CONTACTOVERWRITTEN );
449
418
                                uiInformed = true;
450
419
 
451
420
                                // update cache
452
 
                                _contactsCache.remove( contact._name );
 
421
                                _contacts.remove( contact._name );
453
422
                        }
454
423
                }
455
424
 
460
429
                        // create a new contact
461
430
                        values.put( Contacts.People.NAME, contact._name );
462
431
                        contactUri = _doit.getContentResolver().insert(
463
 
                                Contacts.People.CONTENT_URI, values );
 
432
                                        Contacts.People.CONTENT_URI, values );
464
433
                        id = ContentUris.parseId( contactUri );
465
434
                        if( id <= 0 ) return;   // shouldn't happen!
466
435
 
467
 
                        // try to add them to the "My Contacts" group
468
 
                        try {
469
 
                                Contacts.People.addToMyContactsGroup(
 
436
                        // add them to the "My Contacts" group
 
437
                        Contacts.People.addToMyContactsGroup(
470
438
                                        _doit.getContentResolver(), id );
471
 
                        }
472
 
                        catch( IllegalStateException e ) {
473
 
                                // ignore any failure
474
 
                        }
475
439
 
476
440
                        // update cache
477
 
                        _contactsCache.put( id, contact._name );
 
441
                        _contacts.put( contact._name, id );
478
442
 
479
443
                        // update UI
480
444
                        if( !uiInformed ) {
492
456
                        importContactPhones( contactUri, contact._phones );
493
457
                if( contact._emails != null )
494
458
                        importContactEmails( contactUri, contact._emails );
495
 
                if( contact._addresses != null )
496
 
                        importContactAddresses( contactUri, contact._addresses );
497
459
        }
498
460
 
499
461
        private void importContactPhones( Uri contactUri,
502
464
                Long contactId = ContentUris.parseId( contactUri );
503
465
                Uri contactPhonesUri = Uri.withAppendedPath( contactUri,
504
466
                                Contacts.People.Phones.CONTENT_DIRECTORY );
505
 
                Set< String > phonesKeys = phones.keySet();
 
467
                Set phonesKeys = phones.keySet();
506
468
 
507
469
                // add phone numbers
508
 
                Iterator< String > i = phonesKeys.iterator();
 
470
                Iterator i = phonesKeys.iterator();
509
471
                while( i.hasNext() ) {
510
472
                        ContactData.PhoneData phone = phones.get( i.next() );
511
473
 
518
480
                        // anyway, so it's not a problem).
519
481
                        String number = sanitisePhoneNumber( phone._number );
520
482
                        if( number == null ) continue;
521
 
                        if( _contactsCache.hasNumber( contactId, number ) ) continue;
 
483
                        HashSet< String > numbers = _contactNumbers.get( contactId );
 
484
                        if( numbers != null && numbers.contains( number ) ) continue;
522
485
 
523
486
                        // add phone number
524
487
                        ContentValues values = new ContentValues();
526
489
                        values.put( Contacts.Phones.NUMBER, phone._number );
527
490
                        if( phone._isPreferred ) values.put( Contacts.Phones.ISPRIMARY, 1 );
528
491
                        _doit.getContentResolver().insert( contactPhonesUri, values );
529
 
 
530
 
                        // and add this address to the cache to prevent a addition of
531
 
                        // duplicate date from another file
532
 
                        _contactsCache.addNumber( contactId, number );
 
492
                }
 
493
 
 
494
                // now add those phone numbers to the cache to prevent the addition of
 
495
                // duplicate data from another file
 
496
                i = phonesKeys.iterator();
 
497
                while( i.hasNext() ) {
 
498
                        ContactData.PhoneData phone = phones.get( i.next() );
 
499
 
 
500
                        String number = sanitisePhoneNumber( phone._number );
 
501
                        if( number != null ) {
 
502
                                HashSet< String > numbers = _contactNumbers.get( contactId );
 
503
                                if( numbers == null ) {
 
504
                                        _contactNumbers.put( contactId, new HashSet< String >() );
 
505
                                        numbers = _contactNumbers.get( contactId );
 
506
                                }
 
507
                                numbers.add( number );
 
508
                        }
533
509
                }
534
510
        }
535
511
 
539
515
                Long contactId = ContentUris.parseId( contactUri );
540
516
                Uri contactContactMethodsUri = Uri.withAppendedPath( contactUri,
541
517
                                Contacts.People.ContactMethods.CONTENT_DIRECTORY );
542
 
                Set< String > emailsKeys = emails.keySet();
 
518
                Set emailsKeys = emails.keySet();
543
519
 
544
520
                // add email addresses
545
 
                Iterator< String > i = emailsKeys.iterator();
 
521
                Iterator i = emailsKeys.iterator();
546
522
                while( i.hasNext() ) {
547
523
                        ContactData.EmailData email = emails.get( i.next() );
548
524
 
549
 
                        // we don't want to add this email address if it exists already or
550
 
                        // we would introduce duplicates.
 
525
                        // like with phone numbers, we don't want to add this email address
 
526
                        // if it exists already or we would introduce duplicates.
551
527
                        String address = sanitiseEmailAddress( email.getAddress() );
552
528
                        if( address == null ) continue;
553
 
                        if( _contactsCache.hasEmail( contactId, address ) ) continue;
 
529
                        HashSet< String > addresses = _contactEmails.get( contactId );
 
530
                        if( addresses != null && addresses.contains( address ) ) continue;
554
531
 
555
532
                        // add phone number
556
533
                        ContentValues values = new ContentValues();
560
537
                        if( email.isPreferred() )
561
538
                                values.put( Contacts.ContactMethods.ISPRIMARY, 1 );
562
539
                        _doit.getContentResolver().insert( contactContactMethodsUri,
563
 
                                values );
564
 
 
565
 
                        // and add this address to the cache to prevent a addition of
566
 
                        // duplicate date from another file
567
 
                        _contactsCache.addEmail( contactId, address );
 
540
                                        values );
568
541
                }
569
 
        }
570
 
 
571
 
        private void importContactAddresses( Uri contactUri,
572
 
                HashMap< String, ContactData.AddressData > addresses )
573
 
        {
574
 
                Long contactId = ContentUris.parseId( contactUri );
575
 
                Uri contactContactMethodsUri = Uri.withAppendedPath( contactUri,
576
 
                                Contacts.People.ContactMethods.CONTENT_DIRECTORY );
577
 
                Set< String > addressesKeys = addresses.keySet();
578
 
 
579
 
                // add addresses
580
 
                Iterator< String > i = addressesKeys.iterator();
 
542
 
 
543
                // now add those email addresses to the cache to prevent the addition of
 
544
                // duplicate data from another file
 
545
                i = emailsKeys.iterator();
581
546
                while( i.hasNext() ) {
582
 
                        ContactData.AddressData address = addresses.get( i.next() );
583
 
 
584
 
                        // we don't want to add this address if it exists already or we
585
 
                        // would introduce duplicates
586
 
                        if( address == null ) continue;
587
 
                        if( _contactsCache.hasAddress( contactId, address.getAddress() ) )
588
 
                                continue;
589
 
 
590
 
                        // add postal address
591
 
                        ContentValues values = new ContentValues();
592
 
                        values.put( Contacts.ContactMethods.KIND, Contacts.KIND_POSTAL );
593
 
                        values.put( Contacts.ContactMethods.DATA, address.getAddress() );
594
 
                        values.put( Contacts.ContactMethods.TYPE, address.getType() );
595
 
                        _doit.getContentResolver().insert( contactContactMethodsUri,
596
 
                                values );
597
 
 
598
 
                        // and add this address to the cache to prevent a addition of
599
 
                        // duplicate date from another file
600
 
                        _contactsCache.addAddress( contactId, address.getAddress() );
 
547
                        ContactData.EmailData email = emails.get( i.next() );
 
548
 
 
549
                        String address = sanitiseEmailAddress( email.getAddress() );
 
550
                        if( address != null ) {
 
551
                                HashSet< String > addresses = _contactEmails.get( contactId );
 
552
                                if( addresses == null ) {
 
553
                                        _contactEmails.put( contactId, new HashSet< String >() );
 
554
                                        addresses = _contactEmails.get( contactId );
 
555
                                }
 
556
                                addresses.add( address );
 
557
                        }
601
558
                }
602
559
        }
603
560
 
609
566
                }
610
567
        }
611
568
 
612
 
        static public String sanitisePhoneNumber( String number )
 
569
        private void buildContactsCache() throws AbortImportException
 
570
        {
 
571
                // update UI
 
572
                setProgressMessage( R.string.doit_caching );
 
573
 
 
574
                String[] cols;
 
575
                Cursor cur;
 
576
 
 
577
                // init contacts caches
 
578
                _contacts = new HashMap< String, Long >();
 
579
                _contactNumbers = new HashMap< Long, HashSet< String > >();
 
580
                _contactEmails = new HashMap< Long, HashSet< String > >();
 
581
 
 
582
                // query and store map of contact names to ids
 
583
                cols = new String[] { Contacts.People._ID, Contacts.People.NAME };
 
584
                cur = _doit.managedQuery( Contacts.People.CONTENT_URI,
 
585
                                cols, null, null, null);
 
586
                if( cur.moveToFirst() ) {
 
587
                        int idCol = cur.getColumnIndex( Contacts.People._ID );
 
588
                        int nameCol = cur.getColumnIndex( Contacts.People.NAME );
 
589
                        do {
 
590
                                _contacts.put( cur.getString( nameCol ), cur.getLong( idCol ) );
 
591
                        } while( cur.moveToNext() );
 
592
                }
 
593
 
 
594
                // query and store map of contact ids to sets of phone numbers
 
595
                cols = new String[] { Contacts.Phones.PERSON_ID,
 
596
                                Contacts.Phones.NUMBER };
 
597
                cur = _doit.managedQuery( Contacts.Phones.CONTENT_URI,
 
598
                                cols, null, null, null);
 
599
                if( cur.moveToFirst() ) {
 
600
                        int personIdCol = cur.getColumnIndex( Contacts.Phones.PERSON_ID );
 
601
                        int numberCol = cur.getColumnIndex( Contacts.Phones.NUMBER );
 
602
                        do {
 
603
                                Long id = cur.getLong( personIdCol );
 
604
                                String number = sanitisePhoneNumber(
 
605
                                                cur.getString( numberCol ) );
 
606
                                if( number != null ) {
 
607
                                        HashSet< String > numbers = _contactNumbers.get( id );
 
608
                                        if( numbers == null ) {
 
609
                                                _contactNumbers.put( id, new HashSet< String >() );
 
610
                                                numbers = _contactNumbers.get( id );
 
611
                                        }
 
612
                                        numbers.add( number );
 
613
                                }
 
614
                        } while( cur.moveToNext() );
 
615
                }
 
616
 
 
617
                // query and store map of contact ids to sets of email addresses
 
618
                cols = new String[] { Contacts.ContactMethods.PERSON_ID,
 
619
                                Contacts.ContactMethods.DATA };
 
620
                cur = _doit.managedQuery( Contacts.ContactMethods.CONTENT_URI,
 
621
                                cols, Contacts.ContactMethods.KIND + " = ?",
 
622
                                new String[] { "" + Contacts.KIND_EMAIL }, null );
 
623
                if( cur.moveToFirst() ) {
 
624
                        int personIdCol = cur.getColumnIndex(
 
625
                                        Contacts.ContactMethods.PERSON_ID );
 
626
                        int addressCol = cur.getColumnIndex(
 
627
                                        Contacts.ContactMethods.DATA );
 
628
                        do {
 
629
                                Long id = cur.getLong( personIdCol );
 
630
                                String address = sanitiseEmailAddress(
 
631
                                                cur.getString( addressCol ) );
 
632
                                if( address != null ) {
 
633
                                        HashSet< String > addresses = _contactEmails.get( id );
 
634
                                        if( addresses == null ) {
 
635
                                                _contactEmails.put( id, new HashSet< String >() );
 
636
                                                addresses = _contactEmails.get( id );
 
637
                                        }
 
638
                                        addresses.add( address );
 
639
                                }
 
640
                        } while( cur.moveToNext() );
 
641
                }
 
642
        }
 
643
 
 
644
        private String sanitisePhoneNumber( String number )
613
645
        {
614
646
                number = number.replaceAll( "[-\\(\\) ]", "" );
615
 
                Pattern p = Pattern.compile( "^[\\+0-9#*]+" );
 
647
                Pattern p = Pattern.compile( "^\\+?[0-9]+" );
616
648
                Matcher m = p.matcher( number );
617
649
                if( m.lookingAt() ) return m.group( 0 );
618
650
                return null;
619
651
        }
620
652
 
621
 
        static public String sanitiseEmailAddress( String address )
 
653
        private String sanitiseEmailAddress( String address )
622
654
        {
623
655
                address = address.trim();
624
656
                Pattern p = Pattern.compile(
625
 
                        "^[^ @]+@[a-zA-Z]([-a-zA-Z0-9]*[a-zA-z0-9])?(\\.[a-zA-Z]([-a-zA-Z0-9]*[a-zA-z0-9])?)+$" );
 
657
                                "^[^ @]+@[a-zA-Z]([-a-zA-Z0-9]*[a-zA-z0-9])?(\\.[a-zA-Z]([-a-zA-Z0-9]*[a-zA-z0-9])?)+$" );
626
658
                Matcher m = p.matcher( address );
627
659
                if( m.matches() ) {
628
660
                        String[] bits = address.split( "@" );