/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/am/ed/importcontacts/VcardImporter.java

  • Committer: edam
  • Date: 2012-12-21 10:43:13 UTC
  • Revision ID: tim@ed.am-20121221104313-56z6pdon3oqtpllf
updated NEWS and TODO

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 <edam@waxworlds.org>
 
4
 * Copyright (C) 2009 to 2011 Tim Marston <tim@ed.am>
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://www.waxworlds.org/edam/software/android/import-contacts
 
8
 * http://ed.am/dev/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 org.waxworlds.edam.importcontacts;
 
24
package am.ed.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;
41
42
import java.util.NoSuchElementException;
42
43
import java.util.Set;
43
44
import java.util.Vector;
44
45
import java.util.regex.Matcher;
45
46
import java.util.regex.Pattern;
46
47
 
 
48
import android.annotation.SuppressLint;
47
49
import android.content.SharedPreferences;
48
 
import android.provider.Contacts;
49
 
import android.provider.Contacts.PhonesColumns;
50
50
 
51
 
public class VCFImporter extends Importer
 
51
public class VcardImporter extends Importer
52
52
{
53
53
        private int _vcard_count = 0;
54
54
        private int _progress = 0;
55
55
 
56
 
        public VCFImporter( Doit doit )
 
56
        public VcardImporter( Doit doit )
57
57
        {
58
58
                super( doit );
59
59
        }
60
60
 
 
61
        @SuppressLint( "SdCardPath" )
61
62
        @Override
62
63
        protected void onImport() throws AbortImportException
63
64
        {
82
83
                                // get files
83
84
                                class VCardFilter implements FilenameFilter {
84
85
                                        public boolean accept( File dir, String name ) {
85
 
                                                return name.toLowerCase().endsWith( ".vcf" );
 
86
                                                return name.toLowerCase( Locale.US ).endsWith( ".vcf" );
86
87
                                        }
87
88
                                }
88
89
                                files = file.listFiles( new VCardFilter() );
116
117
                setProgress( 0 );
117
118
                for( int i = 0; i < files.length; i++ )
118
119
                        importVCardFile( files[ i ] );
 
120
                setProgress( _vcard_count );
119
121
        }
120
122
 
121
123
        private void countVCardFile( File file ) throws AbortImportException
168
170
                        FileInputStream istream = new FileInputStream( file );
169
171
                        byte[] content = new byte[ (int)file.length() ];
170
172
                        istream.read( content );
 
173
                        istream = null;
171
174
 
172
175
                        // import
173
176
                        importVCardFileContent( content, file.getName() );
185
188
                throws AbortImportException
186
189
        {
187
190
                // go through lines
188
 
                VCard vcard = null;
 
191
                Vcard vcard = null;
 
192
                int vcard_start_line = 0;
189
193
                ContentLineIterator cli = new ContentLineIterator( content );
190
194
                while( cli.hasNext() )
191
195
                {
204
208
 
205
209
                        if( vcard == null ) {
206
210
                                // look for vcard beginning
207
 
                                if( line.matches( "^BEGIN:VCARD" ) ) {
208
 
                                        setProgress( ++_progress );
209
 
                                        vcard = new VCard();
 
211
                                if( line.matches( "^BEGIN[ \t]*:[ \t]*VCARD" ) ) {
 
212
                                        setProgress( _progress++ );
 
213
                                        vcard = new Vcard();
 
214
                                        vcard_start_line = cli.getLineNumber();
210
215
                                }
211
216
                        }
212
217
                        else {
213
218
                                // look for vcard content or ending
214
 
                                if( line.matches( "^END:VCARD" ) )
 
219
                                if( line.matches( "^END[ \t]*:[ \t]*VCARD" ) )
215
220
                                {
216
 
                                        // store vcard and do away with it
 
221
                                        // finalise the vcard/contact
217
222
                                        try {
218
 
                                                vcard.finaliseParsing();
 
223
                                                vcard.finaliseVcard();
 
224
 
 
225
                                                // pass the finalised contact to the importer
219
226
                                                importContact( vcard );
220
227
                                        }
221
 
                                        catch( VCard.ParseException e ) {
222
 
                                                skipContact();
223
 
                                                if( !showContinue(
224
 
                                                        getText( R.string.error_vcf_parse ).toString()
225
 
                                                        + fileName + "\n" + e.getMessage() ) )
226
 
                                                {
227
 
                                                        finish( ACTION_ABORT );
228
 
                                                }
229
 
                                        }
230
 
                                        catch( VCard.SkipContactException e ) {
231
 
                                                skipContact();
232
 
                                                // do nothing
233
 
                                        }
 
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
234
256
                                        vcard = null;
235
257
                                }
236
258
                                else
240
262
                                                vcard.parseLine( buffer, line,
241
263
                                                        cli.doesNextLineLookFolded() );
242
264
                                        }
243
 
                                        catch( VCard.ParseException e ) {
 
265
                                        catch( Vcard.ParseException e ) {
244
266
                                                skipContact();
245
267
                                                if( !showContinue(
246
268
                                                        getText( R.string.error_vcf_parse ).toString()
247
 
                                                        + fileName + "\n" + e.getMessage() ) )
 
269
                                                        + fileName +
 
270
                                                        getText( R.string.error_vcf_parse_line ).toString()
 
271
                                                        + cli.getLineNumber() + "\n" + e.getMessage() ) )
248
272
                                                {
249
273
                                                        finish( ACTION_ABORT );
250
274
                                                }
254
278
                                                // get to another BEGIN:VCARD line.
255
279
                                                vcard = null;
256
280
                                        }
257
 
                                        catch( VCard.SkipContactException e ) {
 
281
                                        catch( Vcard.SkipImportException e ) {
258
282
                                                skipContact();
259
283
                                                // abort this vCard. Further lines will be ignored until
260
284
                                                // we get to another BEGIN:VCARD line.
269
293
        {
270
294
                protected byte[] _content = null;
271
295
                protected int _pos = 0;
 
296
                protected int _line = 0;
272
297
 
273
298
                public ContentLineIterator( byte[] content )
274
299
                {
294
319
                                        int to = ( _pos > 0 && _content[ _pos - 1 ] == '\r' &&
295
320
                                                _pos > initial_pos )? _pos - 1 : _pos;
296
321
                                        _pos++;
 
322
                                        _line++;
297
323
                                        return ByteBuffer.wrap( _content, initial_pos,
298
324
                                                to - initial_pos );
299
325
                                }
302
328
                        if( _pos != initial_pos ) {
303
329
                                int to = _pos;
304
330
                                _pos++;
 
331
                                _line++;
305
332
                                return ByteBuffer.wrap( _content, initial_pos,
306
333
                                        to - initial_pos );
307
334
                        }
324
351
                public boolean doesNextLineLookFolded()
325
352
                {
326
353
                        return _pos > 0 && _pos < _content.length &&
327
 
                                _content[ _pos - 1 ] == '\n' && _content[ _pos ] == ' ';
 
354
                                _content[ _pos - 1 ] == '\n' &&
 
355
                                ( _content[ _pos ] == ' ' || _content[ _pos ] == '\t' );
 
356
                }
 
357
 
 
358
                public int getLineNumber()
 
359
                {
 
360
                        return _line;
328
361
                }
329
362
        }
330
363
 
331
 
        private class VCard extends ContactData
 
364
        private class Vcard extends ContactData
332
365
        {
333
366
                private final static int NAMELEVEL_NONE = 0;
334
 
                private final static int NAMELEVEL_FN = 1;
335
 
                private final static int NAMELEVEL_N = 2;
 
367
                private final static int NAMELEVEL_N = 1;
 
368
                private final static int NAMELEVEL_FN = 2;
336
369
 
337
370
                private final static int MULTILINE_NONE = 0;
338
371
                private final static int MULTILINE_ENCODED = 1; // v2.1 quoted-printable
339
372
                private final static int MULTILINE_ESCAPED = 2; // v2.1 \\CRLF
340
 
                private final static int MULTILINE_FOLDED = 3;  // v3.0 folding
 
373
                private final static int MULTILINE_FOLDED = 3;  // MIME-DIR folding
341
374
 
342
375
                private String _version = null;
343
376
                private Vector< ByteBuffer > _buffers = null;
382
415
 
383
416
                        public ParseException( int res )
384
417
                        {
385
 
                                super( VCFImporter.this.getText( res ).toString() );
 
418
                                super( VcardImporter.this.getText( res ).toString() );
386
419
                        }
387
420
                }
388
421
 
389
422
                @SuppressWarnings("serial")
390
 
                protected class SkipContactException extends Exception { }
 
423
                protected class SkipImportException extends Exception { }
391
424
 
392
425
                private String extractCollonPartFromLine( ByteBuffer buffer,
393
426
                        String line, boolean former )
429
462
 
430
463
                public void parseLine( ByteBuffer buffer, String line,
431
464
                        boolean next_line_looks_folded )
432
 
                        throws ParseException, SkipContactException,
 
465
                        throws ParseException, SkipImportException,
433
466
                        AbortImportException
434
467
                {
435
468
                        // do we have a version yet?
441
474
 
442
475
                                // is it a version line?
443
476
                                if( name_and_params != null &&
444
 
                                        name_and_params.equals( "VERSION" ) )
 
477
                                        name_and_params.equalsIgnoreCase( "VERSION" ) )
445
478
                                {
446
479
                                        // yes, get it!
447
480
                                        String value = extractValueFromLine( buffer, line );
535
568
                                for( int i = 0; i < name_param_parts.length; i++ )
536
569
                                        name_param_parts[ i ] = name_param_parts[ i ].trim();
537
570
 
 
571
                                // determine whether we care about this entry
 
572
                                final HashSet< String > interesting_fields =
 
573
                                        new HashSet< String >( Arrays.asList( new String[] { "N",
 
574
                                                "FN", "ORG", "TITLE", "TEL", "EMAIL", "ADR", "LABEL" }
 
575
                                ) );
 
576
                                boolean is_interesting_field =
 
577
                                        interesting_fields.contains( name_param_parts[ 0 ] );
 
578
 
538
579
                                // parse encoding parameter
539
580
                                String encoding = checkParam( name_param_parts, "ENCODING" );
540
 
                                if( encoding != null ) encoding = encoding.toUpperCase();
541
 
                                if( encoding != null && !encoding.equals( "8BIT" ) &&
542
 
                                        !encoding.equals( "QUOTED-PRINTABLE" ) )
543
 
                                        //&& !encoding.equals( "BASE64" ) )
 
581
                                if( encoding != null )
 
582
                                        encoding = encoding.toUpperCase( Locale.US );
 
583
                                if( is_interesting_field && encoding != null &&
 
584
                                        !encoding.equalsIgnoreCase( "8BIT" ) &&
 
585
                                        !encoding.equalsIgnoreCase( "QUOTED-PRINTABLE" ) )
 
586
                                        //&& !encoding.equalsIgnoreCase( "BASE64" ) )
544
587
                                {
545
588
                                        throw new ParseException( R.string.error_vcf_encoding );
546
589
                                }
547
590
 
548
591
                                // parse charset parameter
549
592
                                String charset = checkParam( name_param_parts, "CHARSET" );
550
 
                                if( charset != null ) charset = charset.toUpperCase();
551
 
                                if( charset != null && !charset.equals( "US-ASCII" ) &&
552
 
                                        !charset.equals( "ASCII" ) &&
553
 
                                        !charset.equals( "UTF-8" ) )
 
593
                                if( charset != null )
 
594
                                        charset = charset.toUpperCase( Locale.US );
 
595
                                if( charset != null &&
 
596
                                        !charset.equalsIgnoreCase( "US-ASCII" ) &&
 
597
                                        !charset.equalsIgnoreCase( "ASCII" ) &&
 
598
                                        !charset.equalsIgnoreCase( "UTF-8" ) )
554
599
                                {
555
600
                                        throw new ParseException( R.string.error_vcf_charset );
556
601
                                }
558
603
                                // do unencoding (or default to a fake unencoding result with
559
604
                                // the raw string)
560
605
                                UnencodeResult unencoding_result = null;
561
 
                                if( encoding != null && encoding.equals( "QUOTED-PRINTABLE" ) )
 
606
                                if( encoding != null &&
 
607
                                        encoding.equalsIgnoreCase( "QUOTED-PRINTABLE" ) )
 
608
                                {
562
609
                                        unencoding_result = unencodeQuotedPrintable( value );
563
 
//                              else if( encoding != null && encoding.equals( "BASE64" ) )
 
610
                                }
 
611
//                              else if( encoding != null &&
 
612
//                                      encoding.equalsIgnoreCase( "BASE64" ) )
 
613
//                              {
564
614
//                                      unencoding_result = unencodeBase64( props[ 1 ], charset );
 
615
//                              }
565
616
                                if( unencoding_result != null ) {
566
617
                                        value = unencoding_result.getBuffer();
567
618
                                        if( unencoding_result.isAnotherLineRequired() )
568
619
                                                _parser_multiline_state = MULTILINE_ENCODED;
569
620
                                }
570
621
 
571
 
                                // convert 8-bit ASCII charset to US-ASCII
572
 
                                if( charset == null || charset.equals( "ASCII" ) ) {
 
622
                                // convert 8-bit US-ASCII charset to UTF-8 (where no charset is
 
623
                                // specified for a v2.1 vcard entry, we assume it's US-ASCII)
 
624
                                if( ( charset == null && _version.equals( "2.1" ) ) ||
 
625
                                        ( charset != null && (
 
626
                                                charset.equalsIgnoreCase( "ASCII" ) ||
 
627
                                                charset.equalsIgnoreCase( "US-ASCII" ) ) ) )
 
628
                                {
573
629
                                        value = transcodeAsciiToUtf8( value );
574
 
                                        charset = "UTF-8";
575
630
                                }
576
631
 
577
 
                                // process charset
 
632
                                // process charset (value is now in UTF-8)
578
633
                                String string_value;
579
634
                                try {
580
635
                                        string_value = new String( value.array(), value.position(),
581
 
                                                value.limit() - value.position(), charset );
 
636
                                                value.limit() - value.position(), "UTF-8" );
582
637
                                } catch( UnsupportedEncodingException e ) {
583
638
                                        throw new ParseException( R.string.error_vcf_charset );
584
639
                                }
586
641
                                // for some entries that have semicolon-separated value parts,
587
642
                                // check to see if the value ends in an escape character, which
588
643
                                // indicates that we have a multi-line value
589
 
                                if( ( name_param_parts[ 0 ].equals( "N" ) ||
590
 
                                        name_param_parts[ 0 ].equals( "ORG" ) ||
591
 
                                        name_param_parts[ 0 ].equals( "ADR" ) ) &&
 
644
                                if( ( name_param_parts[ 0 ].equalsIgnoreCase( "N" ) ||
 
645
                                        name_param_parts[ 0 ].equalsIgnoreCase( "ORG" ) ||
 
646
                                        name_param_parts[ 0 ].equalsIgnoreCase( "ADR" ) ) &&
592
647
                                        doesStringEndInAnEscapeChar( string_value ) )
593
648
                                {
594
649
                                        _parser_multiline_state = MULTILINE_ESCAPED;
596
651
                                                string_value.length() - 1 );
597
652
                                }
598
653
 
599
 
                                // now we know whether we're in an encoding multi-line,
600
 
                                // determine if we're in a v3 folded multi-line or not
 
654
                                // if we know we're not in an encoding-based multi-line, check
 
655
                                // to see if we're in a folded multi-line
601
656
                                if( _parser_multiline_state == MULTILINE_NONE &&
602
 
                                        _version.equals( "3.0" ) && next_line_looks_folded )
 
657
                                        next_line_looks_folded )
603
658
                                {
604
659
                                        _parser_multiline_state = MULTILINE_FOLDED;
605
660
                                }
617
672
                                if( complete_value.length() < 1 ) return;
618
673
 
619
674
                                // parse some properties
620
 
                                if( name_param_parts[ 0 ].equals( "N" ) )
 
675
                                if( name_param_parts[ 0 ].equalsIgnoreCase( "N" ) )
621
676
                                        parseN( name_param_parts, complete_value );
622
 
                                else if( name_param_parts[ 0 ].equals( "FN" ) )
 
677
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "FN" ) )
623
678
                                        parseFN( name_param_parts, complete_value );
624
 
                                else if( name_param_parts[ 0 ].equals( "ORG" ) )
 
679
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "ORG" ) )
625
680
                                        parseORG( name_param_parts, complete_value );
626
 
                                else if( name_param_parts[ 0 ].equals( "TITLE" ) )
 
681
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "TITLE" ) )
627
682
                                        parseTITLE( name_param_parts, complete_value );
