/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: 2014-03-01 17:35:04 UTC
  • Revision ID: tim@ed.am-20140301173504-jh4komxn4u058omh
updated family picture

Show diffs side-by-side

added added

removed removed

1
1
/*
2
2
 * VCFImporter.java
3
3
 *
4
 
 * Copyright (C) 2009 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;
34
34
import java.nio.ByteBuffer;
35
35
import java.util.ArrayList;
36
36
import java.util.Arrays;
 
37
import java.util.HashMap;
37
38
import java.util.HashSet;
38
39
import java.util.Iterator;
39
40
import java.util.List;
 
41
import java.util.Locale;
40
42
import java.util.NoSuchElementException;
41
43
import java.util.Set;
42
44
import java.util.Vector;
44
46
import java.util.regex.Pattern;
45
47
 
46
48
import android.content.SharedPreferences;
47
 
import android.provider.Contacts;
48
 
import android.provider.Contacts.PhonesColumns;
 
49
import android.os.Environment;
49
50
 
50
 
public class VCFImporter extends Importer
 
51
public class VcardImporter extends Importer
51
52
{
52
 
        private int _vCardCount = 0;
 
53
        private int _vcard_count = 0;
53
54
        private int _progress = 0;
54
55
 
55
 
        public VCFImporter( Doit doit )
 
56
        public VcardImporter( Doit doit )
56
57
        {
57
58
                super( doit );
58
59
        }
69
70
                File[] files = null;
70
71
                try
71
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
 
72
81
                        // open directory
73
 
                        String path = "/sdcard" + prefs.getString( "location", "/" );
74
 
                        File file = new File( path );
 
82
                        File file = new File( Environment.getExternalStorageDirectory(),
 
83
                                prefs.getString( "location", "/" ) );
75
84
                        if( !file.exists() )
76
85
                                showError( R.string.error_locationnotfound );
77
86
 
81
90
                                // get files
82
91
                                class VCardFilter implements FilenameFilter {
83
92
                                        public boolean accept( File dir, String name ) {
84
 
                                                return name.toLowerCase().endsWith( ".vcf" );
 
93
                                                return name.toLowerCase( Locale.US ).endsWith( ".vcf" );
85
94
                                        }
86
95
                                }
87
96
                                files = file.listFiles( new VCardFilter() );
109
118
                        countVCardFile( files[ i ] );
110
119
                        setTmpProgress( i );
111
120
                }
112
 
                setProgressMax( _vCardCount );  // will also update tmp progress
 
121
                setProgressMax( _vcard_count ); // will also update tmp progress
113
122
 
114
123
                // import them
115
124
                setProgress( 0 );
116
125
                for( int i = 0; i < files.length; i++ )
117
126
                        importVCardFile( files[ i ] );
 
127
                setProgress( _vcard_count );
118
128
        }
119
129
 
120
130
        private void countVCardFile( File file ) throws AbortImportException
127
137
 
128
138
                        // read
129
139
                        String line;
130
 
                        boolean inVCard = false;
 
140
                        boolean in_vcard = false;
131
141
                        while( ( line = reader.readLine() ) != null )
132
142
                        {
133
 
                                if( !inVCard ) {
 
143
                                if( !in_vcard )
 
144
                                {
134
145
                                        // look for vcard beginning
135
 
                                        if( line.matches( "^BEGIN:VCARD" ) ) {
136
 
                                                inVCard = true;
137
 
                                                _vCardCount++;
 
146
                                        if( line.matches( "(?i)BEGIN[ \t]*:[ \t]*VCARD.*" ) ) {
 
147
                                                in_vcard = true;
 
148
                                                _vcard_count++;
 
149
                                        }
 
150
                                        // check for vMsg files
 
151
                                        else if( line.matches( "(?i)BEGIN[ \t]*:[ \t]*VMSG.*" ) ) {
 
152
                                                showError( getText( R.string.error_vcf_vmsgfile )
 
153
                                                        + file.getName() );
138
154
                                        }
139
155
                                }
140
 
                                else if( line.matches( "^END:VCARD" ) )
141
 
                                        inVCard = false;
 
156
                                else if( line.matches( "(?i)END[ \t]*:[ \t]*VCARD.*" ) )
 
157
                                        in_vcard = false;
142
158
                        }
 
159
                        reader.close();
143
160
 
144
161
                }
145
162
                catch( FileNotFoundException e ) {
167
184
                        FileInputStream istream = new FileInputStream( file );
168
185
                        byte[] content = new byte[ (int)file.length() ];
169
186
                        istream.read( content );
 
187
                        istream.close();
170
188
 
171
189
                        // import
172
190
                        importVCardFileContent( content, file.getName() );
173
191
                }
 
192
                catch( OutOfMemoryError e ) {
 
193
                        showError( R.string.error_outofmemory );
 
194
                }
174
195
                catch( FileNotFoundException e ) {
175
196
                        showError( getText( R.string.error_filenotfound ) +
176
197
                                file.getName() );
184
205
                throws AbortImportException
185
206
        {
186
207
                // go through lines
187
 
                VCard vCard = null;
 
208
                Vcard vcard = null;
 
209
                int vcard_start_line = 0;
188
210
                ContentLineIterator cli = new ContentLineIterator( content );
189
211
                while( cli.hasNext() )
190
212
                {
191
 
                        ByteBuffer buffer = cli.next();
192
 
 
193
 
                        // get a US-ASCII version of the line for processing
194
 
                        String line;
195
 
                        try {
196
 
                                line = new String( buffer.array(), buffer.position(),
197
 
                                        buffer.limit() - buffer.position(), "US-ASCII" );
198
 
                        }
199
 
                        catch( UnsupportedEncodingException e ) {
200
 
                                // we know US-ASCII is supported, so appease the compiler...
201
 
                                line = "";
202
 
                        }
203
 
 
204
 
                        if( vCard == null ) {
 
213
                        ContentLine content_line = cli.next();
 
214
 
 
215
                        // get a US-ASCII version of the string, for processing
 
216
                        String line = content_line.getUsAsciiLine();
 
217
 
 
218
                        if( vcard == null ) {
205
219
                                // look for vcard beginning
206
 
                                if( line.matches( "^BEGIN:VCARD" ) ) {
207
 
                                        setProgress( ++_progress );
208
 
                                        vCard = new VCard();
 
220
                                if( line.matches( "(?i)BEGIN[ \t]*:[ \t]*VCARD.*" ) ) {
 
221
                                        setProgress( _progress++ );
 
222
                                        vcard = new Vcard();
 
223
                                        vcard_start_line = cli.getLineNumber();
209
224
                                }
210
225
                        }
211
226
                        else {
212
227
                                // look for vcard content or ending
213
 
                                if( line.matches( "^END:VCARD" ) )
 
228
                                if( line.matches( "(?i)END[ \t]*:[ \t]*VCARD.*" ) )
214
229
                                {
215
 
                                        // store vcard and do away with it
 
230
                                        // finalise the vcard/contact
216
231
                                        try {
217
 
                                                vCard.finaliseParsing();
218
 
                                                importContact( vCard );
219
 
                                        }
220
 
                                        catch( VCard.ParseException e ) {
221
 
                                                skipContact();
222
 
                                                if( !showContinue(
223
 
                                                        getText( R.string.error_vcf_parse ).toString()
224
 
                                                        + fileName + "\n" + e.getMessage() ) )
225
 
                                                {
226
 
                                                        finish( ACTION_ABORT );
227
 
                                                }
228
 
                                        }
229
 
                                        catch( VCard.SkipContactException e ) {
230
 
                                                skipContact();
231
 
                                                // do nothing
232
 
                                        }
233
 
                                        vCard = null;
 
232
                                                vcard.finaliseVcard();
 
233
 
 
234
                                                // pass the finalised contact to the importer
 
235
                                                importContact( vcard );
 
236
                                        }
 
237
                                        catch( Vcard.ParseException e ) {
 
238
                                                if( !showContinue(
 
239
                                                        getText( R.string.error_vcf_parse ).toString()
 
240
                                                        + fileName +
 
241
                                                        getText( R.string.error_vcf_parse_line ).toString()
 
242
                                                        + cli.getLineNumber() + ":\n" + e.getMessage() ) )
 
243
                                                {
 
244
                                                        finish( ACTION_ABORT );
 
245
                                                }
 
246
                                                else
 
247
                                                        skipContact();
 
248
                                        }
 
249
                                        catch( ContactData.ContactNotIdentifiableException e ) {
 
250
                                                if( !showContinue(
 
251
                                                        getText( R.string.error_vcf_parse ).toString()
 
252
                                                        + fileName +
 
253
                                                        getText( R.string.error_vcf_parse_line ).toString()
 
254
                                                        + vcard_start_line + ":\n" + getText(
 
255
                                                                R.string.error_vcf_notenoughinfo ).toString()
 
256
                                                ) )
 
257
                                                {
 
258
                                                        finish( ACTION_ABORT );
 
259
                                                }
 
260
                                                else
 
261
                                                        skipContact();
 
262
                                        }
 
263
 
 
264
                                        // discard this vcard
 
265
                                        vcard = null;
234
266
                                }
235
267
                                else
236
268
                                {
237
269
                                        // try giving the line to the vcard
238
270
                                        try {
239
 
                                                vCard.parseLine( buffer, line,
240
 
                                                        cli.doesNextLineLookFolded() );
 
271
                                                vcard.parseLine( content_line );
241
272
                                        }
242
 
                                        catch( VCard.ParseException e ) {
 
273
                                        catch( Vcard.ParseException e ) {
243
274
                                                skipContact();
244
275
                                                if( !showContinue(
245
276
                                                        getText( R.string.error_vcf_parse ).toString()
246
 
                                                        + fileName + "\n" + e.getMessage() ) )
 
277
                                                        + fileName +
 
278
                                                        getText( R.string.error_vcf_parse_line ).toString()
 
279
                                                        + cli.getLineNumber() + "\n" + e.getMessage() ) )
247
280
                                                {
248
281
                                                        finish( ACTION_ABORT );
249
282
                                                }
250
283
 
251
 
                                                // although we're continuing, we still need to abort
252
 
                                                // this vCard. Further lines will be ignored until we
 
284
                                                // Although we're continuing, we still need to abort
 
285
                                                // this vCard.  Further lines will be ignored until we
253
286
                                                // get to another BEGIN:VCARD line.
254
 
                                                vCard = null;
 
287
                                                vcard = null;
255
288
                                        }
256
 
                                        catch( VCard.SkipContactException e ) {
 
289
                                        catch( Vcard.SkipImportException e ) {
257
290
                                                skipContact();
258
 
                                                // abort this vCard. Further lines will be ignored until
 
291
                                                // Abort this vCard.  Further lines will be ignored until
259
292
                                                // we get to another BEGIN:VCARD line.
260
 
                                                vCard = null;
 
293
                                                vcard = null;
261
294
                                        }
262
295
                                }
263
296
                        }
264
297
                }
265
298
        }
266
299
 
267
 
        class ContentLineIterator implements Iterator< ByteBuffer >
 
300
        class ContentLine
 
301
        {
 
302
                private ByteBuffer _buffer;
 
303
                private boolean _folded_next;
 
304
                private String _line;
 
305
 
 
306
                public ContentLine( ByteBuffer buffer, boolean folded_next )
 
307
                {
 
308
                        _buffer = buffer;
 
309
                        _folded_next = folded_next;
 
310
                        _line = null;
 
311
                }
 
312
 
 
313
                public ByteBuffer getBuffer()
 
314
                {
 
315
                        return _buffer;
 
316
                }
 
317
 
 
318
                public boolean doesNextLineLookFolded()
 
319
                {
 
320
                        return _folded_next;
 
321
                }
 
322
 
 
323
                public String getUsAsciiLine()
 
324
                {
 
325
                        // generated line and cache it
 
326
                        if( _line == null ) {
 
327
                                try {
 
328
                                        _line = new String( _buffer.array(), _buffer.position(),
 
329
                                                _buffer.limit() - _buffer.position(), "US-ASCII" );
 
330
                                }
 
331
                                catch( UnsupportedEncodingException e ) {
 
332
                                        // we know US-ASCII *is* supported, so appease the
 
333
                                        // compiler...
 
334
                                }
 
335
                        }
 
336
 
 
337
                        // return cached line
 
338
                        return _line;
 
339
                }
 
340
        }
 
341
 
 
342
        class ContentLineIterator implements Iterator< ContentLine >
268
343
        {
269
344
                protected byte[] _content = null;
270
345
                protected int _pos = 0;
 
346
                protected int _line = 0;
271
347
 
272
348
                public ContentLineIterator( byte[] content )
273
349
                {
281
357
                }
282
358
 
283
359
                @Override
284
 
                public ByteBuffer next()
 
360
                public ContentLine next()
285
361
                {
286
362
                        int initial_pos = _pos;
287
363
 
293
369
                                        int to = ( _pos > 0 && _content[ _pos - 1 ] == '\r' &&
294
370
                                                _pos > initial_pos )? _pos - 1 : _pos;
295
371
                                        _pos++;
296
 
                                        return ByteBuffer.wrap( _content, initial_pos,
297
 
                                                to - initial_pos );
 
372
                                        _line++;
 
373
                                        return new ContentLine(
 
374
                                                ByteBuffer.wrap( _content, initial_pos,
 
375
                                                        to - initial_pos ),
 
376
                                                doesNextLineLookFolded() );
298
377
                                }
299
378
 
300
379
                        // we didn't find one, but were there bytes left?
301
380
                        if( _pos != initial_pos ) {
302
381
                                int to = _pos;
303
382
                                _pos++;
304
 
                                return ByteBuffer.wrap( _content, initial_pos,
305
 
                                        to - initial_pos );
 
383
                                _line++;
 
384
                                return new ContentLine(
 
385
                                        ByteBuffer.wrap( _content, initial_pos,
 
386
                                                to - initial_pos ),
 
387
                                        doesNextLineLookFolded() );
306
388
                        }
307
389
 
308
390
                        // no bytes left
320
402
                 * onto the end of this one?
321
403
                 * @return
322
404
                 */
