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

  • Committer: edam
  • Date: 2011-05-02 18:28:24 UTC
  • Revision ID: edam@waxworlds.org-20110502182824-acgdi3qfxfzqgely
- fixed logic for vcard field types (home, work, cell, etc) so it works
- updated NEWS and TODO
- rewrote most of ContactsCache, including a new ContactIdentifier class to identify contacts in the cache and new cache building code
- contacts now identified in the same way that Andoid displays them (by name, or organisation, or number, or email, in that order)
- propper handling and support for organisations and titles
- validation of imported contact now done by Importer, not VcfImporter
- separated sanitisation and normalisation (for cache lookups)
- generacised PhoneData, EmailData and AddressData classes
- ContactData is now aware of primary numbers, emails and organisations (defaults to the first prefrred one seen, or the first one seen where none is preferred)

Show diffs side-by-side

added added

removed removed

1
1
/*
2
2
 * VCFImporter.java
3
3
 *
4
 
 * Copyright (C) 2009 to 2011 Tim Marston <tim@ed.am>
 
4
 * Copyright (C) 2009 to 2011 Tim Marston <edam@waxworlds.org>
5
5
 *
6
6
 * This file is part of the Import Contacts program (hereafter referred
7
7
 * to as "this program"). For more information, see
8
 
 * http://ed.am/dev/android/import-contacts
 
8
 * http://www.waxworlds.org/edam/software/android/import-contacts
9
9
 *
10
10
 * This program is free software: you can redistribute it and/or modify
11
11
 * it under the terms of the GNU General Public License as published by
21
21
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22
22
 */
23
23
 
24
 
package am.ed.importcontacts;
 
24
package org.waxworlds.edam.importcontacts;
25
25
 
26
26
import java.io.BufferedReader;
27
27
import java.io.File;
38
38
import java.util.HashSet;
39
39
import java.util.Iterator;
40
40
import java.util.List;
41
 
import java.util.Locale;
42
41
import java.util.NoSuchElementException;
43
42
import java.util.Set;
44
43
import java.util.Vector;
45
44
import java.util.regex.Matcher;
46
45
import java.util.regex.Pattern;
47
46
 
48
 
import android.annotation.SuppressLint;
 
47
import org.waxworlds.edam.importcontacts.Importer.ContactData.ExtraDetail;
 
48
 
49
49
import android.content.SharedPreferences;
 
50
import android.provider.Contacts;
 
51
import android.provider.Contacts.PhonesColumns;
50
52
 
51
 
public class VcardImporter extends Importer
 
53
public class VCFImporter extends Importer
52
54
{
53
 
        private int _vcard_count = 0;
 
55
        private int _vCardCount = 0;
54
56
        private int _progress = 0;
55
57
 
56
 
        public VcardImporter( Doit doit )
 
58
        public VCFImporter( Doit doit )
57
59
        {
58
60
                super( doit );
59
61
        }
60
62
 
61
 
        @SuppressLint( "SdCardPath" )
62
63
        @Override
63
64
        protected void onImport() throws AbortImportException
64
65
        {
83
84
                                // get files
84
85
                                class VCardFilter implements FilenameFilter {
85
86
                                        public boolean accept( File dir, String name ) {
86
 
                                                return name.toLowerCase( Locale.US ).endsWith( ".vcf" );
 
87
                                                return name.toLowerCase().endsWith( ".vcf" );
87
88
                                        }
88
89
                                }
89
90
                                files = file.listFiles( new VCardFilter() );
111
112
                        countVCardFile( files[ i ] );
112
113
                        setTmpProgress( i );
113
114
                }
114
 
                setProgressMax( _vcard_count ); // will also update tmp progress
 
115
                setProgressMax( _vCardCount );  // will also update tmp progress
115
116
 
116
117
                // import them
117
118
                setProgress( 0 );
118
119
                for( int i = 0; i < files.length; i++ )
119
120
                        importVCardFile( files[ i ] );
120
 
                setProgress( _vcard_count );
121
121
        }