628
 
                                else if( name_param_parts[ 0 ].equals( "TEL" ) )
 
683
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "TEL" ) )
629
684
                                        parseTEL( name_param_parts, complete_value );
630
 
                                else if( name_param_parts[ 0 ].equals( "EMAIL" ) )
 
685
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "EMAIL" ) )
631
686
                                        parseEMAIL( name_param_parts, complete_value );
632
 
                                else if( name_param_parts[ 0 ].equals( "ADR" ) )
 
687
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "ADR" ) )
633
688
                                        parseADR( name_param_parts, complete_value );
 
689
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "LABEL" ) )
 
690
                                        parseLABEL( name_param_parts, complete_value );
 
691
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "NOTE" ) )
 
692
                                        parseNOTE( name_param_parts, complete_value );
634
693
                        }
635
694
                }
636
695
 
649
708
                        return ( count & 1 ) == 1;
650
709
                }
651
710
 
652
 
                private String[] splitValueBySemicolon( String value )
 
711
                private String[] splitValueByCharacter( String value, char character )
653
712
                {
654
 
                        // split string in to parts by semicolon
 
713
                        // split string in to parts by specified character
655
714
                        ArrayList< String > parts = new ArrayList< String >(
656
 
                                Arrays.asList( value.split(  ";" ) ) );
 
715
                                Arrays.asList( value.split( "" + character ) ) );
