3

我正在开发一个应用程序,我想使用 RxSwift 和 RxCocoa 实现以下目标

  1. 将包含 url 的 JSON 下载到 X 个文件
  2. 下载文件1,处理文件1
  3. 下载文件2,处理文件2
  4. 下载文件3,处理文件3

... ETC

这里的关键是每个文件的处理必须在下载下一个文件之前完成。至少文件处理的顺序必须按顺序执行。如果我可以在文件 1 正在处理时开始下载文件 2,那将是很棒的,但不是必需的。

我尝试使用 SerialDispatchQueueScheduler 来完成这项工作,但由于文件大小不同,每个文件的下载在不同时间完成,因此处理代码的触发顺序与我开始下载的顺序不同。

通过使用 NSOperations 等,我可以在不使用 Rx 的情况下轻松实现这一点,但我想在这个应用程序中继续使用 Rx,因为它是我在这个应用程序的其他地方使用的。

下面我包含了一些代码片段。为了这个问题,已经添加了评论。

       .flatMap { [unowned self] (tasks: [DiffTask]) -> Observable<ApplyDiffStatus> in
            return Observable.from(tasks)
                .observeOn(self.backgroundScheduler) // StackOverflow: backgroundScheduler is a SerialDispatchQueueScheduler
                .flatMapWithIndex({ [unowned self] (task, index) in
                    return self.fetchDiff(for: task, taskIndex: index, taskCount: tasks.count) // StackOverflow: Downloads a file from a URL
                })
                .catchError({ (error) -> Observable<DictionaryUpdater.DiffTaskProgress> in
                    observable.onError(error)
                    throw error
                })
                .map({ (diffTask : DiffTaskProgress) -> DiffTaskProgress.Progress in
                    // Stack Overflow: I've wrapped much of the progress observable in a Observable<UpdateProgress>
                    switch diffTask.progress {
                    case .started(currentTask: let currentTask, taskCount: let taskCount):
                        observable.on(.next(.fetchingDiff(progress: diffTask, currentDiff: currentTask, diffCount: taskCount)))
                    case .finished(data: _, currentTask: let currentTask, taskCount: let taskCount):
                        observable.on(.next(.fetchingDiff(progress: diffTask, currentDiff: currentTask, diffCount: taskCount)))
                    case .progress(completion: _, currentTask: let currentTask, taskCount: let taskCount):
                        observable.on(.next(.fetchingDiff(progress: diffTask, currentDiff: currentTask, diffCount: taskCount)))
                    }

                    return diffTask.progress
                })
                .flatMap({ [unowned self] (progress: DiffTaskProgress.Progress) -> Observable<ApplyDiffStatus> in
                    switch progress {
                    case .finished(data: let data, currentTask: let currentTask, taskCount: let taskCount):
                        return self.applyDiff(data, currentTask: currentTask, taskCount: taskCount) // StackOverflow: PROCESSES THE FILE THAT WAS DOWNLOADED
                    default:
                        return Observable.empty()
                    }
                })
        }
4

1 回答 1

5

我设法通过使用concatMap运算符来解决它。所以而不是

.flatMapWithIndex({ [unowned self] (task, index) in
    return self.fetchDiff(for: task, taskIndex: index, taskCount: tasks.count) // StackOverflow: Downloads a file from a URL
})

我做了这样的事情:

tasks.enumerated().concatMap { (index, task) in
    return self.fetchDiff(for: task, taskIndex: index, taskCount: tasks.count)
}

concatMap操作员确保第一个可观察对象在发出更多信号之前完成。我不得不使用enumerated(),因为 concatMap 没有附带concatMapWithIndex,但它可以工作:)

于 2017-09-12T13:16:30.603 回答