/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: Tim Marston
  • Date: 2015-02-25 00:19:29 UTC
  • Revision ID: tim@ed.am-20150225001929-cp6ji1c0dwf9zs1d
fixed date in NEWS

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 2013 Tim Marston <tim@ed.am>
5
5
 *
6
6
 * This file is part of the Import Contacts program (hereafter referred
7
 
 * to as "this program"). For more information, see
8
 
 * http://www.waxworlds.org/edam/software/android/import-contacts
 
7
 * to as "this program").  For more information, see
 
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;
45
46
import java.util.regex.Pattern;
46
47
 
47
48
import android.content.SharedPreferences;
48
 
import android.provider.Contacts;
49
 
import android.provider.Contacts.PhonesColumns;
 
49
import android.os.Environment;
50
50
 
51
51
public class VcardImporter extends Importer
52
52
{
70
70
                File[] files = null;
71
71
                try
72
72
                {
 
73
                        // check SD card is mounted
 
74
                        String state = Environment.getExternalStorageState();
 
75
                        if( !Environment.MEDIA_MOUNTED.equals( state ) &&
 
76
                                !Environment.MEDIA_MOUNTED_READ_ONLY.equals( state ) )
 
77
                        {
 
78
                                showError( R.string.error_nosdcard );
 
79
                        }
 
80
 
73
81
                        // open directory
74
 
                        String path = "/sdcard" + prefs.getString( "location", "/" );
75
 
                        File file = new File( path );
 
82
                        File file = new File( Environment.getExternalStorageDirectory(),
 
83
                                prefs.getString( "location", "/" ) );
76
84
                        if( !file.exists() )
77
85
                                showError( R.string.error_locationnotfound );
78
86
 
82
90
                                // get files
83
91
                                class VCardFilter implements FilenameFilter {
84
92
                                        public boolean accept( File dir, String name ) {
85
 
                                                return name.toLowerCase().endsWith( ".vcf" );
 
93
                                                return name.toLowerCase( Locale.ENGLISH )
 
94
                                                        .endsWith( ".vcf" );
86
95
                                        }
87
96
                                }
88
97
                                files = file.listFiles( new VCardFilter() );
132
141
                        boolean in_vcard = false;
133
142
                        while( ( line = reader.readLine() ) != null )
134
143
                        {
135
 
                                if( !in_vcard ) {
 
144
                                if( !in_vcard )
 
145
                                {
136
146
                                        // look for vcard beginning
137
 
                                        if( line.matches( "^BEGIN:VCARD" ) ) {
 
147
                                        if( line.matches( "(?i)BEGIN[ \t]*:[ \t]*VCARD.*" ) ) {
138
148
                                                in_vcard = true;
139
149
                                                _vcard_count++;
140
150
                                        }
 
151
                                        // check for vMsg files
 
152
                                        else if( line.matches( "(?i)BEGIN[ \t]*:[ \t]*VMSG.*" ) ) {
 
153
                                                showError( getText( R.string.error_vcf_vmsgfile )
 
154
                                                        + file.getName() );
 
155
                                        }
141
156
                                }
142
 
                                else if( line.matches( "^END:VCARD" ) )
 
157
                                else if( line.matches( "(?i)END[ \t]*:[ \t]*VCARD.*" ) )
143
158
                                        in_vcard = false;
144
159
                        }
 
160
                        reader.close();
145
161
 
146
162
                }
147
163
                catch( FileNotFoundException e ) {
169
185
                        FileInputStream istream = new FileInputStream( file );
170
186
                        byte[] content = new byte[ (int)file.length() ];
171
187
                        istream.read( content );
172
 
                        istream = null;
 
188
                        istream.close();
173
189
 
174
190
                        // import
175
191
                        importVCardFileContent( content, file.getName() );
176
192
                }
 
193
                catch( OutOfMemoryError e ) {
 
194
                        showError( R.string.error_outofmemory );
 
195
                }
177
196
                catch( FileNotFoundException e ) {
178
197
                        showError( getText( R.string.error_filenotfound ) +
179
198
                                file.getName() );
192
211
                ContentLineIterator cli = new ContentLineIterator( content );
193
212
                while( cli.hasNext() )
194
213
                {
195
 
                        ByteBuffer buffer = cli.next();
 
214
                        ContentLine content_line = cli.next();
196
215
 
197
 
                        // get a US-ASCII version of the line for processing
198
 
                        String line;
199
 
                        try {
200
 
                                line = new String( buffer.array(), buffer.position(),
201
 
                                        buffer.limit() - buffer.position(), "US-ASCII" );
202
 
                        }
203
 
                        catch( UnsupportedEncodingException e ) {
204
 
                                // we know US-ASCII is supported, so appease the compiler...
205
 
                                line = "";
206
 
                        }
 
216
                        // get a US-ASCII version of the string, for processing
 
217
                        String line = content_line.getUsAsciiLine();
207
218
 
208
219
                        if( vcard == null ) {
209
220
                                // look for vcard beginning
210
 
                                if( line.matches( "^BEGIN:VCARD" ) ) {
 
221
                                if( line.matches( "(?i)BEGIN[ \t]*:[ \t]*VCARD.*" ) ) {
211
222
                                        setProgress( _progress++ );
212
223
                                        vcard = new Vcard();
213
224
                                        vcard_start_line = cli.getLineNumber();
215
226
                        }
216
227
                        else {
217
228
                                // look for vcard content or ending
218
 
                                if( line.matches( "^END:VCARD" ) )
 
229
                                if( line.matches( "(?i)END[ \t]*:[ \t]*VCARD.*" ) )
219
230
                                {
220
231
                                        // finalise the vcard/contact
221
232
                                        try {
225
236
                                                importContact( vcard );
226
237
                                        }
227
238
                                        catch( Vcard.ParseException e ) {
228
 
                                                if( !showContinue(
 
239
                                                showContinueOrAbort(
229
240
                                                        getText( R.string.error_vcf_parse ).toString()
230
241
                                                        + fileName +
231
242
                                                        getText( R.string.error_vcf_parse_line ).toString()
232
 
                                                        + cli.getLineNumber() + ":\n" + e.getMessage() ) )
233
 
                                                {
234
 
                                                        finish( ACTION_ABORT );
235
 
                                                }
236
 
                                                else
237
 
                                                        skipContact();
 
243
                                                        + cli.getLineNumber() + ":\n" + e.getMessage() );
 
244
                                                skipContact();
238
245
                                        }
239
246
                                        catch( ContactData.ContactNotIdentifiableException e ) {
240
 
                                                if( !showContinue(
 
247
                                                showContinueOrAbort(
241
248
                                                        getText( R.string.error_vcf_parse ).toString()
242
249
                                                        + fileName +
243
250
                                                        getText( R.string.error_vcf_parse_line ).toString()
244
251
                                                        + vcard_start_line + ":\n" + getText(
245
 
                                                                R.string.error_vcf_notenoughinfo ).toString()
246
 
                                                ) )
247
 
                                                {
248
 
                                                        finish( ACTION_ABORT );
249
 
                                                }
250
 
                                                else
251
 
                                                        skipContact();
 
252
                                                                R.string.error_vcf_notenoughinfo ).toString() );
 
253
                                                skipContact();
252
254
                                        }
253
255
 
254
256
                                        // discard this vcard
258
260
                                {
259
261
                                        // try giving the line to the vcard
260
262
                                        try {
261
 
                                                vcard.parseLine( buffer, line,
262
 
                                                        cli.doesNextLineLookFolded() );
 
263
                                                vcard.parseLine( content_line );
263
264
                                        }
264
265
                                        catch( Vcard.ParseException e ) {
265
266
                                                skipContact();
266
 
                                                if( !showContinue(
 
267
                                                showContinueOrAbort(
267
268
                                                        getText( R.string.error_vcf_parse ).toString()
268
269
                                                        + fileName +
269
270
                                                        getText( R.string.error_vcf_parse_line ).toString()
270
 
                                                        + cli.getLineNumber() + "\n" + e.getMessage() ) )
271
 
                                                {
272
 
                                                        finish( ACTION_ABORT );
273
 
                                                }
 
271
                                                        + cli.getLineNumber() + "\n" + e.getMessage() );
274
272
 
275
 
                                                // although we're continuing, we still need to abort
276
 
                                                // this vCard. Further lines will be ignored until we
 
273
                                                // Although we're continuing, we still need to abort
 
274
                                                // this vCard.  Further lines will be ignored until we
277
275
                                                // get to another BEGIN:VCARD line.
278
276
                                                vcard = null;
279
277
                                        }
280
278
                                        catch( Vcard.SkipImportException e ) {
281
279
                                                skipContact();
282
 
                                                // abort this vCard. Further lines will be ignored until
 
280
                                                // Abort this vCard.  Further lines will be ignored until
283
281
                                                // we get to another BEGIN:VCARD line.
284
282
                                                vcard = null;
285
283
                                        }
288
286
                }
289
287
        }
290
288
 
291
 
        class ContentLineIterator implements Iterator< ByteBuffer >
 
289
        class ContentLine
 
290
        {
 
291
                private ByteBuffer _buffer;
 
292
                private boolean _folded_next;
 
293
                private String _line;
 
294
 
 
295
                public ContentLine( ByteBuffer buffer, boolean folded_next )
 
296
                {
 
297
                        _buffer = buffer;
 
298
                        _folded_next = folded_next;
 
299
                        _line = null;
 
300
                }
 
301
 
 
302
                public ByteBuffer getBuffer()
 
303
                {
 
304
                        return _buffer;
 
305
                }
 
306
 
 
307
                public boolean doesNextLineLookFolded()
 
308
                {
 
309
                        return _folded_next;
 
310
                }
 
311
 
 
312
                public String getUsAsciiLine()
 
313
                {
 
314
                        // generated line and cache it
 
315
                        if( _line == null ) {
 
316
                                try {
 
317
                                        _line = new String( _buffer.array(), _buffer.position(),
 
318
                                                _buffer.limit() - _buffer.position(), "US-ASCII" );
 
319
                                }
 
320
                                catch( UnsupportedEncodingException e ) {
 
321
                                        // we know US-ASCII *is* supported, so appease the
 
322
                                        // compiler...
 
323
                                }
 
324
                        }
 
325
 
 
326
                        // return cached line
 
327
                        return _line;
 
328
                }
 
329
        }
 
330
 
 
331
        class ContentLineIterator implements Iterator< ContentLine >
292
332
        {
293
333
                protected byte[] _content = null;
294
334
                protected int _pos = 0;
306
346
                }
307
347
 
308
348
                @Override
309
 
                public ByteBuffer next()
 
349
                public ContentLine next()
310
350
                {
311
351
                        int initial_pos = _pos;
312
352
 
319
359
                                                _pos > initial_pos )? _pos - 1 : _pos;
320
360
                                        _pos++;
321
361
                                        _line++;
322
 
                                        return ByteBuffer.wrap( _content, initial_pos,
323
 
                                                to - initial_pos );
 
362
                                        return new ContentLine(
 
363
                                                ByteBuffer.wrap( _content, initial_pos,
 
364
                                                        to - initial_pos ),
 
365
                                                doesNextLineLookFolded() );
324
366
                                }
325
367
 
326
368
                        // we didn't find one, but were there bytes left?
328
370
                                int to = _pos;
329
371
                                _pos++;
330
372
                                _line++;
331
 
                                return ByteBuffer.wrap( _content, initial_pos,
332
 
                                        to - initial_pos );
 
373
                                return new ContentLine(
 
374
                                        ByteBuffer.wrap( _content, initial_pos,
 
375
                                                to - initial_pos ),
 
376
                                        doesNextLineLookFolded() );
333
377
                        }
334
378
 
335
379
                        // no bytes left
347
391
                 * onto the end of this one?
348
392
                 * @return
349
393
                 */
350
 
                public boolean doesNextLineLookFolded()
 
394
                private boolean doesNextLineLookFolded()
351
395
                {
352
396
                        return _pos > 0 && _pos < _content.length &&
353
 
                                _content[ _pos - 1 ] == '\n' && _content[ _pos ] == ' ';
 
397
                                _content[ _pos - 1 ] == '\n' &&
 
398
                                ( _content[ _pos ] == ' ' || _content[ _pos ] == '\t' );
354
399
                }
355
400
 
356
401
                public int getLineNumber()
368
413
                private final static int MULTILINE_NONE = 0;
369
414
                private final static int MULTILINE_ENCODED = 1; // v2.1 quoted-printable
370
415
                private final static int MULTILINE_ESCAPED = 2; // v2.1 \\CRLF
371
 
                private final static int MULTILINE_FOLDED = 3;  // v3.0 folding
 
416
                private final static int MULTILINE_FOLDED = 3;  // MIME-DIR folding
372
417
 
373
418
                private String _version = null;
374
 
                private Vector< ByteBuffer > _buffers = null;
 
419
                private Vector< ContentLine > _content_lines = null;
375
420
                private int _name_level = NAMELEVEL_NONE;
376
421
                private int _parser_multiline_state = MULTILINE_NONE;
377
422
                private String _parser_current_name_and_params = null;
420
465
                @SuppressWarnings("serial")
421
466
                protected class SkipImportException extends Exception { }
422
467
 
423
 
                private String extractCollonPartFromLine( ByteBuffer buffer,
424
 
                        String line, boolean former )
 
468
                private String extractCollonPartFromLine( ContentLine content_line,
 
469
                        boolean former )
425
470
                {
426
 
                        String ret = null;
427
 
 
428
 
                        // get a US-ASCII version of the line for processing, unless we were
429
 
                        // supplied with one
430
 
                        if( line == null ) {
431
 
                                try {
432
 
                                        line = new String( buffer.array(), buffer.position(),
433
 
                                                buffer.limit() - buffer.position(), "US-ASCII" );
434
 
                                }
435
 
                                catch( UnsupportedEncodingException e ) {
436
 
                                        // we know US-ASCII is supported, so appease the compiler...
437
 
                                        line = "";
438
 
                                }
439
 
                        }
440
 
 
441
471
                        // split line into name and value parts and check to make sure we
442
472
                        // only got 2 parts and that the first part is not zero in length
443
 
                        String[] parts = line.split( ":", 2 );
 
473
                        String[] parts = content_line.getUsAsciiLine().split( ":", 2 );
444
474
                        if( parts.length == 2 && parts[ 0 ].length() > 0 )
445
 
                                ret = parts[ former? 0 : 1 ];
446
 
 
447
 
                        return ret;
448
 
                }
449
 
 
450
 
                private String extractNameAndParamsFromLine( ByteBuffer buffer,
451
 
                        String line )
452
 
                {
453
 
                        return extractCollonPartFromLine( buffer, line, true );
454
 
                }
455
 
 
456
 
                private String extractValueFromLine( ByteBuffer buffer, String line )
457
 
                {
458
 
                        return extractCollonPartFromLine( buffer, line, false );
459
 
                }
460
 
 
461
 
                public void parseLine( ByteBuffer buffer, String line,
462
 
                        boolean next_line_looks_folded )
 
475
                                return parts[ former? 0 : 1 ].trim();
 
476
 
 
477
                        return null;
 
478
                }
 
479
 
 
480
                private String extractNameAndParamsFromLine( ContentLine content_line )
 
481
                {
 
482
                        return extractCollonPartFromLine( content_line, true );
 
483
                }
 
484
 
 
485
                private String extractValueFromLine( ContentLine content_line )
 
486
                {
 
487
                        return extractCollonPartFromLine( content_line, false );
 
488
                }
 
489
 
 
490
                public void parseLine( ContentLine content_line )
463
491
                        throws ParseException, SkipImportException,
464
492
                        AbortImportException
465
493
                {
468
496
                        {
469
497
                                // tentatively get name and params from line
470
498
                                String name_and_params =
471
 
                                        extractNameAndParamsFromLine( buffer, line );
 
499
                                        extractNameAndParamsFromLine( content_line );
472
500
 
473
501
                                // is it a version line?
474
502
                                if( name_and_params != null &&
475
 
                                        name_and_params.equals( "VERSION" ) )
 
503
                                        name_and_params.equalsIgnoreCase( "VERSION" ) )
476
504
                                {
477
505
                                        // yes, get it!
478
 
                                        String value = extractValueFromLine( buffer, line );
479
 
                                        if( !value.equals( "2.1" ) && !value.equals( "3.0" ) )
 
506
                                        String value = extractValueFromLine( content_line );
 
507
                                        if( value == null || (
 
508
                                                !value.equals( "2.1" ) && !value.equals( "3.0" ) ) )
 
509
                                        {
480
510
                                                throw new ParseException( R.string.error_vcf_version );
 
511
                                        }
481
512
                                        _version = value;
482
513
 
483
514
                                        // parse any buffers we've been accumulating while we waited
484
515
                                        // for a version
485
 
                                        if( _buffers != null )
486
 
                                                for( int i = 0; i < _buffers.size(); i++ )
487
 
                                                        parseLine( _buffers.get( i ), null,
488
 
                                                                i + 1 < _buffers.size() &&
489
 
                                                                _buffers.get( i + 1 ).hasRemaining() &&
490
 
                                                                _buffers.get( i + 1 ).get(
491
 
                                                                        _buffers.get( i + 1 ).position() ) == ' ' );
492
 
                                        _buffers = null;
 
516
                                        if( _content_lines != null )
 
517
                                                for( int i = 0; i < _content_lines.size(); i++ )
 
518
                                                        parseLine( _content_lines.get( i ) );
 
519
                                        _content_lines = null;
493
520
                                }
494
521
                                else
495
522
                                {
496
523
                                        // no, so stash this line till we get a version
497
 
                                        if( _buffers == null )
498
 
                                                _buffers = new Vector< ByteBuffer >();
499
 
                                        _buffers.add( buffer );
 
524
                                        if( _content_lines == null )
 
525
                                                _content_lines = new Vector< ContentLine >();
 
526
                                        _content_lines.add( content_line );
500
527
                                }
501
528
                        }
502
529
                        else
503
530
                        {
504
531
                                // name and params and the position in the buffer where the
505
 
                                // "value" part of the line start
 
532
                                // "value" part of the line starts
506
533
                                String name_and_params;
507
534
                                int pos;
508
535
 
514
541
 
515
542
                                        // skip some initial line characters, depending on the type
516
543
                                        // of multi-line we're handling
517
 
                                        pos = buffer.position();
 
544
                                        pos = content_line.getBuffer().position();
518
545
                                        switch( _parser_multiline_state )
519
546
                                        {
520
547
                                        case MULTILINE_FOLDED:
521
548
                                                pos++;
522
549
                                                break;
523
550
                                        case MULTILINE_ENCODED:
524
 
                                                while( pos < buffer.limit() && (
525
 
                                                        buffer.get( pos ) == ' ' ||
526
 
                                                        buffer.get( pos ) == '\t' ) )
 
551
                                                while( pos < content_line.getBuffer().limit() && (
 
552
                                                        content_line.getBuffer().get( pos ) == ' ' ||
 
553
                                                        content_line.getBuffer().get( pos ) == '\t' ) )
527
554
                                                {
528
555
                                                        pos++;
529
556
                                                }
538
565
                                }
539
566
                                else
540
567
                                {
 
568
                                        // skip empty lines
 
569
                                        if( content_line.getUsAsciiLine().trim().length() == 0 )
 
570
                                                return;
 
571
 
541
572
                                        // get name and params from line, and since we're not
542
573
                                        // parsing a subsequent line in a multi-line, this should
543
574
                                        // not fail, or it's an error
544
575
                                        name_and_params =
545
 
                                                extractNameAndParamsFromLine( buffer, line );
 
576
                                                extractNameAndParamsFromLine( content_line );
546
577
                                        if( name_and_params == null )
547
578
                                                throw new ParseException(
548
579
                                                        R.string.error_vcf_malformed );
549
580
 
550
581
                                        // calculate how many chars to skip from beginning of line
551
582
                                        // so we skip the property "name:" part
552
 
                                        pos = buffer.position() + name_and_params.length() + 1;
 
583
                                        pos = content_line.getBuffer().position() +
 
584
                                                name_and_params.length() + 1;
553
585
 
554
586
                                        // reset the saved multi-line state
555
587
                                        _parser_current_name_and_params = name_and_params;
558
590
 
559
591
                                // get value from buffer, as raw bytes
560
592
                                ByteBuffer value;
561
 
                                value = ByteBuffer.wrap( buffer.array(), pos,
562
 
                                        buffer.limit() - pos );
 
593
                                value = ByteBuffer.wrap( content_line.getBuffer().array(), pos,
 
594
                                        content_line.getBuffer().limit() - pos );
563
595
 
564
596
                                // get parameter parts
565
597
                                String[] name_param_parts = name_and_params.split( ";", -1 );
568
600
 
569
601
                                // determine whether we care about this entry
570
602
                                final HashSet< String > interesting_fields =
571
 
                                        new HashSet< String >( Arrays.asList( new String[]
572
 
                                                { "N", "FN", "ORG", "TITLE", "TEL", "EMAIL", "ADR" }
 
603
                                        new HashSet< String >( Arrays.asList( new String[] { "N",
 
604
                                                "FN", "ORG", "TITLE", "TEL", "EMAIL", "ADR", "LABEL" }
573
605
                                ) );
574
606
                                boolean is_interesting_field =
575
 
                                        interesting_fields.contains( name_param_parts[ 0 ] );
 
607
                                        interesting_fields.contains(
 
608
                                                name_param_parts[ 0 ].toUpperCase( Locale.ENGLISH ) );
576
609
 
577
610
                                // parse encoding parameter
578
611
                                String encoding = checkParam( name_param_parts, "ENCODING" );
579
 
                                if( encoding != null ) encoding = encoding.toUpperCase();
 
612
                                if( encoding != null )
 
613
                                        encoding = encoding.toUpperCase( Locale.ENGLISH );
580
614
                                if( is_interesting_field && encoding != null &&
581
 
                                        !encoding.equals( "8BIT" ) &&
582
 
                                        !encoding.equals( "QUOTED-PRINTABLE" ) )
583
 
                                        //&& !encoding.equals( "BASE64" ) )
 
615
                                        !encoding.equalsIgnoreCase( "8BIT" ) &&
 
616
                                        !encoding.equalsIgnoreCase( "QUOTED-PRINTABLE" ) )
 
617
                                        //&& !encoding.equalsIgnoreCase( "BASE64" ) )
584
618
                                {
585
619
                                        throw new ParseException( R.string.error_vcf_encoding );
586
620
                                }
587
621
 
588
622
                                // parse charset parameter
589
623
                                String charset = checkParam( name_param_parts, "CHARSET" );
590
 
                                if( charset != null ) charset = charset.toUpperCase();
 
624
                                if( charset != null )
 
625
                                        charset = charset.toUpperCase( Locale.ENGLISH );
591
626
                                if( charset != null &&
592
 
                                        !charset.equals( "US-ASCII" ) &&
593
 
                                        !charset.equals( "ASCII" ) &&
594
 
                                        !charset.equals( "UTF-8" ) )
 
627
                                        !charset.equalsIgnoreCase( "US-ASCII" ) &&
 
628
                                        !charset.equalsIgnoreCase( "ASCII" ) &&
 
629
                                        !charset.equalsIgnoreCase( "UTF-8" ) )
595
630
                                {
596
631
                                        throw new ParseException( R.string.error_vcf_charset );
597
632
                                }
599
634
                                // do unencoding (or default to a fake unencoding result with
600
635
                                // the raw string)
601
636
                                UnencodeResult unencoding_result = null;
602
 
                                if( encoding != null && encoding.equals( "QUOTED-PRINTABLE" ) )
 
637
                                if( encoding != null &&
 
638
                                        encoding.equalsIgnoreCase( "QUOTED-PRINTABLE" ) )
 
639
                                {
603
640
                                        unencoding_result = unencodeQuotedPrintable( value );
604
 
//                              else if( encoding != null && encoding.equals( "BASE64" ) )
 
641
                                }
 
642
//                              else if( encoding != null &&
 
643
//                                      encoding.equalsIgnoreCase( "BASE64" ) )
 
644
//                              {
605
645
//                                      unencoding_result = unencodeBase64( props[ 1 ], charset );
 
646
//                              }
606
647
                                if( unencoding_result != null ) {
607
648
                                        value = unencoding_result.getBuffer();
608
649
                                        if( unencoding_result.isAnotherLineRequired() )
613
654
                                // specified for a v2.1 vcard entry, we assume it's US-ASCII)
614
655
                                if( ( charset == null && _version.equals( "2.1" ) ) ||
615
656
                                        ( charset != null && (
616
 
                                                charset.equals( "ASCII" ) ||
617
 
                                                charset.equals( "US-ASCII" ) ) ) )
 
657
                                                charset.equalsIgnoreCase( "ASCII" ) ||
 
658
                                                charset.equalsIgnoreCase( "US-ASCII" ) ) ) )
618
659
                                {
619
660
                                        value = transcodeAsciiToUtf8( value );
620
661
                                }
631
672
                                // for some entries that have semicolon-separated value parts,
632
673
                                // check to see if the value ends in an escape character, which
633
674
                                // indicates that we have a multi-line value
634
 
                                if( ( name_param_parts[ 0 ].equals( "N" ) ||
635
 
                                        name_param_parts[ 0 ].equals( "ORG" ) ||
636
 
                                        name_param_parts[ 0 ].equals( "ADR" ) ) &&
 
675
                                if( ( name_param_parts[ 0 ].equalsIgnoreCase( "N" ) ||
 
676
                                        name_param_parts[ 0 ].equalsIgnoreCase( "ORG" ) ||
 
677
                                        name_param_parts[ 0 ].equalsIgnoreCase( "ADR" ) ) &&
637
678
                                        doesStringEndInAnEscapeChar( string_value ) )
638
679
                                {
639
680
                                        _parser_multiline_state = MULTILINE_ESCAPED;
641
682
                                                string_value.length() - 1 );
642
683
                                }
643
684
 
644
 
                                // now we know whether we're in an encoding multi-line,
645
 
                                // determine if we're in a v3 folded multi-line or not
 
685
                                // if we know we're not in an encoding-based multi-line, check
 
686
                                // to see if we're in a folded multi-line
646
687
                                if( _parser_multiline_state == MULTILINE_NONE &&
647
 
                                        _version.equals( "3.0" ) && next_line_looks_folded )
 
688
                                        content_line.doesNextLineLookFolded() )
648
689
                                {
649
690
                                        _parser_multiline_state = MULTILINE_FOLDED;
650
691
                                }
662
703
                                if( complete_value.length() < 1 ) return;
663
704
 
664
705
                                // parse some properties
665
 
                                if( name_param_parts[ 0 ].equals( "N" ) )
 
706
                                if( name_param_parts[ 0 ].equalsIgnoreCase( "N" ) )
666
707
                                        parseN( name_param_parts, complete_value );
667
 
                                else if( name_param_parts[ 0 ].equals( "FN" ) )
 
708
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "FN" ) )
668
709
                                        parseFN( name_param_parts, complete_value );
669
 
                                else if( name_param_parts[ 0 ].equals( "ORG" ) )
 
710
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "ORG" ) )
670
711
                                        parseORG( name_param_parts, complete_value );
