/android/export-contacts

To get this branch, use:
bzr branch http://bzr.ed.am/android/export-contacts
5 by edam
- added ContactReader interface
1
/*
10 by edam
renamed contact readers to accessors
2
 * ContactsContactAccessor.java
5 by edam
- added ContactReader interface
3
 *
19 by edam
updated some copyright dates
4
 * Copyright (C) 2011 to 2012 Tim Marston <tim@ed.am>
5 by edam
- added ContactReader interface
5
 *
6
 * This file is part of the Export Contacts program (hereafter referred
30 by Tim Marston
minor style tweaks
7
 * to as "this program").  For more information, see
12 by edam
changed all the URLs to ed.am, including copyrights, package names and project
8
 * http://ed.am/dev/android/export-contacts
5 by edam
- added ContactReader interface
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
12 by edam
changed all the URLs to ed.am, including copyrights, package names and project
24
package am.ed.exportcontacts;
5 by edam
- added ContactReader interface
25
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
26
import am.ed.exportcontacts.Exporter.ContactData;
5 by edam
- added ContactReader interface
27
import android.app.Activity;
28
import android.database.Cursor;
29
import android.provider.Contacts;
30
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
31
@SuppressWarnings( "deprecation" )
32
public class ContactsBackend implements Backend
5 by edam
- added ContactReader interface
33
{
34
	Activity _activity = null;
35
	Exporter _exporter = null;
36
	Cursor _cur = null;
37
17 by edam
renamed ContactAccessor to Backend
38
	public ContactsBackend( Activity activity, Exporter exporter )
5 by edam
- added ContactReader interface
39
	{
40
		_activity = activity;
41
		_exporter = exporter;
42
	}
43
44
	@Override
45
	public int getNumContacts()
46
	{
47
		Cursor cursor = _activity.managedQuery(
48
			Contacts.People.CONTENT_URI,
49
			new String[] {
50
				Contacts.People._ID,
51
			}, null, null, null );
52
		return cursor.getCount();
53
	}
54
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
55
	private int convertBackendTypeToType( Class< ? > cls, int type )
56
	{
57
		if( cls == Contacts.Phones.class )
58
		{
59
			switch( type )
60
			{
21 by edam
fixed column values in Contacts backend; don't write-out empty notes; remember to close my queries; switched from wrappers to static valueOf() functions; fix line-endings (should be \r\n)
61
			case Contacts.PhonesColumns.TYPE_MOBILE:
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
62
				return ContactData.TYPE_MOBILE;
21 by edam
fixed column values in Contacts backend; don't write-out empty notes; remember to close my queries; switched from wrappers to static valueOf() functions; fix line-endings (should be \r\n)
63
			case Contacts.PhonesColumns.TYPE_FAX_HOME:
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
64
				return ContactData.TYPE_FAX_HOME;
21 by edam
fixed column values in Contacts backend; don't write-out empty notes; remember to close my queries; switched from wrappers to static valueOf() functions; fix line-endings (should be \r\n)
65
			case Contacts.PhonesColumns.TYPE_FAX_WORK:
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
66
				return ContactData.TYPE_FAX_WORK;
21 by edam
fixed column values in Contacts backend; don't write-out empty notes; remember to close my queries; switched from wrappers to static valueOf() functions; fix line-endings (should be \r\n)
67
			case Contacts.PhonesColumns.TYPE_PAGER:
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
68
				return ContactData.TYPE_PAGER;
21 by edam
fixed column values in Contacts backend; don't write-out empty notes; remember to close my queries; switched from wrappers to static valueOf() functions; fix line-endings (should be \r\n)
69
			case Contacts.PhonesColumns.TYPE_WORK:
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
70
				return ContactData.TYPE_WORK;
71
			default:
72
				return ContactData.TYPE_HOME;
73
			}
74
		}
75
		else if( cls == Contacts.ContactMethods.class )
76
		{
77
			switch( type )
78
			{
21 by edam
fixed column values in Contacts backend; don't write-out empty notes; remember to close my queries; switched from wrappers to static valueOf() functions; fix line-endings (should be \r\n)
79
			case Contacts.ContactMethodsColumns.TYPE_WORK:
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
80
				return ContactData.TYPE_WORK;
81
			default:
82
				return ContactData.TYPE_HOME;
83
			}
84
		}
85
86
		return ContactData.TYPE_HOME;
87
	}
88
5 by edam
- added ContactReader interface
89
	@Override
90
	public boolean getNextContact( Exporter.ContactData contact )
91
	{
92
		// set up cursor
93
		if( _cur == null )
94
		{
95
			// get all contacts
25 by edam
stop using managedQuery(), which isn't cleaning up my queries
96
			_cur = _activity.getContentResolver().query(
97
				Contacts.People.CONTENT_URI,
5 by edam
- added ContactReader interface
98
				new String[] {
99
					Contacts.People._ID,
100
					Contacts.People.NAME,
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
101
					Contacts.People.NOTES,
5 by edam
- added ContactReader interface
102
				}, null, null, null );
103
		}
104
105
		// if there are no more contacts, abort
25 by edam
stop using managedQuery(), which isn't cleaning up my queries
106
		if( _cur == null ) return false;
107
		if( !_cur.moveToNext() ) {
108
			_cur.close();
5 by edam
- added ContactReader interface
109
			_cur = null;
110
			return false;
111
		}
112
113
		// get this contact's id
114
		Long id = _cur.getLong( _cur.getColumnIndex( Contacts.People._ID ) );
115
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
116
		// set name
5 by edam
- added ContactReader interface
117
		contact.setName(
118
			_cur.getString( _cur.getColumnIndex( Contacts.People.NAME ) ) );
119
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
120
		// add notes
21 by edam
fixed column values in Contacts backend; don't write-out empty notes; remember to close my queries; switched from wrappers to static valueOf() functions; fix line-endings (should be \r\n)
121
		String note = _cur.getString(
122
			_cur.getColumnIndex( Contacts.People.NOTES ) );
123
		if( note != null && note.length() > 0 )
124
			contact.addNote( note );
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
125
126
		// add the organisations
25 by edam
stop using managedQuery(), which isn't cleaning up my queries
127
		Cursor cur = _activity.getContentResolver().query(
128
			Contacts.Organizations.CONTENT_URI,
5 by edam
- added ContactReader interface
129
			new String[] {
130
				Contacts.Organizations.COMPANY,
131
				Contacts.Organizations.TITLE,
132
			}, Contacts.Organizations.PERSON_ID + " = ?",
133
			new String[] { id.toString() },
134
			Contacts.Organizations.ISPRIMARY + " DESC, " +
135
				Contacts.Organizations.PERSON_ID + " ASC" );
136
		while( cur.moveToNext() )
137
			contact.addOrganisation( contact.new OrganisationDetail(
138
				cur.getString( cur.getColumnIndex(
139
					Contacts.Organizations.COMPANY ) ),
140
				cur.getString( cur.getColumnIndex(
141
					Contacts.Organizations.TITLE ) ) ) );
6 by edam
- fixed a couple of comment headers
142
		cur.close();
5 by edam
- added ContactReader interface
143
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
144
		// add the phone numbers
25 by edam
stop using managedQuery(), which isn't cleaning up my queries
145
		cur = _activity.getContentResolver().query(
146
			Contacts.Phones.CONTENT_URI,
5 by edam
- added ContactReader interface
147
			new String[] {
148
				Contacts.Phones.NUMBER,
149
				Contacts.Phones.TYPE,
150
			}, Contacts.Phones.PERSON_ID + " = ?",
151
			new String[] { id.toString() },
152
			Contacts.Phones.ISPRIMARY + " DESC," +
153
				Contacts.Phones.PERSON_ID + " ASC" );
154
		while( cur.moveToNext() )
155
			contact.addNumber( contact.new NumberDetail(
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
156
				convertBackendTypeToType( Contacts.Phones.class,
157
					cur.getInt( cur.getColumnIndex( Contacts.Phones.TYPE ) ) ),
5 by edam
- added ContactReader interface
158
				cur.getString( cur.getColumnIndex(
159
					Contacts.Phones.NUMBER ) ) ) );
6 by edam
- fixed a couple of comment headers
160
		cur.close();
5 by edam
- added ContactReader interface
161
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
162
		// add the email and postal addresses
25 by edam
stop using managedQuery(), which isn't cleaning up my queries
163
		cur = _activity.getContentResolver().query(
164
			Contacts.ContactMethods.CONTENT_URI,
5 by edam
- added ContactReader interface
165
			new String[] {
166
				Contacts.ContactMethods.KIND,
167
				Contacts.ContactMethods.TYPE,
168
				Contacts.ContactMethods.DATA,
169
			},
170
			Contacts.ContactMethods.PERSON_ID + " = ? AND " +
171
				Contacts.ContactMethods.KIND + " IN( ?, ? )",
172
			new String[] {
173
				id.toString(),
174
				"" + Contacts.KIND_EMAIL,
175
				"" + Contacts.KIND_POSTAL,
176
			},
177
			Contacts.ContactMethods.ISPRIMARY + " DESC," +
178
				Contacts.ContactMethods.PERSON_ID + " ASC" );
179
		while( cur.moveToNext() ) {
180
			int kind = cur.getInt( cur.getColumnIndex(
181
				Contacts.ContactMethods.KIND ) );
182
			if( kind == Contacts.KIND_EMAIL )
183
				contact.addEmail( contact.new EmailDetail(
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
184
					convertBackendTypeToType( Contacts.ContactMethods.class,
185
						cur.getInt( cur.getColumnIndex(
186
							Contacts.ContactMethods.TYPE ) ) ),
5 by edam
- added ContactReader interface
187
					cur.getString( cur.getColumnIndex(
188
						Contacts.ContactMethods.DATA ) ) ) );
189
			else
190
				contact.addAddress( contact.new AddressDetail(
18 by edam
added ContactsContract backend; removed references to Contacts types (conversion to/from backend types now done in backends); added support for exporting NOTEs
191
					convertBackendTypeToType( Contacts.ContactMethods.class,
192
						cur.getInt( cur.getColumnIndex(
193
							Contacts.ContactMethods.TYPE ) ) ),
5 by edam
- added ContactReader interface
194
					cur.getString( cur.getColumnIndex(
195
						Contacts.ContactMethods.DATA ) ) ) );
196
		}
6 by edam
- fixed a couple of comment headers
197
		cur.close();
5 by edam
- added ContactReader interface
198
199
		return true;
200
	}
201
}