122
122
 
123
123
        private void countVCardFile( File file ) throws AbortImportException
130
130
 
131
131
                        // read
132
132
                        String line;
133
 
                        boolean in_vcard = false;
 
133
                        boolean inVCard = false;
134
134
                        while( ( line = reader.readLine() ) != null )
135
135
                        {
136
 
                                if( !in_vcard ) {
 
136
                                if( !inVCard ) {
137
137
                                        // look for vcard beginning
138
138
                                        if( line.matches( "^BEGIN:VCARD" ) ) {
139
 
                                                in_vcard = true;
140
 
                                                _vcard_count++;
 
139
                                                inVCard = true;
 
140
                                                _vCardCount++;
141
141
                                        }
142
142
                                }
143
143
                                else if( line.matches( "^END:VCARD" ) )
144
 
                                        in_vcard = false;
 
144
                                        inVCard = false;
145
145
                        }
146
146
 
147
147
                }
170
170
                        FileInputStream istream = new FileInputStream( file );
171
171
                        byte[] content = new byte[ (int)file.length() ];
172
172
                        istream.read( content );
173
 
                        istream = null;
174
173
 
175
174
                        // import
176
175
                        importVCardFileContent( content, file.getName() );
188
187
                throws AbortImportException
189
188
        {
190
189
                // go through lines
191
 
                Vcard vcard = null;
192
 
                int vcard_start_line = 0;
 
190
                VCard vCard = null;
193
191
                ContentLineIterator cli = new ContentLineIterator( content );
194
192
                while( cli.hasNext() )
195
193
                {
206
204
                                line = "";
207
205
                        }
208
206
 
209
 
                        if( vcard == null ) {
 
207
                        if( vCard == null ) {
210
208
                                // look for vcard beginning
211
209
                                if( line.matches( "^BEGIN:VCARD" ) ) {
212
 
                                        setProgress( _progress++ );
213
 
                                        vcard = new Vcard();
214
 
                                        vcard_start_line = cli.getLineNumber();
 
210
                                        setProgress( ++_progress );
 
211
                                        vCard = new VCard();
215
212
                                }
216
213
                        }
217
214
                        else {
218
215
                                // look for vcard content or ending
219
216
                                if( line.matches( "^END:VCARD" ) )
220
217
                                {
221
 
                                        // finalise the vcard/contact
 
218
                                        // store vcard and do away with it
222
219
                                        try {
223
 
                                                vcard.finaliseVcard();
224
 
 
225
 
                                                // pass the finalised contact to the importer
226
 
                                                importContact( vcard );
227
 
                                        }
228
 
                                        catch( Vcard.ParseException e ) {
229
 
                                                if( !showContinue(
230
 
                                                        getText( R.string.error_vcf_parse ).toString()
231
 
                                                        + fileName +
232
 
                                                        getText( R.string.error_vcf_parse_line ).toString()
233
 
                                                        + cli.getLineNumber() + ":\n" + e.getMessage() ) )
234
 
                                                {
235
 
                                                        finish( ACTION_ABORT );
236
 
                                                }
237
 
                                                else
238
 
                                                        skipContact();
239
 
                                        }
240
 
                                        catch( ContactData.ContactNotIdentifiableException e ) {
241
 
                                                if( !showContinue(
242
 
                                                        getText( R.string.error_vcf_parse ).toString()
243
 
                                                        + fileName +
244
 
                                                        getText( R.string.error_vcf_parse_line ).toString()
245
 
                                                        + vcard_start_line + ":\n" + getText(
246
 
                                                                R.string.error_vcf_notenoughinfo ).toString()
247
 
                                                ) )
248
 
                                                {
249
 
                                                        finish( ACTION_ABORT );
250
 
                                                }
251
 
                                                else
252
 
                                                        skipContact();
253
 
                                        }
254
 
 
255
 
                                        // discard this vcard
256
 
                                        vcard = null;
 
220
                                                vCard.finaliseParsing();
 
221
                                                importContact( vCard );
 
222
                                        }
 
223
                                        catch( VCard.ParseException e ) {
 
224
                                                skipContact();
 
225
                                                if( !showContinue(
 
226
                                                        getText( R.string.error_vcf_parse ).toString()
 
227
                                                        + fileName + "\n" + e.getMessage() ) )
 
228
                                                {
 
229
                                                        finish( ACTION_ABORT );
 
230
                                                }
 
231
                                        }
 
232
                                        catch( VCard.SkipContactException e ) {
 
233
                                                skipContact();
 
234
                                                // do nothing
 
235
                                        }
 
236
                                        vCard = null;
257
237
                                }
258
238
                                else
259
239
                                {
260
240
                                        // try giving the line to the vcard
261
241
                                        try {
262
 
                                                vcard.parseLine( buffer, line,
 
242
                                                vCard.parseLine( buffer, line,
263
243
                                                        cli.doesNextLineLookFolded() );
264
244
                                        }
265
 
                                        catch( Vcard.ParseException e ) {
 
245
                                        catch( VCard.ParseException e ) {
266
246
                                                skipContact();
267
247
                                                if( !showContinue(
268
248
                                                        getText( R.string.error_vcf_parse ).toString()
269
 
                                                        + fileName +
270
 
                                                        getText( R.string.error_vcf_parse_line ).toString()
271
 
                                                        + cli.getLineNumber() + "\n" + e.getMessage() ) )
 
249
                                                        + fileName + "\n" + e.getMessage() ) )
272
250
                                                {
273
251
                                                        finish( ACTION_ABORT );
274
252
                                                }
276
254
                                                // although we're continuing, we still need to abort
277
255
                                                // this vCard. Further lines will be ignored until we
278
256
                                                // get to another BEGIN:VCARD line.
279
 
                                                vcard = null;
 
257
                                                vCard = null;
280
258
                                        }
281
 
                                        catch( Vcard.SkipImportException e ) {
 
259
                                        catch( VCard.SkipContactException e ) {
282
260
                                                skipContact();
283
261
                                                // abort this vCard. Further lines will be ignored until
284
262
                                                // we get to another BEGIN:VCARD line.
285
 
                                                vcard = null;
 
263
                                                vCard = null;
286
264
                                        }
287
265
                                }
288
266
                        }
293
271
        {
294
272
                protected byte[] _content = null;
295
273
                protected int _pos = 0;
296
 
                protected int _line = 0;
297
274
 
298
275
                public ContentLineIterator( byte[] content )
299
276
                {
319
296
                                        int to = ( _pos > 0 && _content[ _pos - 1 ] == '\r' &&
320
297
                                                _pos > initial_pos )? _pos - 1 : _pos;
321
298
                                        _pos++;
322
 
                                        _line++;
323
299
                                        return ByteBuffer.wrap( _content, initial_pos,
324
300
                                                to - initial_pos );
325
301
                                }
328
304
                        if( _pos != initial_pos ) {
329
305
                                int to = _pos;
330
306
                                _pos++;
331
 
                                _line++;
332
307
                                return ByteBuffer.wrap( _content, initial_pos,
333
308
                                        to - initial_pos );
334
309
                        }
353
328
                        return _pos > 0 && _pos < _content.length &&
354
329
                                _content[ _pos - 1 ] == '\n' && _content[ _pos ] == ' ';
355
330
                }
356
 
 
357
 
                public int getLineNumber()
358
 
                {
359
 
                        return _line;
360
 
                }
361
331
        }
362
332
 
363
 
        private class Vcard extends ContactData
 
333
        private class VCard extends ContactData
364
334
        {
365
335
                private final static int NAMELEVEL_NONE = 0;
366
 
                private final static int NAMELEVEL_N = 1;
367
 
                private final static int NAMELEVEL_FN = 2;
 
336
                private final static int NAMELEVEL_FN = 1;
 
337
                private final static int NAMELEVEL_N = 2;
368
338
 
369
339
                private final static int MULTILINE_NONE = 0;
370
340
                private final static int MULTILINE_ENCODED = 1; // v2.1 quoted-printable
414
384
 
415
385
                        public ParseException( int res )
416
386
                        {
417
 
                                super( VcardImporter.this.getText( res ).toString() );
 
387
                                super( VCFImporter.this.getText( res ).toString() );
418
388
                        }
419
389
                }
420
390
 
421
391
                @SuppressWarnings("serial")
422
 
                protected class SkipImportException extends Exception { }
 
392
                protected class SkipContactException extends Exception { }
423
393
 
424
394
                private String extractCollonPartFromLine( ByteBuffer buffer,
425
395
                        String line, boolean former )
461
431
 
462
432
                public void parseLine( ByteBuffer buffer, String line,
463
433
                        boolean next_line_looks_folded )
464
 
                        throws ParseException, SkipImportException,
 
434
                        throws ParseException, SkipContactException,
465
435
                        AbortImportException
466
436
                {
467
437
                        // do we have a version yet?
567
537
                                for( int i = 0; i < name_param_parts.length; i++ )
568
538
                                        name_param_parts[ i ] = name_param_parts[ i ].trim();
569
539
 
570
 
                                // determine whether we care about this entry
571
 
                                final HashSet< String > interesting_fields =
572
 
                                        new HashSet< String >( Arrays.asList( new String[] { "N",
573
 
                                                "FN", "ORG", "TITLE", "TEL", "EMAIL", "ADR", "LABEL" }
574
 
                                ) );
575
 
                                boolean is_interesting_field =
576
 
                                        interesting_fields.contains( name_param_parts[ 0 ] );
577
 
 
578
540
                                // parse encoding parameter
579
541
                                String encoding = checkParam( name_param_parts, "ENCODING" );
580
 
                                if( encoding != null )
581
 
                                        encoding = encoding.toUpperCase( Locale.US );
582
 
                                if( is_interesting_field && encoding != null &&
583
 
                                        !encoding.equals( "8BIT" ) &&
 
542
                                if( encoding != null ) encoding = encoding.toUpperCase();
 
543
                                if( encoding != null && !encoding.equals( "8BIT" ) &&
584
544
                                        !encoding.equals( "QUOTED-PRINTABLE" ) )
585
545
                                        //&& !encoding.equals( "BASE64" ) )
586
546
                                {
589
549
 
590
550
                                // parse charset parameter
591
551
                                String charset = checkParam( name_param_parts, "CHARSET" );
592
 
                                if( charset != null )
593
 
                                        charset = charset.toUpperCase( Locale.US );
594
 
                                if( charset != null &&
595
 
                                        !charset.equals( "US-ASCII" ) &&
 
552
                                if( charset != null ) charset = charset.toUpperCase();
 
553
                                if( charset != null && !charset.equals( "US-ASCII" ) &&
596
554
                                        !charset.equals( "ASCII" ) &&
597
555
                                        !charset.equals( "UTF-8" ) )
598
556
                                {
612
570
                                                _parser_multiline_state = MULTILINE_ENCODED;
613
571
                                }
614
572
 
615
 
                                // convert 8-bit US-ASCII charset to UTF-8 (where no charset is
616
 
                                // specified for a v2.1 vcard entry, we assume it's US-ASCII)
617
 
                                if( ( charset == null && _version.equals( "2.1" ) ) ||
618
 
                                        ( charset != null && (
619
 
                                                charset.equals( "ASCII" ) ||
620
 
                                                charset.equals( "US-ASCII" ) ) ) )
621
 
                                {
 
573
                                // convert 8-bit ASCII charset to US-ASCII
 
574
                                if( charset == null || charset.equals( "ASCII" ) ) {
622
575
                                        value = transcodeAsciiToUtf8( value );
 
576
                                        charset = "UTF-8";
623
577
                                }
624
578
 
625
 
                                // process charset (value is now in UTF-8)
 
579
                                // process charset
626
580
                                String string_value;
627
581
                                try {
628
582
                                        string_value = new String( value.array(), value.position(),
629
 
                                                value.limit() - value.position(), "UTF-8" );
 
583
                                                value.limit() - value.position(), charset );
630
584
                                } catch( UnsupportedEncodingException e ) {
631
585
                                        throw new ParseException( R.string.error_vcf_charset );
632
586
                                }
679
633
                                        parseEMAIL( name_param_parts, complete_value );
680
634
                                else if( name_param_parts[ 0 ].equals( "ADR" ) )
681
635
                                        parseADR( name_param_parts, complete_value );
682
 
                                else if( name_param_parts[ 0 ].equals( "LABEL" ) )
683
 
                                        parseLABEL( name_param_parts, complete_value );
684
636
                        }
685
637
                }
686
638
 
699
651
                        return ( count & 1 ) == 1;
700
652
                }
701
653
 
702
 
                private String[] splitValueByCharacter( String value, char character )
 
654
                private String[] splitValueBySemicolon( String value )
703
655
                {
704
 
                        // split string in to parts by specified character
 
656
                        // split string in to parts by semicolon
705
657
                        ArrayList< String > parts = new ArrayList< String >(
706
 
                                Arrays.asList( value.split( "" + character ) ) );
 
658
                                Arrays.asList( value.split(  ";" ) ) );
707
659
 
708
660
                        // go through parts
709
661
                        for( int a = 0; a < parts.size(); a++ )
717
669
                                if( a < parts.size() - 1 &&
718
670
                                        doesStringEndInAnEscapeChar( str ) )
719
671
                                {
720
 
                                        // append the escaped character, join the next part to this
721
 
                                        // part and remove the next part
 
672
                                        // join the next part to this part and remove the next part
722
673
                                        parts.set( a, str.substring( 0, str.length() - 1 ) +
723
 
                                                character + parts.get( a + 1 ) );
 
674
                                                ';' + parts.get( a + 1 ) );
724
675
                                        parts.remove( a + 1 );
725
676
 
726
677
                                        // re-visit this part
737
688
                        return parts.toArray( ret );
738
689
                }
739
690
 
740
 
                private String unescapeValue( String value )
741
 
                {
742
 
                        StringBuilder ret = new StringBuilder( value.length() );
743
 
                        boolean in_escape = false;
744
 
                        for( int a = 0; a < value.length(); a++ )
745
 
                        {
746
 
                                int c = value.codePointAt( a );
747
 
 
748
 
                                // process a normal character
749
 
                                if( !in_escape ) {
750
 
                                        if( c == '\\' )
751
 
                                                in_escape = true;
752
 
                                        else
753
 
                                                ret.append( Character.toChars( c ) );
754
 
                                        continue;
755
 
                                }
756
 
 
757
 
                                // process an escape sequence
758
 
                                in_escape = false;
759
 
                                switch( c )
760
 
                                {
761
 
                                case 'N':
762
 
                                case 'n':
763
 
                                        // add newline
764
 
                                        ret.append( '\n' );
765
 
                                        break;
766
 
                                case '\\':
767
 
                                case ',':
768
 
                                case ';':
769
 
                                        // add escaped character
770
 
                                        ret.append( Character.toChars( c ) );
771
 
                                        break;
772
 
                                default:
773
 
                                        // unknown escape sequence, so add it unescaped
774
 
                                        ret.append( "\\" );
775
 
                                        ret.append( Character.toChars( c ) );
776
 
                                        break;
777
 
                                }
778
 
                        }
779
 
 
780
 
                        return ret.toString();
781
 
                }
782
 
 
783
691
                private void parseN( String[] params, String value )
784
692
                {
785
693
                        // already got a better name?
786
694
                        if( _name_level >= NAMELEVEL_N ) return;
787
695
 
788
696
                        // get name parts
789
 
                        String[] name_parts = splitValueByCharacter( value, ';' );
 
697
                        String[] name_parts = splitValueBySemicolon( value );
790
698
 
791
699
                        // build name
792
700
                        value = "";
793
 
                        final int[] part_order = { 3, 1, 2, 0, 4 };
794
 
                        for( int a = 0; a < part_order.length; a++ )
795
 
                                if( name_parts.length > part_order[ a ] &&
796
 
                                        name_parts[ part_order[ a ] ].length() > 0 )
797
 
                                {
798
 
                                        // split this part in to it's comma-separated bits
799
 
                                        String[] name_part_parts = splitValueByCharacter(
800
 
                                                name_parts[ part_order[ a ] ], ',' );
801
 
                                        for( int b = 0; b < name_part_parts.length; b++ )
802
 
                                                if( name_part_parts[ b ].length() > 0 )
803
 
                                                {
804
 
                                                        if( value.length() == 0 ) value += " ";
805
 
                                                        value += name_part_parts[ b ];
806
 
                                                }
807
 
                                }
 
701
                        if( name_parts.length > 1 && name_parts[ 1 ].length() > 0 )
 
702
                                value += name_parts[ 1 ];
 
703
                        if( name_parts.length > 0 && name_parts[ 0 ].length() > 0 )
 
704
                                value += ( value.length() == 0? "" : " " ) + name_parts[ 0 ];
808
705
 
809
706
                        // set name
810
 
                        setName( unescapeValue( value ) );
 
707
                        setName( value );
811
708
                        _name_level = NAMELEVEL_N;
812
709
                }
813
710
 
817
714
                        if( _name_level >= NAMELEVEL_FN ) return;
818
715
 
819
716
                        // set name
820
 
                        setName( unescapeValue( value ) );
 
717
                        setName( value );
821
718
                        _name_level = NAMELEVEL_FN;
822
719
                }
