/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-03-24 06:46:40 UTC
  • Revision ID: edam@waxworlds.org-20110324064640-wr3sxbonxk6gvx7a
- updated TODO

Show diffs side-by-side

added added

removed removed

38
38
import android.os.Message;
39
39
import android.provider.Contacts;
40
40
 
 
41
 
41
42
public class Importer extends Thread
42
43
{
43
44
        public final static int ACTION_ABORT = 1;
55
56
        private HashMap< String, Long > _contacts;
56
57
        private HashMap< Long, HashSet< String > > _contactNumbers;
57
58
        private HashMap< Long, HashSet< String > > _contactEmails;
 
59
        private HashMap< Long, HashSet< String > > _contactAddresses;
58
60
        private int _mergeSetting;
59
61
        private int _lastMergeDecision;
60
62
        private boolean _abort = false;
112
114
                        }
113
115
                }
114
116
 
 
117
                class AddressData
 
118
                {
 
119
                        private String _address;
 
120
                        public int _type;
 
121
 
 
122
                        public AddressData( String address, int type ) {
 
123
                                _address = address;
 
124
                                _type = type;
 
125
                        }
 
126
 
 
127
                        public String getAddress() {
 
128
                                return _address;
 
129
                        }
 
130
 
 
131
                        public int getType() {
 
132
                                return _type;
 
133
                        }
 
134
                }
 
135
 
115
136
                public String _name = null;
116
137
                public HashMap< String, PhoneData > _phones = null;
117
138
                public HashMap< String, EmailData > _emails = null;
 
139
                public HashMap< String, AddressData > _addresses = null;
118
140
 
119
141
                protected void setName( String name )
120
142
                {
131
153
                        if( _phones == null ) _phones = new HashMap< String, PhoneData >();
132
154
                        if( !_phones.containsKey( number ) )
133
155
                                _phones.put( number,
134
 
                                                new PhoneData( number, type, isPreferred ) );
 
156
                                        new PhoneData( number, type, isPreferred ) );
135
157
                }
136
158
 
137
159
                protected void addEmail( String email, int type, boolean isPreferred )
140
162
                        if( !_emails.containsKey( email ) )
141
163
                                _emails.put( email, new EmailData( email, type, isPreferred ) );
142
164
                }
 
165
 
 
166
                protected void addAddress( String address, int type )
 
167
                {
 
168
                        if( _addresses == null ) _addresses =
 
169
                                new HashMap< String, AddressData >();
 
170
                        if( !_addresses.containsKey( address ) )
 
171
                                _addresses.put( address, new AddressData( address, type ) );
 
172
                }
143
173
        }
144
174
 
145
175
        @SuppressWarnings("serial")
225
255
        {
226
256
                checkAbort();
227
257
                _doit._handler.sendMessage( Message.obtain(
228
 
                                _doit._handler, Doit.MESSAGE_ERROR, message ) );
 
258
                        _doit._handler, Doit.MESSAGE_ERROR, message ) );
229
259
                try {
230
260
                        wait();
231
261
                }
246
276
        {
247
277
                checkAbort();
248
278
                _doit._handler.sendMessage( Message.obtain(
249
 
                                _doit._handler, Doit.MESSAGE_ERROR, message ) );
 
279
                        _doit._handler, Doit.MESSAGE_ERROR, message ) );
250
280
                try {
251
281
                        wait();
252
282
                }
267
297
        {
268
298
                checkAbort();
269
299
                _doit._handler.sendMessage( Message.obtain(
270
 
                                _doit._handler, Doit.MESSAGE_CONTINUEORABORT, message ) );
 
300
                        _doit._handler, Doit.MESSAGE_CONTINUEORABORT, message ) );
271
301
                try {
272
302
                        wait();
273
303
                }
283
313
        {
284
314
                checkAbort();
285
315
                _doit._handler.sendMessage( Message.obtain( _doit._handler,
286
 
                                Doit.MESSAGE_SETPROGRESSMESSAGE, getText( res ) ) );
 
316
                        Doit.MESSAGE_SETPROGRESSMESSAGE, getText( res ) ) );