323
 
                public boolean doesNextLineLookFolded()
 
405
                private boolean doesNextLineLookFolded()
324
406
                {
325
407
                        return _pos > 0 && _pos < _content.length &&
326
 
                                _content[ _pos - 1 ] == '\n' && _content[ _pos ] == ' ';
 
408
                                _content[ _pos - 1 ] == '\n' &&
 
409
                                ( _content[ _pos ] == ' ' || _content[ _pos ] == '\t' );
 
410
                }
 
411
 
 
412
                public int getLineNumber()
 
413
                {
 
414
                        return _line;
327
415
                }
328
416
        }
329
417
 
330
 
        private class VCard extends ContactData
 
418
        private class Vcard extends ContactData
331
419
        {
332
420
                private final static int NAMELEVEL_NONE = 0;
333
 
                private final static int NAMELEVEL_ORG = 1;
 
421
                private final static int NAMELEVEL_N = 1;
334
422
                private final static int NAMELEVEL_FN = 2;
335
 
                private final static int NAMELEVEL_N = 3;
336
423
 
337
424
                private final static int MULTILINE_NONE = 0;
338
425
                private final static int MULTILINE_ENCODED = 1; // v2.1 quoted-printable
339
426
                private final static int MULTILINE_ESCAPED = 2; // v2.1 \\CRLF
340
 
                private final static int MULTILINE_FOLDED = 3;  // v3.0 folding
 
427
                private final static int MULTILINE_FOLDED = 3;  // MIME-DIR folding
341
428
 
342
429
                private String _version = null;
343
 
                private Vector< ByteBuffer > _buffers = null;
 
430
                private Vector< ContentLine > _content_lines = null;
344
431
                private int _name_level = NAMELEVEL_NONE;
345
432
                private int _parser_multiline_state = MULTILINE_NONE;
346
433
                private String _parser_current_name_and_params = null;
347
434
                private String _parser_buffered_value_so_far = "";
 
435
                private String _cached_organisation = null;
 
436
                private String _cached_title = null;
348
437
 
349
438
                protected class UnencodeResult
350
439
                {
380
469
 
381
470
                        public ParseException( int res )
382
471
                        {
383
 
                                super( VCFImporter.this.getText( res ).toString() );
 
472
                                super( VcardImporter.this.getText( res ).toString() );
384
473
                        }
385
474
                }
386
475
 
387
476
                @SuppressWarnings("serial")
388
 
                protected class SkipContactException extends Exception { }
 
477
                protected class SkipImportException extends Exception { }
389
478
 
390
 
                private String extractCollonPartFromLine( ByteBuffer buffer,
391
 
                        String line, boolean former )
 
479
                private String extractCollonPartFromLine( ContentLine content_line,
 
480
                        boolean former )
392
481
                {
393
 
                        String ret = null;
394
 
 
395
 
                        // get a US-ASCII version of the line for processing, unless we were
396
 
                        // supplied with one
397
 
                        if( line == null ) {
398
 
                                try {
399
 
                                        line = new String( buffer.array(), buffer.position(),
400
 
                                                buffer.limit() - buffer.position(), "US-ASCII" );
401
 
                                }
402
 
                                catch( UnsupportedEncodingException e ) {
403
 
                                        // we know US-ASCII is supported, so appease the compiler...
404
 
                                        line = "";
405
 
                                }
406
 
                        }
407
 
 
408
482
                        // split line into name and value parts and check to make sure we
409
483
                        // only got 2 parts and that the first part is not zero in length
410
 
                        String[] parts = line.split( ":", 2 );
 
484
                        String[] parts = content_line.getUsAsciiLine().split( ":", 2 );
411
485
                        if( parts.length == 2 && parts[ 0 ].length() > 0 )
412
 
                                ret = parts[ former? 0 : 1 ];
413
 
 
414
 
                        return ret;
415
 
                }
416
 
 
417
 
                private String extractNameAndParamsFromLine( ByteBuffer buffer,
418
 
                        String line )
419
 
                {
420
 
                        return extractCollonPartFromLine( buffer, line, true );
421
 
                }
422
 
 
423
 
                private String extractValueFromLine( ByteBuffer buffer, String line )
424
 
                {
425
 
                        return extractCollonPartFromLine( buffer, line, false );
426
 
                }
427
 
 
428
 
                public void parseLine( ByteBuffer buffer, String line,
429
 
                        boolean next_line_looks_folded )
430
 
                        throws ParseException, SkipContactException,
 
486
                                return parts[ former? 0 : 1 ].trim();
 
487
 
 
488
                        return null;
 
489
                }
 
