[ios] start downloading icloud item with coordination

Attempt to fix the https://github.com/organicmaps/organicmaps/issues/10042

Signed-off-by: Kiryl Kaveryn <kirylkaveryn@gmail.com>
This commit is contained in:
Kiryl Kaveryn 2025-02-10 14:47:03 +04:00 committed by Roman Tsisyk
parent 19701d83e6
commit 9c8b6d934c

View file

@ -39,12 +39,18 @@ final class SynchronizationFileWriter {
// MARK: - Read/Write/Downloading/Uploading
private func startDownloading(_ cloudMetadataItem: CloudMetadataItem, completion: WritingResultCompletionHandler) {
do {
LOG(.info, "Start downloading file: \(cloudMetadataItem.fileName)...")
try fileManager.startDownloadingUbiquitousItem(at: cloudMetadataItem.fileUrl)
completion(.success)
} catch {
completion(.failure(error))
var coordinationError: NSError?
fileCoordinator.coordinate(writingItemAt: cloudMetadataItem.fileUrl, options: [], error: &coordinationError) { cloudItemUrl in
do {
LOG(.info, "Start downloading file: \(cloudItemUrl.path)...")
try fileManager.startDownloadingUbiquitousItem(at: cloudItemUrl)
completion(.success)
} catch {
completion(.failure(error))
}
}
if let coordinationError {
completion(.failure(coordinationError))
}
}
@ -242,7 +248,7 @@ final class SynchronizationFileWriter {
private extension FileManager {
func replaceFileSafe(at targetUrl: URL, with sourceUrl: URL) throws {
guard fileExists(atPath: targetUrl.path) else {
LOG(.debug, "Source file \(targetUrl.lastPathComponent) doesn't exist. The file will be copied.")
LOG(.info, "Source file \(targetUrl.lastPathComponent) doesn't exist. The file will be copied.")
try copyItem(at: sourceUrl, to: targetUrl)
return
}