287
317
        }
288
318
 
289
319
        protected void setProgressMax( int maxProgress )
291
321
        {
292
322
                checkAbort();
293
323
                _doit._handler.sendMessage( Message.obtain(
294
 
                                _doit._handler, Doit.MESSAGE_SETMAXPROGRESS,
295
 
                                new Integer( maxProgress ) ) );
 
324
                        _doit._handler, Doit.MESSAGE_SETMAXPROGRESS,
 
325
                        new Integer( maxProgress ) ) );
296
326
        }
297
327
 
298
328
        protected void setTmpProgress( int tmpProgress ) throws AbortImportException
299
329
        {
300
330
                checkAbort();
301
331
                _doit._handler.sendMessage( Message.obtain(
302
 
                                _doit._handler, Doit.MESSAGE_SETTMPPROGRESS,
303
 
                                new Integer( tmpProgress ) ) );
 
332
                        _doit._handler, Doit.MESSAGE_SETTMPPROGRESS,
 
333
                        new Integer( tmpProgress ) ) );
304
334
        }
305
335
 
306
336
        protected void setProgress( int progress ) throws AbortImportException
307
337
        {
308
338
                checkAbort();
309
339
                _doit._handler.sendMessage( Message.obtain(
310
 
                                _doit._handler, Doit.MESSAGE_SETPROGRESS,
311
 
                                new Integer( progress ) ) );
 
340
                        _doit._handler, Doit.MESSAGE_SETPROGRESS,
 
341
                        new Integer( progress ) ) );
312
342
        }
313
343
 
314
344
        protected void finish( int action ) throws AbortImportException
358
388
 
359
389
                        // ok, it exists, so do prompt
360
390
                        _doit._handler.sendMessage( Message.obtain(
361
 
                                        _doit._handler, Doit.MESSAGE_MERGEPROMPT, name ) );
 
391
                                _doit._handler, Doit.MESSAGE_MERGEPROMPT, name ) );
362
392
                        try {
363
393
                                wait();
364
394
                        }
371
401
                        if( _responseExtra == RESPONSEEXTRA_ALWAYS )
372
402
                                _mergeSetting = _response;
373
403
 
374
 
                        // recurse, with out new merge setting
 
404
                        // recurse, with our new merge setting
375
405
                        return isImportRequired( name, _response );
376
406
                }
377
407
 
407
437
 
408
438
                        // get contact's URI
409
439
                        contactUri = ContentUris.withAppendedId(
410
 
                                        Contacts.People.CONTENT_URI, id );
 
440
                                Contacts.People.CONTENT_URI, id );
411
441
 
412
442
                        // should we destroy the existing contact before importing?
413
443
                        if( _lastMergeDecision == Doit.ACTION_OVERWRITE ) {
414
444
                                _doit.getContentResolver().delete( contactUri, null, null );
415
445
                                contactUri = null;
416
446
 
417
 
                                // upate the UI
418
 
                                _doit._handler.sendEmptyMessage( Doit.MESSAGE_CONTACTOVERWRITTEN );
 
447
                                // update the UI
 
448
                                _doit._handler.sendEmptyMessage(
 
449
                                                Doit.MESSAGE_CONTACTOVERWRITTEN );
419
450
                                uiInformed = true;
420
451
 
421
452
                                // update cache
430
461
                        // create a new contact
431
462
                        values.put( Contacts.People.NAME, contact._name );
432
463
                        contactUri = _doit.getContentResolver().insert(
433
 
                                        Contacts.People.CONTENT_URI, values );
 
464
                                Contacts.People.CONTENT_URI, values );
434
465
                        id = ContentUris.parseId( contactUri );
435
466
                        if( id <= 0 ) return;   // shouldn't happen!
436
467
 
439
470
                                Contacts.People.addToMyContactsGroup(
440
471
                                        _doit.getContentResolver(), id );
441
472
                        }
442
 
                        catch( IllegalStateException e ) { }
 
473
                        catch( IllegalStateException e ) {
 
474
                                // ignore any failure
 
475
                        }
