/android/import-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/import-contacts

« back to all changes in this revision

Viewing changes to src/org/waxworlds/edam/importcontacts/VCFImporter.java

  • Committer: edam
  • Date: 2010-07-04 15:14:46 UTC
  • Revision ID: edam@waxworlds.org-20100704151446-2yah1u00ml5m3wq9
- added facility to enter a filename (instead of a directory to scan) and just use that

Show diffs side-by-side

added added

removed removed

65
65
                try
66
66
                {
67
67
                        // open directory
68
 
                        String path = "/sdcard" + prefs.getString( "location", "/" );
69
 
                        File file = new File( path );
70
 
                        if( !file.exists() )
 
68
                        String location = prefs.getString( "location", "" );
 
69
                        File dir = new File( location );
 
70
                        if( !dir.exists() )
71
71
                                showError( R.string.error_locationnotfound );
72
72
 
73
73
                        // directory, or file?
74
 
                        if( file.isDirectory() )
 
74
                        if( dir.isDirectory() )
75
75
                        {
76
76
                                // get files
77
77
                                class VCardFilter implements FilenameFilter {
79
79
                                                return name.toLowerCase().endsWith( ".vcf" );
80
80
                                        }
81
81
                                }
82
 
                                files = file.listFiles( new VCardFilter() );
 
82
                                files = dir.listFiles( new VCardFilter() );
83
83
                        }
84
84
                        else
85
85
                        {
86
86
                                // use just this file
87
87
                                files = new File[ 1 ];
88
 
                                files[ 0 ] = file;
 
88
                                files[ 0 ] = dir;
89
89
                        }
90
90
                }
91
91
                catch( SecurityException e ) {
138
138
 
139
139
                }
140
140
                catch( FileNotFoundException e ) {
141
 
                        showError( getText( R.string.error_filenotfound ) +
142
 
                                file.getName() );
 
141
                        showError( getText( R.string.error_filenotfound ) + file.getName() );
143
142
                }
144
143
                catch( IOException e ) {
145
144
                        showError( getText( R.string.error_ioerror ) + file.getName() );
163
162
                        importVCardFileContent( content.toString(), file.getName() );
164
163
                }
165
164
                catch( FileNotFoundException e ) {
166
 
                        showError( getText( R.string.error_filenotfound ) +
167
 
                                file.getName() );
 
165
                        showError( getText( R.string.error_filenotfound ) + file.getName() );
168
166
                }
