TimeIntervalFormatter.m
author Jens Alfke <jens@mooseyard.com>
Wed Apr 22 16:46:38 2009 -0700 (2009-04-22)
changeset 26 252c13061ee5
parent 1 e55a17cdabd2
permissions -rw-r--r--
Fixed a few compiler warnings.
     1 //
     2 //  TimeIntervalFormatter.m
     3 //  MYUtilities
     4 //
     5 //  Copyright 2008 Jens Alfke. All rights reserved.
     6 //
     7 
     8 #import "TimeIntervalFormatter.h"
     9 
    10 
    11 @implementation TimeIntervalFormatter
    12 
    13 
    14 - (id) init
    15 {
    16     self = [super init];
    17     if (self != nil) {
    18         _showsMinutes = YES;
    19     }
    20     return self;
    21 }
    22 
    23 - (void) awakeFromNib
    24 {
    25     _showsMinutes = YES;
    26 }
    27 
    28 - (void) setShowsMinutes: (BOOL)show                {_showsMinutes = show;}
    29 - (void) setShowsFractionalSeconds: (BOOL)show      {_showsFractionalSeconds = show;}
    30 
    31 + (NSString*) formatTimeInterval: (NSTimeInterval)interval
    32 {
    33     TimeIntervalFormatter *fmt = [[self alloc] init];
    34     NSString *result = [fmt stringForObjectValue: [NSNumber numberWithDouble: interval]];
    35     [fmt release];
    36     return result;
    37 }
    38 
    39 
    40 - (NSString*) stringForObjectValue: (id)object
    41 {
    42     if (![object isKindOfClass:[NSNumber class]])
    43         return nil;
    44     NSTimeInterval time = [object doubleValue];
    45     NSString *sign;
    46     if( time==0.0 )
    47         return nil;
    48     else if( time < 0.0 ) {
    49         sign = @"-";
    50         time = -time;
    51     } else
    52         sign = @"";
    53     if( ! _showsFractionalSeconds )
    54         time = floor(time);
    55     int minutes = (int)floor(time / 60.0);
    56     if( _showsMinutes || minutes>0 ) {
    57         double seconds = time - 60.0*minutes;
    58         return [NSString stringWithFormat: (_showsFractionalSeconds ?@"%@%d:%06.3lf" :@"%@%d:%02.0lf"),
    59                                            sign,minutes,seconds];
    60     } else {
    61         return [NSString stringWithFormat: (_showsFractionalSeconds ?@"%@%.3lf" :@"%@%.0lf"),
    62                                            sign,time];
    63     }
    64 }
    65 
    66 
    67 - (BOOL)getObjectValue:(id *)anObject
    68              forString:(NSString *)string 
    69       errorDescription:(NSString **)error
    70 {
    71     NSScanner *scanner = [NSScanner scannerWithString: string];
    72     [scanner setCharactersToBeSkipped: [NSCharacterSet whitespaceCharacterSet]];
    73     double seconds;
    74     if( [scanner isAtEnd] ) {
    75         seconds = 0.0;
    76     } else {
    77         if( ! [scanner scanDouble: &seconds] || seconds<0.0 ) goto error;
    78         if( [scanner scanString: @":" intoString: NULL] ) {
    79             double minutes = seconds;
    80             if( ! [scanner scanDouble: &seconds] || seconds<0.0 ) goto error;
    81             seconds += 60*minutes;
    82         }
    83         if( ! [scanner isAtEnd] ) goto error;
    84     }
    85     *anObject = [NSNumber numberWithDouble: seconds];
    86     return YES;
    87     
    88 error:
    89     *anObject = nil;
    90     if( error )
    91         *error = @"Not a valid time interval";
    92     return NO;
    93 }
    94 
    95 
    96 - (BOOL)isPartialStringValid:(NSString **)partialStringPtr 
    97        proposedSelectedRange:(NSRangePointer)proposedSelRangePtr
    98               originalString:(NSString *)origString 
    99        originalSelectedRange:(NSRange)origSelRange 
   100             errorDescription:(NSString **)error
   101 {
   102     static NSCharacterSet *sIllegalChars;
   103     if( ! sIllegalChars )
   104         sIllegalChars = [[[NSCharacterSet characterSetWithCharactersInString: @"0123456789.:"] 
   105                                 invertedSet] retain];
   106     return [*partialStringPtr rangeOfCharacterFromSet: sIllegalChars].length == 0;
   107 }
   108 
   109 
   110 @end
   111 
   112 
   113 /*
   114  Copyright (c) 2008, Jens Alfke <jens@mooseyard.com>. All rights reserved.
   115  
   116  Redistribution and use in source and binary forms, with or without modification, are permitted
   117  provided that the following conditions are met:
   118  
   119  * Redistributions of source code must retain the above copyright notice, this list of conditions
   120  and the following disclaimer.
   121  * Redistributions in binary form must reproduce the above copyright notice, this list of conditions
   122  and the following disclaimer in the documentation and/or other materials provided with the
   123  distribution.
   124  
   125  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
   126  IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 
   127  FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRI-
   128  BUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
   129  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 
   130   PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 
   131  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF 
   132  THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   133  */