490
 
 
491
                private String extractNameAndParamsFromLine( ContentLine content_line )
 
492
                {
 
493
                        return extractCollonPartFromLine( content_line, true );
 
494
                }
 
495
 
 
496
                private String extractValueFromLine( ContentLine content_line )
 
497
                {
 
498
                        return extractCollonPartFromLine( content_line, false );
 
499
                }
 
500
 
 
501
                public void parseLine( ContentLine content_line )
 
502
                        throws ParseException, SkipImportException,
431
503
                        AbortImportException
432
504
                {
433
505
                        // do we have a version yet?
435
507
                        {
436
508
                                // tentatively get name and params from line
437
509
                                String name_and_params =
438
 
                                        extractNameAndParamsFromLine( buffer, line );
 
510
                                        extractNameAndParamsFromLine( content_line );
439
511
 
440
512
                                // is it a version line?
441
513
                                if( name_and_params != null &&
442
 
                                        name_and_params.equals( "VERSION" ) )
 
514
                                        name_and_params.equalsIgnoreCase( "VERSION" ) )
443
515
                                {
444
516
                                        // yes, get it!
445
 
                                        String value = extractValueFromLine( buffer, line );
446
 
                                        if( !value.equals( "2.1" ) && !value.equals( "3.0" ) )
 
517
                                        String value = extractValueFromLine( content_line );
 
518
                                        if( value == null || (
 
519
                                                !value.equals( "2.1" ) && !value.equals( "3.0" ) ) )
 
520
                                        {
447
521
                                                throw new ParseException( R.string.error_vcf_version );
 
522
                                        }
448
523
                                        _version = value;
449
524
 
450
525
                                        // parse any buffers we've been accumulating while we waited
451
526
                                        // for a version
452
 
                                        if( _buffers != null )
453
 
                                                for( int i = 0; i < _buffers.size(); i++ )
454
 
                                                        parseLine( _buffers.get( i ), null,
455
 
                                                                i + 1 < _buffers.size() &&
456
 
                                                                _buffers.get( i + 1 ).hasRemaining() &&
457
 
                                                                _buffers.get( i + 1 ).get(
458
 
                                                                        _buffers.get( i + 1 ).position() ) == ' ' );
459
 
                                        _buffers = null;
 
527
                                        if( _content_lines != null )
 
528
                                                for( int i = 0; i < _content_lines.size(); i++ )
 
529
                                                        parseLine( _content_lines.get( i ) );
 
530
                                        _content_lines = null;
460
531
                                }
461
532
                                else
462
533
                                {
463
534
                                        // no, so stash this line till we get a version
464
 
                                        if( _buffers == null )
465
 
                                                _buffers = new Vector< ByteBuffer >();
466
 
                                        _buffers.add( buffer );
 
535
                                        if( _content_lines == null )
 
536
                                                _content_lines = new Vector< ContentLine >();
 
537
                                        _content_lines.add( content_line );
467
538
                                }
468
539
                        }