823
720
 
824
721
                private void parseORG( String[] params, String value )
825
722
                {
826
723
                        // get org parts
827
 
                        String[] org_parts = splitValueByCharacter( value, ';' );
 
724
                        String[] org_parts = splitValueBySemicolon( value );
828
725
                        if( org_parts == null || org_parts.length < 1 ) return;
829
726
 
830
727
                        // build organisation name
832
729
                                String.valueOf( org_parts[ 0 ] ) );
833
730
                        for( int a = 1; a < org_parts.length; a++ )
834
731
                                builder.append( ", " ).append( org_parts[ a ] );
835
 
                        String organisation = unescapeValue( builder.toString() );
 
732
                        String organisation = builder.toString();
836
733
 
837
734
                        // set organisation name (using a title we've previously found)
838
735
                        addOrganisation( organisation, _cached_title, true );
849
746
 
850
747
                private void parseTITLE( String[] params, String value )
851
748
                {
852
 
                        value = unescapeValue( value );
853
 
 
854
749
                        // if we previously had an organisation, look it up and append this
855
750
                        // title to it
856
751
                        if( _cached_organisation != null && hasOrganisations() ) {
878
773
                                "PAGER", "BBS", "MODEM", "CAR", "ISDN", "VIDEO" ) );
879
774
 
