/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/ContactsCache.java

  • Committer: edam
  • Date: 2012-12-18 11:58:46 UTC
  • Revision ID: tim@ed.am-20121218115846-xdwnw3zzcedbb3rp
bump version to 1.3 (we're skipping v1.2, for f-droid)

Show diffs side-by-side

added added

removed removed

1
1
/*
2
2
 * ContactsCache.java
3
3
 *
4
 
 * Copyright (C) 2011 to 2012 Tim Marston <tim@ed.am>
 
4
 * Copyright (C) 2011 Tim Marston <tim@ed.am>
5
5
 *
6
6
 * This file is part of the Import Contacts program (hereafter referred
7
7
 * to as "this program"). For more information, see
25
25
 
26
26
import java.util.HashMap;
27
27
import java.util.HashSet;
28
 
import java.util.Locale;
 
28
 
 
29
import android.app.Activity;
 
30
 
29
31
 
30
32
public class ContactsCache
31
33
{
32
34
        /**
33
 
         * A thing that can be used to identify (or lookup) a contact within the
34
 
         * contacts cache.  It is not a reference to a cache entry and may not
35
 
         * identify an existing contact in the cache.
 
35
         * Information that can be used to identify a contact within the cache
36
36
         */
37
 
        public static class CacheIdentifier
 
37
        static public class CacheIdentifier
38
38
        {
39
 
                public enum Type { NAME, ORGANISATION, PRIMARY_NUMBER, PRIMARY_EMAIL }
 
39
                public enum Type {
 
40
                        NONE, NAME, ORGANISATION, PRIMARY_NUMBER, PRIMARY_EMAIL }
40
41
 
41
42
                private Type _type;
42
43
                private String _detail;
43
44
 
44
 
                /**
45
 
                 * Obtain a cache identifier.  This routine is designed to be as robust
46
 
                 * as possible (in terms of bad or null detail values), and to return
47
 
                 * null when a cache identifier can not be created.
48
 
                 * @param type the detail type
49
 
                 * @param detail the detail
50
 
                 * @return the cache identifier, or null
51
 
                 */
52
 
                public static CacheIdentifier factory( Type type, String detail )
53
 
                {
54
 
                        switch( type )
55
 
                        {
56
 
                        case NAME: detail = normaliseName( detail ); break;
57
 
                        case ORGANISATION: detail = normaliseOrganisation( detail ); break;
58
 
                        case PRIMARY_NUMBER: detail = normalisePhoneNumber( detail ); break;
59
 
                        case PRIMARY_EMAIL: detail = normaliseEmailAddress( detail ); break;
60
 
                        default: return null;
61
 
                        }
62
 
                        if( detail == null ) return null;
63
 
                        return new CacheIdentifier( type, detail );
64
 
                }
65
 
 
66
 
                /**
67
 
                 * Obtain a cache identifier from contact data.  This routine is
68
 
                 * designed to be as robust as possible and may return null when a cache
69
 
                 * identifier can not be created.
70
 
                 * @param contact the contact data
71
 
                 * @return the cache identifier, or null
72
 
                 */
73
 
                public static CacheIdentifier factory( Importer.ContactData contact )
74
 
                {
75
 
                        CacheIdentifier ret = null;
76
 
 
77
 
                        if( contact.hasName() )
78
 
                                ret = factory( CacheIdentifier.Type.NAME,
79
 
                                        contact.getName() );
80
 
                        if( ret == null && contact.hasPrimaryOrganisation() )
81
 
                                ret = factory( CacheIdentifier.Type.ORGANISATION,
82
 
                                        contact.getPrimaryOrganisation() );
83
 
                        if( ret == null && contact.hasPrimaryNumber() )
84
 
                                ret = factory( CacheIdentifier.Type.PRIMARY_NUMBER,
85
 
                                        contact.getPrimaryNumber() );
86
 
                        if( ret == null && contact.hasPrimaryEmail() )
87
 
                                ret = factory( CacheIdentifier.Type.PRIMARY_EMAIL,
88
 
                                        contact.getPrimaryEmail() );
89
 
 
90
 
                        return ret;
 
45
                protected CacheIdentifier()
 
46
                {
 
47
                        _type = Type.NONE;
91
48
                }
92
49
 
93
50
                protected CacheIdentifier( Type type, String detail )
126
83
                = new HashMap< Long, HashSet< String > >();
127
84
        private HashMap< Long, HashSet< String > > _contactOrganisations
128
85
                = new HashMap< Long, HashSet< String > >();
129
 
        private HashMap< Long, HashSet< String > > _contactNotes
130
 
                = new HashMap< Long, HashSet< String > >();
 
86
 
 
87
        ContactsCache()
 
88
        {
 
89
                // init id lookups
 
90
//              _contactsByName = new HashMap< String, Long >();
 
91
//              _contactsByOrg = new HashMap< String, Long >();
 
92
//              _contactsByNumber = new HashMap< String, Long >();
 
93
//              _contactsByEmail = new HashMap< String, Long >();
 
94
 
 
95
                // init associated data cache
 
96
//              _contactNumbers = new HashMap< Long, HashSet< String > >();
 
97
//              _contactEmails = new HashMap< Long, HashSet< String > >();
 
98
//              _contactAddresses = new HashMap< Long, HashSet< String > >();
 
99
//              _contactOrganisations = new HashMap< Long, HashSet< String > >();
 
100
        }
 
101
 
 
102
        public static CacheIdentifier createIdentifier(
 
103
                Importer.ContactData contact )
 
104
        {
 
105
                if( contact.hasName() ) {
 
106
                        String name = normaliseName( contact.getName() );
 
107
                        if( name != null )
 
108
                                return new CacheIdentifier(
 
109
                                        CacheIdentifier.Type.NAME, name );
 
110
                }
 
111
 
 
112
                if( contact.hasPrimaryOrganisation() ) {
 
113
                        String organisation = normaliseOrganisation(
 
114
                                contact.getPrimaryOrganisation() );
 
115
                        if( organisation != null )
 
116
                                return new CacheIdentifier(
 
117
                                        CacheIdentifier.Type.ORGANISATION, organisation );
 
118
                }
 
119
 
 
120
                if( contact.hasPrimaryNumber() ) {
 
121
                        String number = normalisePhoneNumber( contact.getPrimaryNumber() );
 
122
                        if( number != null )
 
123
                        return new CacheIdentifier(
 
124
                                CacheIdentifier.Type.PRIMARY_NUMBER, number );
 
125
                }
 
126
 
 
127
                if( contact.hasPrimaryEmail() ) {
 
128
                        String email = normaliseEmailAddress( contact.getPrimaryEmail() );
 
129
                        if( email != null )
 
130
                        return new CacheIdentifier(
 
131
                                CacheIdentifier.Type.PRIMARY_EMAIL, email );
 
132
                }
 
133
 
 
134
                return null;
 
135
        }
131
136
 
132
137
        public boolean canLookup( CacheIdentifier identifier )
133
138
        {
134
139
                return lookup( identifier ) != null;
135
140
        }
136
141
 
137
 
        /**
138
 
         * Retrieve the contact id of a contact identified by the specified cache
139
 
         * identifier, if it exists.
140
 
         * @param identifier the cache identifier
141
 
         * @return a contact id, or null
142
 
         */
143
142
        public Long lookup( CacheIdentifier identifier )
144
143
        {
145
144
                switch( identifier.getType() )
156
155
                return null;
157
156
        }
158
157
 
159
 
        /**
160
 
         * Remove any cache entry that is identified by the cache identifier.
161
 
         * @param identifier the cache identifier
162
 
         * @return the contact id of the contact that was removed, or null
163
 
         */
164
158
        public Long removeLookup( CacheIdentifier identifier )
165
159
        {
166
160
                switch( identifier.getType() )
177
171
                return null;
178
172
        }
179
173
 
180
 
        /**
181
 
         * Add a lookup from a contact identifier to a contact id to the cache.
182
 
         * @param identifier the cache identifier
183
 
         * @param id teh contact id
184
 
         */
185
174
        public void addLookup( CacheIdentifier identifier, Long id )
186
175
        {
187
176
                switch( identifier.getType() )
201
190
                }
202
191
        }
203
192
 
204
 
        /**
205
 
         * Remove any data that is associated with an contact id.
206
 
         * @param id
207
 
         */
208
193
        public void removeAssociatedData( Long id )
209
194
        {
210
195
                _contactNumbers.remove( id );
211
196
                _contactEmails.remove( id );
212
197
                _contactAddresses.remove( id );
213
198
                _contactOrganisations.remove( id );
214
 
                _contactNotes.remove( id );
215
199
        }
216
200
 
217
201
        public boolean hasAssociatedNumber( Long id, String number )
233
217
                        set = new HashSet< String >();
234
218
                        _contactNumbers.put( id, set );
235
219
                }
236
 
                set.add( number );
 
220
                set.add( normalisePhoneNumber( number ) );
237
221
        }