469
540
                        else
470
541
                        {
471
542
                                // name and params and the position in the buffer where the
472
 
                                // "value" part of the line start
 
543
                                // "value" part of the line starts
473
544
                                String name_and_params;
474
545
                                int pos;
475
546
 
481
552
 
482
553
                                        // skip some initial line characters, depending on the type
483
554
                                        // of multi-line we're handling
484
 
                                        pos = buffer.position();
 
555
                                        pos = content_line.getBuffer().position();
485
556
                                        switch( _parser_multiline_state )
486
557
                                        {
487
558
                                        case MULTILINE_FOLDED:
488
559
                                                pos++;
489
560
                                                break;
490
561
                                        case MULTILINE_ENCODED:
491
 
                                                while( pos < buffer.limit() && (
492
 
                                                        buffer.get( pos ) == ' ' ||
493
 
                                                        buffer.get( pos ) == '\t' ) )
 
562
                                                while( pos < content_line.getBuffer().limit() && (
 
563
                                                        content_line.getBuffer().get( pos ) == ' ' ||
 
564
                                                        content_line.getBuffer().get( pos ) == '\t' ) )
494
565
                                                {
495
566
                                                        pos++;
496
567
                                                }
505
576
                                }
506
577
                                else
507
578
                                {
 
579
                                        // skip empty lines
 
580
                                        if( content_line.getUsAsciiLine().trim().length() == 0 )
 
581
                                                return;
 
582
 
508
583
                                        // get name and params from line, and since we're not
509
584
                                        // parsing a subsequent line in a multi-line, this should
510
585
                                        // not fail, or it's an error
511
586
                                        name_and_params =
512
 
                                                extractNameAndParamsFromLine( buffer, line );
 
587
                                                extractNameAndParamsFromLine( content_line );
513
588
                                        if( name_and_params == null )
514
589
                                                throw new ParseException(
515
590
                                                        R.string.error_vcf_malformed );
516
591
 
517
592
                                        // calculate how many chars to skip from beginning of line
518
593
                                        // so we skip the property "name:" part
519
 
                                        pos = buffer.position() + name_and_params.length() + 1;
 
594
                                        pos = content_line.getBuffer().position() +
 
595
                                                name_and_params.length() + 1;
520
596
 
521
597
                                        // reset the saved multi-line state
522
598
                                        _parser_current_name_and_params = name_and_params;
525
601
 
526
602
                                // get value from buffer, as raw bytes
527
603
                                ByteBuffer value;
528
 
                                value = ByteBuffer.wrap( buffer.array(), pos,
529
 
                                        buffer.limit() - pos );
 
604
                                value = ByteBuffer.wrap( content_line.getBuffer().array(), pos,
 
605
                                        content_line.getBuffer().limit() - pos );
530
606
 
531
607
                                // get parameter parts
532
608
                                String[] name_param_parts = name_and_params.split( ";", -1 );
533
609
                                for( int i = 0; i < name_param_parts.length; i++ )
534
610
                                        name_param_parts[ i ] = name_param_parts[ i ].trim();
535
611
 
 
612
                                // determine whether we care about this entry
 
613
                                final HashSet< String > interesting_fields =
 
614
                                        new HashSet< String >( Arrays.asList( new String[] { "N",
 
615
                                                "FN", "ORG", "TITLE", "TEL", "EMAIL", "ADR", "LABEL" }
 
616
                                ) );
 
617
                                boolean is_interesting_field =
 
618
                                        interesting_fields.contains(
 
619
                                                name_param_parts[ 0 ].toUpperCase( Locale.US ) );
 
620
 
536
621
                                // parse encoding parameter
537
622
                                String encoding = checkParam( name_param_parts, "ENCODING" );
538
 
                                if( encoding != null ) encoding = encoding.toUpperCase();
539
 
                                if( encoding != null && !encoding.equals( "8BIT" ) &&
540
 
                                        !encoding.equals( "QUOTED-PRINTABLE" ) )
541
 
                                        //&& !encoding.equals( "BASE64" ) )
 
623
                                if( encoding != null )
 
624
                                        encoding = encoding.toUpperCase( Locale.US );
 
625
                                if( is_interesting_field && encoding != null &&
 
626
                                        !encoding.equalsIgnoreCase( "8BIT" ) &&
 
627
                                        !encoding.equalsIgnoreCase( "QUOTED-PRINTABLE" ) )
 
628
                                        //&& !encoding.equalsIgnoreCase( "BASE64" ) )
542
629
                                {
543
630
                                        throw new ParseException( R.string.error_vcf_encoding );
544
631
                                }
545
632
 
546
633
                                // parse charset parameter
547
634
                                String charset = checkParam( name_param_parts, "CHARSET" );
548
 
                                if( charset != null ) charset = charset.toUpperCase();
549
 
                                if( charset != null && !charset.equals( "US-ASCII" ) &&
550
 
                                        !charset.equals( "ASCII" ) &&
551
 
                                        !charset.equals( "UTF-8" ) )
 
635
                                if( charset != null )
 
636
                                        charset = charset.toUpperCase( Locale.US );
 
637
                                if( charset != null &&
 
638
                                        !charset.equalsIgnoreCase( "US-ASCII" ) &&
 
639
                                        !charset.equalsIgnoreCase( "ASCII" ) &&
 
640
                                        !charset.equalsIgnoreCase( "UTF-8" ) )
552
641
                                {
553
642
                                        throw new ParseException( R.string.error_vcf_charset );
554
643
                                }
556
645
                                // do unencoding (or default to a fake unencoding result with
557
646
                                // the raw string)
558
647
                                UnencodeResult unencoding_result = null;
559
 
                                if( encoding != null && encoding.equals( "QUOTED-PRINTABLE" ) )
 
648
                                if( encoding != null &&
 
649
                                        encoding.equalsIgnoreCase( "QUOTED-PRINTABLE" ) )
 
650
                                {
560
651
                                        unencoding_result = unencodeQuotedPrintable( value );
561
 
//                              else if( encoding != null && encoding.equals( "BASE64" ) )
 
652
                                }
 
653
//                              else if( encoding != null &&
 
654
//                                      encoding.equalsIgnoreCase( "BASE64" ) )
 
655
//                              {
562
656
//                                      unencoding_result = unencodeBase64( props[ 1 ], charset );
 
657
//                              }
563
658
                                if( unencoding_result != null ) {
564
659
                                        value = unencoding_result.getBuffer();
565
660
                                        if( unencoding_result.isAnotherLineRequired() )
566
661
                                                _parser_multiline_state = MULTILINE_ENCODED;
567
662
                                }
568
663
 
569
 
                                // convert 8-bit ASCII charset to US-ASCII
570
 
                                if( charset == null || charset.equals( "ASCII" ) ) {
 
664
                                // convert 8-bit US-ASCII charset to UTF-8 (where no charset is
 
665
                                // specified for a v2.1 vcard entry, we assume it's US-ASCII)
 
666
                                if( ( charset == null && _version.equals( "2.1" ) ) ||
 
667
                                        ( charset != null && (
 
668
                                                charset.equalsIgnoreCase( "ASCII" ) ||
 
669
                                                charset.equalsIgnoreCase( "US-ASCII" ) ) ) )
 
670
                                {
571
671
                                        value = transcodeAsciiToUtf8( value );
572
 
                                        charset = "UTF-8";
573
672
                                }
574
673
 
575
 
                                // process charset
 
674
                                // process charset (value is now in UTF-8)
576
675
                                String string_value;
577
676
                                try {
578
677
                                        string_value = new String( value.array(), value.position(),
579
 
                                                value.limit() - value.position(), charset );
 
678
                                                value.limit() - value.position(), "UTF-8" );
580
679
                                } catch( UnsupportedEncodingException e ) {
581
680
                                        throw new ParseException( R.string.error_vcf_charset );
582
681
                                }
584
683
                                // for some entries that have semicolon-separated value parts,
585
684
                                // check to see if the value ends in an escape character, which
586
685
                                // indicates that we have a multi-line value
587
 
                                if( ( name_param_parts[ 0 ].equals( "N" ) ||
588
 
                                        name_param_parts[ 0 ].equals( "ORG" ) ||
589
 
                                        name_param_parts[ 0 ].equals( "ADR" ) ) &&
 
686
                                if( ( name_param_parts[ 0 ].equalsIgnoreCase( "N" ) ||
 
687
                                        name_param_parts[ 0 ].equalsIgnoreCase( "ORG" ) ||
 
688
                                        name_param_parts[ 0 ].equalsIgnoreCase( "ADR" ) ) &&
590
689
                                        doesStringEndInAnEscapeChar( string_value ) )
591
690
                                {
592
691
                                        _parser_multiline_state = MULTILINE_ESCAPED;
594
693
                                                string_value.length() - 1 );
595
694
                                }
596
695
 
597
 
                                // now we know whether we're in an encoding multi-line,
598
 
                                // determine if we're in a v3 folded multi-line or not
 
696
                                // if we know we're not in an encoding-based multi-line, check
 
697
                                // to see if we're in a folded multi-line
599
698
                                if( _parser_multiline_state == MULTILINE_NONE &&
600
 
                                        _version.equals( "3.0" ) && next_line_looks_folded )
 
699
                                        content_line.doesNextLineLookFolded() )
601
700
                                {
602
701
                                        _parser_multiline_state = MULTILINE_FOLDED;
603
702
                                }
615
714
                                if( complete_value.length() < 1 ) return;
616
715
 
617
716
                                // parse some properties
618
 
                                if( name_param_parts[ 0 ].equals( "N" ) )
 
717
                                if( name_param_parts[ 0 ].equalsIgnoreCase( "N" ) )
619
718
                                        parseN( name_param_parts, complete_value );
620
 
                                else if( name_param_parts[ 0 ].equals( "FN" ) )
 
719
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "FN" ) )
621
720
                                        parseFN( name_param_parts, complete_value );