880
775
                        // here's the logic...
881
 
                        boolean is_preferred = types.contains( "PREF" );
 
776
                        boolean preferred = types.contains( "PREF" );
882
777
                        int type;
883
778
                        if( types.contains( "FAX" ) )
884
779
                                if( types.contains( "HOME" ) )
885
 
                                        type = TYPE_FAX_HOME;
 
780
                                        type = PhonesColumns.TYPE_FAX_HOME;
886
781
                                else
887
 
                                        type = TYPE_FAX_WORK;
 
782
                                        type = PhonesColumns.TYPE_FAX_WORK;
888
783
                        else if( types.contains( "CELL" ) || types.contains( "VIDEO" ) )
889
 
                                type = TYPE_MOBILE;
 
784
                                type = PhonesColumns.TYPE_MOBILE;
890
785
                        else if( types.contains( "PAGER" ) )
891
 
                                type = TYPE_PAGER;
 
786
                                type = PhonesColumns.TYPE_PAGER;
892
787
                        else if( types.contains( "WORK" ) )
893
 
                                type = TYPE_WORK;
 
788
                                type = PhonesColumns.TYPE_WORK;
894
789
                        else
895
 
                                type = TYPE_HOME;
 
790
                                type = PhonesColumns.TYPE_HOME;
896
791
 
