@@ -58,7 +58,7 @@ import java.util.Date
58
58
class UploadWorker (appContext : Context , params : WorkerParameters ) : CoroutineWorker(appContext, params) {
59
59
private lateinit var contentResolver: ContentResolver
60
60
61
- private val failedNames = mutableListOf< String >()
61
+ private val failedNamesMap = mutableMapOf< String , String >()
62
62
private val successNames = mutableListOf<String >()
63
63
private var failedCount = 0
64
64
private var successCount = 0
@@ -77,7 +77,7 @@ class UploadWorker(appContext: Context, params: WorkerParameters) : CoroutineWor
77
77
if (runAttemptCount >= MAX_RETRY_COUNT ) return Result .failure()
78
78
79
79
return runUploadCatching {
80
- var syncNewPendingUploads = false
80
+ var syncNewPendingUploads: Boolean
81
81
var result: Result
82
82
var retryError = 0
83
83
var lastUploadFileName = " "
@@ -167,32 +167,50 @@ class UploadWorker(appContext: Context, params: WorkerParameters) : CoroutineWor
167
167
SentryLog .d(TAG , " startSyncFiles> upload for ${uploadFiles.count()} " )
168
168
169
169
for ((index, uploadFile) in uploadFiles.withIndex()) {
170
- SentryLog .d(TAG , " startSyncFiles> size: ${uploadFile.fileSize} " )
171
-
172
- val fileUploadedWithSuccess = uploadFile.initUpload(isLastFile = index == uploadFiles.lastIndex)
173
- if (fileUploadedWithSuccess) {
174
- SentryLog .i(TAG , " startSyncFiles: file uploaded with success" )
175
- successNames.add(uploadFile.fileName)
176
- successCount++
177
- } else {
178
- SentryLog .i(TAG , " startSyncFiles: file upload failed" )
179
- failedNames.add(uploadFile.fileName)
180
- failedCount++
181
- }
170
+ val isLastFile = index == uploadFiles.lastIndex
171
+ startUpload(uploadFile, isLastFile)
182
172
183
173
pendingCount--
184
174
185
- if (uploadFile.isSync() && UploadFile .getAllPendingPriorityFilesCount() > 0 ) break
175
+ // Stop recursion if all files have been processed and there are only errors.
176
+ if (isLastFile && failedNamesMap.count() == UploadFile .getAllPendingUploadsCount()) break
177
+ // If there is a new file during the sync and it has has priority (ex: Manual uploads),
178
+ // then we start again in order to process the priority files first.
179
+ if (uploadFile.isSync() && UploadFile .getAllPendingPriorityFilesCount() > 0 ) return @withContext startSyncFiles()
186
180
}
187
181
188
182
uploadedCount = successCount
189
183
190
184
SentryLog .d(TAG , " startSyncFiles: finish with $uploadedCount uploaded" )
191
185
192
- currentUploadFile?.showUploadedFilesNotification(applicationContext, successCount, successNames, failedCount, failedNames)
186
+ currentUploadFile?.showUploadedFilesNotification(
187
+ context = applicationContext,
188
+ successCount = successCount,
189
+ successNames = successNames,
190
+ failedCount = failedCount,
191
+ failedNames = failedNamesMap.values,
192
+ )
193
193
if (uploadedCount > 0 ) Result .success() else Result .failure()
194
194
}
195
195
196
+ private suspend fun startUpload (uploadFile : UploadFile , isLastFile : Boolean ) {
197
+ SentryLog .d(TAG , " startSyncFiles> size: ${uploadFile.fileSize} " )
198
+
199
+ val fileUploadedWithSuccess = uploadFile.initUpload(isLastFile)
200
+ if (fileUploadedWithSuccess) {
201
+ SentryLog .i(TAG , " startSyncFiles: file uploaded with success" )
202
+ successNames.add(uploadFile.fileName)
203
+ if (failedNamesMap[uploadFile.uri] != null ) failedNamesMap.remove(uploadFile.uri)
204
+ successCount++
205
+ } else {
206
+ SentryLog .i(TAG , " startSyncFiles: file upload failed" )
207
+ if (failedNamesMap[uploadFile.uri] == null ) {
208
+ failedNamesMap[uploadFile.uri] = uploadFile.fileName
209
+ failedCount++
210
+ }
211
+ }
212
+ }
213
+
196
214
private fun checkUploadCountReliability (realm : Realm ) {
197
215
val allPendingUploadsCount = UploadFile .getAllPendingUploadsCount(realm)
198
216
if (allPendingUploadsCount != pendingCount) {
0 commit comments