622
 
                                else if( name_param_parts[ 0 ].equals( "ORG" ) )
 
721
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "ORG" ) )
623
722
                                        parseORG( name_param_parts, complete_value );
624
 
                                else if( name_param_parts[ 0 ].equals( "TEL" ) )
 
723
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "TITLE" ) )
 
724
                                        parseTITLE( name_param_parts, complete_value );
 
725
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "TEL" ) )
625
726
                                        parseTEL( name_param_parts, complete_value );
626
 
                                else if( name_param_parts[ 0 ].equals( "EMAIL" ) )
 
727
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "EMAIL" ) )
627
728
                                        parseEMAIL( name_param_parts, complete_value );
628
 
                                else if( name_param_parts[ 0 ].equals( "ADR" ) )
 
729
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "ADR" ) )
629
730
                                        parseADR( name_param_parts, complete_value );
 
731
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "LABEL" ) )
 
732
                                        parseLABEL( name_param_parts, complete_value );
 
733
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "NOTE" ) )
 
734
                                        parseNOTE( name_param_parts, complete_value );
 
735
                                else if( name_param_parts[ 0 ].equalsIgnoreCase( "BDAY" ) )
 
736
                                        parseBDAY( name_param_parts, complete_value );
630
737
                        }
631
738
                }
632
739
 
645
752
                        return ( count & 1 ) == 1;
646
753
                }
647
754
 
648
 
                private String[] splitValueBySemicolon( String value )
 
755
                private String[] splitValueByCharacter( String value, char character )
649
756
                {
650
 
                        // split string in to parts by semicolon
 
757
                        // split string in to parts by specified character
651
758
                        ArrayList< String > parts = new ArrayList< String >(
652
 
                                Arrays.asList( value.split(  ";" ) ) );
 
759
                                Arrays.asList( value.split( "" + character ) ) );
653
760
 
654
761
                        // go through parts
655
762
                        for( int a = 0; a < parts.size(); a++ )