897
792
                        // add phone number
898
 
                        addNumber( value, type, is_preferred );
 
793
                        addNumber( value, type, preferred );
899
794
                }
900
795
 
901
796
                public void parseEMAIL( String[] params, String value )
906
801
                                "PREF", "WORK", "HOME", "INTERNET" ) );
907
802
 
908
803
                        // add email address
909
 
                        boolean is_preferred = types.contains( "PREF" );
 
804
                        boolean preferred = types.contains( "PREF" );
910
805
                        int type;
911
806
                        if( types.contains( "WORK" ) )
912
 
                                type = TYPE_WORK;
 
807
                                type = Contacts.ContactMethods.TYPE_WORK;
913
808
                        else
914
 
                                type = TYPE_HOME;
 
809
                                type = Contacts.ContactMethods.TYPE_HOME;
915
810
 
916
 
                        addEmail( unescapeValue( value ), type, is_preferred );
 
811
                        addEmail( value, type, preferred );
917
812
                }
918
813
 
919
814
                private void parseADR( String[] params, String value )
920
815
                {
921
816
                        // get address parts
922
 
                        String[] adr_parts = splitValueByCharacter( value, ';' );
 
817
                        String[] adr_parts = splitValueBySemicolon( value );
923
818
 
924
819
                        // build address
925
820
                        value = "";
926
 
                        for( int a = 0; a < adr_parts.length; a++ )
927
 
                                if( adr_parts[ a ].length() > 0 )
928
 
                                {
929
 
                                        // split this part in to it's comma-separated bits
930
 
                                        String[] adr_part_parts =
931
 
                                                splitValueByCharacter( adr_parts[ a ], ',' );
932
 
                                        for( int b = 0; b < adr_part_parts.length; b++ )
933
 
                                                if( adr_part_parts[ b ].length() > 0 )
934
 
                                                {
935
 
                                                        if( value.length() > 0 ) value += "\n";
936
 
                                                        value += adr_part_parts[ b ];
937
 
                                                }
938
 
                                }
939
 
 
940
 
                        Set< String > types = extractTypes( params, Arrays.asList(
941
 
                                "PREF", "WORK", "HOME" ) );
942
 
 
943
 
                        // add address
944
 
                        int type;
945
 
                        if( types.contains( "WORK" ) )
946
 
                                type = TYPE_WORK;
947
 
                        else
948
 
                                type = TYPE_HOME;
949
 
 
950
 
                        addAddress( unescapeValue( value ), type );
951
 
                }