657
716
 
658
717
                        // go through parts
659
718
                        for( int a = 0; a < parts.size(); a++ )
667
726
                                if( a < parts.size() - 1 &&
668
727
                                        doesStringEndInAnEscapeChar( str ) )
669
728
                                {
670
 
                                        // join the next part to this part and remove the next part
 
729
                                        // append the escaped character, join the next part to this
 
730
                                        // part and remove the next part
671
731
                                        parts.set( a, str.substring( 0, str.length() - 1 ) +
672
 
                                                ';' + parts.get( a + 1 ) );
 
732
                                                character + parts.get( a + 1 ) );
673
733
                                        parts.remove( a + 1 );
674
734
 
675
735
                                        // re-visit this part
686
746
                        return parts.toArray( ret );
687
747
                }
688
748
 
 
749
                private String unescapeValue( String value )
 
750
                {
 
751
                        StringBuilder ret = new StringBuilder( value.length() );
 
752
                        boolean in_escape = false;
 
753
                        for( int a = 0; a < value.length(); a++ )
 
754
                        {
 
755
                                int c = value.codePointAt( a );
 
756
 
 
757
                                // process a normal character
 
758
                                if( !in_escape ) {
 
759
                                        if( c == '\\' )
 
760
                                                in_escape = true;
 
761
                                        else
 
762
                                                ret.append( Character.toChars( c ) );
 
763
                                        continue;
 
764
                                }
 
765
 
 
766
                                // process an escape sequence
 
767
                                in_escape = false;
 
768
                                switch( c )
 
769
                                {
 
770
                                case 'T':
 
771
                                case 't':
 
772
                                        // add tab (invalid/non-standard, but accepted)
 
773
                                        ret.append( '\t' );
 
774
                                        break;
 
775
                                case 'N':
 
776
                                case 'n':
 
777
                                        // add newline
 
778
                                        ret.append( '\n' );
 
779
                                        break;
 
780
                                case '\\':
 
781
                                case ',':
 
782
                                case ';':
 
783
                                        // add escaped character
 
784
                                        ret.append( Character.toChars( c ) );
 
785
                                        break;
 
786
                                default:
 
787
                                        // unknown escape sequence, so add it unescaped
 
788
                                        // (invalid/non-standard, but accepted)
 
789
                                        ret.append( "\\" );
 
790
                                        ret.append( Character.toChars( c ) );
 
791
                                        break;
 
792
                                }
 
793
                        }
 
794
 
 
795
                        return ret.toString();
 
796
                }
 
