GTMSessionUploadFetcher.m 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001
  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. #if !defined(__has_feature) || !__has_feature(objc_arc)
  16. #error "This file requires ARC support."
  17. #endif
  18. #import "GTMSessionUploadFetcher.h"
  19. #if TARGET_OS_OSX && GTMSESSION_RECONNECT_BACKGROUND_SESSIONS_ON_LAUNCH
  20. // To reconnect background sessions on Mac outside +load requires importing and linking
  21. // AppKit to access the NSApplicationDidFinishLaunching symbol.
  22. #import <AppKit/AppKit.h>
  23. #endif
  24. static NSString *const kGTMSessionIdentifierIsUploadChunkFetcherMetadataKey = @"_upChunk";
  25. static NSString *const kGTMSessionIdentifierUploadFileURLMetadataKey = @"_upFileURL";
  26. static NSString *const kGTMSessionIdentifierUploadFileLengthMetadataKey = @"_upFileLen";
  27. static NSString *const kGTMSessionIdentifierUploadLocationURLMetadataKey = @"_upLocURL";
  28. static NSString *const kGTMSessionIdentifierUploadMIMETypeMetadataKey = @"_uploadMIME";
  29. static NSString *const kGTMSessionIdentifierUploadChunkSizeMetadataKey = @"_upChSize";
  30. static NSString *const kGTMSessionIdentifierUploadCurrentOffsetMetadataKey = @"_upOffset";
  31. static NSString *const kGTMSessionIdentifierUploadAllowsCellularAccess = @"_upAllowsCellularAccess";
  32. static NSString *const kGTMSessionHeaderXGoogUploadChunkGranularity =
  33. @"X-Goog-Upload-Chunk-Granularity";
  34. static NSString *const kGTMSessionHeaderXGoogUploadCommand = @"X-Goog-Upload-Command";
  35. static NSString *const kGTMSessionHeaderXGoogUploadContentLength = @"X-Goog-Upload-Content-Length";
  36. static NSString *const kGTMSessionHeaderXGoogUploadContentType = @"X-Goog-Upload-Content-Type";
  37. static NSString *const kGTMSessionHeaderXGoogUploadOffset = @"X-Goog-Upload-Offset";
  38. static NSString *const kGTMSessionHeaderXGoogUploadProtocol = @"X-Goog-Upload-Protocol";
  39. static NSString *const kGTMSessionXGoogUploadProtocolResumable = @"resumable";
  40. static NSString *const kGTMSessionHeaderXGoogUploadSizeReceived = @"X-Goog-Upload-Size-Received";
  41. static NSString *const kGTMSessionHeaderXGoogUploadStatus = @"X-Goog-Upload-Status";
  42. static NSString *const kGTMSessionHeaderXGoogUploadURL = @"X-Goog-Upload-URL";
  43. // Property of chunk fetchers identifying the parent upload fetcher. Non-retained NSValue.
  44. static NSString *const kGTMSessionUploadFetcherChunkParentKey = @"_uploadFetcherChunkParent";
  45. int64_t const kGTMSessionUploadFetcherUnknownFileSize = -1;
  46. int64_t const kGTMSessionUploadFetcherStandardChunkSize = (int64_t)LLONG_MAX;
  47. #if TARGET_OS_IPHONE
  48. int64_t const kGTMSessionUploadFetcherMaximumDemandBufferSize =
  49. 10 * 1024 * 1024; // 10 MB for iOS, watchOS, tvOS
  50. #else
  51. int64_t const kGTMSessionUploadFetcherMaximumDemandBufferSize =
  52. 100 * 1024 * 1024; // 100 MB for macOS
  53. #endif
  54. typedef NS_ENUM(NSUInteger, GTMSessionUploadFetcherStatus) {
  55. kStatusUnknown,
  56. kStatusActive,
  57. kStatusFinal,
  58. kStatusCancelled,
  59. };
  60. NSString *const kGTMSessionFetcherUploadLocationObtainedNotification =
  61. @"kGTMSessionFetcherUploadLocationObtainedNotification";
  62. #if !GTMSESSION_BUILD_COMBINED_SOURCES
  63. @interface GTMSessionFetcher (ProtectedMethods)
  64. // Access to non-public method on the parent fetcher class.
  65. - (void)stopFetchReleasingCallbacks:(BOOL)shouldReleaseCallbacks;
  66. - (void)createSessionIdentifierWithMetadata:(NSDictionary *)metadata;
  67. - (GTMSessionFetcherCompletionHandler)completionHandlerWithTarget:(id)target
  68. didFinishSelector:(SEL)finishedSelector;
  69. - (void)invokeOnCallbackQueue:(dispatch_queue_t)callbackQueue
  70. afterUserStopped:(BOOL)afterStopped
  71. block:(void (^)(void))block;
  72. - (NSTimer *)retryTimer;
  73. - (void)beginFetchForRetry;
  74. @property(readwrite, strong) NSData *downloadedData;
  75. - (void)releaseCallbacks;
  76. - (NSInteger)statusCodeUnsynchronized;
  77. - (BOOL)userStoppedFetching;
  78. @end
  79. #endif // !GTMSESSION_BUILD_COMBINED_SOURCES
  80. @interface GTMSessionUploadFetcher ()
  81. // Changing readonly to readwrite.
  82. @property(atomic, strong, readwrite) NSURLRequest *lastChunkRequest;
  83. @property(atomic, readwrite, assign) int64_t currentOffset;
  84. // Internal properties.
  85. @property(strong, atomic, nullable) GTMSessionFetcher *fetcherInFlight; // Synchronized on self.
  86. @property(assign, atomic, getter=isSubdataGenerating) BOOL subdataGenerating;
  87. @property(assign, atomic) BOOL shouldInitiateOffsetQuery;
  88. @property(assign, atomic) int64_t uploadGranularity;
  89. @property(assign, atomic) BOOL allowsCellularAccess;
  90. @end
  91. @implementation GTMSessionUploadFetcher {
  92. GTMSessionFetcher *_chunkFetcher;
  93. // We'll call through to the delegate's completion handler.
  94. GTMSessionFetcherCompletionHandler _delegateCompletionHandler;
  95. dispatch_queue_t _delegateCallbackQueue;
  96. // The initial fetch's body length and bytes actually sent are
  97. // needed for calculating progress during subsequent chunk uploads
  98. int64_t _initialBodyLength;
  99. int64_t _initialBodySent;
  100. // The upload server address for the chunks of this upload session.
  101. NSURL *_uploadLocationURL;
  102. // _uploadData, _uploadDataProvider, or _uploadFileHandle may be set, but only one.
  103. NSData *_uploadData;
  104. NSFileHandle *_uploadFileHandle;
  105. GTMSessionUploadFetcherDataProvider _uploadDataProvider;
  106. NSURL *_uploadFileURL;
  107. int64_t _uploadFileLength;
  108. NSString *_uploadMIMEType;
  109. int64_t _chunkSize;
  110. int64_t _uploadGranularity;
  111. BOOL _isPaused;
  112. BOOL _isRestartedUpload;
  113. BOOL _shouldInitiateOffsetQuery;
  114. // Tied to useBackgroundSession property, since this property is applicable to chunk fetchers.
  115. BOOL _useBackgroundSessionOnChunkFetchers;
  116. // We keep the latest offset into the upload data just for progress reporting.
  117. int64_t _currentOffset;
  118. NSDictionary *_recentChunkReponseHeaders;
  119. NSInteger _recentChunkStatusCode;
  120. // For waiting, we need to know the fetcher in flight, if any, and if subdata generation
  121. // is in progress.
  122. GTMSessionFetcher *_fetcherInFlight;
  123. BOOL _isSubdataGenerating;
  124. BOOL _isCancelInFlight;
  125. GTMSessionUploadFetcherCancellationHandler _cancellationHandler;
  126. }
  127. + (void)load {
  128. #if GTMSESSION_RECONNECT_BACKGROUND_SESSIONS_ON_LAUNCH && TARGET_OS_IPHONE
  129. NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
  130. [nc addObserver:self
  131. selector:@selector(reconnectFetchersForBackgroundSessionsOnAppLaunch:)
  132. name:UIApplicationDidFinishLaunchingNotification
  133. object:nil];
  134. #elif GTMSESSION_RECONNECT_BACKGROUND_SESSIONS_ON_LAUNCH && TARGET_OS_OSX
  135. NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
  136. [nc addObserver:self
  137. selector:@selector(reconnectFetchersForBackgroundSessionsOnAppLaunch:)
  138. name:NSApplicationDidFinishLaunchingNotification
  139. object:nil];
  140. #else
  141. [self uploadFetchersForBackgroundSessions];
  142. #endif
  143. }
  144. + (void)reconnectFetchersForBackgroundSessionsOnAppLaunch:(NSNotification *)notification {
  145. // Give all other app-did-launch handlers a chance to complete before
  146. // reconnecting the fetchers. Not doing this may lead to reconnecting
  147. // before the app delegate has a chance to run.
  148. dispatch_async(dispatch_get_main_queue(), ^{
  149. [self uploadFetchersForBackgroundSessions];
  150. });
  151. }
  152. + (instancetype)uploadFetcherWithRequest:(NSURLRequest *)request
  153. uploadMIMEType:(NSString *)uploadMIMEType
  154. chunkSize:(int64_t)chunkSize
  155. fetcherService:(GTMSessionFetcherService *)fetcherService {
  156. GTMSessionUploadFetcher *fetcher = [self uploadFetcherWithRequest:request
  157. fetcherService:fetcherService];
  158. [fetcher setLocationURL:nil
  159. uploadMIMEType:uploadMIMEType
  160. chunkSize:chunkSize
  161. allowsCellularAccess:request.allowsCellularAccess];
  162. return fetcher;
  163. }
  164. + (instancetype)uploadFetcherWithLocation:(nullable NSURL *)uploadLocationURL
  165. uploadMIMEType:(NSString *)uploadMIMEType
  166. chunkSize:(int64_t)chunkSize
  167. fetcherService:(nullable GTMSessionFetcherService *)fetcherServiceOrNil {
  168. return [self uploadFetcherWithLocation:uploadLocationURL
  169. uploadMIMEType:uploadMIMEType
  170. chunkSize:chunkSize
  171. allowsCellularAccess:YES
  172. fetcherService:fetcherServiceOrNil];
  173. }
  174. + (instancetype)uploadFetcherWithLocation:(nullable NSURL *)uploadLocationURL
  175. uploadMIMEType:(NSString *)uploadMIMEType
  176. chunkSize:(int64_t)chunkSize
  177. allowsCellularAccess:(BOOL)allowsCellularAccess
  178. fetcherService:(GTMSessionFetcherService *)fetcherService {
  179. GTMSessionUploadFetcher *fetcher = [self uploadFetcherWithRequest:nil
  180. fetcherService:fetcherService];
  181. [fetcher setLocationURL:uploadLocationURL
  182. uploadMIMEType:uploadMIMEType
  183. chunkSize:chunkSize
  184. allowsCellularAccess:allowsCellularAccess];
  185. return fetcher;
  186. }
  187. + (instancetype)uploadFetcherForSessionIdentifierMetadata:(NSDictionary *)metadata {
  188. GTMSESSION_ASSERT_DEBUG(
  189. [metadata[kGTMSessionIdentifierIsUploadChunkFetcherMetadataKey] boolValue],
  190. @"Session identifier metadata is not for an upload fetcher: %@", metadata);
  191. NSNumber *uploadFileLengthNum = metadata[kGTMSessionIdentifierUploadFileLengthMetadataKey];
  192. GTMSESSION_ASSERT_DEBUG(uploadFileLengthNum != nil,
  193. @"Session metadata missing an UploadFileSize");
  194. if (uploadFileLengthNum == nil) return nil;
  195. int64_t uploadFileLength = [uploadFileLengthNum longLongValue];
  196. GTMSESSION_ASSERT_DEBUG(uploadFileLength >= 0, @"Session metadata UploadFileSize is unknown");
  197. NSString *uploadFileURLString = metadata[kGTMSessionIdentifierUploadFileURLMetadataKey];
  198. GTMSESSION_ASSERT_DEBUG(uploadFileURLString, @"Session metadata missing an UploadFileURL");
  199. if (uploadFileURLString == nil) return nil;
  200. NSURL *uploadFileURL = [NSURL URLWithString:uploadFileURLString];
  201. // There used to be a call here to NSURL checkResourceIsReachableAndReturnError: to check for the
  202. // existence of the file (also tried NSFileManager fileExistsAtPath:). We've determined
  203. // empirically that the check can fail at startup even when the upload file does in fact exist.
  204. // For now, we'll go ahead and restore the background upload fetcher. If the file doesn't exist,
  205. // it will fail later.
  206. NSString *uploadLocationURLString = metadata[kGTMSessionIdentifierUploadLocationURLMetadataKey];
  207. NSURL *uploadLocationURL =
  208. uploadLocationURLString ? [NSURL URLWithString:uploadLocationURLString] : nil;
  209. NSString *uploadMIMEType = metadata[kGTMSessionIdentifierUploadMIMETypeMetadataKey];
  210. int64_t uploadChunkSize =
  211. [metadata[kGTMSessionIdentifierUploadChunkSizeMetadataKey] longLongValue];
  212. if (uploadChunkSize <= 0) {
  213. uploadChunkSize = kGTMSessionUploadFetcherStandardChunkSize;
  214. }
  215. int64_t currentOffset =
  216. [metadata[kGTMSessionIdentifierUploadCurrentOffsetMetadataKey] longLongValue];
  217. BOOL allowsCellularAccess = YES;
  218. if (metadata[kGTMSessionIdentifierUploadAllowsCellularAccess]) {
  219. allowsCellularAccess = [metadata[kGTMSessionIdentifierUploadAllowsCellularAccess] boolValue];
  220. }
  221. GTMSESSION_ASSERT_DEBUG(currentOffset <= uploadFileLength,
  222. @"CurrentOffset (%lld) exceeds UploadFileSize (%lld)", currentOffset,
  223. uploadFileLength);
  224. if (currentOffset > uploadFileLength) return nil;
  225. GTMSessionUploadFetcher *uploadFetcher = [self uploadFetcherWithLocation:uploadLocationURL
  226. uploadMIMEType:uploadMIMEType
  227. chunkSize:uploadChunkSize
  228. allowsCellularAccess:allowsCellularAccess
  229. fetcherService:nil];
  230. // Set the upload file length before setting the upload file URL tries to determine the length.
  231. [uploadFetcher setUploadFileLength:uploadFileLength];
  232. uploadFetcher.uploadFileURL = uploadFileURL;
  233. uploadFetcher.sessionUserInfo = metadata;
  234. uploadFetcher.useBackgroundSession = YES;
  235. uploadFetcher.currentOffset = currentOffset;
  236. uploadFetcher.delegateCallbackQueue = uploadFetcher.callbackQueue;
  237. uploadFetcher.allowedInsecureSchemes = @[ @"http" ]; // Allowed on restored upload fetcher.
  238. return uploadFetcher;
  239. }
  240. + (instancetype)uploadFetcherWithRequest:(NSURLRequest *)request
  241. fetcherService:(GTMSessionFetcherService *)fetcherService {
  242. // Internal utility method for instantiating fetchers
  243. GTMSessionUploadFetcher *fetcher;
  244. if ([fetcherService isKindOfClass:[GTMSessionFetcherService class]]) {
  245. fetcher = [fetcherService fetcherWithRequest:request fetcherClass:self];
  246. } else {
  247. fetcher = [self fetcherWithRequest:request];
  248. }
  249. fetcher.useBackgroundSession = YES;
  250. return fetcher;
  251. }
  252. + (NSPointerArray *)uploadFetcherPointerArrayForBackgroundSessions {
  253. static NSPointerArray *gUploadFetcherPointerArrayForBackgroundSessions = nil;
  254. static dispatch_once_t onceToken;
  255. dispatch_once(&onceToken, ^{
  256. gUploadFetcherPointerArrayForBackgroundSessions = [NSPointerArray weakObjectsPointerArray];
  257. });
  258. return gUploadFetcherPointerArrayForBackgroundSessions;
  259. }
  260. + (instancetype)uploadFetcherForSessionIdentifier:(NSString *)sessionIdentifier {
  261. GTMSESSION_ASSERT_DEBUG(sessionIdentifier != nil, @"Invalid session identifier");
  262. NSArray *uploadFetchersForBackgroundSessions = [self uploadFetchersForBackgroundSessions];
  263. for (GTMSessionUploadFetcher *uploadFetcher in uploadFetchersForBackgroundSessions) {
  264. if ([uploadFetcher.chunkFetcher.sessionIdentifier isEqual:sessionIdentifier]) {
  265. return uploadFetcher;
  266. }
  267. }
  268. return nil;
  269. }
  270. + (NSArray *)uploadFetchersForBackgroundSessions {
  271. NSMutableSet *restoredSessionIdentifiers = [[NSMutableSet alloc] init];
  272. NSMutableArray *uploadFetchers = [[NSMutableArray alloc] init];
  273. NSPointerArray *uploadFetcherPointerArray = [self uploadFetcherPointerArrayForBackgroundSessions];
  274. // Collect the background session upload fetchers that are still in memory.
  275. @synchronized(uploadFetcherPointerArray) {
  276. [uploadFetcherPointerArray compact];
  277. for (GTMSessionUploadFetcher *uploadFetcher in uploadFetcherPointerArray) {
  278. NSString *sessionIdentifier = uploadFetcher.chunkFetcher.sessionIdentifier;
  279. if (sessionIdentifier) {
  280. [restoredSessionIdentifiers addObject:sessionIdentifier];
  281. [uploadFetchers addObject:uploadFetcher];
  282. }
  283. }
  284. } // @synchronized(uploadFetcherPointerArray)
  285. // The system may have other ongoing background upload sessions. Restore upload fetchers for those
  286. // too.
  287. NSArray *fetchers = [GTMSessionFetcher fetchersForBackgroundSessions];
  288. for (GTMSessionFetcher *fetcher in fetchers) {
  289. NSString *sessionIdentifier = fetcher.sessionIdentifier;
  290. if (!sessionIdentifier || [restoredSessionIdentifiers containsObject:sessionIdentifier]) {
  291. continue;
  292. }
  293. NSDictionary *sessionIdentifierMetadata = [fetcher sessionIdentifierMetadata];
  294. if (sessionIdentifierMetadata == nil) {
  295. continue;
  296. }
  297. if (![sessionIdentifierMetadata[kGTMSessionIdentifierIsUploadChunkFetcherMetadataKey]
  298. boolValue]) {
  299. continue;
  300. }
  301. GTMSessionUploadFetcher *uploadFetcher =
  302. [self uploadFetcherForSessionIdentifierMetadata:sessionIdentifierMetadata];
  303. if (uploadFetcher == nil) {
  304. // Something went wrong with this upload fetcher, so kill the restored chunk fetcher.
  305. [fetcher stopFetching];
  306. continue;
  307. }
  308. [uploadFetchers addObject:uploadFetcher];
  309. uploadFetcher->_chunkFetcher = fetcher;
  310. uploadFetcher->_fetcherInFlight = fetcher;
  311. [uploadFetcher attachSendProgressBlockToChunkFetcher:fetcher];
  312. fetcher.completionHandler =
  313. [fetcher completionHandlerWithTarget:uploadFetcher
  314. didFinishSelector:@selector(chunkFetcher:finishedWithData:error:)];
  315. GTMSESSION_LOG_DEBUG(@"%@ restoring upload fetcher %@ for chunk fetcher %@", [self class],
  316. uploadFetcher, fetcher);
  317. }
  318. return uploadFetchers;
  319. }
  320. - (void)setUploadData:(NSData *)data {
  321. BOOL changed = NO;
  322. @synchronized(self) {
  323. GTMSessionMonitorSynchronized(self);
  324. if (_uploadData != data) {
  325. _uploadData = data;
  326. changed = YES;
  327. }
  328. }
  329. if (changed) {
  330. [self setupRequestHeaders];
  331. }
  332. }
  333. - (NSData *)uploadData {
  334. @synchronized(self) {
  335. GTMSessionMonitorSynchronized(self);
  336. return _uploadData;
  337. }
  338. }
  339. - (void)setUploadFileHandle:(NSFileHandle *)fh {
  340. BOOL changed = NO;
  341. @synchronized(self) {
  342. GTMSessionMonitorSynchronized(self);
  343. if (_uploadFileHandle != fh) {
  344. _uploadFileHandle = fh;
  345. changed = YES;
  346. }
  347. }
  348. if (changed) {
  349. [self setupRequestHeaders];
  350. }
  351. }
  352. - (NSFileHandle *)uploadFileHandle {
  353. @synchronized(self) {
  354. GTMSessionMonitorSynchronized(self);
  355. return _uploadFileHandle;
  356. }
  357. }
  358. - (void)setUploadFileURL:(NSURL *)uploadURL {
  359. BOOL changed = NO;
  360. @synchronized(self) {
  361. GTMSessionMonitorSynchronized(self);
  362. if (_uploadFileURL != uploadURL) {
  363. _uploadFileURL = uploadURL;
  364. changed = YES;
  365. }
  366. }
  367. if (changed) {
  368. [self setupRequestHeaders];
  369. }
  370. }
  371. - (NSURL *)uploadFileURL {
  372. @synchronized(self) {
  373. GTMSessionMonitorSynchronized(self);
  374. return _uploadFileURL;
  375. }
  376. }
  377. - (void)setUploadFileLength:(int64_t)fullLength {
  378. @synchronized(self) {
  379. GTMSessionMonitorSynchronized(self);
  380. if (_uploadFileLength == kGTMSessionUploadFetcherUnknownFileSize &&
  381. fullLength != kGTMSessionUploadFetcherUnknownFileSize) {
  382. _uploadFileLength = fullLength;
  383. }
  384. }
  385. }
  386. - (void)setUploadDataLength:(int64_t)fullLength
  387. provider:(GTMSessionUploadFetcherDataProvider)block {
  388. @synchronized(self) {
  389. GTMSessionMonitorSynchronized(self);
  390. _uploadDataProvider = [block copy];
  391. _uploadFileLength = fullLength;
  392. }
  393. [self setupRequestHeaders];
  394. }
  395. - (GTMSessionUploadFetcherDataProvider)uploadDataProvider {
  396. @synchronized(self) {
  397. GTMSessionMonitorSynchronized(self);
  398. return _uploadDataProvider;
  399. }
  400. }
  401. - (void)setUploadMIMEType:(NSString *)uploadMIMEType {
  402. GTMSESSION_ASSERT_DEBUG(0, @"TODO: disallow setUploadMIMEType by making declaration readonly");
  403. // (and uploadMIMEType, chunksize, currentOffset)
  404. @synchronized(self) {
  405. GTMSessionMonitorSynchronized(self);
  406. _uploadMIMEType = uploadMIMEType;
  407. }
  408. }
  409. - (NSString *)uploadMIMEType {
  410. @synchronized(self) {
  411. GTMSessionMonitorSynchronized(self);
  412. return _uploadMIMEType;
  413. }
  414. }
  415. - (int64_t)chunkSize {
  416. @synchronized(self) {
  417. GTMSessionMonitorSynchronized(self);
  418. return _chunkSize;
  419. }
  420. }
  421. - (void)setupRequestHeaders {
  422. GTMSessionCheckNotSynchronized(self);
  423. #if DEBUG
  424. @synchronized(self) {
  425. GTMSessionMonitorSynchronized(self);
  426. int hasData = (_uploadData != nil) ? 1 : 0;
  427. int hasFileHandle = (_uploadFileHandle != nil) ? 1 : 0;
  428. int hasFileURL = (_uploadFileURL != nil) ? 1 : 0;
  429. int hasUploadDataProvider = (_uploadDataProvider != nil) ? 1 : 0;
  430. int numberOfSources = hasData + hasFileHandle + hasFileURL + hasUploadDataProvider;
  431. #pragma unused(numberOfSources)
  432. GTMSESSION_ASSERT_DEBUG(numberOfSources == 1, @"Need just one upload source (%d)",
  433. numberOfSources);
  434. } // @synchronized(self)
  435. #endif
  436. // Add our custom headers to the initial request indicating the data
  437. // type and total size to be delivered later in the chunk requests.
  438. NSMutableURLRequest *mutableRequest = [self.request mutableCopy];
  439. GTMSESSION_ASSERT_DEBUG((mutableRequest == nil) != (_uploadLocationURL == nil),
  440. @"Request and location are mutually exclusive");
  441. if (!mutableRequest) return;
  442. [mutableRequest setValue:kGTMSessionXGoogUploadProtocolResumable
  443. forHTTPHeaderField:kGTMSessionHeaderXGoogUploadProtocol];
  444. [mutableRequest setValue:@"start" forHTTPHeaderField:kGTMSessionHeaderXGoogUploadCommand];
  445. [mutableRequest setValue:_uploadMIMEType
  446. forHTTPHeaderField:kGTMSessionHeaderXGoogUploadContentType];
  447. [mutableRequest setValue:@([self fullUploadLength]).stringValue
  448. forHTTPHeaderField:kGTMSessionHeaderXGoogUploadContentLength];
  449. NSString *method = mutableRequest.HTTPMethod;
  450. if (method == nil || [method caseInsensitiveCompare:@"GET"] == NSOrderedSame) {
  451. [mutableRequest setHTTPMethod:@"POST"];
  452. }
  453. // Ensure the user agent header identifies this to the upload server as a
  454. // GTMSessionUploadFetcher client. The /1 can be incremented in the unlikely circumstance
  455. // we need to make a bug fix in the client that the server can recognize.
  456. NSString *const kUserAgentStub = @"(GTMSUF/1)";
  457. NSString *userAgent = [mutableRequest valueForHTTPHeaderField:@"User-Agent"];
  458. if (userAgent == nil || [userAgent rangeOfString:kUserAgentStub].location == NSNotFound) {
  459. if (userAgent.length == 0) {
  460. userAgent = GTMFetcherStandardUserAgentString(nil);
  461. }
  462. userAgent = [userAgent stringByAppendingFormat:@" %@", kUserAgentStub];
  463. [mutableRequest setValue:userAgent forHTTPHeaderField:@"User-Agent"];
  464. }
  465. [self setRequest:mutableRequest];
  466. }
  467. - (void)setLocationURL:(nullable NSURL *)location
  468. uploadMIMEType:(NSString *)uploadMIMEType
  469. chunkSize:(int64_t)chunkSize
  470. allowsCellularAccess:(BOOL)allowsCellularAccess {
  471. @synchronized(self) {
  472. GTMSessionMonitorSynchronized(self);
  473. GTMSESSION_ASSERT_DEBUG(chunkSize > 0, @"chunk size is zero");
  474. _allowsCellularAccess = allowsCellularAccess;
  475. // When resuming an upload, set the known upload target URL.
  476. _uploadLocationURL = location;
  477. _uploadMIMEType = uploadMIMEType;
  478. _chunkSize = chunkSize;
  479. // Indicate that we've not yet determined the file handle's length
  480. _uploadFileLength = kGTMSessionUploadFetcherUnknownFileSize;
  481. // Indicate that we've not yet determined the upload fetcher status
  482. _recentChunkStatusCode = -1;
  483. // If this is restarting an upload begun by another fetcher,
  484. // the location is specified but the request is nil
  485. _isRestartedUpload = (location != nil);
  486. } // @synchronized(self)
  487. }
  488. - (int64_t)fullUploadLength {
  489. int64_t result;
  490. @synchronized(self) {
  491. GTMSessionMonitorSynchronized(self);
  492. if (_uploadData) {
  493. result = (int64_t)_uploadData.length;
  494. } else {
  495. if (_uploadFileLength == kGTMSessionUploadFetcherUnknownFileSize) {
  496. if (_uploadFileHandle) {
  497. // First time through, seek to end to determine file length
  498. _uploadFileLength = (int64_t)[_uploadFileHandle seekToEndOfFile];
  499. } else if (_uploadDataProvider) {
  500. // _uploadFileLength is set when the _uploadDataProvider is set.
  501. GTMSESSION_ASSERT_DEBUG(_uploadFileLength >= 0, @"No uploadDataProvider length set");
  502. } else {
  503. NSNumber *filesizeNum;
  504. NSError *valueError;
  505. if ([_uploadFileURL getResourceValue:&filesizeNum
  506. forKey:NSURLFileSizeKey
  507. error:&valueError]) {
  508. _uploadFileLength = filesizeNum.longLongValue;
  509. } else {
  510. GTMSESSION_ASSERT_DEBUG(NO, @"Cannot get file size: %@\n %@", valueError,
  511. _uploadFileURL.path);
  512. _uploadFileLength = 0;
  513. }
  514. }
  515. }
  516. result = _uploadFileLength;
  517. }
  518. } // @synchronized(self)
  519. return result;
  520. }
  521. // Make a subdata of the upload data.
  522. - (void)generateChunkSubdataWithOffset:(int64_t)offset
  523. length:(int64_t)length
  524. response:(GTMSessionUploadFetcherDataProviderResponse)response {
  525. GTMSessionUploadFetcherDataProvider uploadDataProvider = self.uploadDataProvider;
  526. if (uploadDataProvider) {
  527. uploadDataProvider(offset, length, response);
  528. return;
  529. }
  530. NSData *uploadData = self.uploadData;
  531. if (uploadData) {
  532. // NSData provided.
  533. NSData *resultData;
  534. if (offset == 0 && length == (int64_t)uploadData.length) {
  535. resultData = uploadData;
  536. } else {
  537. int64_t dataLength = (int64_t)uploadData.length;
  538. // Ensure our range is valid. b/18007814
  539. if (offset + length > dataLength) {
  540. NSString *errorMessage = [NSString
  541. stringWithFormat:
  542. @"Range invalid for upload data. offset: %lld\tlength: %lld\tdataLength: %lld",
  543. offset, length, dataLength];
  544. GTMSESSION_ASSERT_DEBUG(NO, @"%@", errorMessage);
  545. response(nil, kGTMSessionUploadFetcherUnknownFileSize,
  546. [self uploadChunkUnavailableErrorWithDescription:errorMessage]);
  547. return;
  548. }
  549. NSRange range = NSMakeRange((NSUInteger)offset, (NSUInteger)length);
  550. @try {
  551. resultData = [uploadData subdataWithRange:range];
  552. } @catch (NSException *exception) {
  553. NSString *errorMessage = exception.description;
  554. GTMSESSION_ASSERT_DEBUG(NO, @"%@", errorMessage);
  555. response(nil, kGTMSessionUploadFetcherUnknownFileSize,
  556. [self uploadChunkUnavailableErrorWithDescription:errorMessage]);
  557. return;
  558. }
  559. }
  560. response(resultData, kGTMSessionUploadFetcherUnknownFileSize, nil);
  561. return;
  562. }
  563. NSURL *uploadFileURL = self.uploadFileURL;
  564. if (uploadFileURL) {
  565. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  566. [self generateChunkSubdataFromFileURL:uploadFileURL
  567. offset:offset
  568. length:length
  569. response:response];
  570. });
  571. return;
  572. }
  573. GTMSESSION_ASSERT_DEBUG(_uploadFileHandle, @"Unexpectedly missing upload data package");
  574. NSFileHandle *uploadFileHandle = self.uploadFileHandle;
  575. dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
  576. [self generateChunkSubdataFromFileHandle:uploadFileHandle
  577. offset:offset
  578. length:length
  579. response:response];
  580. });
  581. }
  582. - (void)generateChunkSubdataFromFileHandle:(NSFileHandle *)fileHandle
  583. offset:(int64_t)offset
  584. length:(int64_t)length
  585. response:(GTMSessionUploadFetcherDataProviderResponse)response {
  586. NSData *resultData;
  587. NSError *error;
  588. @try {
  589. [fileHandle seekToFileOffset:(unsigned long long)offset];
  590. resultData = [fileHandle readDataOfLength:(NSUInteger)length];
  591. } @catch (NSException *exception) {
  592. GTMSESSION_ASSERT_DEBUG(NO, @"uploadFileHandle failed to read, %@", exception);
  593. error = [self uploadChunkUnavailableErrorWithDescription:exception.description];
  594. }
  595. // The response always re-dispatches to the main thread, so we skip doing that here.
  596. response(resultData, kGTMSessionUploadFetcherUnknownFileSize, error);
  597. }
  598. - (void)generateChunkSubdataFromFileURL:(NSURL *)fileURL
  599. offset:(int64_t)offset
  600. length:(int64_t)length
  601. response:(GTMSessionUploadFetcherDataProviderResponse)response {
  602. GTMSessionCheckNotSynchronized(self);
  603. NSData *resultData;
  604. NSError *error;
  605. int64_t fullUploadLength = [self fullUploadLength];
  606. NSData *mappedData =
  607. [NSData dataWithContentsOfURL:fileURL
  608. options:NSDataReadingMappedAlways + NSDataReadingUncached
  609. error:&error];
  610. if (!mappedData) {
  611. // We could not create an NSData by memory-mapping the file.
  612. #if TARGET_IPHONE_SIMULATOR
  613. // NSTemporaryDirectory() can differ in the simulator between app restarts,
  614. // yet the contents for the new path remains unchanged, so try the latest temp path.
  615. if ([error.domain isEqual:NSCocoaErrorDomain] && (error.code == NSFileReadNoSuchFileError)) {
  616. NSString *filename = [fileURL lastPathComponent];
  617. NSString *filePath = [NSTemporaryDirectory() stringByAppendingPathComponent:filename];
  618. NSURL *newFileURL = [NSURL fileURLWithPath:filePath];
  619. if (![newFileURL isEqual:fileURL]) {
  620. [self generateChunkSubdataFromFileURL:newFileURL
  621. offset:offset
  622. length:length
  623. response:response];
  624. return;
  625. }
  626. }
  627. #endif
  628. // If the file is just too large to create an NSData for, or if for some other reason we can't
  629. // map it, create an NSFileHandle instead to read a subset into an NSData.
  630. #if DEBUG
  631. NSNumber *fileSizeNum;
  632. BOOL hasFileSize = [fileURL getResourceValue:&fileSizeNum forKey:NSURLFileSizeKey error:NULL];
  633. GTMSESSION_LOG_DEBUG(@"Note: uploadFileURL is falling back to creating upload chunks by reading"
  634. @" an NSFileHandle since uploadFileURL failed to map the upload file,"
  635. @" file size %@, %@",
  636. hasFileSize ? fileSizeNum : @"unknown", error);
  637. #endif
  638. NSFileHandle *fileHandle = [NSFileHandle fileHandleForReadingFromURL:fileURL error:&error];
  639. if (fileHandle != nil) {
  640. [self generateChunkSubdataFromFileHandle:fileHandle
  641. offset:offset
  642. length:length
  643. response:response];
  644. return;
  645. }
  646. GTMSESSION_ASSERT_DEBUG(NO, @"uploadFileURL failed to read, %@", error);
  647. // Fall through with the error.
  648. } else {
  649. // Successfully created an NSData by memory-mapping the file.
  650. if ((NSUInteger)(offset + length) > mappedData.length) {
  651. NSString *errorMessage = [NSString
  652. stringWithFormat:@"Range invalid for upload data. offset: %lld\tlength: "
  653. @"%lld\tdataLength: %lld\texpected UploadLength: %lld",
  654. offset, length, (long long)mappedData.length, fullUploadLength];
  655. GTMSESSION_ASSERT_DEBUG(NO, @"%@", errorMessage);
  656. response(nil, kGTMSessionUploadFetcherUnknownFileSize,
  657. [self uploadChunkUnavailableErrorWithDescription:errorMessage]);
  658. return;
  659. }
  660. if (offset > 0 || length < fullUploadLength) {
  661. NSRange range = NSMakeRange((NSUInteger)offset, (NSUInteger)length);
  662. resultData = [mappedData subdataWithRange:range];
  663. } else {
  664. resultData = mappedData;
  665. }
  666. }
  667. // The response always re-dispatches to the main thread, so we skip re-dispatching here.
  668. response(resultData, kGTMSessionUploadFetcherUnknownFileSize, error);
  669. }
  670. - (NSError *)uploadChunkUnavailableErrorWithDescription:(NSString *)description {
  671. // The description in the userInfo is intended as a clue to programmers, not
  672. // for client code to examine or rely on.
  673. NSDictionary *userInfo = @{@"description" : description};
  674. return [NSError errorWithDomain:kGTMSessionFetcherErrorDomain
  675. code:GTMSessionFetcherErrorUploadChunkUnavailable
  676. userInfo:userInfo];
  677. }
  678. - (NSError *)prematureFailureErrorWithUserInfo:(NSDictionary *)userInfo {
  679. // An error for if we get an unexpected status from the upload server or
  680. // otherwise cannot continue. This is an issue beyond the upload protocol;
  681. // there's no way the client can do anything useful except give up.
  682. NSError *error = [NSError errorWithDomain:kGTMSessionFetcherStatusDomain
  683. code:501 // Not implemented
  684. userInfo:userInfo];
  685. return error;
  686. }
  687. + (GTMSessionUploadFetcherStatus)uploadStatusFromResponseHeaders:(NSDictionary *)responseHeaders {
  688. NSString *statusString = [responseHeaders objectForKey:kGTMSessionHeaderXGoogUploadStatus];
  689. if ([statusString isEqual:@"active"]) {
  690. return kStatusActive;
  691. }
  692. if ([statusString isEqual:@"final"]) {
  693. return kStatusFinal;
  694. }
  695. if ([statusString isEqual:@"cancelled"]) {
  696. return kStatusCancelled;
  697. }
  698. return kStatusUnknown;
  699. }
  700. #pragma mark Method overrides affecting the initial fetch only
  701. - (void)setCompletionHandler:(GTMSessionFetcherCompletionHandler)handler {
  702. @synchronized(self) {
  703. GTMSessionMonitorSynchronized(self);
  704. _delegateCompletionHandler = handler;
  705. }
  706. }
  707. - (void)setDelegateCallbackQueue:(nullable dispatch_queue_t)queue {
  708. @synchronized(self) {
  709. GTMSessionMonitorSynchronized(self);
  710. _delegateCallbackQueue = queue;
  711. }
  712. }
  713. - (nullable dispatch_queue_t)delegateCallbackQueue {
  714. @synchronized(self) {
  715. GTMSessionMonitorSynchronized(self);
  716. return _delegateCallbackQueue;
  717. }
  718. }
  719. - (BOOL)isRestartedUpload {
  720. @synchronized(self) {
  721. GTMSessionMonitorSynchronized(self);
  722. return _isRestartedUpload;
  723. }
  724. }
  725. - (nullable GTMSessionFetcher *)chunkFetcher {
  726. @synchronized(self) {
  727. GTMSessionMonitorSynchronized(self);
  728. return _chunkFetcher;
  729. }
  730. }
  731. - (void)setChunkFetcher:(nullable GTMSessionFetcher *)fetcher {
  732. @synchronized(self) {
  733. GTMSessionMonitorSynchronized(self);
  734. _chunkFetcher = fetcher;
  735. }
  736. }
  737. - (void)setFetcherInFlight:(nullable GTMSessionFetcher *)fetcher {
  738. @synchronized(self) {
  739. GTMSessionMonitorSynchronized(self);
  740. _fetcherInFlight = fetcher;
  741. }
  742. }
  743. - (nullable GTMSessionFetcher *)fetcherInFlight {
  744. @synchronized(self) {
  745. GTMSessionMonitorSynchronized(self);
  746. return _fetcherInFlight;
  747. }
  748. }
  749. - (void)setCancellationHandler:
  750. (nullable GTMSessionUploadFetcherCancellationHandler)cancellationHandler {
  751. @synchronized(self) {
  752. GTMSessionMonitorSynchronized(self);
  753. _cancellationHandler = cancellationHandler;
  754. }
  755. }
  756. - (nullable GTMSessionUploadFetcherCancellationHandler)cancellationHandler {
  757. @synchronized(self) {
  758. GTMSessionMonitorSynchronized(self);
  759. return _cancellationHandler;
  760. }
  761. }
  762. - (void)beginFetchForRetry {
  763. GTMSessionCheckNotSynchronized(self);
  764. // Override the superclass to reset the initial body length and fetcher-in-flight,
  765. // then call the superclass implementation.
  766. [self setInitialBodyLength:[self bodyLength]];
  767. GTMSESSION_ASSERT_DEBUG(self.fetcherInFlight == nil, @"unexpected fetcher in flight: %@",
  768. self.fetcherInFlight);
  769. self.fetcherInFlight = self;
  770. [super beginFetchForRetry];
  771. }
  772. - (void)beginFetchWithCompletionHandler:(GTMSessionFetcherCompletionHandler)handler {
  773. GTMSessionCheckNotSynchronized(self);
  774. [self setInitialBodyLength:[self bodyLength]];
  775. // We'll hold onto the superclass's callback queue so we can invoke the handler
  776. // even after the superclass has released the queue and its callback handler, as
  777. // happens during auth failure.
  778. [self setDelegateCallbackQueue:self.callbackQueue];
  779. self.completionHandler = handler;
  780. if ([self isRestartedUpload]) {
  781. // When restarting an upload, we know the destination location for chunk fetches,
  782. // but we need to query to find the initial offset.
  783. if (![self isPaused]) {
  784. [self sendQueryForUploadOffsetWithFetcherProperties:self.properties];
  785. }
  786. return;
  787. }
  788. // We don't want to call into the client's completion block immediately
  789. // after the finish of the initial connection (the delegate is called only
  790. // when uploading finishes), so we substitute our own completion block to be
  791. // called when the initial connection finishes
  792. GTMSESSION_ASSERT_DEBUG(self.fetcherInFlight == nil, @"unexpected fetcher in flight: %@",
  793. self.fetcherInFlight);
  794. self.fetcherInFlight = self;
  795. [super beginFetchWithCompletionHandler:^(NSData *data, NSError *error) {
  796. self.fetcherInFlight = nil;
  797. // callback
  798. BOOL hasTestBlock = (self.testBlock != nil);
  799. if (![self isRestartedUpload] && !hasTestBlock) {
  800. if (error == nil) {
  801. [self beginChunkFetches];
  802. } else {
  803. if ([self retryTimer] == nil) {
  804. [self invokeFinalCallbackWithData:nil error:error shouldInvalidateLocation:YES];
  805. }
  806. }
  807. } else {
  808. // If there was no initial request, then this fetch is resuming some
  809. // other uploadFetcher's initial request, and the superclass's connection
  810. // is never used, so at this point we call the user's actual completion
  811. // block.
  812. if (!hasTestBlock) {
  813. [self invokeFinalCallbackWithData:data error:error shouldInvalidateLocation:YES];
  814. } else {
  815. // There was a test block, so we won't do chunk fetches, but we simulate obtaining
  816. // the data to be uploaded from the upload data provider block or the file handle,
  817. // and then call back.
  818. [self generateChunkSubdataWithOffset:0
  819. length:[self fullUploadLength]
  820. response:^(NSData *generateData, int64_t fullUploadLength,
  821. NSError *generateError) {
  822. [self invokeFinalCallbackWithData:data
  823. error:error
  824. shouldInvalidateLocation:YES];
  825. }];
  826. }
  827. }
  828. }];
  829. }
  830. - (void)beginChunkFetches {
  831. GTMSessionCheckNotSynchronized(self);
  832. #if DEBUG
  833. // The initial response of the resumable upload protocol should have an
  834. // empty body
  835. //
  836. // This assert typically happens because the upload create/edit link URL was
  837. // not supplied with the request, and the server is thus expecting a non-
  838. // resumable request/response.
  839. if (self.downloadedData.length > 0) {
  840. NSData *downloadedData = self.downloadedData;
  841. NSString *str = [[NSString alloc] initWithData:downloadedData encoding:NSUTF8StringEncoding];
  842. #pragma unused(str)
  843. GTMSESSION_ASSERT_DEBUG(NO, @"unexpected response data (uploading to the wrong URL?)\n%@", str);
  844. }
  845. #endif
  846. // We need to get the upload URL from the location header to continue.
  847. NSDictionary *responseHeaders = [self responseHeaders];
  848. [self retrieveUploadChunkGranularityFromResponseHeaders:responseHeaders];
  849. GTMSessionUploadFetcherStatus uploadStatus =
  850. [[self class] uploadStatusFromResponseHeaders:responseHeaders];
  851. GTMSESSION_ASSERT_DEBUG(uploadStatus != kStatusUnknown,
  852. @"beginChunkFetches has unexpected upload status for headers %@",
  853. responseHeaders);
  854. BOOL isPrematureStop = (uploadStatus == kStatusFinal) || (uploadStatus == kStatusCancelled);
  855. NSString *uploadLocationURLStr = [responseHeaders objectForKey:kGTMSessionHeaderXGoogUploadURL];
  856. BOOL hasUploadLocation = (uploadLocationURLStr.length > 0);
  857. if (isPrematureStop || !hasUploadLocation) {
  858. GTMSESSION_ASSERT_DEBUG(NO, @"Premature failure: upload-status:\"%@\" location:%@",
  859. [responseHeaders objectForKey:kGTMSessionHeaderXGoogUploadStatus],
  860. uploadLocationURLStr);
  861. // We cannot continue since we do not know the location to use
  862. // as our upload destination.
  863. NSDictionary *userInfo = nil;
  864. NSData *downloadedData = self.downloadedData;
  865. if (downloadedData.length > 0) {
  866. userInfo = @{kGTMSessionFetcherStatusDataKey : downloadedData};
  867. }
  868. NSError *failureError = [self prematureFailureErrorWithUserInfo:userInfo];
  869. [self invokeFinalCallbackWithData:nil error:failureError shouldInvalidateLocation:YES];
  870. return;
  871. }
  872. self.uploadLocationURL = [NSURL URLWithString:uploadLocationURLStr];
  873. NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
  874. [nc postNotificationName:kGTMSessionFetcherUploadLocationObtainedNotification object:self];
  875. // we've now sent all of the initial post body data, so we need to include
  876. // its size in future progress indicator callbacks
  877. [self setInitialBodySent:[self initialBodyLength]];
  878. // just in case the user paused us during the initial fetch...
  879. if (![self isPaused]) {
  880. [self uploadNextChunkWithOffset:0];
  881. }
  882. }
  883. - (void)URLSession:(NSURLSession *)session
  884. task:(NSURLSessionTask *)task
  885. didSendBodyData:(int64_t)bytesSent
  886. totalBytesSent:(int64_t)totalBytesSent
  887. totalBytesExpectedToSend:(int64_t)totalBytesExpectedToSend {
  888. // Overrides the superclass.
  889. [self invokeDelegateWithDidSendBytes:bytesSent
  890. totalBytesSent:totalBytesSent
  891. totalBytesExpectedToSend:totalBytesExpectedToSend + [self fullUploadLength]];
  892. }
  893. - (BOOL)shouldReleaseCallbacksUponCompletion {
  894. // Overrides the superclass.
  895. // We don't want the superclass to release the delegate and callback
  896. // blocks once the initial fetch has finished
  897. //
  898. // This is invoked for only successful completion of the connection;
  899. // an error always will invoke and release the callbacks
  900. return NO;
  901. }
  902. - (void)invokeFinalCallbackWithData:(NSData *)data
  903. error:(NSError *)error
  904. shouldInvalidateLocation:(BOOL)shouldInvalidateLocation {
  905. @synchronized(self) {
  906. GTMSessionMonitorSynchronized(self);
  907. if (shouldInvalidateLocation) {
  908. _uploadLocationURL = nil;
  909. }
  910. dispatch_queue_t queue = _delegateCallbackQueue;
  911. GTMSessionFetcherCompletionHandler handler = _delegateCompletionHandler;
  912. if (queue && handler) {
  913. [self invokeOnCallbackQueue:queue
  914. afterUserStopped:NO
  915. block:^{
  916. handler(data, error);
  917. }];
  918. }
  919. } // @synchronized(self)
  920. [self releaseUploadAndBaseCallbacks:!self.userStoppedFetching];
  921. }
  922. - (void)releaseUploadAndBaseCallbacks:(BOOL)shouldReleaseCancellation {
  923. @synchronized(self) {
  924. GTMSessionMonitorSynchronized(self);
  925. _delegateCallbackQueue = nil;
  926. _delegateCompletionHandler = nil;
  927. _uploadDataProvider = nil;
  928. if (shouldReleaseCancellation) {
  929. _cancellationHandler = nil;
  930. }
  931. }
  932. // Release the base class's callbacks, too, if needed.
  933. [self releaseCallbacks];
  934. }
  935. - (void)stopFetchReleasingCallbacks:(BOOL)shouldReleaseCallbacks {
  936. GTMSessionCheckNotSynchronized(self);
  937. // Clear _fetcherInFlight when stopped. Moved from stopFetching, since that's a public method,
  938. // where this method does the work. Fixes issue clearing value when retryBlock included.
  939. GTMSessionFetcher *fetcherInFlight = self.fetcherInFlight;
  940. if (fetcherInFlight == self) {
  941. self.fetcherInFlight = nil;
  942. }
  943. [super stopFetchReleasingCallbacks:shouldReleaseCallbacks];
  944. if (shouldReleaseCallbacks) {
  945. [self releaseUploadAndBaseCallbacks:NO];
  946. }
  947. }
  948. #pragma mark Chunk fetching methods
  949. - (void)uploadNextChunkWithOffset:(int64_t)offset {
  950. // use the properties in each chunk fetcher
  951. NSDictionary *props = [self properties];
  952. [self uploadNextChunkWithOffset:offset fetcherProperties:props];
  953. }
  954. - (void)sendQueryForUploadOffsetWithFetcherProperties:(NSDictionary *)props {
  955. GTMSessionFetcher *queryFetcher = [self uploadFetcherWithProperties:props isQueryFetch:YES];
  956. queryFetcher.bodyData = [NSData data];
  957. NSString *originalComment = self.comment;
  958. [queryFetcher
  959. setCommentWithFormat:@"%@ (query offset)", originalComment ? originalComment : @"upload"];
  960. [queryFetcher setRequestValue:@"query" forHTTPHeaderField:kGTMSessionHeaderXGoogUploadCommand];
  961. self.fetcherInFlight = queryFetcher;
  962. [queryFetcher beginFetchWithDelegate:self
  963. didFinishSelector:@selector(queryFetcher:finishedWithData:error:)];
  964. }
  965. - (void)queryFetcher:(GTMSessionFetcher *)queryFetcher
  966. finishedWithData:(NSData *)data
  967. error:(NSError *)error {
  968. self.fetcherInFlight = nil;
  969. NSDictionary *responseHeaders = [queryFetcher responseHeaders];
  970. NSString *sizeReceivedHeader;
  971. GTMSessionUploadFetcherStatus uploadStatus =
  972. [[self class] uploadStatusFromResponseHeaders:responseHeaders];
  973. GTMSESSION_ASSERT_DEBUG(uploadStatus != kStatusUnknown || error != nil,
  974. @"query fetcher completion has unexpected upload status for headers %@",
  975. responseHeaders);
  976. if (error == nil) {
  977. sizeReceivedHeader = [responseHeaders objectForKey:kGTMSessionHeaderXGoogUploadSizeReceived];
  978. if (uploadStatus == kStatusCancelled ||
  979. (uploadStatus == kStatusActive && sizeReceivedHeader == nil)) {
  980. NSDictionary *userInfo = nil;
  981. if (data.length > 0) {
  982. userInfo = @{kGTMSessionFetcherStatusDataKey : data};
  983. }
  984. error = [self prematureFailureErrorWithUserInfo:userInfo];
  985. }
  986. }
  987. if (error == nil) {
  988. int64_t offset = [sizeReceivedHeader longLongValue];
  989. int64_t fullUploadLength = [self fullUploadLength];
  990. if (uploadStatus == kStatusFinal ||
  991. (offset >= fullUploadLength &&
  992. fullUploadLength != kGTMSessionUploadFetcherUnknownFileSize)) {
  993. // Handle we're done
  994. [self chunkFetcher:queryFetcher finishedWithData:data error:nil];
  995. } else {
  996. [self retrieveUploadChunkGranularityFromResponseHeaders:responseHeaders];
  997. [self uploadNextChunkWithOffset:offset];
  998. }
  999. } else {
  1000. // Handle query error
  1001. [self chunkFetcher:queryFetcher finishedWithData:data error:error];
  1002. }
  1003. }
  1004. - (void)sendCancelUploadWithFetcherProperties:(NSDictionary *)props {
  1005. @synchronized(self) {
  1006. _isCancelInFlight = YES;
  1007. }
  1008. GTMSessionFetcher *cancelFetcher = [self uploadFetcherWithProperties:props isQueryFetch:YES];
  1009. cancelFetcher.bodyData = [NSData data];
  1010. NSString *originalComment = self.comment;
  1011. [cancelFetcher
  1012. setCommentWithFormat:@"%@ (cancel)", originalComment ? originalComment : @"upload"];
  1013. [cancelFetcher setRequestValue:@"cancel" forHTTPHeaderField:kGTMSessionHeaderXGoogUploadCommand];
  1014. self.fetcherInFlight = cancelFetcher;
  1015. [cancelFetcher beginFetchWithCompletionHandler:^(NSData *data, NSError *error) {
  1016. self.fetcherInFlight = nil;
  1017. if (![self triggerCancellationHandlerForFetch:cancelFetcher data:data error:error]) {
  1018. if (error) {
  1019. GTMSESSION_LOG_DEBUG(@"cancelFetcher %@", error);
  1020. }
  1021. }
  1022. @synchronized(self) {
  1023. self->_isCancelInFlight = NO;
  1024. }
  1025. }];
  1026. }
  1027. - (void)uploadNextChunkWithOffset:(int64_t)offset fetcherProperties:(NSDictionary *)props {
  1028. GTMSessionCheckNotSynchronized(self);
  1029. // Example chunk headers:
  1030. // X-Goog-Upload-Command: upload, finalize
  1031. // X-Goog-Upload-Offset: 0
  1032. // Content-Length: 2000000
  1033. // Content-Type: image/jpeg
  1034. //
  1035. // {bytes 0-1999999}
  1036. // The chunk upload URL requires no authentication header.
  1037. GTMSessionFetcher *chunkFetcher = [self uploadFetcherWithProperties:props isQueryFetch:NO];
  1038. [self attachSendProgressBlockToChunkFetcher:chunkFetcher];
  1039. int64_t chunkSize = [self updateChunkFetcher:chunkFetcher forChunkAtOffset:offset];
  1040. BOOL isUploadingFileURL = (self.uploadFileURL != nil);
  1041. int64_t fullUploadLength = [self fullUploadLength];
  1042. // The chunk size may have changed, so determine again if we're uploading the full file.
  1043. BOOL isUploadingFullFile =
  1044. (offset == 0 && fullUploadLength != kGTMSessionUploadFetcherUnknownFileSize &&
  1045. chunkSize >= fullUploadLength);
  1046. if (isUploadingFullFile && isUploadingFileURL) {
  1047. // The data is the full upload file URL.
  1048. chunkFetcher.bodyFileURL = self.uploadFileURL;
  1049. [self beginChunkFetcher:chunkFetcher offset:offset];
  1050. } else {
  1051. // Make an NSData for the subset for this upload chunk.
  1052. self.subdataGenerating = YES;
  1053. [self generateChunkSubdataWithOffset:offset
  1054. length:chunkSize
  1055. response:^(NSData *chunkData, int64_t uploadFileLength,
  1056. NSError *chunkError) {
  1057. // The subdata methods may leave us on a background thread.
  1058. dispatch_async(dispatch_get_main_queue(), ^{
  1059. self.subdataGenerating = NO;
  1060. // dont allow the updating of fileLength for uploads not using a
  1061. // data provider as they should know the file length before the
  1062. // upload starts.
  1063. if (self->_uploadDataProvider != nil && uploadFileLength > 0) {
  1064. [self setUploadFileLength:uploadFileLength];
  1065. // Update the command and content-length headers if this is
  1066. // the last chunk to be sent.
  1067. if (offset + chunkSize >= uploadFileLength) {
  1068. int64_t updatedChunkSize =
  1069. [self updateChunkFetcher:chunkFetcher
  1070. forChunkAtOffset:offset];
  1071. if (updatedChunkSize == 0) {
  1072. // Calling beginChunkFetcher early when there is no more
  1073. // data to send allows us to properly handle nil chunkData
  1074. // below without having to account for the case where we
  1075. // are just finalizing the file.
  1076. chunkFetcher.bodyData = [[NSData alloc] init];
  1077. [self beginChunkFetcher:chunkFetcher offset:offset];
  1078. return;
  1079. }
  1080. }
  1081. }
  1082. if (chunkData == nil) {
  1083. NSError *responseError = chunkError;
  1084. if (!responseError) {
  1085. responseError =
  1086. [self uploadChunkUnavailableErrorWithDescription:
  1087. @"chunkData is nil"];
  1088. }
  1089. [self invokeFinalCallbackWithData:nil
  1090. error:responseError
  1091. shouldInvalidateLocation:YES];
  1092. return;
  1093. }
  1094. BOOL didWriteFile = NO;
  1095. if (isUploadingFileURL) {
  1096. // Make a temporary file with the data subset.
  1097. NSString *tempName =
  1098. [NSString stringWithFormat:@"GTMUpload_temp_%@",
  1099. [[NSUUID UUID] UUIDString]];
  1100. NSString *tempPath = [NSTemporaryDirectory()
  1101. stringByAppendingPathComponent:tempName];
  1102. NSError *writeError;
  1103. didWriteFile = [chunkData writeToFile:tempPath
  1104. options:NSDataWritingAtomic
  1105. error:&writeError];
  1106. if (didWriteFile) {
  1107. chunkFetcher.bodyFileURL = [NSURL fileURLWithPath:tempPath];
  1108. } else {
  1109. GTMSESSION_LOG_DEBUG(@"writeToFile failed: %@\n%@",
  1110. writeError, tempPath);
  1111. }
  1112. }
  1113. if (!didWriteFile) {
  1114. chunkFetcher.bodyData = [chunkData copy];
  1115. }
  1116. [self beginChunkFetcher:chunkFetcher offset:offset];
  1117. });
  1118. }];
  1119. }
  1120. }
  1121. - (void)beginChunkFetcher:(GTMSessionFetcher *)chunkFetcher offset:(int64_t)offset {
  1122. // Track the current offset for progress reporting
  1123. self.currentOffset = offset;
  1124. // Hang on to the fetcher in case we need to cancel it. We set these before beginning the
  1125. // chunk fetch so the observers notified of chunk fetches can inspect the upload fetcher to
  1126. // match to the chunk.
  1127. self.chunkFetcher = chunkFetcher;
  1128. self.fetcherInFlight = chunkFetcher;
  1129. // Update the last chunk request, including any request headers.
  1130. self.lastChunkRequest = chunkFetcher.request;
  1131. [chunkFetcher beginFetchWithDelegate:self
  1132. didFinishSelector:@selector(chunkFetcher:finishedWithData:error:)];
  1133. }
  1134. - (void)attachSendProgressBlockToChunkFetcher:(GTMSessionFetcher *)chunkFetcher {
  1135. chunkFetcher.sendProgressBlock =
  1136. ^(int64_t bytesSent, int64_t totalBytesSent, int64_t totalBytesExpectedToSend) {
  1137. // The total bytes expected include the initial body and the full chunked
  1138. // data, independent of how big this fetcher's chunk is.
  1139. int64_t initialBodySent = [self bodyLength]; // TODO(grobbins) use [self initialBodySent]
  1140. int64_t totalSent = initialBodySent + self.currentOffset + totalBytesSent;
  1141. int64_t totalExpected = initialBodySent + [self fullUploadLength];
  1142. [self invokeDelegateWithDidSendBytes:bytesSent
  1143. totalBytesSent:totalSent
  1144. totalBytesExpectedToSend:totalExpected];
  1145. };
  1146. }
  1147. - (NSDictionary *)uploadSessionIdentifierMetadata {
  1148. NSMutableDictionary *metadata = [NSMutableDictionary dictionary];
  1149. metadata[kGTMSessionIdentifierIsUploadChunkFetcherMetadataKey] = @YES;
  1150. GTMSESSION_ASSERT_DEBUG(self.uploadFileURL,
  1151. @"Invalid upload fetcher to create session identifier for metadata");
  1152. metadata[kGTMSessionIdentifierUploadFileURLMetadataKey] = [self.uploadFileURL absoluteString];
  1153. metadata[kGTMSessionIdentifierUploadFileLengthMetadataKey] = @([self fullUploadLength]);
  1154. if (self.uploadLocationURL) {
  1155. metadata[kGTMSessionIdentifierUploadLocationURLMetadataKey] =
  1156. [self.uploadLocationURL absoluteString];
  1157. }
  1158. if (self.uploadMIMEType) {
  1159. metadata[kGTMSessionIdentifierUploadMIMETypeMetadataKey] = self.uploadMIMEType;
  1160. }
  1161. metadata[kGTMSessionIdentifierUploadChunkSizeMetadataKey] = @(self.chunkSize);
  1162. metadata[kGTMSessionIdentifierUploadCurrentOffsetMetadataKey] = @(self.currentOffset);
  1163. metadata[kGTMSessionIdentifierUploadAllowsCellularAccess] = @(self.request.allowsCellularAccess);
  1164. return metadata;
  1165. }
  1166. - (GTMSessionFetcher *)uploadFetcherWithProperties:(NSDictionary *)properties
  1167. isQueryFetch:(BOOL)isQueryFetch {
  1168. GTMSessionCheckNotSynchronized(self);
  1169. // Common code to make a request for a query command or for a chunk upload.
  1170. NSURL *uploadLocationURL = self.uploadLocationURL;
  1171. NSMutableURLRequest *chunkRequest = [NSMutableURLRequest requestWithURL:uploadLocationURL];
  1172. [chunkRequest setHTTPMethod:@"PUT"];
  1173. // copy the user-agent from the original connection
  1174. // n.b. that self.request is nil for upload fetchers created with an existing upload location
  1175. // URL.
  1176. NSURLRequest *origRequest = self.request;
  1177. chunkRequest.allowsCellularAccess = origRequest.allowsCellularAccess;
  1178. if (!origRequest) {
  1179. chunkRequest.allowsCellularAccess = _allowsCellularAccess;
  1180. }
  1181. NSString *userAgent = [origRequest valueForHTTPHeaderField:@"User-Agent"];
  1182. if (userAgent.length > 0) {
  1183. [chunkRequest setValue:userAgent forHTTPHeaderField:@"User-Agent"];
  1184. }
  1185. [chunkRequest setValue:kGTMSessionXGoogUploadProtocolResumable
  1186. forHTTPHeaderField:kGTMSessionHeaderXGoogUploadProtocol];
  1187. // To avoid timeouts when debugging, copy the timeout of the initial fetcher.
  1188. NSTimeInterval origTimeout = [origRequest timeoutInterval];
  1189. [chunkRequest setTimeoutInterval:origTimeout];
  1190. //
  1191. // Make a new chunk fetcher.
  1192. //
  1193. GTMSessionFetcher *chunkFetcher = [GTMSessionFetcher fetcherWithRequest:chunkRequest];
  1194. chunkFetcher.callbackQueue = self.callbackQueue;
  1195. chunkFetcher.sessionUserInfo = self.sessionUserInfo;
  1196. chunkFetcher.configurationBlock = self.configurationBlock;
  1197. chunkFetcher.allowedInsecureSchemes = self.allowedInsecureSchemes;
  1198. chunkFetcher.allowLocalhostRequest = self.allowLocalhostRequest;
  1199. chunkFetcher.allowInvalidServerCertificates = self.allowInvalidServerCertificates;
  1200. chunkFetcher.useUploadTask = !isQueryFetch;
  1201. if (self.uploadFileURL && !isQueryFetch && self.useBackgroundSession) {
  1202. [chunkFetcher createSessionIdentifierWithMetadata:[self uploadSessionIdentifierMetadata]];
  1203. }
  1204. // Give the chunk fetcher the same properties as the previous chunk fetcher
  1205. chunkFetcher.properties = [properties mutableCopy];
  1206. [chunkFetcher setProperty:[NSValue valueWithNonretainedObject:self]
  1207. forKey:kGTMSessionUploadFetcherChunkParentKey];
  1208. // copy other fetcher settings to the new fetcher
  1209. chunkFetcher.retryEnabled = self.retryEnabled;
  1210. chunkFetcher.maxRetryInterval = self.maxRetryInterval;
  1211. if ([self isRetryEnabled]) {
  1212. // We interpose our own retry method both so we can change the request to ask the server to
  1213. // tell us where to resume the chunk.
  1214. chunkFetcher.retryBlock =
  1215. ^(BOOL suggestedWillRetry, NSError *chunkError, GTMSessionFetcherRetryResponse response) {
  1216. void (^finish)(BOOL) = ^(BOOL shouldRetry) {
  1217. // We'll retry by sending an offset query.
  1218. if (shouldRetry) {
  1219. self.shouldInitiateOffsetQuery = !isQueryFetch;
  1220. // We don't know what our actual offset is anymore, but the server will tell us.
  1221. self.currentOffset = 0;
  1222. }
  1223. // We don't actually want to retry this specific fetcher.
  1224. response(NO);
  1225. };
  1226. GTMSessionFetcherRetryBlock retryBlock = self.retryBlock;
  1227. if (retryBlock) {
  1228. // Ask the client, then call the finish block above.
  1229. retryBlock(suggestedWillRetry, chunkError, finish);
  1230. } else {
  1231. finish(suggestedWillRetry);
  1232. }
  1233. };
  1234. }
  1235. return chunkFetcher;
  1236. }
  1237. - (void)chunkFetcher:(GTMSessionFetcher *)chunkFetcher
  1238. finishedWithData:(NSData *)data
  1239. error:(NSError *)error {
  1240. BOOL hasDestroyedOldChunkFetcher = NO;
  1241. self.fetcherInFlight = nil;
  1242. NSDictionary *responseHeaders = [chunkFetcher responseHeaders];
  1243. GTMSessionUploadFetcherStatus uploadStatus =
  1244. [[self class] uploadStatusFromResponseHeaders:responseHeaders];
  1245. GTMSESSION_ASSERT_DEBUG(
  1246. uploadStatus != kStatusUnknown || error != nil || self.wasCreatedFromBackgroundSession,
  1247. @"chunk fetcher completion has kStatusUnknown upload status for headers %@ fetcher %@",
  1248. responseHeaders, self);
  1249. BOOL isUploadStatusStopped = (uploadStatus == kStatusFinal || uploadStatus == kStatusCancelled);
  1250. // Check if the fetcher was actually querying. If it failed, do not retry,
  1251. // as it would enter an infinite retry loop.
  1252. NSString *uploadCommand =
  1253. chunkFetcher.request.allHTTPHeaderFields[kGTMSessionHeaderXGoogUploadCommand];
  1254. BOOL isQueryFetch = [uploadCommand isEqual:@"query"];
  1255. // TODO
  1256. // Maybe here we can check to see if the request had x goog content length set. (the file length
  1257. // one).
  1258. NSString *previousContentLengthValue =
  1259. [chunkFetcher.request valueForHTTPHeaderField:@"Content-Length"];
  1260. // The Content-Length header may not be present if the chunk fetcher was recreated from
  1261. // a background session.
  1262. BOOL hasKnownChunkSize = (previousContentLengthValue != nil);
  1263. int64_t previousContentLength = [previousContentLengthValue longLongValue];
  1264. BOOL needsQuery = (!hasKnownChunkSize && !isUploadStatusStopped);
  1265. if (error || (needsQuery && !isQueryFetch)) {
  1266. NSInteger status = error.code;
  1267. // Status 4xx indicates a bad offset in the Google upload protocol. However, do not retry status
  1268. // 404 per spec, nor if the upload size appears to have been zero (since the server will just
  1269. // keep asking us to retry.)
  1270. if (self.shouldInitiateOffsetQuery || (needsQuery && !isQueryFetch) ||
  1271. ([error.domain isEqual:kGTMSessionFetcherStatusDomain] && status >= 400 && status <= 499 &&
  1272. status != 404 && uploadStatus == kStatusActive && previousContentLength > 0)) {
  1273. self.shouldInitiateOffsetQuery = NO;
  1274. [self destroyChunkFetcher];
  1275. hasDestroyedOldChunkFetcher = YES;
  1276. [self sendQueryForUploadOffsetWithFetcherProperties:chunkFetcher.properties];
  1277. } else {
  1278. // Some unexpected status has occurred; handle it as we would a regular
  1279. // object fetcher failure.
  1280. [self invokeFinalCallbackWithData:data error:error shouldInvalidateLocation:NO];
  1281. }
  1282. } else {
  1283. // The chunk has uploaded successfully.
  1284. int64_t newOffset = self.currentOffset + previousContentLength;
  1285. #if DEBUG
  1286. // Verify that if we think all of the uploading data has been sent, the server responded with
  1287. // the "final" upload status.
  1288. BOOL hasUploadAllData = (newOffset == [self fullUploadLength]);
  1289. BOOL isFinalStatus = (uploadStatus == kStatusFinal);
  1290. #pragma unused(hasUploadAllData, isFinalStatus)
  1291. GTMSESSION_ASSERT_DEBUG(hasUploadAllData == isFinalStatus || !hasKnownChunkSize,
  1292. @"uploadStatus:%@ newOffset:%lld (%lld + %lld) fullUploadLength:%lld"
  1293. @" chunkFetcher:%@ requestHeaders:%@ responseHeaders:%@",
  1294. [responseHeaders objectForKey:kGTMSessionHeaderXGoogUploadStatus],
  1295. newOffset, self.currentOffset, previousContentLength,
  1296. [self fullUploadLength], chunkFetcher,
  1297. chunkFetcher.request.allHTTPHeaderFields, responseHeaders);
  1298. #endif
  1299. if (isUploadStatusStopped || (!_uploadData && _uploadFileLength == 0) ||
  1300. (_currentOffset > _uploadFileLength && _uploadFileLength > 0)) {
  1301. // This was the last chunk.
  1302. if (error == nil && uploadStatus == kStatusCancelled) {
  1303. // Report cancelled status as an error.
  1304. NSDictionary *userInfo = nil;
  1305. if (data.length > 0) {
  1306. userInfo = @{kGTMSessionFetcherStatusDataKey : data};
  1307. }
  1308. data = nil;
  1309. error = [self prematureFailureErrorWithUserInfo:userInfo];
  1310. } else {
  1311. // The upload is in final status.
  1312. //
  1313. // Take the chunk fetcher's data as the superclass data.
  1314. self.downloadedData = data;
  1315. self.statusCode = chunkFetcher.statusCode;
  1316. }
  1317. // we're done
  1318. [self invokeFinalCallbackWithData:data error:error shouldInvalidateLocation:YES];
  1319. } else {
  1320. // Start the next chunk.
  1321. self.currentOffset = newOffset;
  1322. // We want to destroy this chunk fetcher before creating the next one, but
  1323. // we want to pass on its properties
  1324. NSDictionary *props = [chunkFetcher properties];
  1325. // We no longer need to be able to cancel this chunkFetcher. Destroy it
  1326. // before we create a new chunk fetcher.
  1327. [self destroyChunkFetcher];
  1328. hasDestroyedOldChunkFetcher = YES;
  1329. [self uploadNextChunkWithOffset:newOffset fetcherProperties:props];
  1330. }
  1331. }
  1332. if (!hasDestroyedOldChunkFetcher) {
  1333. [self destroyChunkFetcher];
  1334. }
  1335. }
  1336. - (void)destroyChunkFetcher {
  1337. @synchronized(self) {
  1338. GTMSessionMonitorSynchronized(self);
  1339. if (_fetcherInFlight == _chunkFetcher) {
  1340. _fetcherInFlight = nil;
  1341. }
  1342. [_chunkFetcher stopFetching];
  1343. NSURL *chunkFileURL = _chunkFetcher.bodyFileURL;
  1344. BOOL wasTemporaryUploadFile = ![chunkFileURL isEqual:_uploadFileURL];
  1345. if (wasTemporaryUploadFile) {
  1346. NSError *error;
  1347. [[NSFileManager defaultManager] removeItemAtURL:chunkFileURL error:&error];
  1348. if (error) {
  1349. GTMSESSION_LOG_DEBUG(@"removingItemAtURL failed: %@\n%@", error, chunkFileURL);
  1350. }
  1351. }
  1352. _recentChunkReponseHeaders = _chunkFetcher.responseHeaders;
  1353. // To avoid retain cycles, remove all properties except the parent identifier.
  1354. _chunkFetcher.properties =
  1355. @{kGTMSessionUploadFetcherChunkParentKey : [NSValue valueWithNonretainedObject:self]};
  1356. _chunkFetcher.retryBlock = nil;
  1357. _chunkFetcher.sendProgressBlock = nil;
  1358. _chunkFetcher = nil;
  1359. } // @synchronized(self)
  1360. }
  1361. // This method calculates the proper values to pass to the client's send progress block.
  1362. //
  1363. // The actual total bytes sent include the initial body sent, plus the
  1364. // offset into the batched data prior to the current chunk fetcher
  1365. - (void)invokeDelegateWithDidSendBytes:(int64_t)bytesSent
  1366. totalBytesSent:(int64_t)totalBytesSent
  1367. totalBytesExpectedToSend:(int64_t)totalBytesExpected {
  1368. GTMSessionCheckNotSynchronized(self);
  1369. // Ensure the chunk fetcher survives the callback in case the user pauses the upload process.
  1370. __block GTMSessionFetcher *holdFetcher = self.chunkFetcher;
  1371. [self invokeOnCallbackQueue:self.delegateCallbackQueue
  1372. afterUserStopped:NO
  1373. block:^{
  1374. GTMSessionFetcherSendProgressBlock sendProgressBlock =
  1375. self.sendProgressBlock;
  1376. if (sendProgressBlock) {
  1377. sendProgressBlock(bytesSent, totalBytesSent, totalBytesExpected);
  1378. }
  1379. holdFetcher = nil;
  1380. }];
  1381. }
  1382. - (void)retrieveUploadChunkGranularityFromResponseHeaders:(NSDictionary *)responseHeaders {
  1383. GTMSessionCheckNotSynchronized(self);
  1384. // Standard granularity for Google uploads is 256K.
  1385. NSString *chunkGranularityHeader =
  1386. [responseHeaders objectForKey:kGTMSessionHeaderXGoogUploadChunkGranularity];
  1387. self.uploadGranularity = chunkGranularityHeader.longLongValue;
  1388. }
  1389. #pragma mark -
  1390. - (BOOL)isPaused {
  1391. @synchronized(self) {
  1392. GTMSessionMonitorSynchronized(self);
  1393. return _isPaused;
  1394. } // @synchronized(self)
  1395. }
  1396. - (void)pauseFetching {
  1397. @synchronized(self) {
  1398. GTMSessionMonitorSynchronized(self);
  1399. _isPaused = YES;
  1400. } // @synchronized(self)
  1401. // Pausing just means stopping the current chunk from uploading;
  1402. // when we resume, we will send a query request to the server to
  1403. // figure out what bytes to resume sending.
  1404. //
  1405. // We won't try to cancel the initial data upload, but rather will check
  1406. // for being paused in beginChunkFetches.
  1407. [self destroyChunkFetcher];
  1408. }
  1409. - (void)resumeFetching {
  1410. BOOL wasPaused;
  1411. @synchronized(self) {
  1412. GTMSessionMonitorSynchronized(self);
  1413. wasPaused = _isPaused;
  1414. _isPaused = NO;
  1415. } // @synchronized(self)
  1416. if (wasPaused) {
  1417. [self sendQueryForUploadOffsetWithFetcherProperties:self.properties];
  1418. }
  1419. }
  1420. - (void)stopFetching {
  1421. // Overrides the superclass
  1422. [self destroyChunkFetcher];
  1423. // If we think the server is waiting for more data, then tell it there won't be more.
  1424. if (self.uploadLocationURL) {
  1425. [self sendCancelUploadWithFetcherProperties:[self properties]];
  1426. self.uploadLocationURL = nil;
  1427. } else {
  1428. [self invokeOnCallbackQueue:self.callbackQueue
  1429. afterUserStopped:YES
  1430. block:^{
  1431. // Repeated calls to stopFetching may cause this path to be reached
  1432. // despite having sent a real cancel request, check here to ensure that
  1433. // the cancellation handler invocation which fires will definitely be
  1434. // for the real request sent previously.
  1435. @synchronized(self) {
  1436. if (self->_isCancelInFlight) {
  1437. return;
  1438. }
  1439. }
  1440. [self triggerCancellationHandlerForFetch:nil data:nil error:nil];
  1441. }];
  1442. }
  1443. [super stopFetching];
  1444. }
  1445. // Fires the cancellation handler, returning whether there was a handler to be fired.
  1446. - (BOOL)triggerCancellationHandlerForFetch:(GTMSessionFetcher *)fetcher
  1447. data:(NSData *)data
  1448. error:(NSError *)error {
  1449. GTMSessionUploadFetcherCancellationHandler handler = self.cancellationHandler;
  1450. if (handler) {
  1451. handler(fetcher, data, error);
  1452. self.cancellationHandler = nil;
  1453. return YES;
  1454. }
  1455. return NO;
  1456. }
  1457. #pragma mark -
  1458. - (int64_t)updateChunkFetcher:(GTMSessionFetcher *)chunkFetcher forChunkAtOffset:(int64_t)offset {
  1459. BOOL isUploadingFileURL = (self.uploadFileURL != nil);
  1460. // Upload another chunk, meeting server-required granularity.
  1461. int64_t chunkSize = self.chunkSize;
  1462. int64_t fullUploadLength = [self fullUploadLength];
  1463. BOOL isFileLengthKnown = fullUploadLength >= 0;
  1464. BOOL isUploadingFullFile = (offset == 0 && isFileLengthKnown && chunkSize >= fullUploadLength);
  1465. if (!isUploadingFileURL || !isUploadingFullFile) {
  1466. // We're not uploading the entire file and given the file URL. Since we'll be
  1467. // allocating a subdata block for a chunk, we need to bound it to something that
  1468. // won't blow the process's memory.
  1469. if (chunkSize > kGTMSessionUploadFetcherMaximumDemandBufferSize) {
  1470. chunkSize = kGTMSessionUploadFetcherMaximumDemandBufferSize;
  1471. }
  1472. }
  1473. int64_t granularity = self.uploadGranularity;
  1474. if (granularity > 0) {
  1475. if (chunkSize < granularity) {
  1476. chunkSize = granularity;
  1477. } else {
  1478. chunkSize = chunkSize - (chunkSize % granularity);
  1479. }
  1480. }
  1481. GTMSESSION_ASSERT_DEBUG(offset < fullUploadLength || fullUploadLength == 0,
  1482. @"offset %lld exceeds data length %lld", offset, fullUploadLength);
  1483. if (granularity > 0) {
  1484. offset = offset - (offset % granularity);
  1485. }
  1486. // If the chunk size is bigger than the remaining data, or else
  1487. // it's close enough in size to the remaining data that we'd rather
  1488. // avoid having a whole extra http fetch for the leftover bit, then make
  1489. // this chunk size exactly match the remaining data size
  1490. NSString *command;
  1491. int64_t thisChunkSize = chunkSize;
  1492. BOOL isChunkTooBig = (thisChunkSize >= (fullUploadLength - offset));
  1493. BOOL isChunkAlmostBigEnough = (fullUploadLength - offset - 2500 < thisChunkSize);
  1494. BOOL isFinalChunk = (isChunkTooBig || isChunkAlmostBigEnough) && isFileLengthKnown;
  1495. if (isFinalChunk) {
  1496. thisChunkSize = fullUploadLength - offset;
  1497. if (thisChunkSize > 0) {
  1498. command = @"upload, finalize";
  1499. } else {
  1500. command = @"finalize";
  1501. }
  1502. } else {
  1503. command = @"upload";
  1504. }
  1505. NSString *lengthStr = @(thisChunkSize).stringValue;
  1506. NSString *offsetStr = @(offset).stringValue;
  1507. [chunkFetcher setRequestValue:command forHTTPHeaderField:kGTMSessionHeaderXGoogUploadCommand];
  1508. [chunkFetcher setRequestValue:lengthStr forHTTPHeaderField:@"Content-Length"];
  1509. [chunkFetcher setRequestValue:offsetStr forHTTPHeaderField:kGTMSessionHeaderXGoogUploadOffset];
  1510. if (_uploadFileLength != kGTMSessionUploadFetcherUnknownFileSize) {
  1511. [chunkFetcher setRequestValue:@([self fullUploadLength]).stringValue
  1512. forHTTPHeaderField:kGTMSessionHeaderXGoogUploadContentLength];
  1513. }
  1514. // Append the range of bytes in this chunk to the fetcher comment.
  1515. NSString *baseComment = self.comment;
  1516. [chunkFetcher setCommentWithFormat:@"%@ (%lld-%lld)", baseComment ? baseComment : @"upload",
  1517. offset, MAX(0, offset + thisChunkSize - 1)];
  1518. return thisChunkSize;
  1519. }
  1520. // Public properties.
  1521. // clang-format off
  1522. @synthesize currentOffset = _currentOffset,
  1523. allowsCellularAccess = _allowsCellularAccess,
  1524. delegateCompletionHandler = _delegateCompletionHandler,
  1525. chunkFetcher = _chunkFetcher,
  1526. lastChunkRequest = _lastChunkRequest,
  1527. subdataGenerating = _subdataGenerating,
  1528. shouldInitiateOffsetQuery = _shouldInitiateOffsetQuery,
  1529. uploadGranularity = _uploadGranularity;
  1530. // clang-format on
  1531. // Internal properties.
  1532. @dynamic fetcherInFlight;
  1533. @dynamic activeFetcher;
  1534. @dynamic statusCode;
  1535. @dynamic delegateCallbackQueue;
  1536. + (void)removePointer:(void *)pointer fromPointerArray:(NSPointerArray *)pointerArray {
  1537. for (NSUInteger index = 0, count = pointerArray.count; index < count; ++index) {
  1538. void *pointerAtIndex = [pointerArray pointerAtIndex:index];
  1539. if (pointerAtIndex == pointer) {
  1540. [pointerArray removePointerAtIndex:index];
  1541. return;
  1542. }
  1543. }
  1544. }
  1545. - (BOOL)useBackgroundSession {
  1546. @synchronized(self) {
  1547. GTMSessionMonitorSynchronized(self);
  1548. return _useBackgroundSessionOnChunkFetchers;
  1549. } // @synchronized(self
  1550. }
  1551. - (void)setUseBackgroundSession:(BOOL)useBackgroundSession {
  1552. @synchronized(self) {
  1553. GTMSessionMonitorSynchronized(self);
  1554. if (_useBackgroundSessionOnChunkFetchers != useBackgroundSession) {
  1555. _useBackgroundSessionOnChunkFetchers = useBackgroundSession;
  1556. NSPointerArray *uploadFetcherPointerArrayForBackgroundSessions =
  1557. [[self class] uploadFetcherPointerArrayForBackgroundSessions];
  1558. @synchronized(uploadFetcherPointerArrayForBackgroundSessions) {
  1559. if (_useBackgroundSessionOnChunkFetchers) {
  1560. [uploadFetcherPointerArrayForBackgroundSessions addPointer:(__bridge void *)self];
  1561. } else {
  1562. [[self class] removePointer:(__bridge void *)self
  1563. fromPointerArray:uploadFetcherPointerArrayForBackgroundSessions];
  1564. }
  1565. } // @synchronized(uploadFetcherPointerArrayForBackgroundSessions)
  1566. }
  1567. } // @synchronized(self)
  1568. }
  1569. - (BOOL)canFetchWithBackgroundSession {
  1570. // The initial upload fetcher is always a foreground session; the
  1571. // useBackgroundSession property will apply only to chunk fetchers,
  1572. // not to queries.
  1573. return NO;
  1574. }
  1575. - (NSDictionary *)responseHeaders {
  1576. GTMSessionCheckNotSynchronized(self);
  1577. // Overrides the superclass
  1578. // If asked for the fetcher's response, use the most recent chunk fetcher's response,
  1579. // since the original request's response lacks useful information like the actual
  1580. // Content-Type.
  1581. NSDictionary *dict = self.chunkFetcher.responseHeaders;
  1582. if (dict) {
  1583. return dict;
  1584. }
  1585. @synchronized(self) {
  1586. GTMSessionMonitorSynchronized(self);
  1587. if (_recentChunkReponseHeaders) {
  1588. return _recentChunkReponseHeaders;
  1589. }
  1590. } // @synchronized(self
  1591. // No chunk fetcher yet completed, so return whatever we have from the initial fetch.
  1592. return [super responseHeaders];
  1593. }
  1594. - (NSInteger)statusCodeUnsynchronized {
  1595. GTMSessionCheckSynchronized(self);
  1596. if (_recentChunkStatusCode != -1) {
  1597. // Overrides the superclass to indicate status appropriate to the initial
  1598. // or latest chunk fetch
  1599. return _recentChunkStatusCode;
  1600. } else {
  1601. return [super statusCodeUnsynchronized];
  1602. }
  1603. }
  1604. - (void)setStatusCode:(NSInteger)val {
  1605. @synchronized(self) {
  1606. GTMSessionMonitorSynchronized(self);
  1607. _recentChunkStatusCode = val;
  1608. }
  1609. }
  1610. - (int64_t)initialBodyLength {
  1611. @synchronized(self) {
  1612. GTMSessionMonitorSynchronized(self);
  1613. return _initialBodyLength;
  1614. }
  1615. }
  1616. - (void)setInitialBodyLength:(int64_t)length {
  1617. @synchronized(self) {
  1618. GTMSessionMonitorSynchronized(self);
  1619. _initialBodyLength = length;
  1620. }
  1621. }
  1622. - (int64_t)initialBodySent {
  1623. @synchronized(self) {
  1624. GTMSessionMonitorSynchronized(self);
  1625. return _initialBodySent;
  1626. }
  1627. }
  1628. - (void)setInitialBodySent:(int64_t)length {
  1629. @synchronized(self) {
  1630. GTMSessionMonitorSynchronized(self);
  1631. _initialBodySent = length;
  1632. }
  1633. }
  1634. - (NSURL *)uploadLocationURL {
  1635. @synchronized(self) {
  1636. GTMSessionMonitorSynchronized(self);
  1637. return _uploadLocationURL;
  1638. }
  1639. }
  1640. - (void)setUploadLocationURL:(NSURL *)locationURL {
  1641. @synchronized(self) {
  1642. GTMSessionMonitorSynchronized(self);
  1643. _uploadLocationURL = locationURL;
  1644. }
  1645. }
  1646. - (GTMSessionFetcher *)activeFetcher {
  1647. GTMSessionFetcher *result = self.fetcherInFlight;
  1648. if (result) return result;
  1649. return self;
  1650. }
  1651. - (BOOL)isFetching {
  1652. // If there is an active chunk fetcher, then the upload fetcher is considered
  1653. // to still be fetching.
  1654. if (self.fetcherInFlight != nil) return YES;
  1655. return [super isFetching];
  1656. }
  1657. #pragma clang diagnostic push
  1658. #pragma clang diagnostic ignored "-Wdeprecated-implementations"
  1659. - (BOOL)waitForCompletionWithTimeout:(NSTimeInterval)timeoutInSeconds {
  1660. NSDate *timeoutDate = [NSDate dateWithTimeIntervalSinceNow:timeoutInSeconds];
  1661. while (self.fetcherInFlight || self.subdataGenerating) {
  1662. if ([timeoutDate timeIntervalSinceNow] < 0) return NO;
  1663. if (self.subdataGenerating) {
  1664. // Allow time for subdata generation.
  1665. NSDate *stopDate = [NSDate dateWithTimeIntervalSinceNow:0.001];
  1666. [[NSRunLoop currentRunLoop] runUntilDate:stopDate];
  1667. } else {
  1668. // Wait for any chunk or query fetchers that still have pending callbacks or
  1669. // notifications.
  1670. BOOL timedOut;
  1671. if (self.fetcherInFlight == self) {
  1672. timedOut = ![super waitForCompletionWithTimeout:timeoutInSeconds];
  1673. } else {
  1674. timedOut = ![self.fetcherInFlight waitForCompletionWithTimeout:timeoutInSeconds];
  1675. }
  1676. if (timedOut) return NO;
  1677. }
  1678. }
  1679. return YES;
  1680. }
  1681. #pragma clang diagnostic pop
  1682. @end
  1683. @implementation GTMSessionFetcher (GTMSessionUploadFetcherMethods)
  1684. - (GTMSessionUploadFetcher *)parentUploadFetcher {
  1685. NSValue *property = [self propertyForKey:kGTMSessionUploadFetcherChunkParentKey];
  1686. if (!property) return nil;
  1687. GTMSessionUploadFetcher *uploadFetcher = property.nonretainedObjectValue;
  1688. GTMSESSION_ASSERT_DEBUG([uploadFetcher isKindOfClass:[GTMSessionUploadFetcher class]],
  1689. @"Unexpected parent upload fetcher class: %@", [uploadFetcher class]);
  1690. return uploadFetcher;
  1691. }
  1692. @end