656
763
                        {
657
764
                                String str = parts.get( a );
658
765
 
659
 
                                // look for parts that end in an escape character, but ignore
660
 
                                // the final part. We've already detected escape chars at the
 
766
                                // Look for parts that end in an escape character, but ignore
 
767
                                // the final part.  We've already detected escape chars at the
661
768
                                // end of the final part in parseLine() and handled multi-lines
662
769
                                // accordingly.
663
770
                                if( a < parts.size() - 1 &&
664
771
                                        doesStringEndInAnEscapeChar( str ) )
665
772
                                {
666
 
                                        // join the next part to this part and remove the next part
 
773
                                        // append the escaped character, join the next part to this
 
774
                                        // part and remove the next part
667
775
                                        parts.set( a, str.substring( 0, str.length() - 1 ) +
668
 
                                                ';' + parts.get( a + 1 ) );
 
776
                                                character + parts.get( a + 1 ) );
669
777
                                        parts.remove( a + 1 );
670
778
 
671
779
                                        // re-visit this part
682
790
                        return parts.toArray( ret );
683
791
                }
684
792
 
 
793
                private String unescapeValue( String value )
 
794
                {
 
795
                        StringBuilder ret = new StringBuilder( value.length() );
 
796
                        boolean in_escape = false;
 
797
                        for( int a = 0; a < value.length(); a++ )
 
798
                        {
 
799
                                int c = value.codePointAt( a );
 
800
 
 
801
                                // process a normal character
 
802
                                if( !in_escape ) {
 
803
                                        if( c == '\\' )
 
804
                                                in_escape = true;
 
805
                                        else
 
806
                                                ret.append( Character.toChars( c ) );
 
807
                                        continue;
 
808
                                }
 
809
 
 
810
                                // process an escape sequence
 
811
                                in_escape = false;
 
812
                                switch( c )
 
813
                                {
 
814
                                case 'T':
 
815
                                case 't':
 
816
                                        // add tab (invalid/non-standard, but accepted)
 
817
                                        ret.append( '\t' );
 
818
                                        break;
 
819
                                case 'N':
 
820
                                case 'n':
 
821
                                        // add newline
 
822
                                        ret.append( '\n' );
 
823
                                        break;
 
824
                                case '\\':
 
825
                                case ',':
 
826
                                case ';':
 
827
                                        // add escaped character
 
828
                                        ret.append( Character.toChars( c ) );
 
829
                                        break;
 
830
                                default:
 
831
                                        // unknown escape sequence, so add it unescaped
 
832
                                        // (invalid/non-standard, but accepted)
 
833
                                        ret.append( "\\" );
 
834
                                        ret.append( Character.toChars( c ) );
 
835
                                        break;
 
836
                                }
 
837
                        }
 
838
 
 
839
                        return ret.toString();
 
840
                }
 
841
 
685
842
                private void parseN( String[] params, String value )
686
 
                        throws ParseException, SkipContactException,
687
 
                        AbortImportException
688
843
                {
689
844
                        // already got a better name?
690
845
                        if( _name_level >= NAMELEVEL_N ) return;
691
846
 
692
847
                        // get name parts
693
 
                        String[] name_parts = splitValueBySemicolon( value );
 
848
                        String[] name_parts = splitValueByCharacter( value, ';' );
694
849
 
695
850
                        // build name
696
851
                        value = "";
697
 
                        if( name_parts.length > 1 && name_parts[ 1 ].length() > 0 )
698
 
                                value += name_parts[ 1 ];
699
 
                        if( name_parts.length > 0 && name_parts[ 0 ].length() > 0 )
700
 
                                value += ( value.length() == 0? "" : " " ) + name_parts[ 0 ];
 
852
                        final int[] part_order = { 3, 1, 2, 0, 4 };
 
853
                        for( int a = 0; a < part_order.length; a++ )
 
854
                                if( name_parts.length > part_order[ a ] &&
 
855
                                        name_parts[ part_order[ a ] ].length() > 0 )
 
856
                                {
 
857
                                        // split this part in to it's comma-separated bits
 
858
                                        String[] name_part_parts = splitValueByCharacter(
 
859
                                                name_parts[ part_order[ a ] ], ',' );
 
860
                                        for( int b = 0; b < name_part_parts.length; b++ )
 
861
                                                if( name_part_parts[ b ].length() > 0 )
 
862
                                                {
 
863
                                                        if( value.length() > 0 ) value += " ";
 
864
                                                        value += name_part_parts[ b ];
 
865
                                                }
 
866
                                }
701
867
 
702
868
                        // set name
703
 
                        setName( value );
 
869
                        setName( unescapeValue( value ) );
704
870
                        _name_level = NAMELEVEL_N;
705
 
 
706
 
                        // check now to see if we need to import this contact (to avoid
707
 
                        // parsing the rest of the vCard unnecessarily)
708
 
                        if( !isImportRequired( getName() ) )
709
 
                                throw new SkipContactException();
710
871
                }
711
872
 
712
873
                private void parseFN( String[] params, String value )
713
 
                        throws ParseException, SkipContactException
714
874
                {
715
875
                        // already got a better name?
716
876
                        if( _name_level >= NAMELEVEL_FN ) return;
717
877
 
718
878
                        // set name
719
 
                        setName( value );
 
879
                        setName( unescapeValue( value ) );
720
880
                        _name_level = NAMELEVEL_FN;
721
881
                }
722
882
 
723
883
                private void parseORG( String[] params, String value )
724
 
                        throws ParseException, SkipContactException
725
884
                {
726
 
                        // already got a better name?
727
 
                        if( _name_level >= NAMELEVEL_ORG ) return;
728
 
 
729
885
                        // get org parts
730
 
                        String[] org_parts = splitValueBySemicolon( value );
731
 
 
732
 
                        // build name
733
 
                        if( org_parts.length > 1 && org_parts[ 0 ].length() == 0 )
734
 
                                value = org_parts[ 1 ];
735
 
                        else if( org_parts.length > 1 && org_parts[ 1 ].length() > 0 )
736
 
                                value = org_parts[ 0 ] + ", " + org_parts[ 1 ];
737
 
                        else
738
 
                                value = org_parts[ 0 ];
739
 
 
740
 
                        // set name
741
 
                        setName( value );
742
 
                        _name_level = NAMELEVEL_ORG;
 
886
                        String[] org_parts = splitValueByCharacter( value, ';' );
 
887
                        if( org_parts == null || org_parts.length < 1 ) return;
 
888
 
 
889
                        // build organisation name
 
890
                        StringBuilder builder = new StringBuilder(
 
891
                                String.valueOf( org_parts[ 0 ] ) );
 
892
                        for( int a = 1; a < org_parts.length; a++ )
 
893
                                builder.append( ", " ).append( org_parts[ a ] );
 
894
                        String organisation = unescapeValue( builder.toString() );
 
895
 
 
896
                        // set organisation name (using a title we've previously found)
 
897
                        addOrganisation( organisation, _cached_title, true );
 
898
 
 
899
                        // if we've not previously found a title, store this organisation
 
900
                        // name (we'll need it when we find a title to update the
 
901
                        // organisation, by name), else if we *have* previously found a
 
902
                        // title, clear it (since we just used it)
 
903
                        if( _cached_title == null )
 
904
                                _cached_organisation = organisation;
 
905
                        else
 
906
                                _cached_title = null;
 
907
                }
 