952
 
 
953
 
                private void parseLABEL( String[] params, String value )
954
 
                {
955
 
                        Set< String > types = extractTypes( params, Arrays.asList(
956
 
                                "PREF", "WORK", "HOME" ) );
957
 
 
958
 
                        // add address
959
 
                        int type;
960
 
                        if( types.contains( "WORK" ) )
961
 
                                type = TYPE_WORK;
962
 
                        else
963
 
                                type = TYPE_HOME;
964
 
 
965
 
                        addAddress( unescapeValue( value ), type );
966
 
                }
967
 
 
968
 
                public void finaliseVcard()
969
 
                        throws ParseException, ContactNotIdentifiableException
 
821
                        for( int a = 0; a < adr_parts.length; a++ ) {
 
822
                                if( value.length() > 0 ) value += "\n";
 
823
                                value += adr_parts[ a ].trim();
 
824
                        }
 
825
 
 
826
                        Set< String > types = extractTypes( params, Arrays.asList(
 
827
                                "PREF", "WORK", "HOME", "INTERNET" ) );
 
828
 
 
829
                        // add address
 
830
                        int type;
 
831
                        if( types.contains( "WORK" ) )
 
832
                                type = Contacts.ContactMethods.TYPE_WORK;
 
833
                        else
 
834
                                type = Contacts.ContactMethods.TYPE_HOME;
 
