GTMSessionFetcherService.h 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. /* Copyright 2014 Google Inc. All rights reserved.
  2. *
  3. * Licensed under the Apache License, Version 2.0 (the "License");
  4. * you may not use this file except in compliance with the License.
  5. * You may obtain a copy of the License at
  6. *
  7. * http://www.apache.org/licenses/LICENSE-2.0
  8. *
  9. * Unless required by applicable law or agreed to in writing, software
  10. * distributed under the License is distributed on an "AS IS" BASIS,
  11. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. * See the License for the specific language governing permissions and
  13. * limitations under the License.
  14. */
  15. // For best performance and convenient usage, fetchers should be generated by a common
  16. // GTMSessionFetcherService instance, like
  17. //
  18. // _fetcherService = [[GTMSessionFetcherService alloc] init];
  19. // GTMSessionFetcher* myFirstFetcher = [_fetcherService fetcherWithRequest:request1];
  20. // GTMSessionFetcher* mySecondFetcher = [_fetcherService fetcherWithRequest:request2];
  21. #import "GTMSessionFetcher.h"
  22. NS_ASSUME_NONNULL_BEGIN
  23. // Notifications.
  24. // This notification indicates a reusable session has become invalid. It is intended mainly for the
  25. // service's unit tests.
  26. //
  27. // The notification object is the fetcher service.
  28. // The invalid session is provided via the userInfo kGTMSessionFetcherServiceSessionKey key.
  29. extern NSString *const kGTMSessionFetcherServiceSessionBecameInvalidNotification;
  30. extern NSString *const kGTMSessionFetcherServiceSessionKey;
  31. @interface GTMSessionFetcherService : NSObject <GTMSessionFetcherServiceProtocol>
  32. // Queues of delayed and running fetchers. Each dictionary contains arrays
  33. // of GTMSessionFetcher *fetchers, keyed by NSString *host
  34. @property(atomic, strong, readonly, nullable)
  35. NSDictionary<NSString *, NSArray *> *delayedFetchersByHost;
  36. @property(atomic, strong, readonly, nullable)
  37. NSDictionary<NSString *, NSArray *> *runningFetchersByHost;
  38. // A max value of 0 means no fetchers should be delayed.
  39. // The default limit is 10 simultaneous fetchers targeting each host.
  40. // This does not apply to fetchers whose useBackgroundSession property is YES. Since services are
  41. // not resurrected on an app relaunch, delayed fetchers would effectively be abandoned.
  42. @property(atomic, assign) NSUInteger maxRunningFetchersPerHost;
  43. // Properties to be applied to each fetcher; see GTMSessionFetcher.h for descriptions
  44. @property(atomic, strong, nullable) NSURLSessionConfiguration *configuration;
  45. @property(atomic, copy, nullable) GTMSessionFetcherConfigurationBlock configurationBlock;
  46. @property(atomic, strong, nullable) NSHTTPCookieStorage *cookieStorage;
  47. @property(atomic, strong, null_resettable) dispatch_queue_t callbackQueue;
  48. @property(atomic, copy, nullable) GTMSessionFetcherChallengeBlock challengeBlock;
  49. @property(atomic, strong, nullable) NSURLCredential *credential;
  50. @property(atomic, strong) NSURLCredential *proxyCredential;
  51. @property(atomic, copy, nullable) NSArray<NSString *> *allowedInsecureSchemes;
  52. @property(atomic, assign) BOOL allowLocalhostRequest;
  53. @property(atomic, assign) BOOL allowInvalidServerCertificates;
  54. @property(atomic, assign, getter=isRetryEnabled) BOOL retryEnabled;
  55. @property(atomic, copy, nullable) GTMSessionFetcherRetryBlock retryBlock;
  56. @property(atomic, assign) NSTimeInterval maxRetryInterval;
  57. @property(atomic, assign) NSTimeInterval minRetryInterval;
  58. @property(atomic, copy, nullable) NSDictionary<NSString *, id> *properties;
  59. @property(atomic, copy, nullable)
  60. GTMSessionFetcherMetricsCollectionBlock metricsCollectionBlock API_AVAILABLE(
  61. ios(10.0), macosx(10.12), tvos(10.0), watchos(6.0));
  62. #if GTM_BACKGROUND_TASK_FETCHING
  63. @property(atomic, assign) BOOL skipBackgroundTask;
  64. #endif
  65. // A default useragent of GTMFetcherStandardUserAgentString(nil) will be given to each fetcher
  66. // created by this service unless the request already has a user-agent header set.
  67. // This default will be added starting with builds with the SDKs for OS X 10.11 and iOS 9.
  68. //
  69. // To use the configuration's default user agent, set this property to nil.
  70. @property(atomic, copy, nullable) NSString *userAgent;
  71. // The authorizer to attach to the created fetchers. If a specific fetcher should
  72. // not authorize its requests, the fetcher's authorizer property may be set to nil
  73. // before the fetch begins.
  74. @property(atomic, strong, nullable) id<GTMFetcherAuthorizationProtocol> authorizer;
  75. // Delegate queue used by the session when calling back to the fetcher. The default
  76. // is the main queue. Changing this does not affect the queue used to call back to the
  77. // application; that is specified by the callbackQueue property above.
  78. @property(atomic, strong, null_resettable) NSOperationQueue *sessionDelegateQueue;
  79. // When enabled, indicates the same session should be used by subsequent fetchers.
  80. //
  81. // This is enabled by default.
  82. @property(atomic, assign) BOOL reuseSession;
  83. // Sets the delay until an unused session is invalidated.
  84. // The default interval is 60 seconds.
  85. //
  86. // If the interval is set to 0, then any reused session is not invalidated except by
  87. // explicitly invoking -resetSession. Be aware that setting the interval to 0 thus
  88. // causes the session's delegate to be retained until the session is explicitly reset.
  89. @property(atomic, assign) NSTimeInterval unusedSessionTimeout;
  90. // If shouldReuseSession is enabled, this will force creation of a new session when future
  91. // fetchers begin.
  92. - (void)resetSession;
  93. // Create a fetcher
  94. //
  95. // These methods will return a fetcher. If successfully created, the connection
  96. // will hold a strong reference to it for the life of the connection as well.
  97. // So the caller doesn't have to hold onto the fetcher explicitly unless they
  98. // want to be able to monitor or cancel it.
  99. - (GTMSessionFetcher *)fetcherWithRequest:(NSURLRequest *)request;
  100. - (GTMSessionFetcher *)fetcherWithURL:(NSURL *)requestURL;
  101. - (GTMSessionFetcher *)fetcherWithURLString:(NSString *)requestURLString;
  102. // Common method for fetcher creation.
  103. //
  104. // -fetcherWithRequest:fetcherClass: may be overridden to customize creation of
  105. // fetchers. This is the ONLY method in the GTMSessionFetcher library intended to
  106. // be overridden.
  107. - (id)fetcherWithRequest:(NSURLRequest *)request fetcherClass:(Class)fetcherClass;
  108. - (BOOL)isDelayingFetcher:(GTMSessionFetcher *)fetcher;
  109. - (NSUInteger)numberOfFetchers; // running + delayed fetchers
  110. - (NSUInteger)numberOfRunningFetchers;
  111. - (NSUInteger)numberOfDelayedFetchers;
  112. // Return a list of all running or delayed fetchers. This includes fetchers created
  113. // by the service which have been started and have not yet stopped.
  114. //
  115. // Returns an array of fetcher objects, or nil if none.
  116. - (nullable NSArray<GTMSessionFetcher *> *)issuedFetchers;
  117. // Search for running or delayed fetchers with the specified URL.
  118. //
  119. // Returns an array of fetcher objects found, or nil if none found.
  120. - (nullable NSArray<GTMSessionFetcher *> *)issuedFetchersWithRequestURL:(NSURL *)requestURL;
  121. - (void)stopAllFetchers;
  122. // Holds a weak reference to `decorator`. When creating a fetcher via
  123. // `-fetcherWithRequest:fetcherClass:`, each registered `decorator` can inspect and potentially
  124. // change the fetcher's request before it starts. Decorators are invoked in the order in which
  125. // they are passed to this method.
  126. - (void)addDecorator:(id<GTMFetcherDecoratorProtocol>)decorator;
  127. // Removes a `decorator` previously passed to `-removeDecorator:`.
  128. - (void)removeDecorator:(id<GTMFetcherDecoratorProtocol>)decorator;
  129. // Methods for use by the fetcher class only.
  130. - (nullable NSURLSession *)session;
  131. - (nullable NSURLSession *)sessionForFetcherCreation;
  132. - (nullable id<NSURLSessionDelegate>)sessionDelegate;
  133. - (nullable NSDate *)stoppedAllFetchersDate;
  134. // The testBlock can inspect its fetcher parameter's request property to
  135. // determine which fetcher is being faked.
  136. @property(atomic, copy, nullable) GTMSessionFetcherTestBlock testBlock;
  137. @end
  138. @interface GTMSessionFetcherService (TestingSupport)
  139. // Convenience methods to create a fetcher service for testing.
  140. //
  141. // Fetchers generated by this mock fetcher service will not perform any
  142. // network operation, but will invoke callbacks and provide the supplied data
  143. // or error to the completion handler.
  144. //
  145. // You can make more customized mocks by setting the test block property of the service
  146. // or fetcher; the test block can inspect the fetcher's request or other properties.
  147. //
  148. // See the description of the testBlock property below.
  149. + (instancetype)mockFetcherServiceWithFakedData:(nullable NSData *)fakedDataOrNil
  150. fakedError:(nullable NSError *)fakedErrorOrNil;
  151. + (instancetype)mockFetcherServiceWithFakedData:(nullable NSData *)fakedDataOrNil
  152. fakedResponse:(NSHTTPURLResponse *)fakedResponse
  153. fakedError:(nullable NSError *)fakedErrorOrNil;
  154. // DEPRECATED: Callers should use XCTestExpectation instead.
  155. //
  156. // Spin the run loop and discard events (or, if not on the main thread, just sleep the thread)
  157. // until all running and delayed fetchers have completed.
  158. //
  159. // This is only for use in testing or in tools without a user interface.
  160. //
  161. // Synchronous fetches should never be done by shipping apps; they are
  162. // sufficient reason for rejection from the app store.
  163. //
  164. // Returns NO if timed out.
  165. - (BOOL)waitForCompletionOfAllFetchersWithTimeout:(NSTimeInterval)timeoutInSeconds
  166. __deprecated_msg("Use XCTestExpectation instead");
  167. @end
  168. @interface GTMSessionFetcherService (BackwardsCompatibilityOnly)
  169. // Clients using GTMSessionFetcher should set the cookie storage explicitly themselves;
  170. // this property is deprecated and will be removed soon.
  171. @property(atomic, assign) NSInteger cookieStorageMethod __deprecated_msg(
  172. "Create an NSHTTPCookieStorage and set .cookieStorage directly.");
  173. @end
  174. NS_ASSUME_NONNULL_END