443
476
 
444
477
                        // update cache
445
478
                        _contacts.put( contact._name, id );
460
493
                        importContactPhones( contactUri, contact._phones );
461
494
                if( contact._emails != null )
462
495
                        importContactEmails( contactUri, contact._emails );
 
496
                if( contact._addresses != null )
 
497
                        importContactAddresses( contactUri, contact._addresses );
463
498
        }
464
499
 
465
500
        private void importContactPhones( Uri contactUri,
484
519
                        // anyway, so it's not a problem).
485
520
                        String number = sanitisePhoneNumber( phone._number );
486
521
                        if( number == null ) continue;
487
 
                        HashSet< String > numbers = _contactNumbers.get( contactId );
488
 
                        if( numbers != null && numbers.contains( number ) ) continue;
 
522
                        HashSet< String > cache = _contactNumbers.get( contactId );
 
523
                        if( cache != null && cache.contains( number ) ) continue;
489
524
 
490
525
                        // add phone number
491
526
                        ContentValues values = new ContentValues();
493
528
                        values.put( Contacts.Phones.NUMBER, phone._number );
494
529
                        if( phone._isPreferred ) values.put( Contacts.Phones.ISPRIMARY, 1 );
495
530
                        _doit.getContentResolver().insert( contactPhonesUri, values );
496
 
                }
497
 
 
498
 
                // now add those phone numbers to the cache to prevent the addition of
499
 
                // duplicate data from another file
500
 
                i = phonesKeys.iterator();
501
 
                while( i.hasNext() ) {
502
 
                        ContactData.PhoneData phone = phones.get( i.next() );
503
 
 
504
 
                        String number = sanitisePhoneNumber( phone._number );
505
 
                        if( number != null ) {
506
 
                                HashSet< String > numbers = _contactNumbers.get( contactId );
507
 
                                if( numbers == null ) {
508
 
                                        _contactNumbers.put( contactId, new HashSet< String >() );
509
 
                                        numbers = _contactNumbers.get( contactId );
510
 
                                }
511
 
                                numbers.add( number );
 
531
 
 
532
                        // and add this address to the cache to prevent a addition of
 
533
                        // duplicate date from another file
 
534
                        if( cache == null ) {
 
535
                                cache = new HashSet< String >();
 
536
                                _contactNumbers.put( contactId, cache );
512
537
                        }
 
538
                        cache.add( number );
513
539
                }
514
540
        }
515
541
 
526
552
                while( i.hasNext() ) {
527
553
                        ContactData.EmailData email = emails.get( i.next() );
528
554
 
529
 
                        // like with phone numbers, we don't want to add this email address
530
 
                        // if it exists already or we would introduce duplicates.
 
555
                        // we don't want to add this email address if it exists already or
 
556
                        // we would introduce duplicates.
531
557
                        String address = sanitiseEmailAddress( email.getAddress() );
532
558
                        if( address == null ) continue;
533
 
                        HashSet< String > addresses = _contactEmails.get( contactId );
534
 
                        if( addresses != null && addresses.contains( address ) ) continue;
 
559
                        HashSet< String > cache = _contactEmails.get( contactId );
 
560
                        if( cache != null && cache.contains( address ) ) continue;
535
561
 
536
562
                        // add phone number
537
563
                        ContentValues values = new ContentValues();
541
567
                        if( email.isPreferred() )
542
568
                                values.put( Contacts.ContactMethods.ISPRIMARY, 1 );
543
569
                        _doit.getContentResolver().insert( contactContactMethodsUri,
544
 
                                        values );
 
570
                                values );
 
571
 
 
572
                        // and add this address to the cache to prevent a addition of
 
573
                        // duplicate date from another file
 
574
                        if( cache == null ) {
 
575
                                cache = new HashSet< String >();
 
576
                                _contactEmails.put( contactId, cache );
 
577
                        }
 
578
                        cache.add( address );
545
579
                }
546
 
 
547
 
                // now add those email addresses to the cache to prevent the addition of
548
 
                // duplicate data from another file
549
 
                i = emailsKeys.iterator();
 