797
 
689
798
                private void parseN( String[] params, String value )
690
799
                {
691
800
                        // already got a better name?
692
801
                        if( _name_level >= NAMELEVEL_N ) return;
693
802
 
694
803
                        // get name parts
695
 
                        String[] name_parts = splitValueBySemicolon( value );
 
804
                        String[] name_parts = splitValueByCharacter( value, ';' );
696
805
 
697
806
                        // build name
698
807
                        value = "";
699
 
                        if( name_parts.length > 1 && name_parts[ 1 ].length() > 0 )
700
 
                                value += name_parts[ 1 ];
701
 
                        if( name_parts.length > 0 && name_parts[ 0 ].length() > 0 )
702
 
                                value += ( value.length() == 0? "" : " " ) + name_parts[ 0 ];
 
808
                        final int[] part_order = { 3, 1, 2, 0, 4 };
 
809
                        for( int a = 0; a < part_order.length; a++ )
 
810
                                if( name_parts.length > part_order[ a ] &&
 
811
                                        name_parts[ part_order[ a ] ].length() > 0 )
 
812
                                {
 
813
                                        // split this part in to it's comma-separated bits
 
814
                                        String[] name_part_parts = splitValueByCharacter(
 
815
                                                name_parts[ part_order[ a ] ], ',' );
 
816
                                        for( int b = 0; b < name_part_parts.length; b++ )
 
817
                                                if( name_part_parts[ b ].length() > 0 )
 
818
                                                {
 
819
                                                        if( value.length() == 0 ) value += " ";
 
820
                                                        value += name_part_parts[ b ];
 
821
                                                }
 
822
                                }
703
823
 
704
824
                        // set name
705
 
                        setName( value );
 
825
                        setName( unescapeValue( value ) );
706
826
                        _name_level = NAMELEVEL_N;
707
827
                }
