7

我不知道这个问题是否适合在这里,但即使经过这么多的研究,我也找不到适合这个问题的指南。我希望我能在这里得到答案。

我看到 Viber、WhatsApp、Telegram 等所有消息传递应用程序都可以快速有效地获取用户联系人并对其进行解析,以至于延迟几乎为零。我试图复制它,但从未成功。通过在后台线程上运行整个操作,解析 3000 个联系人总是需要 40-60 秒的时间。即便如此,也会导致 UI 在 5 和 5S 等速度较慢的设备上冻结。获取联系人后,我必须将它们发送到后端,以识别在平台上注册的用户,这也增加了总时间。上述应用程序立即执行此操作!

如果有人可以建议一种在不阻塞主线程的情况下以最有效和更快的方式解析联系人的方法,我会很高兴。

这是我目前使用的代码。

final class CNContactsService: ContactsService {

private let phoneNumberKit = PhoneNumberKit()
private var allContacts:[Contact] = []

private let contactsStore: CNContactStore


init(network:Network) {
    contactsStore = CNContactStore()
    self.network = network
}

func fetchContacts() {
    fetchLocalContacts { (error) in
        if let uError = error {

        } else {
            let contactsArray = self.allContacts
            self.checkContacts(contacts: contactsArray, checkCompletion: { (Users) in
                let nonUsers = contactsArray.filter { contact in
                    return !Users.contains(contact)
                }
                self.Users.value = Users
                self.nonUsers.value = nonUsers
            })
        }
    }

}

func fetchLocalContacts(_ completion: @escaping (NSError?) -> Void) {
    switch CNContactStore.authorizationStatus(for: CNEntityType.contacts) {
    case CNAuthorizationStatus.denied, CNAuthorizationStatus.restricted:
        //User has denied the current app to access the contacts.
        self.displayNoAccessMsg()
    case CNAuthorizationStatus.notDetermined:
        //This case means the user is prompted for the first time for allowing contacts
        contactsStore.requestAccess(for: CNEntityType.contacts, completionHandler: { (granted, error) -> Void in
            //At this point an alert is provided to the user to provide access to contacts. This will get invoked if a user responds to the alert
            if  (!granted ){
                DispatchQueue.main.async(execute: { () -> Void in
                    completion(error as! NSError)
                })
            } else{
                self.fetchLocalContacts(completion)
            }
        })

    case CNAuthorizationStatus.authorized:
        //Authorization granted by user for this app.
        var contactsArray = [EPContact]()
        let contactFetchRequest = CNContactFetchRequest(keysToFetch: allowedContactKeys)
        do {
            //                let phoneNumberKit = PhoneNumberKit()
            try self.contactsStore.enumerateContacts(with: contactFetchRequest, usingBlock: { (contact, stop) -> Void in
                //Ordering contacts based on alphabets in firstname
                if let contactItem = self.contactFrom(contact: contact) {
                contactsArray.append(contactItem)
                }
            })
            self.allContacts = contactsArray
            completion(nil)
        } catch let error as NSError {
            print(error.localizedDescription)
            completion(error)
        }
    }
}

private var allowedContactKeys: [CNKeyDescriptor]{
    //We have to provide only the keys which we have to access. We should avoid unnecessary keys when fetching the contact. Reducing the keys means faster the access.
    return [
        CNContactGivenNameKey as CNKeyDescriptor,
        CNContactFamilyNameKey as CNKeyDescriptor,
        CNContactOrganizationNameKey as CNKeyDescriptor,
        CNContactThumbnailImageDataKey as CNKeyDescriptor,
        CNContactPhoneNumbersKey as CNKeyDescriptor,
    ]
}

private func checkUsers(contacts:[Contact],checkCompletion:@escaping ([Contact])->Void) {
    let phoneNumbers = contacts.flatMap{$0.phoneNumbers}
    if phoneNumbers.isEmpty {
        checkCompletion([])
        return
    }
    network.request(.registeredContacts(numbers: phoneNumbersList), completion: { (result) in
        switch result {
        case .success(let response):
            do {
                let profiles = try response.map([Profile].self)
                let contacts = profiles.map{ CNContactsService.contactFrom(profile: $0) }
                checkCompletion(contacts)
            } catch {
                checkCompletion([])
            }
        case .failure:
            checkCompletion([])
        }
    })
}

static func contactFrom(profile:Profile) -> Contact {
    let firstName = ""
    let lastName = ""
    let company = ""
    var displayName = ""
    if let fullName = profile.fullName {
        displayName = fullName
    } else {
        displayName = profile.nickName ?? ""
    }
    let numbers = [profile.phone!]
    if displayName.isEmpty {
        displayName = profile.phone!
    }
    let contactId = String(profile.id)

    return Contact(firstName: firstName,
                     lastName: lastName,
                     company: company,
                     displayName: displayName,
                     thumbnailProfileImage: nil,
                     contactId: contactId,
                     phoneNumbers: numbers,
                     profile: profile)
}

private func parsePhoneNumber(_ number: String) -> String? {
    do {
        let phoneNumber = try phoneNumberKit.parse(number)
        return phoneNumberKit.format(phoneNumber, toType: .e164)
    } catch {
        return nil
    }
}


}`

当应用程序启动时,联系人会在此处获取

private func ApplicationLaunched() {
    DispatchQueue.global(qos: .background).async {
        let contactsService:ContactsService = self.serviceHolder.get()
        contactsService.fetchContacts()
    }
4

2 回答 2

4

另一种解决方案是在 PhoneNumberKit 中实际使用正确的方法:-)

我和你有同样的问题,然后意识到PhoneNumberKit 有两种方法,我使用了错误的方法:

  • 第一个,用于解析单个电话号码(这是您在上面的代码中使用的那个)。它需要一个对象作为输入。
  • 另一个允许一次解析一组电话号码的方法。它需要一个电话号码数组作为输入。

这两种方法的命名令人困惑,因为除了输入之外它们是相同的,但性能上的差异是惊人的:

  • 使用单独的电话号码解析方法(使用像你这样的 for 循环)大约需要 60 秒
  • 使用数组解析方法在 < 2 秒内解析了约 500 个电话号码。

因此,如果有人想使用 Swift 原生库,我会鼓励你使用 Phone Number Kit,因为它工作得很好并且有很多方便的方法(比如自动格式化 TextFields)。

于 2018-06-13T00:47:04.160 回答
2

我的猜测是您发送到后端的联系人数量是巨大的。3000 个联系人太多了,我认为正在发生以下情况之一:

  1. 要么请求太大,后端交付需要时间。
  2. 它对后端来说太重了,处理并返回客户端需要时间,这就是导致您延迟的原因。

最不可能的问题是:

  1. 您的解析方法在 CPU 上非常繁重。但这不太可能。

您是否测量了解析开始和结束之间的持续时间?

我认为您应该测量您正在执行的所有操作之间的持续时间,例如:

  1. 测量从设备获取联系人需要多长时间。
  2. 测量解析联系人需要多长时间。
  3. 衡量从后端获得响应所需的时间。

这将帮助您准确找出耗时过长的原因。

我希望这有助于解决您的问题。

于 2017-10-26T09:55:56.500 回答