835
 
 
836
                        addAddress( value, type );
 
837
                }
 
838
 
 
839
                public void finaliseParsing()
 
840
                        throws ParseException, SkipContactException,
 
841
                        AbortImportException
970
842
                {
971
843
                        // missing version (and data is present)
972
844
                        if( _version == null && _buffers != null )
973
845
                                throw new ParseException( R.string.error_vcf_malformed );
974
846
 
975
 
                        // finalise the parent class
976
 
                        finalise();
 
847
                        // check if we should import this contact
 
848
                        try {
 
849
                                if( !isImportRequired( this ) )
 
850
                                        throw new SkipContactException();
 
851
                        }
 
852
                        catch( ContactNeedsMoreInfoException e ) {
 
853
                                throw new ParseException( R.string.error_vcf_notenoughinfo );
 
854
                        }
977
855
                }
978
856
 
979
 
                /**
980
 
                 * Amongst the params, find the value of the first, only, of any with
981
 
                 * the specified name
982
 
                 * @param params
983
 
                 * @param name
984
 
                 * @return a value, or null
985
 
                 */
986
857
                private String checkParam( String[] params, String name )
987
858
                {
988
 
                        String[] res = checkParams( params, name );
989
 
                        return res.length > 0? res[ 0 ] : null;
990
 
                }