708
828
 
712
832
                        if( _name_level >= NAMELEVEL_FN ) return;
713
833
 
714
834
                        // set name
715
 
                        setName( value );
 
835
                        setName( unescapeValue( value ) );
716
836
                        _name_level = NAMELEVEL_FN;
717
837
                }
718
838
 
719
839
                private void parseORG( String[] params, String value )
720
840
                {
721
841
                        // get org parts
722
 
                        String[] org_parts = splitValueBySemicolon( value );
 
842
                        String[] org_parts = splitValueByCharacter( value, ';' );
723
843
                        if( org_parts == null || org_parts.length < 1 ) return;
724
844
 
725
845
                        // build organisation name
727
847
                                String.valueOf( org_parts[ 0 ] ) );
728
848
                        for( int a = 1; a < org_parts.length; a++ )
729
849
                                builder.append( ", " ).append( org_parts[ a ] );
730
 
                        String organisation = builder.toString();
 
850
                        String organisation = unescapeValue( builder.toString() );
731
851
 
732
852
                        // set organisation name (using a title we've previously found)
733
853
                        addOrganisation( organisation, _cached_title, true );
744
864
 
745
865
                private void parseTITLE( String[] params, String value )
746
866
                {
 
867
                        value = unescapeValue( value );
 
868
 
747
869
                        // if we previously had an organisation, look it up and append this
748
870
                        // title to it
749
871
                        if( _cached_organisation != null && hasOrganisations() ) {
775
897
                        int type;
776
898
                        if( types.contains( "FAX" ) )
777
899
                                if( types.contains( "HOME" ) )
778
 
                                        type = PhonesColumns.TYPE_FAX_HOME;
 
900
                                        type = TYPE_FAX_HOME;
779
901
                                else
780
 
                                        type = PhonesColumns.TYPE_FAX_WORK;
 
902
                                        type = TYPE_FAX_WORK;
781
903
                        else if( types.contains( "CELL" ) || types.contains( "VIDEO" ) )
782
 
                                type = PhonesColumns.TYPE_MOBILE;
 
904
                                type = TYPE_MOBILE;
783
905
                        else if( types.contains( "PAGER" ) )
784
 
                                type = PhonesColumns.TYPE_PAGER;
 
906
                                type = TYPE_PAGER;
785
907
                        else if( types.contains( "WORK" ) )
786
 
                                type = PhonesColumns.TYPE_WORK;
 
908
                                type = TYPE_WORK;
787
909
                        else
788
 
                                type = PhonesColumns.TYPE_HOME;
 
910
                                type = TYPE_HOME;
789
911
 
790
912
                        // add phone number
791
913
                        addNumber( value, type, is_preferred );
802
924
                        boolean is_preferred = types.contains( "PREF" );
803
925
                        int type;
804
926
                        if( types.contains( "WORK" ) )
805
 
                                type = Contacts.ContactMethods.TYPE_WORK;
 
927
                                type = TYPE_WORK;
806
928
                        else
807
 
                                type = Contacts.ContactMethods.TYPE_HOME;
 
929
                                type = TYPE_HOME;
808
930
 
809
 
                        addEmail( value, type, is_preferred );
 
931
                        addEmail( unescapeValue( value ), type, is_preferred );
810
932
                }
811
933
 
812
934
                private void parseADR( String[] params, String value )
813
935
                {
814
936
                        // get address parts
815
 
                        String[] adr_parts = splitValueBySemicolon( value );
 
937
                        String[] adr_parts = splitValueByCharacter( value, ';' );
816
938
 
817
939
                        // build address
818
940
                        value = "";
819
 
                        for( int a = 0; a < adr_parts.length; a++ ) {
820
 
                                if( value.length() > 0 ) value += "\n";
821
 
                                value += adr_parts[ a ].trim();
822
 
                        }
823
 
 
824
 
                        Set< String > types = extractTypes( params, Arrays.asList(
825
 
                                "PREF", "WORK", "HOME", "INTERNET" ) );
826
 
 
827
 
                        // add address
828
 
                        int type;
829
 
                        if( types.contains( "WORK" ) )
830
 
                                type = Contacts.ContactMethods.TYPE_WORK;
831
 
                        else
832
 
                                type = Contacts.ContactMethods.TYPE_HOME;
833
 
 
834
 
                        addAddress( value, type );
835
 
                }
836
 
 
837
 
                public void finaliseParsing()
838
 
                        throws ParseException, SkipContactException,
839
 
                        AbortImportException
 
941
                        for( int a = 0; a < adr_parts.length; a++ )
 
942
                                if( adr_parts[ a ].length() > 0 )
 
943
                                {
 
944
                                        // version 3.0 vCards allow further splitting by comma
 
945
                                        if( _version.equals( "3.0" ) )
 
946
                                        {
 
947
                                                // split this part in to it's comma-separated bits and
 
948
                                                // add them on individual lines
 
949
                                                String[] adr_part_parts =
 
950
                                                        splitValueByCharacter( adr_parts[ a ], ',' );
 
951
                                                for( int b = 0; b < adr_part_parts.length; b++ )
 
952
                                                        if( adr_part_parts[ b ].length() > 0 )
 
953
                                                        {
 
954
                                                                if( value.length() > 0 ) value += "\n";
 
955
                                                                value += adr_part_parts[ b ];
 
956
                                                        }
 
957
                                        }
 
958
                                        else
 
959
                                        {
 
960
                                                // add this part on an individual line
 
961
                                                if( value.length() > 0 ) value += "\n";
 
962
                                                value += adr_parts[ a ];
 
963
                                        }
 
964
                                }
 
965
 
 
966
                        Set< String > types = extractTypes( params, Arrays.asList(
 
967
                                "PREF", "WORK", "HOME" ) );
 
968
 
 
969
                        // add address
 
970
                        int type;
 
971
                        if( types.contains( "WORK" ) )
 
972
                                type = TYPE_WORK;
 
973
                        else
 
974
                                type = TYPE_HOME;
 
975
 
 
976
                        addAddress( unescapeValue( value ), type );
 
977
                }
 