169
167
                catch( IOException e ) {
170
168
                        showError( getText( R.string.error_ioerror ) + file.getName() );
174
172
        private void importVCardFileContent( String content, String fileName )
175
173
                        throws AbortImportException
176
174
        {
 
175
                // unfold RFC2425 section 5.8.1 folded lines, except that we must also
 
176
                // handle embedded Quoted-Printable encodings that have a trailing '='.
 
177
                // So we remove these first before doing RFC2425 unfolding.
 
178
                content = content.replaceAll( "=\n[ \\t]", "" )
 
179
                                .replaceAll( "\n[ \\t]", "" );
 
180
 
177
181
                // get lines and parse them
178
182
                String[] lines = content.split( "\n" );
179
183
                VCard vCard = null;
248
252
 
249
253
                private String _version = null;
250
254
                private Vector< String > _lines = null;
251
 
                private int _name_level = NAMELEVEL_NONE;
252
 
                private boolean _parser_in_multiline = false;
253
 
                private String _parser_current_name_and_params = null;
254
 
                private String _parser_buffered_value_so_far = "";
255
 
 
256
 
                protected class UnencodeResult
257
 
                {
258
 
                        private boolean _another_line_required;
259
 
                        private byte[] _bytes;
260
 
                        private int _num_bytes;
261
 
 
262
 
                        public UnencodeResult( boolean another_line_required, byte[] bytes,
263
 
                                int num_bytes )
264
 
                        {
265
 
                                _another_line_required = another_line_required;
266
 
                                _bytes = bytes;
267
 
                                _num_bytes = num_bytes;
268
 
                        }
269
 
 
270
 
                        public boolean isAnotherLineRequired()
271
 
                        {
272
 
                                return _another_line_required;
273
 
                        }
274
 
 
275
 
                        public byte[] getBytes()
276
 
                        {
277
 
                                return _bytes;
278
 
                        }
279
 
 
280
 
                        public int getNumBytes()
281
 
                        {
282
 
                                return _num_bytes;
283
 
                        }
284
 
                }
 
255
                private int _nameLevel = NAMELEVEL_NONE;
285
256
 
286
257
                @SuppressWarnings("serial")
287
258
                protected class ParseException extends Exception
305
276
                                throws ParseException, SkipContactException,
306
277
                                AbortImportException
307
278
                {
308
 
                        // ignore empty lines
309
 
                        if( line.trim() == "" ) return;
310
 
 
311
 
                        // split line into name and value parts (this may turn out to be
312
 
                        // unwanted if the line is a subsequent line in a multi-line
313
 
                        // value, but we have to do this now to check for and handle VCF
314
 
                        // versions first)
315
 
                        String[] props = line.split(  ":", 2 );
 
279
                        // get property halves
 
280
                        String[] props = line.split( ":" );
316
281
                        for( int i = 0; i < props.length; i++ )
317
282
                                props[ i ] = props[ i ].trim();
 
283
                        if( props.length < 2 ||
 
284
                                        props[ 0 ].length() < 1 || props[ 1 ].length() < 1 )
 
285
                                throw new ParseException( R.string.error_vcf_malformed );
318
286
 
319
 
                        // if we haven't yet got a version, we won't be paring anything!
320
287
                        if( _version == null )
321
288
                        {
322
 
                                // is this a version?
323
 
                                if( props.length == 2 && props[ 0 ].equals( "VERSION" ) )
 
289
                                if( props[ 0 ].equals( "VERSION" ) )
324
290
                                {
325
 
                                        // yes, check/store it
 
291
                                        // get version
326
292
                                        if( !props[ 1 ].equals( "2.1" ) &&
327
293
                                                        !props[ 1 ].equals( "3.0" ) )
328
294
                                                throw new ParseException( R.string.error_vcf_version );
336
302
                                }
337
303
                                else
338
304
                                {
339
 
                                        // no, so stash this line till we have a version
 
305
                                        // stash this line till we have a version
340
306
                                        if( _lines == null )
341
307
                                                _lines = new Vector< String >();
342
308
                                        _lines.add( line );
344
310
                        }
345
311
                        else
346
312
                        {
347
 
                                if( _parser_in_multiline )
348
 
                                {
349
 
                                        // if we're currently in a multi-line value, use the stored
350
 
                                        // property name and parameters
351
 
                                        props = new String[ 2 ];
352
 
                                        props[ 0 ] = _parser_current_name_and_params;
353
 
                                        props[ 1 ] = line.trim();
354
 
                                }
355
 
                                else
356
 
                                {
357
 
                                        // for normal lines, check the property name/value bits
358
 
                                        if( props.length < 2 || props[ 0 ].length() == 0 )
359
 
                                                throw new ParseException(
360
 
                                                        R.string.error_vcf_malformed );
361
 
 
362
 
                                        // ignore empty properties
363
 
                                        if( props[ 1 ].length() < 1 )
364
 
                                                return;
365
 
 
366
 
                                        // reset the saved multi-line state
367
 
                                        _parser_current_name_and_params = props[ 0 ];
368
 
                                        _parser_buffered_value_so_far = "";
369
 
                                }
370
 
 
371
313
                                // get parameter parts
372
314
                                String[] params = props[ 0 ].split( ";" );
373
315
                                for( int i = 0; i < params.length; i++ )
374
316
                                        params[ i ] = params[ i ].trim();
375
317
 
376
 
                                // parse charset and encoding parameters
377
 
                                String charset, encoding;
378
 
                                if( ( charset = checkParam( params, "CHARSET" ) ) != null &&
379
 
                                        !charset.equals( "UTF-8" ) && !charset.equals( "UTF-16" ) )
380
 
                                {
381
 
                                        throw new ParseException( R.string.error_vcf_charset );
382
 
                                }
383
 
                                if( ( encoding = checkParam( params, "ENCODING" ) ) != null &&
384
 
                                        !encoding.equals( "QUOTED-PRINTABLE" ) &&
385
 
                                        !encoding.equals( "8BIT" ) )
386
 
                                        //&& !encoding.equals( "BASE64" ) )
387
 
                                {
388
 
                                        throw new ParseException( R.string.error_vcf_encoding );
389
 
                                }
390
 
 
391
 
                                // do unencoding (or default to a fake unencoding result with
392
 
                                // the raw string)
393
 
                                UnencodeResult result;
394
 
                                if( encoding != null && encoding.equals( "QUOTED-PRINTABLE" ) )
395
 
                                        result = unencodeQuotedPrintable( props[ 1 ], charset );
396
 
//                              else if( encoding != null && encoding.equals( "BASE64" ) )
397
 
//                                      result = unencodeBase64( props[ 1 ], charset );
398
 
                                else
399
 
                                        result = new UnencodeResult( false, props[ 1 ].getBytes(),
400
 
                                                props[ 1 ].getBytes().length );
401
 
 
402
 
                                // process charset
403
 
                                try {
404
 
                                        props[ 1 ] = new String( result.getBytes(), 0,
405
 
                                                result.getNumBytes(),
406
 
                                                charset == null? "UTF-8" : charset );
407
 
                                } catch( UnsupportedEncodingException e ) {
408
 
                                        throw new ParseException( R.string.error_vcf_charset );
409
 
                                }
410
 
 
411
 
                                // handle multi-line requests
412
 
                                _parser_in_multiline = result.isAnotherLineRequired();
413
 
                                if( _parser_in_multiline ) {
414
 
                                        _parser_buffered_value_so_far += props[ 1 ];
415
 
                                        return;
416
 
                                }
417
 
 
418
 
                                // add on buffered multi-line content
419
 
                                String value = _parser_buffered_value_so_far + props[ 1 ];
420
 
 
421
318
                                // parse some properties
422
319
                                if( params[ 0 ].equals( "N" ) )
423
 
                                        parseN( params, value );
 
320
                                        parseN( params, props[ 1 ] );
424
321
                                else if( params[ 0 ].equals( "FN" ) )
425
 
                                        parseFN( params, value );
 
322
                                        parseFN( params, props[ 1 ] );
426
323
                                else if( params[ 0 ].equals( "ORG" ) )
427
 
                                        parseORG( params, value );
 
324
                                        parseORG( params, props[ 1 ] );
428
325
                                else if( params[ 0 ].equals( "TEL" ) )
429
 
                                        parseTEL( params, value );
 
326
                                        parseTEL( params, props[ 1 ] );
430
327
                                else if( params[ 0 ].equals( "EMAIL" ) )
431
 
                                        parseEMAIL( params, value );
 
328
                                        parseEMAIL( params, props[ 1 ] );
432
329
                        }
433
330
                }
434
331
 
437
334
                                AbortImportException
438
335
                {
439
336
                        // already got a better name?
440
 
                        if( _name_level >= NAMELEVEL_N ) return;
 
337
                        if( _nameLevel >= NAMELEVEL_N ) return;
441
338
 
442
339
                        // get name parts
443
340
                        String[] nameparts = value.split( ";" );
452
349
                                value += ( value.length() == 0? "" : " " ) + nameparts[ 0 ];
453
350
 
454
351
                        // set name
455
 
                        setName( value );
456
 
                        _name_level = NAMELEVEL_N;
 
352
                        setName( undoCharsetAndEncoding( params, value ) );
 
353
                        _nameLevel = NAMELEVEL_N;
457
354
 
458
355
                        // check now to see if we need to import this contact (to avoid
459
356
                        // parsing the rest of the vCard unnecessarily)
465
362
                                throws ParseException, SkipContactException
466
363
                {
467
364
                        // already got a better name?
468
 
                        if( _name_level >= NAMELEVEL_FN ) return;
 
365
                        if( _nameLevel >= NAMELEVEL_FN ) return;
469
366
 
470
367
                        // set name
471
 
                        setName( value );
472
 
                        _name_level = NAMELEVEL_FN;
 
368
                        setName( undoCharsetAndEncoding( params, value ) );
 
369
                        _nameLevel = NAMELEVEL_FN;
473
370
                }
474
371
 
475
372
                private void parseORG( String[] params, String value )
476
373
                                throws ParseException, SkipContactException
477
374
                {
478
375
                        // already got a better name?
479
 
                        if( _name_level >= NAMELEVEL_ORG ) return;
 
376
                        if( _nameLevel >= NAMELEVEL_ORG ) return;
480
377
 
481
378
                        // get org parts
482
379
                        String[] orgparts = value.split( ";" );
490
387
                                value = orgparts[ 0 ];
491
388
 
492
389
                        // set name
493
 
                        setName( value );
494
 
                        _name_level = NAMELEVEL_ORG;
 
390
                        setName( undoCharsetAndEncoding( params, value ) );
 
391
                        _nameLevel = NAMELEVEL_ORG;
495
392
                }
496
393
 
497
394
                private void parseTEL( String[] params, String value )
522
419
                }
523
420
 
524
421
                public void parseEMAIL( String[] params, String value )
525
 
                                throws ParseException
526
422
                {
527
423
                        if( value.length() == 0 ) return;
528
424
 
546
442
                                throw new ParseException( R.string.error_vcf_malformed );
547
443
 
548
444
                        //  missing name properties?
549
 
                        if( _name_level == NAMELEVEL_NONE )
 
445
                        if( _nameLevel == NAMELEVEL_NONE )
550
446
                                throw new ParseException( R.string.error_vcf_noname );
551
447
 
552
448
                        // check if we should import this one? If we've already got an 'N'-
553
449
                        // type name, this will already have been done by parseN() so we
554
450
                        // mustn't do this here (or it could prompt twice!)
555
 
                        if( _name_level < NAMELEVEL_N && !isImportRequired( getName() ) )
 
451
                        if( _nameLevel < NAMELEVEL_N && !isImportRequired( getName() ) )
556
452
                                throw new SkipContactException();
557
453
                }
558
454
 
 
455
                private String undoCharsetAndEncoding( String[] params, String value )
 
456
                                throws ParseException
 
457
                {
 
458
                        // check encoding/charset
 
459
                        String charset, encoding;
 
460
                        if( ( charset = checkParam( params, "CHARSET" ) ) != null &&
 
461
                                        !charset.equals( "UTF-8" ) && !charset.equals( "UTF-16" ) )
 
462
                                throw new ParseException( R.string.error_vcf_charset );
 
463
                        if( ( encoding = checkParam( params, "ENCODING" ) ) != null &&
 
464
                                        !encoding.equals( "QUOTED-PRINTABLE" ) )
 
465
                                throw new ParseException( R.string.error_vcf_encoding );
 
466
 
 
467
                        // do decoding?
 
468
                        if( encoding != null && encoding.equals( "QUOTED-PRINTABLE" ) )
 
469
                                return unencodeQuotedPrintable( value, charset );
 
470
 
 
471
                        // nothing to do!
 
472
                        return value;
 
473
                }
 
474
 
559
475
                private String checkParam( String[] params, String name )
560
476
                {
561
477
                        Pattern p = Pattern.compile( "^" + name + "[ \\t]*=[ \\t]*(.*)$" );
591
507
                        return types;
592
508
                }
593
509
 
594
 
                private UnencodeResult unencodeQuotedPrintable( String str, String charset )
 
510
                private String unencodeQuotedPrintable( String str, String charset )
595
511
                {
596
 
                        boolean another = false;
597
 
 
598
512
                        // default encoding scheme
599
513
                        if( charset == null ) charset = "UTF-8";
600
514
 
601
515
                        // unencode quoted-pritable encoding, as per RFC1521 section 5.1
602
516
                        byte[] bytes = new byte[ str.length() ];
603
517
                        int j = 0;
604
 
                        for( int i = 0; i < str.length(); i++ )
605
 
                        {
606
 
                                // get next char and process...
 
518
                        for( int i = 0; i < str.length(); i++, j++ ) {
607
519
                                char ch = str.charAt( i );
608
 
                                if( ch == '=' && i < str.length() - 2 )
609
 
                                {
610
 
                                        // we found a =XX format byte, add it
 
520
                                if( ch == '=' && i < str.length() - 2 ) {
611
521
                                        bytes[ j ] = (byte)(
612
522
                                                        Character.digit( str.charAt( i + 1 ), 16 ) * 16 +
613
523
                                                        Character.digit( str.charAt( i + 2 ), 16 ) );
614
524
                                        i += 2;
615
525
                                }
616
 
                                else if( ch == '=' && i == str.length() - 1 )
617
 
                                {
618
 
                                        // we found a '=' at the end of a line signifying a multi-
619
 
                                        // line string, so we don't add it.
620
 
                                        another = true;
621
 
                                        continue;
622
 
                                }
623
526
                                else
624
 
                                        // just a normal char...
625
527
                                        bytes[ j ] = (byte)ch;
626
 
                                j++;
627
528
                        }
628
 
 
629
 
                        return new UnencodeResult( another, bytes, j );
 
529
                        try {
 
530
                                return new String( bytes, 0, j, charset );
 
531
                        } catch( UnsupportedEncodingException e ) { }
 
532
                        return null;
630
533
                }
631
534
        }
632
535
}