991
 
 
992
 
                /**
993
 
                 * Amongst the params, find the values of any with the specified name
994
 
                 * @param params
995
 
                 * @param name
996
 
                 * @return an array of values, or null
997
 
                 */
998
 
                private String[] checkParams( String[] params, String name )
999
 
                {
1000
 
                        HashSet< String > ret = new HashSet< String >();
1001
 
 
1002
859
                        Pattern p = Pattern.compile(
1003
860
                                "^" + name + "[ \\t]*=[ \\t]*(\"?)(.*)\\1$" );
1004
861
                        for( int i = 0; i < params.length; i++ ) {
1005
862
                                Matcher m = p.matcher( params[ i ] );
1006
863
                                if( m.matches() )
1007
 
                                        ret.add( m.group( 2 ) );
 
864
                                        return m.group( 2 );
1008
865
                        }
1009
 
 
1010
 
                        return (String[]) ret.toArray( new String[ ret.size() ] );
 
866
                        return null;
1011
867
                }
1012
868
 
1013
 
                /**
1014
 
                 * Amongst the params, return any type values present. For v2.1 vCards,
1015
 
                 * those types are just parameters. For v3.0, they are prefixed with
1016
 
                 * "TYPE=". There may also be multiple type parameters.
1017
 
                 * @param params
1018
 
                 * @param a list of type values to look for
1019
 
                 * @return a set of present type values
1020
 
                 */
1021
869
                private Set< String > extractTypes( String[] params,
1022
870
                        List< String > valid_types )
1023
871
                {
1024
872
                        HashSet< String > types = new HashSet< String >();
1025
873
 
1026
874
                        // get 3.0-style TYPE= param
1027
 
                        String type_params[] = checkParams( params, "TYPE" );
1028
 
                        for( int a = 0; a < type_params.length; a++ )
1029
 
                        {
1030
 
                                // check for a comma-separated list of types (why? this isn't in
1031
 
                                // the specs!)
1032
 
                                String[] parts = type_params[ a ].split( "," );
 
875
                        String type_param;
 
876
                        if( ( type_param = checkParam( params, "TYPE" ) ) != null ) {
 
877
                                String[] parts = type_param.split( "," );
1033
878
                                for( int i = 0; i < parts.length; i++ )
1034
879
                                        if( valid_types.contains( parts[ i ] ) )
1035
880
                                                types.add( parts[ i ] );