978
 
 
979
                private void parseLABEL( String[] params, String value )
 
980
                {
 
981
                        Set< String > types = extractTypes( params, Arrays.asList(
 
982
                                "PREF", "WORK", "HOME" ) );
 
983
 
 
984
                        // add address
 
985
                        int type;
 
986
                        if( types.contains( "WORK" ) )
 
987
                                type = TYPE_WORK;
 
988
                        else
 
989
                                type = TYPE_HOME;
 
990
 
 
991
                        addAddress( unescapeValue( value ), type );
 
992
                }
 
993
 
 
994
                private void parseNOTE( String[] params, String value )
 
995
                {
 
996
                        addNote( unescapeValue( value ) );
 
997
                }
 
998
 
 
999
                public void finaliseVcard()
 
1000
                        throws ParseException, ContactNotIdentifiableException
840
1001
                {
841
1002
                        // missing version (and data is present)
842
1003
                        if( _version == null && _buffers != null )
843
1004
                                throw new ParseException( R.string.error_vcf_malformed );
844
1005
 
845
 
                        // check if we should import this contact
846
 
                        try {
847
 
                                if( !isImportRequired( this ) )
848
 
                                        throw new SkipContactException();
849
 
                        }
850
 
                        catch( ContactNeedsMoreInfoException e ) {
851
 
                                throw new ParseException( R.string.error_vcf_notenoughinfo );
852
 
                        }
 
1006
                        // finalise the parent class
 
1007
                        finalise();
853
1008
                }