908
 
 
909
                private void parseTITLE( String[] params, String value )
 
910
                {
 
911
                        value = unescapeValue( value );
 
912
 
 
913
                        // if we previously had an organisation, look it up and append this
 
914
                        // title to it
 
915
                        if( _cached_organisation != null && hasOrganisations() ) {
 
916
                                HashMap< String, ExtraDetail > datas = getOrganisations();
 
917
                                ExtraDetail detail = datas.get( _cached_organisation );
 
918
                                if( detail != null )
 
919
                                        detail.setExtra( value );
 
920
                        }
 
921
 
 
922
                        // same as when handling organisation, if we've not previously found
 
923
                        // an organisation we store this title, else we clear it (since we
 
924
                        // just appended this title to it)
 
925
                        if( _cached_organisation == null )
 
926
                                _cached_title = value;
 
927
                        else
 
928
                                _cached_organisation = null;
743
929
                }
744
930
 
745
931
                private void parseTEL( String[] params, String value )
746
 
                        throws ParseException
747
932
                {
748
933
                        if( value.length() == 0 ) return;
749
934
 
752
937
                                "PAGER", "BBS", "MODEM", "CAR", "ISDN", "VIDEO" ) );
753
938
 
754
939
                        // here's the logic...
755
 
                        boolean preferred = types.contains( "PREF" );
756
 
                        int type = PhonesColumns.TYPE_MOBILE;
757
 
                        if( types.contains( "VOICE" ) )
758
 
                                if( types.contains( "WORK" ) )
759
 
                                        type = PhonesColumns.TYPE_WORK;
760
 
                                else
761
 
                                        type = PhonesColumns.TYPE_HOME;
762
 
                        else if( types.contains( "CELL" ) || types.contains( "VIDEO" ) )
763
 
                                type = PhonesColumns.TYPE_MOBILE;
 
940
                        boolean is_preferred = types.contains( "PREF" );
 
941
                        int type;
764
942
                        if( types.contains( "FAX" ) )
765
943
                                if( types.contains( "HOME" ) )
766
 
                                        type = PhonesColumns.TYPE_FAX_HOME;
 
944
                                        type = TYPE_FAX_HOME;
767
945
                                else
768
 
                                        type = PhonesColumns.TYPE_FAX_WORK;
769
 
                        if( types.contains( "PAGER" ) )
770
 
                                type = PhonesColumns.TYPE_PAGER;
 
946
                                        type = TYPE_FAX_WORK;
 
947
                        else if( types.contains( "CELL" ) || types.contains( "VIDEO" ) )
 
948
                                type = TYPE_MOBILE;
 
949
                        else if( types.contains( "PAGER" ) )
 
950
                                type = TYPE_PAGER;
 
951
                        else if( types.contains( "WORK" ) )
 
952
                                type = TYPE_WORK;
 
953
                        else
 
954
                                type = TYPE_HOME;
771
955
 
772
956
                        // add phone number
773
 
                        addPhone( value, type, preferred );
 
957
                        addNumber( value, type, is_preferred );
774
958
                }
775
959
 
776
960
                public void parseEMAIL( String[] params, String value )
777
 
                        throws ParseException
778
961
                {
779
962
                        if( value.length() == 0 ) return;
780
963
 
782
965
                                "PREF", "WORK", "HOME", "INTERNET" ) );
783
966
 
784
967
                        // add email address
785
 
                        boolean preferred = types.contains( "PREF" );
 
968
                        boolean is_preferred = types.contains( "PREF" );
 
969
                        int type;
786
970
                        if( types.contains( "WORK" ) )
787
 
                                addEmail( value, Contacts.ContactMethods.TYPE_WORK, preferred );
 
971
                                type = TYPE_WORK;
788
972
                        else
789
 
                                addEmail( value, Contacts.ContactMethods.TYPE_HOME, preferred );
 
973
                                type = TYPE_HOME;
 
974
 
 
975
                        addEmail( unescapeValue( value ), type, is_preferred );
790
976
                }
791
977
 
792
978
                private void parseADR( String[] params, String value )
793
 
                        throws ParseException, SkipContactException
794
979
                {
795
980
                        // get address parts
796
 
                        String[] adr_parts = splitValueBySemicolon( value );
 
981
                        String[] adr_parts = splitValueByCharacter( value, ';' );
797
982
 
798
983
                        // build address
799
984
                        value = "";
800
 
                        for( int a = 0; a < adr_parts.length; a++ ) {
801
 
                                if( value.length() > 0 ) value += "\n";
802
 
                                value += adr_parts[ a ].trim();
803
 
                        }
804
 
 
805
 
                        Set< String > types = extractTypes( params, Arrays.asList(
806
 
                                "PREF", "WORK", "HOME", "INTERNET" ) );
807
 
 
808
 
                        // add address
809
 
                        if( types.contains( "WORK" ) )
810
 
                                addAddress( value, Contacts.ContactMethods.TYPE_WORK );
811
 
                        else
812
 
                                addAddress( value, Contacts.ContactMethods.TYPE_HOME);
813
 
                }
814
 
 
815
 
                public void finaliseParsing()
816
 
                        throws ParseException, SkipContactException,
817
 
                        AbortImportException
 
985
                        for( int a = 0; a < adr_parts.length; a++ )
 
986
                                if( adr_parts[ a ].length() > 0 )
 
987
                                {
 
988
                                        // version 3.0 vCards allow further splitting by comma
 
989
                                        if( _version.equals( "3.0" ) )
 
990
                                        {
 
991
                                                // split this part in to it's comma-separated bits and
 
992
                                                // add them on individual lines
 
993
                                                String[] adr_part_parts =
 
994
                                                        splitValueByCharacter( adr_parts[ a ], ',' );
 
995
                                                for( int b = 0; b < adr_part_parts.length; b++ )
 
996
                                                        if( adr_part_parts[ b ].length() > 0 )
 
997
                                                        {
 
998
                                                                if( value.length() > 0 ) value += "\n";
 
999
                                                                value += adr_part_parts[ b ];
 
1000
                                                        }
 
1001
                                        }
 
1002
                                        else
 
1003
                                        {
 
1004
                                                // add this part on an individual line
 
1005
                                                if( value.length() > 0 ) value += "\n";
 
1006
                                                value += adr_parts[ a ];
 
1007
                                        }
 
1008
                                }
 
1009
 
 
1010
                        Set< String > types = extractTypes( params, Arrays.asList(
 
1011
                                "PREF", "WORK", "HOME" ) );
 
