AppDelegate.m
上传用户:shqiling
上传日期:2009-10-04
资源大小:154k
文件大小:8k
源码类别:

MacOS编程

开发平台:

Objective-C

  1. /*
  2.     File:       AppDelegate.m
  3.     Contains:   Main app controller.
  4.     Written by: DTS
  5.     Copyright:  Copyright (c) 2009 Apple Inc. All Rights Reserved.
  6.     Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Inc.
  7.                 ("Apple") in consideration of your agreement to the following
  8.                 terms, and your use, installation, modification or
  9.                 redistribution of this Apple software constitutes acceptance of
  10.                 these terms.  If you do not agree with these terms, please do
  11.                 not use, install, modify or redistribute this Apple software.
  12.                 In consideration of your agreement to abide by the following
  13.                 terms, and subject to these terms, Apple grants you a personal,
  14.                 non-exclusive license, under Apple's copyrights in this
  15.                 original Apple software (the "Apple Software"), to use,
  16.                 reproduce, modify and redistribute the Apple Software, with or
  17.                 without modifications, in source and/or binary forms; provided
  18.                 that if you redistribute the Apple Software in its entirety and
  19.                 without modifications, you must retain this notice and the
  20.                 following text and disclaimers in all such redistributions of
  21.                 the Apple Software. Neither the name, trademarks, service marks
  22.                 or logos of Apple Inc. may be used to endorse or promote
  23.                 products derived from the Apple Software without specific prior
  24.                 written permission from Apple.  Except as expressly stated in
  25.                 this notice, no other rights or licenses, express or implied,
  26.                 are granted by Apple herein, including but not limited to any
  27.                 patent rights that may be infringed by your derivative works or
  28.                 by other works in which the Apple Software may be incorporated.
  29.                 The Apple Software is provided by Apple on an "AS IS" basis. 
  30.                 APPLE MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
  31.                 WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT,
  32.                 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING
  33.                 THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN
  34.                 COMBINATION WITH YOUR PRODUCTS.
  35.                 IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT,
  36.                 INCIDENTAL OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
  37.                 TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  38.                 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY
  39.                 OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION
  40.                 OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY
  41.                 OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR
  42.                 OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF
  43.                 SUCH DAMAGE.
  44. */
  45. #import "AppDelegate.h"
  46. #import "InfoController.h"
  47. @interface AppDelegate ()
  48. @property (nonatomic, assign) NSInteger             networkingCount;
  49. @end
  50. @implementation AppDelegate
  51. + (AppDelegate *)sharedAppDelegate
  52. {
  53.     return (AppDelegate *) [UIApplication sharedApplication].delegate;
  54. }
  55. @synthesize window      = _window;
  56. @synthesize tabs        = _tabs;
  57. @synthesize networkingCount = _networkingCount;
  58. - (void)applicationDidFinishLaunching:(UIApplication *)application
  59. {
  60.     #pragma unused(application)
  61.     assert(self.window != nil);
  62.     assert(self.tabs != nil);
  63.     
  64.     [self.window addSubview:self.tabs.view];
  65.     
  66.     self.tabs.selectedIndex = [[NSUserDefaults standardUserDefaults] integerForKey:@"currentTab"];
  67.     
  68. [self.window makeKeyAndVisible];
  69. }
  70. - (void)applicationWillTerminate:(UIApplication *)application
  71. {
  72.     #pragma unused(application)
  73.     [[NSUserDefaults standardUserDefaults] setInteger:self.tabs.selectedIndex forKey:@"currentTab"];
  74. }
  75. - (NSString *)pathForTestImage:(NSUInteger)imageNumber
  76.     // In order to fully test the send and receive code paths, we need some really big 
  77.     // files.  Rather than carry theshe files around in our binary, we synthesise them. 
  78.     // Specifically, for each test image, we expand the image by an order of magnitude, 
  79.     // based on its image number.  That is, image 1 is not expanded, image 2 
  80.     // gets expanded 10 times, and so on.  We expand the image by simply copying it 
  81.     // to the temporary directory, writing the same data to the file over and over 
  82.     // again.
  83. {
  84.     NSUInteger          power;
  85.     NSUInteger          expansionFactor;
  86.     NSString *          originalFilePath;
  87.     NSString *          bigFilePath;
  88.     NSFileManager *     fileManager;
  89.     NSDictionary *      attrs;
  90.     unsigned long long  originalFileSize;
  91.     unsigned long long  bigFileSize;
  92.     
  93.     assert( (imageNumber >= 1) && (imageNumber <= 4) );
  94.     // Argh, C has no built-in power operator, so I have to do 10 ** (imageNumber - 1)
  95.     // in floating point and then cast back to integer.  Fortunately the range 
  96.     // of values is small enough (1..1000) that floating point isn't going 
  97.     // to cause me any problems.
  98.     
  99.     // On the simulator we expand by an extra order of magnitude; Macs are fast!
  100.     
  101.     power = imageNumber - 1;
  102.     #if TARGET_IPHONE_SIMULATOR
  103.         power += 1;
  104.     #endif
  105.     expansionFactor = (NSUInteger) pow(10, power);
  106.     fileManager = [NSFileManager defaultManager];
  107.     assert(fileManager != nil);
  108.     
  109.     // Calculate paths to both the original file and the expanded file.
  110.     
  111.     originalFilePath = [[NSBundle mainBundle] pathForResource:[NSString stringWithFormat:@"TestImage%zu", (size_t) imageNumber] ofType:@"png"];
  112.     assert(originalFilePath != nil);
  113.     
  114.     bigFilePath = [NSTemporaryDirectory() stringByAppendingPathComponent:[NSString stringWithFormat:@"TestImage%zu.png", (size_t) imageNumber]];
  115.     assert(bigFilePath != nil);
  116.     
  117.     // Get the sizes of each.
  118.     
  119.     attrs = [fileManager attributesOfItemAtPath:originalFilePath error:NULL];
  120.     assert(attrs != nil);
  121.     
  122.     originalFileSize = [[attrs objectForKey:NSFileSize] unsignedLongLongValue];
  123.     attrs = [fileManager attributesOfItemAtPath:bigFilePath error:NULL];
  124.     if (attrs == NULL) {
  125.         bigFileSize = 0;
  126.     } else {
  127.         bigFileSize = [[attrs objectForKey:NSFileSize] unsignedLongLongValue];
  128.     }
  129.     
  130.     // If the expanded file is missing, or the wrong size, create it from scratch.
  131.     
  132.     if (bigFileSize != (originalFileSize * expansionFactor)) {
  133.         NSOutputStream *    bigFileStream;
  134.         NSData *            data;
  135.         const uint8_t *     dataBuffer;
  136.         NSUInteger          dataLength;
  137.         NSUInteger          dataOffset;
  138.         NSUInteger          counter;
  139.         NSLog(@"%5u - %@", (size_t) expansionFactor, bigFilePath);
  140.         data = [NSData dataWithContentsOfMappedFile:originalFilePath];
  141.         assert(data != nil);
  142.         
  143.         dataBuffer = [data bytes];
  144.         dataLength = [data length];
  145.         
  146.         bigFileStream = [NSOutputStream outputStreamToFileAtPath:bigFilePath append:NO];
  147.         assert(bigFileStream != NULL);
  148.         
  149.         [bigFileStream open];
  150.         
  151.         for (counter = 0; counter < expansionFactor; counter++) {
  152.             dataOffset = 0;
  153.             while (dataOffset != dataLength) {
  154.                 NSInteger       bytesWritten;
  155.                 
  156.                 bytesWritten = [bigFileStream write:&dataBuffer[dataOffset] maxLength:dataLength - dataOffset];
  157.                 assert(bytesWritten > 0);
  158.                 
  159.                 dataOffset += bytesWritten;
  160.             }
  161.         }
  162.         
  163.         [bigFileStream close];
  164.     }
  165.     
  166.     return bigFilePath;
  167. }
  168. - (NSString *)pathForTemporaryFileWithPrefix:(NSString *)prefix
  169. {
  170.     NSString *  result;
  171.     CFUUIDRef   uuid;
  172.     CFStringRef uuidStr;
  173.     
  174.     uuid = CFUUIDCreate(NULL);
  175.     assert(uuid != NULL);
  176.     
  177.     uuidStr = CFUUIDCreateString(NULL, uuid);
  178.     assert(uuidStr != NULL);
  179.     
  180.     result = [NSTemporaryDirectory() stringByAppendingPathComponent:[NSString stringWithFormat:@"%@-%@", prefix, uuidStr]];
  181.     assert(result != nil);
  182.     
  183.     CFRelease(uuidStr);
  184.     CFRelease(uuid);
  185.     
  186.     return result;
  187. }
  188. - (void)didStartNetworking
  189. {
  190.     self.networkingCount += 1;
  191.     [UIApplication sharedApplication].networkActivityIndicatorVisible = YES;
  192. }
  193. - (void)didStopNetworking
  194. {
  195.     assert(self.networkingCount > 0);
  196.     self.networkingCount -= 1;
  197.     [UIApplication sharedApplication].networkActivityIndicatorVisible = (self.networkingCount != 0);
  198. }
  199. @end