/android/import-contacts

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

« back to all changes in this revision

Viewing changes to src/am/ed/importcontacts/VcardImporter.java

  • Committer: edam
  • Date: 2012-12-19 17:41:29 UTC
  • Revision ID: tim@ed.am-20121219174129-41i7vrz0jviideqi
fix intro strings

Show diffs side-by-side

added added

removed removed

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