1012
 
 
1013
                        // add address
 
1014
                        int type;
 
1015
                        if( types.contains( "WORK" ) )
 
1016
                                type = TYPE_WORK;
 
1017
                        else
 
1018
                                type = TYPE_HOME;
 
1019
 
 
1020
                        addAddress( unescapeValue( value ), type );
 
1021
                }
 
1022
 
 
1023
                private void parseLABEL( String[] params, String value )
 
1024
                {
 
1025
                        Set< String > types = extractTypes( params, Arrays.asList(
 
1026
                                "PREF", "WORK", "HOME" ) );
 
1027
 
 
1028
                        // add address
 
1029
                        int type;
 
1030
                        if( types.contains( "WORK" ) )
 
1031
                                type = TYPE_WORK;
 
1032
                        else
 
1033
                                type = TYPE_HOME;
 
1034
 
 
1035
                        addAddress( unescapeValue( value ), type );
 
1036
                }
 
1037
 
 
1038
                private void parseNOTE( String[] params, String value )
 
1039
                {
 
1040
                        addNote( unescapeValue( value ) );
 
1041
                }
 
1042
 
 
1043
                private void parseBDAY( String[] params, String value )
 
1044
                {
 
1045
                        setBirthday( value );
 
1046
                }
 
1047
 
 
1048
                public void finaliseVcard()
 
1049
                        throws ParseException, ContactNotIdentifiableException
818
1050
                {
819
1051
                        // missing version (and data is present)
820
 
                        if( _version == null && _buffers != null )
 
1052
                        if( _version == null && _content_lines != null )
821
1053
                                throw new ParseException( R.string.error_vcf_malformed );
822
1054
 
823
 
                        //  missing name properties?
824
 
                        if( _name_level == NAMELEVEL_NONE )
825
 
                                throw new ParseException( R.string.error_vcf_noname );
826
 
 
827
 
                        // check if we should import this one? If we've already got an 'N'-
828
 
                        // type name, this will already have been done by parseN() so we
829
 
                        // mustn't do this here (or it could prompt twice!)
830
 
                        if( _name_level < NAMELEVEL_N && !isImportRequired( getName() ) )
831
 
                                throw new SkipContactException();
 
1055
                        // finalise the parent class
 
1056
                        finalise();
832
1057
                }
833
1058
 
 
1059
                /**
 
1060
                 * Amongst the params, find the value of the first, only, of any with
 
1061
                 * the specified name.
 
1062
                 *
 
1063
                 * @param params
 
1064
                 * @param name
 
1065
                 * @return a value, or null
 
1066
                 */
834
1067
                private String checkParam( String[] params, String name )
835
1068
                {
 
1069
                        String[] res = checkParams( params, name );
 
1070
                        return res.length > 0? res[ 0 ] : null;
 
1071
                }
 
1072
 
 
1073
                /**
 
1074
                 * Amongst the params, find the values of any with the specified name.
 
1075
                 *
 
1076
                 * @param params
 
1077
                 * @param name
 
1078
                 * @return an array of values, or null
 
1079
                 */
 
1080
                private String[] checkParams( String[] params, String name )
 
1081
                {
 
1082
                        HashSet< String > ret = new HashSet< String >();
 
1083
 
836
1084
                        Pattern p = Pattern.compile(
837
 
                                "^" + name + "[ \\t]*=[ \\t]*(\"?)(.*)\\1$" );
 
1085
                                "^" + name + "[ \\t]*=[ \\t]*(\"?)(.*)\\1$",
 
1086
                                Pattern.CASE_INSENSITIVE );
838
1087
                        for( int i = 0; i < params.length; i++ ) {
839
1088
                                Matcher m = p.matcher( params[ i ] );
840
1089
                                if( m.matches() )
841
 
                                        return m.group( 2 );
 
1090
                                        ret.add( m.group( 2 ) );
842
1091
                        }
843
 
                        return null;
 
1092
 
 
1093
                        return (String[]) ret.toArray( new String[ ret.size() ] );
844
1094
                }
845
1095
 
 
1096
                /**
 
1097
                 * Amongst the params, return any type values present.  For v2.1 vCards,
 
1098
                 * those types are just parameters.  For v3.0, they are prefixed with
 
1099
                 * "TYPE=".  There may also be multiple type parameters.
 
1100
                 *
 
1101
                 * @param params an array of params to look for types in
 
1102
                 * @param valid_types an list of upper-case type values to look for
 
1103
                 * @return a set of present type values
 
1104
                 */
846
1105
                private Set< String > extractTypes( String[] params,
847
1106
                        List< String > valid_types )
848
1107
                {
849
1108
                        HashSet< String > types = new HashSet< String >();
850
1109
 
851
1110
                        // get 3.0-style TYPE= param
852
 
                        String type_param;
853
 
                        if( ( type_param = checkParam( params, "TYPE" ) ) != null ) {
854
 
                                String[] parts = type_param.split( "," );
855
 
                                for( int i = 0; i < parts.length; i++ )
856
 
                                        if( valid_types.contains( parts[ i ] ) )
857
 
                                                types.add( parts[ i ] );
 
1111
                        String type_params[] = checkParams( params, "TYPE" );
 
1112
                        for( int a = 0; a < type_params.length; a++ )
 
1113
                        {
 
1114
                                // check for a comma-separated list of types (why? I don't think
 
1115
                                // this is in the specs!)
 
1116
                                String[] parts = type_params[ a ].split( "," );
 
1117
                                for( int i = 0; i < parts.length; i++ ) {
 
1118
                                        String ucpart = parts[ i ].toUpperCase( Locale.US );
 
1119
                                        if( valid_types.contains( ucpart ) )
 
1120
                                                types.add( ucpart );
 
1121
                                }
858
1122
                        }
859
1123
 
860
1124
                        // get 2.1-style type param
861
1125
                        if( _version.equals( "2.1" ) ) {
862
 
                                for( int i = 1; i < params.length; i++ )
863
 
                                        if( valid_types.contains( params[ i ] ) )
864
 
                                                types.add( params[ i ] );
 
1126
                                for( int i = 1; i < params.length; i++ ) {
 
1127
                                        String ucparam = params[ i ].toUpperCase( Locale.US );
 
1128
                                        if( valid_types.contains( ucparam ) )
 
1129
                                                types.add( ucparam );
 
1130
                                }
865
1131
                        }
866
1132
 
867
1133
                        return types;
889
1155
                                else if( ch == '=' && i == in.limit() - 1 )
890
1156
                                {
891
1157
                                        // we found a '=' at the end of a line signifying a multi-
892
 
                                        // line string, so we don't add it.
 
1158
                                        // line string, so we don't add it
893
1159
                                        another = true;
894
1160
                                        continue;
895
1161
                                }