671
 
                                else if( name_param_parts[ 0 ].equals( "TITLE" ) )
 
712
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "TITLE" ) )
672
713
                                        parseTITLE( name_param_parts, complete_value );
673
 
                                else if( name_param_parts[ 0 ].equals( "TEL" ) )
 
714
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "TEL" ) )
674
715
                                        parseTEL( name_param_parts, complete_value );
675
 
                                else if( name_param_parts[ 0 ].equals( "EMAIL" ) )
 
716
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "EMAIL" ) )
676
717
                                        parseEMAIL( name_param_parts, complete_value );
677
 
                                else if( name_param_parts[ 0 ].equals( "ADR" ) )
 
718
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "ADR" ) )
678
719
                                        parseADR( name_param_parts, complete_value );
 
720
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "LABEL" ) )
 
721
                                        parseLABEL( name_param_parts, complete_value );
 
722
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "NOTE" ) )
 
723
                                        parseNOTE( name_param_parts, complete_value );
 
724
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "BDAY" ) )
 
725
                                        parseBDAY( name_param_parts, complete_value );
679
726
                        }
680
727
                }
681
728
 
705
752
                        {
706
753
                                String str = parts.get( a );
707
754
 
708
 
                                // look for parts that end in an escape character, but ignore
709
 
                                // the final part. We've already detected escape chars at the
 
755
                                // Look for parts that end in an escape character, but ignore
 
756
                                // the final part.  We've already detected escape chars at the
710
757
                                // end of the final part in parseLine() and handled multi-lines
711
758
                                // accordingly.
712
759
                                if( a < parts.size() - 1 &&
753
800
                                in_escape = false;
754
801
                                switch( c )
755
802
                                {
 
803
                                case 'T':
 
804
                                case 't':
 
805
                                        // add tab (invalid/non-standard, but accepted)
 
806
                                        ret.append( '\t' );
 
807
                                        break;
756
808
                                case 'N':
757
809
                                case 'n':
758
810
                                        // add newline
766
818
                                        break;
767
819
                                default:
768
820
                                        // unknown escape sequence, so add it unescaped
 
821
                                        // (invalid/non-standard, but accepted)
769
822
                                        ret.append( "\\" );
770
823
                                        ret.append( Character.toChars( c ) );
771
824
                                        break;
796
849
                                        for( int b = 0; b < name_part_parts.length; b++ )
797
850
                                                if( name_part_parts[ b ].length() > 0 )
798
851
                                                {
799
 
                                                        if( value.length() == 0 ) value += " ";
 
852
                                                        if( value.length() > 0 ) value += " ";
800
853
                                                        value += name_part_parts[ b ];
801
854
                                                }
802
855
                                }
877
930
                        int type;
878
931
                        if( types.contains( "FAX" ) )
879
932
                                if( types.contains( "HOME" ) )
880
 
                                        type = PhonesColumns.TYPE_FAX_HOME;
 
933
                                        type = TYPE_FAX_HOME;
881
934
                                else
882
 
                                        type = PhonesColumns.TYPE_FAX_WORK;
 
935
                                        type = TYPE_FAX_WORK;
883
936
                        else if( types.contains( "CELL" ) || types.contains( "VIDEO" ) )
884
 
                                type = PhonesColumns.TYPE_MOBILE;
 
937
                                type = TYPE_MOBILE;
885
938
                        else if( types.contains( "PAGER" ) )
886
 
                                type = PhonesColumns.TYPE_PAGER;
 
939
                                type = TYPE_PAGER;
887
940
                        else if( types.contains( "WORK" ) )
888
 
                                type = PhonesColumns.TYPE_WORK;
 
941
                                type = TYPE_WORK;
889
942
                        else
890
 
                                type = PhonesColumns.TYPE_HOME;
 
943
                                type = TYPE_HOME;
891
944
 
892
945
                        // add phone number
893
946
                        addNumber( value, type, is_preferred );
904
957
                        boolean is_preferred = types.contains( "PREF" );
905
958
                        int type;
906
959
                        if( types.contains( "WORK" ) )
907
 
                                type = Contacts.ContactMethods.TYPE_WORK;
 
960
                                type = TYPE_WORK;
908
961
                        else
909
 
                                type = Contacts.ContactMethods.TYPE_HOME;
 
962
                                type = TYPE_HOME;
910
963
 
911
964
                        addEmail( unescapeValue( value ), type, is_preferred );
912
965
                }
921
974
                        for( int a = 0; a < adr_parts.length; a++ )
922
975
                                if( adr_parts[ a ].length() > 0 )
923
976
                                {
924
 
                                        // split this part in to it's comma-separated bits
925
 
                                        String[] adr_part_parts =
926
 
                                                splitValueByCharacter( adr_parts[ a ], ',' );
927
 
                                        for( int b = 0; b < adr_part_parts.length; b++ )
928
 
                                                if( adr_part_parts[ b ].length() > 0 )
929
 
                                                {
930
 
                                                        if( value.length() > 0 ) value += "\n";
931
 
                                                        value += adr_part_parts[ b ];
932
 
                                                }
 
977
                                        // version 3.0 vCards allow further splitting by comma
 
978
                                        if( _version.equals( "3.0" ) )
 
979
                                        {
 
980
                                                // split this part in to it's comma-separated bits and
 
981
                                                // add them on individual lines
 
982
                                                String[] adr_part_parts =
 
983
                                                        splitValueByCharacter( adr_parts[ a ], ',' );
 
984
                                                for( int b = 0; b < adr_part_parts.length; b++ )
 
985
                                                        if( adr_part_parts[ b ].length() > 0 )
 
986
                                                        {
 
987
                                                                if( value.length() > 0 ) value += "\n";
 
988
                                                                value += adr_part_parts[ b ];
 
989
                                                        }
 
990
                                        }
 
991
                                        else
 
992
                                        {
 
993
                                                // add this part on an individual line
 
994
                                                if( value.length() > 0 ) value += "\n";
 
995
                                                value += adr_parts[ a ];
 
996
                                        }
933
997
                                }
934
998
 
935
999
                        Set< String > types = extractTypes( params, Arrays.asList(
936
 
                                "PREF", "WORK", "HOME", "INTERNET" ) );
937
 
 
938
 
                        // add address
939
 
                        int type;
940
 
                        if( types.contains( "WORK" ) )
941
 
                                type = Contacts.ContactMethods.TYPE_WORK;
942
 
                        else
943
 
                                type = Contacts.ContactMethods.TYPE_HOME;
944
 
 
945
 
                        addAddress( unescapeValue( value ), type );
 
1000
                                "PREF", "WORK", "HOME" ) );
 