580
        }
 
581
 
 
582
        private void importContactAddresses( Uri contactUri,
 
583
                HashMap< String, ContactData.AddressData > addresses )
 
584
        {
 
585
                Long contactId = ContentUris.parseId( contactUri );
 
586
                Uri contactContactMethodsUri = Uri.withAppendedPath( contactUri,
 
587
                                Contacts.People.ContactMethods.CONTENT_DIRECTORY );
 
588
                Set< String > addressesKeys = addresses.keySet();
 
589
 
 
590
                // add addresses
 
591
                Iterator< String > i = addressesKeys.iterator();
550
592
                while( i.hasNext() ) {
551
 
                        ContactData.EmailData email = emails.get( i.next() );
552
 
 
553
 
                        String address = sanitiseEmailAddress( email.getAddress() );
554
 
                        if( address != null ) {
555
 
                                HashSet< String > addresses = _contactEmails.get( contactId );
556
 
                                if( addresses == null ) {
557
 
                                        _contactEmails.put( contactId, new HashSet< String >() );
558
 
                                        addresses = _contactEmails.get( contactId );
559
 
                                }
560
 
                                addresses.add( address );
 
593
                        ContactData.AddressData address = addresses.get( i.next() );
 
594
 
 
595
                        // we don't want to add this address if it exists already or we
 
596
                        // would introduce duplicates
 
597
                        if( address == null ) continue;
 
598
                        HashSet< String > cache = _contactAddresses.get( contactId );
 
599
                        if( cache != null && cache.contains( address.getAddress() ) )
 
600
                                continue;
 
601
 
 
602
                        // add postal address
 
603
                        ContentValues values = new ContentValues();
 
604
                        values.put( Contacts.ContactMethods.KIND, Contacts.KIND_POSTAL );
 
605
                        values.put( Contacts.ContactMethods.DATA, address.getAddress() );
 
606
                        values.put( Contacts.ContactMethods.TYPE, address.getType() );
 
607
                        _doit.getContentResolver().insert( contactContactMethodsUri,
 
608
                                values );
 
609
 
 
610
                        // and add this address to the cache to prevent a addition of
 
611
                        // duplicate date from another file
 
612
                        if( cache == null ) {
 
613
                                cache = new HashSet< String >();
 
614
                                _contactAddresses.put( contactId, cache );
561
615
                        }
 
616
                        cache.add( address.getAddress() );
562
617
                }
563
618
        }
564
619
 
582
637
                _contacts = new HashMap< String, Long >();
583
638
                _contactNumbers = new HashMap< Long, HashSet< String > >();
584
639
                _contactEmails = new HashMap< Long, HashSet< String > >();
 
640
                _contactAddresses = new HashMap< Long, HashSet< String > >();
585
641
 
586
642
                // query and store map of contact names to ids
587
643
                cols = new String[] { Contacts.People._ID, Contacts.People.NAME };
588
644
                cur = _doit.managedQuery( Contacts.People.CONTENT_URI,
589
 
                                cols, null, null, null);
 
645
                        cols, null, null, null);
590
646
                if( cur.moveToFirst() ) {
591
647
                        int idCol = cur.getColumnIndex( Contacts.People._ID );
592
648
                        int nameCol = cur.getColumnIndex( Contacts.People.NAME );
599
655
                cols = new String[] { Contacts.Phones.PERSON_ID,
600
656
                                Contacts.Phones.NUMBER };
601
657
                cur = _doit.managedQuery( Contacts.Phones.CONTENT_URI,
602
 
                                cols, null, null, null);
 
658
                        cols, null, null, null);
603
659
                if( cur.moveToFirst() ) {
604
660
                        int personIdCol = cur.getColumnIndex( Contacts.Phones.PERSON_ID );
605
661
                        int numberCol = cur.getColumnIndex( Contacts.Phones.NUMBER );
610
666
                                if( number != null ) {
611
667
                                        HashSet< String > numbers = _contactNumbers.get( id );
612
668
                                        if( numbers == null ) {
613
 
                                                _contactNumbers.put( id, new HashSet< String >() );
614
 
                                                numbers = _contactNumbers.get( id );
 
669
                                                numbers = new HashSet< String >();
 
670
                                                _contactNumbers.put( id, numbers );
615
671
                                        }
616
672
                                        numbers.add( number );
617
673
                                }
626
682
                                new String[] { "" + Contacts.KIND_EMAIL }, null );
