mirror of
https://github.com/SimpleMobileTools/Simple-Contacts.git
synced 2025-04-03 12:51:01 +02:00
speed up duplicate contact fetching by ignoring some fields
This commit is contained in:
parent
ab94133860
commit
31f0f0aa53
@ -510,7 +510,7 @@ class MainActivity : SimpleActivity(), RefreshContactsListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private fun exportContactsTo(ignoredContactSources: HashSet<String>, outputStream: OutputStream?) {
|
private fun exportContactsTo(ignoredContactSources: HashSet<String>, outputStream: OutputStream?) {
|
||||||
ContactsHelper(this).getContacts(true, ignoredContactSources) { contacts ->
|
ContactsHelper(this).getContacts(true, false, ignoredContactSources) { contacts ->
|
||||||
if (contacts.isEmpty()) {
|
if (contacts.isEmpty()) {
|
||||||
toast(R.string.no_entries_for_exporting)
|
toast(R.string.no_entries_for_exporting)
|
||||||
} else {
|
} else {
|
||||||
|
@ -28,7 +28,7 @@ class ContactsHelper(val context: Context) {
|
|||||||
private val BATCH_SIZE = 50
|
private val BATCH_SIZE = 50
|
||||||
private var displayContactSources = ArrayList<String>()
|
private var displayContactSources = ArrayList<String>()
|
||||||
|
|
||||||
fun getContacts(getAll: Boolean = false, ignoredContactSources: HashSet<String> = HashSet(), callback: (ArrayList<Contact>) -> Unit) {
|
fun getContacts(getAll: Boolean = false, gettingDuplicates: Boolean = false, ignoredContactSources: HashSet<String> = HashSet(), callback: (ArrayList<Contact>) -> Unit) {
|
||||||
ensureBackgroundThread {
|
ensureBackgroundThread {
|
||||||
val contacts = SparseArray<Contact>()
|
val contacts = SparseArray<Contact>()
|
||||||
displayContactSources = context.getVisibleContactSources()
|
displayContactSources = context.getVisibleContactSources()
|
||||||
@ -43,7 +43,7 @@ class ContactsHelper(val context: Context) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
getDeviceContacts(contacts, ignoredContactSources)
|
getDeviceContacts(contacts, ignoredContactSources, gettingDuplicates)
|
||||||
|
|
||||||
if (displayContactSources.contains(SMT_PRIVATE)) {
|
if (displayContactSources.contains(SMT_PRIVATE)) {
|
||||||
LocalContactsHelper(context).getAllContacts().forEach {
|
LocalContactsHelper(context).getAllContacts().forEach {
|
||||||
@ -125,7 +125,7 @@ class ContactsHelper(val context: Context) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getDeviceContacts(contacts: SparseArray<Contact>, ignoredContactSources: HashSet<String>?) {
|
private fun getDeviceContacts(contacts: SparseArray<Contact>, ignoredContactSources: HashSet<String>?, gettingDuplicates: Boolean) {
|
||||||
if (!context.hasContactPermissions()) {
|
if (!context.hasContactPermissions()) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -142,6 +142,7 @@ class ContactsHelper(val context: Context) {
|
|||||||
context.queryCursor(uri, projection, selection, selectionArgs, sortOrder, true) { cursor ->
|
context.queryCursor(uri, projection, selection, selectionArgs, sortOrder, true) { cursor ->
|
||||||
val accountName = cursor.getStringValue(RawContacts.ACCOUNT_NAME) ?: ""
|
val accountName = cursor.getStringValue(RawContacts.ACCOUNT_NAME) ?: ""
|
||||||
val accountType = cursor.getStringValue(RawContacts.ACCOUNT_TYPE) ?: ""
|
val accountType = cursor.getStringValue(RawContacts.ACCOUNT_TYPE) ?: ""
|
||||||
|
|
||||||
if (ignoredSources.contains("$accountName:$accountType")) {
|
if (ignoredSources.contains("$accountName:$accountType")) {
|
||||||
return@queryCursor
|
return@queryCursor
|
||||||
}
|
}
|
||||||
@ -162,16 +163,25 @@ class ContactsHelper(val context: Context) {
|
|||||||
suffix = cursor.getStringValue(StructuredName.SUFFIX) ?: ""
|
suffix = cursor.getStringValue(StructuredName.SUFFIX) ?: ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var photoUri = ""
|
||||||
|
var starred = 0
|
||||||
|
var contactId = 0
|
||||||
|
var thumbnailUri = ""
|
||||||
|
var ringtone: String? = null
|
||||||
|
|
||||||
|
if (!gettingDuplicates) {
|
||||||
|
photoUri = cursor.getStringValue(StructuredName.PHOTO_URI) ?: ""
|
||||||
|
starred = cursor.getIntValue(StructuredName.STARRED)
|
||||||
|
contactId = cursor.getIntValue(Data.CONTACT_ID)
|
||||||
|
thumbnailUri = cursor.getStringValue(StructuredName.PHOTO_THUMBNAIL_URI) ?: ""
|
||||||
|
ringtone = cursor.getStringValue(StructuredName.CUSTOM_RINGTONE)
|
||||||
|
}
|
||||||
|
|
||||||
val nickname = ""
|
val nickname = ""
|
||||||
val photoUri = cursor.getStringValue(StructuredName.PHOTO_URI) ?: ""
|
|
||||||
val numbers = ArrayList<PhoneNumber>() // proper value is obtained below
|
val numbers = ArrayList<PhoneNumber>() // proper value is obtained below
|
||||||
val emails = ArrayList<Email>()
|
val emails = ArrayList<Email>()
|
||||||
val addresses = ArrayList<Address>()
|
val addresses = ArrayList<Address>()
|
||||||
val events = ArrayList<Event>()
|
val events = ArrayList<Event>()
|
||||||
val starred = cursor.getIntValue(StructuredName.STARRED)
|
|
||||||
val ringtone = cursor.getStringValue(StructuredName.CUSTOM_RINGTONE)
|
|
||||||
val contactId = cursor.getIntValue(Data.CONTACT_ID)
|
|
||||||
val thumbnailUri = cursor.getStringValue(StructuredName.PHOTO_THUMBNAIL_URI) ?: ""
|
|
||||||
val notes = ""
|
val notes = ""
|
||||||
val groups = ArrayList<Group>()
|
val groups = ArrayList<Group>()
|
||||||
val organization = Organization("", "")
|
val organization = Organization("", "")
|
||||||
@ -184,8 +194,27 @@ class ContactsHelper(val context: Context) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
val emails = getEmails()
|
||||||
|
var size = emails.size()
|
||||||
|
for (i in 0 until size) {
|
||||||
|
val key = emails.keyAt(i)
|
||||||
|
contacts[key]?.emails = emails.valueAt(i)
|
||||||
|
}
|
||||||
|
|
||||||
|
val organizations = getOrganizations()
|
||||||
|
size = organizations.size()
|
||||||
|
for (i in 0 until size) {
|
||||||
|
val key = organizations.keyAt(i)
|
||||||
|
contacts[key]?.organization = organizations.valueAt(i)
|
||||||
|
}
|
||||||
|
|
||||||
|
// no need to fetch some fields if we are only getting duplicates of the current contact
|
||||||
|
if (gettingDuplicates) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
val phoneNumbers = getPhoneNumbers(null)
|
val phoneNumbers = getPhoneNumbers(null)
|
||||||
var size = phoneNumbers.size()
|
size = phoneNumbers.size()
|
||||||
for (i in 0 until size) {
|
for (i in 0 until size) {
|
||||||
val key = phoneNumbers.keyAt(i)
|
val key = phoneNumbers.keyAt(i)
|
||||||
if (contacts[key] != null) {
|
if (contacts[key] != null) {
|
||||||
@ -194,20 +223,6 @@ class ContactsHelper(val context: Context) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
val nicknames = getNicknames()
|
|
||||||
size = nicknames.size()
|
|
||||||
for (i in 0 until size) {
|
|
||||||
val key = nicknames.keyAt(i)
|
|
||||||
contacts[key]?.nickname = nicknames.valueAt(i)
|
|
||||||
}
|
|
||||||
|
|
||||||
val emails = getEmails()
|
|
||||||
size = emails.size()
|
|
||||||
for (i in 0 until size) {
|
|
||||||
val key = emails.keyAt(i)
|
|
||||||
contacts[key]?.emails = emails.valueAt(i)
|
|
||||||
}
|
|
||||||
|
|
||||||
val addresses = getAddresses()
|
val addresses = getAddresses()
|
||||||
size = addresses.size()
|
size = addresses.size()
|
||||||
for (i in 0 until size) {
|
for (i in 0 until size) {
|
||||||
@ -236,13 +251,6 @@ class ContactsHelper(val context: Context) {
|
|||||||
contacts[key]?.notes = notes.valueAt(i)
|
contacts[key]?.notes = notes.valueAt(i)
|
||||||
}
|
}
|
||||||
|
|
||||||
val organizations = getOrganizations()
|
|
||||||
size = organizations.size()
|
|
||||||
for (i in 0 until size) {
|
|
||||||
val key = organizations.keyAt(i)
|
|
||||||
contacts[key]?.organization = organizations.valueAt(i)
|
|
||||||
}
|
|
||||||
|
|
||||||
val websites = getWebsites()
|
val websites = getWebsites()
|
||||||
size = websites.size()
|
size = websites.size()
|
||||||
for (i in 0 until size) {
|
for (i in 0 until size) {
|
||||||
@ -1489,7 +1497,7 @@ class ContactsHelper(val context: Context) {
|
|||||||
|
|
||||||
fun getDuplicatesOfContact(contact: Contact, addOriginal: Boolean, callback: (ArrayList<Contact>) -> Unit) {
|
fun getDuplicatesOfContact(contact: Contact, addOriginal: Boolean, callback: (ArrayList<Contact>) -> Unit) {
|
||||||
ensureBackgroundThread {
|
ensureBackgroundThread {
|
||||||
getContacts(true) { contacts ->
|
getContacts(true, true) { contacts ->
|
||||||
val duplicates = contacts.filter { it.id != contact.id && it.getHashToCompare() == contact.getHashToCompare() }.toMutableList() as ArrayList<Contact>
|
val duplicates = contacts.filter { it.id != contact.id && it.getHashToCompare() == contact.getHashToCompare() }.toMutableList() as ArrayList<Contact>
|
||||||
if (addOriginal) {
|
if (addOriginal) {
|
||||||
duplicates.add(contact)
|
duplicates.add(contact)
|
||||||
|
@ -113,7 +113,7 @@ data class Contact(var id: Int, var prefix: String, var firstName: String, var m
|
|||||||
fun getStringToCompare(): String {
|
fun getStringToCompare(): String {
|
||||||
return copy(id = 0, prefix = "", firstName = getNameToDisplay().toLowerCase(), middleName = "", surname = "", suffix = "", nickname = "", photoUri = "",
|
return copy(id = 0, prefix = "", firstName = getNameToDisplay().toLowerCase(), middleName = "", surname = "", suffix = "", nickname = "", photoUri = "",
|
||||||
phoneNumbers = ArrayList(), emails = ArrayList(), events = ArrayList(), source = "", addresses = ArrayList(), starred = 0, contactId = 0,
|
phoneNumbers = ArrayList(), emails = ArrayList(), events = ArrayList(), source = "", addresses = ArrayList(), starred = 0, contactId = 0,
|
||||||
thumbnailUri = "", notes = "", groups = ArrayList(), websites = ArrayList(), organization = Organization("", ""), IMs = ArrayList()).toString()
|
thumbnailUri = "", notes = "", groups = ArrayList(), websites = ArrayList(), organization = Organization("", ""), IMs = ArrayList(), ringtone = "").toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getHashToCompare() = getStringToCompare().hashCode()
|
fun getHashToCompare() = getStringToCompare().hashCode()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user