1001
 
 
1002
                        // add address
 
1003
                        int type;
 
1004
                        if( types.contains( "WORK" ) )
 
1005
                                type = TYPE_WORK;
 
1006
                        else
 
1007
                                type = TYPE_HOME;
 
1008
 
 
1009
                        addAddress( unescapeValue( value ), type );
 
1010
                }
 
1011
 
 
1012
                private void parseLABEL( String[] params, String value )
 
1013
                {
 
1014
                        Set< String > types = extractTypes( params, Arrays.asList(
 
1015
                                "PREF", "WORK", "HOME" ) );
 
1016
 
 
1017
                        // add address
 
1018
                        int type;
 
1019
                        if( types.contains( "WORK" ) )
 
1020
                                type = TYPE_WORK;
 
1021
                        else
 
1022
                                type = TYPE_HOME;
 
1023
 
 
1024
                        addAddress( unescapeValue( value ), type );
 
1025
                }
 
1026
 
 
1027
                private void parseNOTE( String[] params, String value )
 
1028
                {
 
1029
                        addNote( unescapeValue( value ) );
 
1030
                }
 
1031
 
 
1032
                private void parseBDAY( String[] params, String value )
 
1033
                {
 
1034
                        setBirthday( value );
946
1035
                }
947
1036
 