627
683
                if( cur.moveToFirst() ) {
628
684
                        int personIdCol = cur.getColumnIndex(
629
 
                                        Contacts.ContactMethods.PERSON_ID );
 
685
                                Contacts.ContactMethods.PERSON_ID );
630
686
                        int addressCol = cur.getColumnIndex(
631
 
                                        Contacts.ContactMethods.DATA );
 
687
                                Contacts.ContactMethods.DATA );
632
688
                        do {
633
689
                                Long id = cur.getLong( personIdCol );
634
690
                                String address = sanitiseEmailAddress(
635
 
                                                cur.getString( addressCol ) );
 
691
                                        cur.getString( addressCol ) );
636
692
                                if( address != null ) {
637
693
                                        HashSet< String > addresses = _contactEmails.get( id );
638
694
                                        if( addresses == null ) {
639
 
                                                _contactEmails.put( id, new HashSet< String >() );
640
 
                                                addresses = _contactEmails.get( id );
 
695
                                                addresses = new HashSet< String >();
 
696
                                                _contactEmails.put( id, addresses );
 
697
                                        }
 
698
                                        addresses.add( address );
 
699
                                }
 
700
                        } while( cur.moveToNext() );
 
701
                }
 
702
 
 
703
                // query and store map of contact ids to sets of postal addresses
 
704
                cols = new String[] { Contacts.ContactMethods.PERSON_ID,
 
705
                        Contacts.ContactMethods.DATA };
 
706
                cur = _doit.managedQuery( Contacts.ContactMethods.CONTENT_URI,
 
707
                        cols, Contacts.ContactMethods.KIND + " = ?",
 
708
                        new String[] { "" + Contacts.KIND_POSTAL }, null );
 
709
                if( cur.moveToFirst() ) {
 
710
                        int personIdCol = cur.getColumnIndex(
 
711
                                Contacts.ContactMethods.PERSON_ID );
 
712
                        int addressCol = cur.getColumnIndex(
 
713
                                Contacts.ContactMethods.DATA );
 
714
                        do {
 
715
                                Long id = cur.getLong( personIdCol );
 
716
                                String address = cur.getString( addressCol );
 
717
                                if( address != null ) {
 
718
                                        HashSet< String > addresses = _contactAddresses.get( id );
 
719
                                        if( addresses == null ) {
 
720
                                                addresses = new HashSet< String >();
 
721
                                                _contactAddresses.put( id, addresses );
641
722
                                        }
642
723
                                        addresses.add( address );
643
724
                                }
648
729
        private String sanitisePhoneNumber( String number )
649
730
        {
650
731
                number = number.replaceAll( "[-\\(\\) ]", "" );
651
 
                Pattern p = Pattern.compile( "^\\+?[0-9]+" );
 
732
                Pattern p = Pattern.compile( "^[\\+0-9#*]+" );
652
733
                Matcher m = p.matcher( number );
653
734
                if( m.lookingAt() ) return m.group( 0 );
654
735
                return null;
658
739
        {
659
740
                address = address.trim();
660
741
                Pattern p = Pattern.compile(
661
 
                                "^[^ @]+@[a-zA-Z]([-a-zA-Z0-9]*[a-zA-z0-9])?(\\.[a-zA-Z]([-a-zA-Z0-9]*[a-zA-z0-9])?)+$" );
 
742
                        "^[^ @]+@[a-zA-Z]([-a-zA-Z0-9]*[a-zA-z0-9])?(\\.[a-zA-Z]([-a-zA-Z0-9]*[a-zA-z0-9])?)+$" );
662
743
                Matcher m = p.matcher( address );
663
744
                if( m.matches() ) {
664
745
                        String[] bits = address.split( "@" );