/** Copyright 2018 Google Inc. All rights reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at: http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #import "FBLPromise+All.h" #import "FBLPromise+Async.h" #import "FBLPromisePrivate.h" @implementation FBLPromise (AllAdditions) + (FBLPromise *)all:(NSArray *)promises { return [self onQueue:self.defaultDispatchQueue all:promises]; } + (FBLPromise *)onQueue:(dispatch_queue_t)queue all:(NSArray *)allPromises { NSParameterAssert(queue); NSParameterAssert(allPromises); if (allPromises.count == 0) { return [[FBLPromise alloc] initWithResolution:@[]]; } NSMutableArray *promises = [allPromises mutableCopy]; return [FBLPromise onQueue:queue async:^(FBLPromiseFulfillBlock fulfill, FBLPromiseRejectBlock reject) { for (NSUInteger i = 0; i < promises.count; ++i) { id promise = promises[i]; if ([promise isKindOfClass:self]) { continue; } else if ([promise isKindOfClass:[NSError class]]) { reject(promise); return; } else { [promises replaceObjectAtIndex:i withObject:[[FBLPromise alloc] initWithResolution:promise]]; } } for (FBLPromise *promise in promises) { [promise observeOnQueue:queue fulfill:^(id __unused _) { // Wait until all are fulfilled. for (FBLPromise *promise in promises) { if (!promise.isFulfilled) { return; } } // If called multiple times, only the first one affects the result. fulfill([promises valueForKey:NSStringFromSelector(@selector(value))]); } reject:^(NSError *error) { reject(error); }]; } }]; } @end @implementation FBLPromise (DotSyntax_AllAdditions) + (FBLPromise * (^)(NSArray *))all { return ^(NSArray *promises) { return [self all:promises]; }; } + (FBLPromise * (^)(dispatch_queue_t, NSArray *))allOn { return ^(dispatch_queue_t queue, NSArray *promises) { return [self onQueue:queue all:promises]; }; } @end