948
1037
                public void finaliseVcard()
949
1038
                        throws ParseException, ContactNotIdentifiableException
950
1039
                {
951
1040
                        // missing version (and data is present)
952
 
                        if( _version == null && _buffers != null )
 
1041
                        if( _version == null && _content_lines != null )
953
1042
                                throw new ParseException( R.string.error_vcf_malformed );
954
1043
 
955
1044
                        // finalise the parent class
958
1047
 
959
1048
                /**
960
1049
                 * Amongst the params, find the value of the first, only, of any with
961
 
                 * the specified name
 
1050
                 * the specified name.
 
1051
                 *
962
1052
                 * @param params
963
1053
                 * @param name
964
1054
                 * @return a value, or null
970
1060
                }
971
1061
 
972
1062
                /**
973
 
                 * Amongst the params, find the values of any with the specified name
 
1063
                 * Amongst the params, find the values of any with the specified name.
 
1064
                 *
974
1065
                 * @param params
975
1066
                 * @param name
976
1067
                 * @return an array of values, or null
980
1071
                        HashSet< String > ret = new HashSet< String >();
981
1072
 
982
1073
                        Pattern p = Pattern.compile(
983
 
                                "^" + name + "[ \\t]*=[ \\t]*(\"?)(.*)\\1$" );
 
1074
                                "^" + name + "[ \\t]*=[ \\t]*(\"?)(.*)\\1$",
 
1075
                                Pattern.CASE_INSENSITIVE );
984
1076
                        for( int i = 0; i < params.length; i++ ) {
985
1077
                                Matcher m = p.matcher( params[ i ] );
986
1078
                                if( m.matches() )
991
1083
                }
992
1084
 
993
1085
                /**
994
 
                 * Amongst the params, return any type values present. For v2.1 vCards,
995
 
                 * those types are just parameters. For v3.0, they are prefixed with
996
 
                 * "TYPE=". There may also be multiple type parameters.
997
 
                 * @param params
998
 
                 * @param a list of type values to look for
 
1086
                 * Amongst the params, return any type values present.  For v2.1 vCards,
 
1087
                 * those types are just parameters.  For v3.0, they are prefixed with
 
1088
                 * "TYPE=".  There may also be multiple type parameters.
 
1089
                 *
 
1090
                 * @param params an array of params to look for types in
 
1091
                 * @param valid_types an list of upper-case type values to look for
999
1092
                 * @return a set of present type values
1000
1093
                 */
1001
1094
                private Set< String > extractTypes( String[] params,
1007
1100
                        String type_params[] = checkParams( params, "TYPE" );
1008
1101
                        for( int a = 0; a < type_params.length; a++ )
1009
1102
                        {
1010
 
                                // check for a comma-separated list of types (why? this isn't in
1011
 
                                // the specs!)
 
1103
                                // check for a comma-separated list of types (why? I don't think
 
1104
                                // this is in the specs!)
1012
1105
                                String[] parts = type_params[ a ].split( "," );
1013
 
                                for( int i = 0; i < parts.length; i++ )
1014
 
                                        if( valid_types.contains( parts[ i ] ) )
1015
 
                                                types.add( parts[ i ] );
 
1106
                                for( int i = 0; i < parts.length; i++ ) {
 
1107
                                        String ucpart = parts[ i ].toUpperCase( Locale.ENGLISH );
 
1108
                                        if( valid_types.contains( ucpart ) )
 
1109
                                                types.add( ucpart );
 
1110
                                }
1016
1111
                        }
1017
1112
 
1018
1113
                        // get 2.1-style type param
1019
1114
                        if( _version.equals( "2.1" ) ) {
1020
 
                                for( int i = 1; i < params.length; i++ )
1021
 
                                        if( valid_types.contains( params[ i ] ) )
1022
 
                                                types.add( params[ i ] );
 
1115
                                for( int i = 1; i < params.length; i++ ) {
 
1116
                                        String ucparam = params[ i ].toUpperCase( Locale.ENGLISH );
 
1117
                                        if( valid_types.contains( ucparam ) )
 
1118
                                                types.add( ucparam );
 
1119
                                }
1023
1120
                        }
1024
1121
 
1025
1122
                        return types;
1047
1144
                                else if( ch == '=' && i == in.limit() - 1 )
1048
1145
                                {
1049
1146
                                        // we found a '=' at the end of a line signifying a multi-
1050
 
                                        // line string, so we don't add it.
 
1147
                                        // line string, so we don't add it
1051
1148
                                        another = true;
1052
1149
                                        continue;
1053
1150
                                }