238
222
 
239
223
        public boolean hasAssociatedEmail( Long id, String email )
242
226
                if( email == null ) return false;
243
227
 
244
228
                HashSet< String > set = _contactEmails.get( id );
245
 
                return set != null && set.contains( email );
 
229
                return set != null && set.contains( normaliseEmailAddress( email ) );
246
230
        }
247
231
 
248
232
        public void addAssociatedEmail( Long id, String email )
255
239
                        set = new HashSet< String >();
256
240
                        _contactEmails.put( id, set );
257
241
                }
258
 
                set.add( email );
 
242
                set.add( normaliseEmailAddress( email ) );
259
243
        }
260
244
 
261
245
        public boolean hasAssociatedAddress( Long id, String address )
264
248
                if( address == null ) return false;
265
249
 
266
250
                HashSet< String > set = _contactAddresses.get( id );
267
 
                return set != null && set.contains( address );
 
251
                return set != null && set.contains( normaliseAddress( address ) );
268
252
        }
269
253
 
270
254
        public void addAssociatedAddress( Long id, String address )
277
261
                        set = new HashSet< String >();
278
262
                        _contactAddresses.put( id, set );
279
263
                }
280
 
                set.add( address );
 
264
                set.add( normaliseAddress( address ) );
281
265
        }