854
1009
 
 
1010
                /**
 
1011
                 * Amongst the params, find the value of the first, only, of any with
 
1012
                 * the specified name
 
1013
                 * @param params
 
1014
                 * @param name
 
1015
                 * @return a value, or null
 
1016
                 */
855
1017
                private String checkParam( String[] params, String name )
856
1018
                {
 
1019
                        String[] res = checkParams( params, name );
 
1020
                        return res.length > 0? res[ 0 ] : null;
 
1021
                }
 
1022
 
 
1023
                /**
 
1024
                 * Amongst the params, find the values of any with the specified name
 
1025
                 * @param params
 
1026
                 * @param name
 
1027
                 * @return an array of values, or null
 
1028
                 */
 
1029
                private String[] checkParams( String[] params, String name )
 
1030
                {
 
1031
                        HashSet< String > ret = new HashSet< String >();
 
1032
 
857
1033
                        Pattern p = Pattern.compile(
858
 
                                "^" + name + "[ \\t]*=[ \\t]*(\"?)(.*)\\1$" );
 
1034
                                "^" + name + "[ \\t]*=[ \\t]*(\"?)(.*)\\1$",
 
1035
                                Pattern.CASE_INSENSITIVE );
859
1036
                        for( int i = 0; i < params.length; i++ ) {
860
1037
                                Matcher m = p.matcher( params[ i ] );
861
1038
                                if( m.matches() )
862
 
                                        return m.group( 2 );
 
1039
                                        ret.add( m.group( 2 ) );
863
1040
                        }