282
266
 
283
267
        public boolean hasAssociatedOrganisation( Long id, String organisation )
286
270
                if( organisation == null ) return false;
287
271
 
288
272
                HashSet< String > set = _contactOrganisations.get( id );
289
 
                return set != null && set.contains( organisation );
 
273
                return set != null && set.contains(
 
274
                        normaliseOrganisation( organisation ) );
290
275
        }
291
276
 
292
277
        public void addAssociatedOrganisation( Long id, String organisation )
299
284
                        set = new HashSet< String >();
300
285
                        _contactOrganisations.put( id, set );
301
286
                }
302
 
                set.add( organisation );
303
 
        }
304
 
 
305
 
        public boolean hasAssociatedNote( Long id, String note )
306
 
        {
307
 
                note = normaliseNote( note );
308
 
                if( note == null ) return false;
309
 
 
310
 
                HashSet< String > set = _contactNotes.get( id );
311
 
                return set != null && set.contains( note );
312
 
        }
313
 
 
314
 
        public void addAssociatedNote( Long id, String note )
315
 
        {
316
 
                note = normaliseNote( note );
317
 
                if( note == null ) return;
318
 
 
319
 
                HashSet< String > set = _contactNotes.get( id );
320
 
                if( set == null ) {
321
 
                        set = new HashSet< String >();
322
 
                        _contactNotes.put( id, set );
323
 
                }
324
 
                set.add( note );
 
287
                set.add( normaliseOrganisation( organisation ) );
325
288
        }
326
289
 
327
290
        static public String normaliseName( String name )
341
304
        static public String normaliseEmailAddress( String email )
342
305
        {
343
306
                if( email == null ) return null;
344
 
                email = email.trim().toLowerCase( Locale.US );
 
307
                email = email.trim().toLowerCase();
345
308
                return email.length() > 0? email : null;
346
309
        }
347
310
 
358
321
                address = address.trim();
359
322
                return address.length() > 0? address : null;
360
323
        }
361
 
 
362
 
        static public String normaliseNote( String note )
363
 
        {
364
 
                if( note == null ) return null;
365
 
                note = note.trim();
366
 
                return note.length() > 0? note : null;
367
 
        }
368
324
}