864
 
                        return null;
 
1041
 
 
1042
                        return (String[]) ret.toArray( new String[ ret.size() ] );
865
1043
                }
866
1044
 
 
1045
                /**
 
1046
                 * Amongst the params, return any type values present. For v2.1 vCards,
 
1047
                 * those types are just parameters. For v3.0, they are prefixed with
 
1048
                 * "TYPE=". There may also be multiple type parameters.
 
1049
                 * @param params an array of params to look for types in
 
1050
                 * @param valid_types an list of upper-case type values to look for
 
1051
                 * @return a set of present type values
 
1052
                 */
867
1053
                private Set< String > extractTypes( String[] params,
868
1054
                        List< String > valid_types )
869
1055
                {
870
1056
                        HashSet< String > types = new HashSet< String >();
871
1057
 
872
1058
                        // get 3.0-style TYPE= param
873
 
                        String type_param;
874
 
                        if( ( type_param = checkParam( params, "TYPE" ) ) != null ) {
875
 
                                String[] parts = type_param.split( "," );
 
1059
                        String type_params[] = checkParams( params, "TYPE" );
 
1060
                        for( int a = 0; a < type_params.length; a++ )
 
1061
                        {
 
1062
                                // check for a comma-separated list of types (why? this isn't in
 
1063
                                // the specs!)
 
1064
                                String[] parts = type_params[ a ].split( "," );
 
1065
                                for( int i = 0; i < parts.length; i++ )
 
1066
                                        parts[ i ] = parts[ i ].toUpperCase( Locale.US );
876
1067
                                for( int i = 0; i < parts.length; i++ )
877
1068
                                        if( valid_types.contains( parts[ i ] ) )
878
1069
                                                types.add( parts[ i ] );