mirror of
https://github.com/gnustep/libs-performance.git
synced 2025-02-16 08:31:25 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/performance/trunk@36058 72102866-910b-0410-8b05-ffd578937521
360 lines
7.3 KiB
Objective-C
360 lines
7.3 KiB
Objective-C
/* -*-objc-*- */
|
|
|
|
/** Implementation of GSTicker for GNUStep
|
|
Copyright (C) 2005 Free Software Foundation, Inc.
|
|
|
|
Written by: Richard Frith-Macdonald <rfm@gnu.org>
|
|
Date: November 2005
|
|
|
|
This file is part of the Performance Library.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 3 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, write to the Free
|
|
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
|
|
|
$Date$ $Revision$
|
|
*/
|
|
|
|
#import <Foundation/NSArray.h>
|
|
#import <Foundation/NSDate.h>
|
|
#import <Foundation/NSDictionary.h>
|
|
#import <Foundation/NSException.h>
|
|
#import <Foundation/NSThread.h>
|
|
#import <Foundation/NSString.h>
|
|
#import <Foundation/NSTimer.h>
|
|
|
|
#import "GSTicker.h"
|
|
|
|
static Class NSDateClass = 0;
|
|
static NSDate *startDate = nil;
|
|
static SEL tiSel = 0;
|
|
static NSTimeInterval (*tiImp)(Class,SEL) = 0;
|
|
|
|
static volatile NSTimeInterval baseTime = 0;
|
|
static volatile NSTimeInterval lastTime = 0;
|
|
|
|
@interface GSTickerObservation : NSObject
|
|
{
|
|
@public
|
|
id<GSTicker> observer;
|
|
id userInfo;
|
|
}
|
|
- (void) fire: (NSArray*)live;
|
|
@end
|
|
|
|
@implementation GSTickerObservation
|
|
- (void) fire: (NSArray*)live
|
|
{
|
|
if ([live indexOfObjectIdenticalTo: self] != NSNotFound)
|
|
{
|
|
[observer newSecond: userInfo];
|
|
}
|
|
}
|
|
@end
|
|
|
|
|
|
@interface GSTickerThread : NSObject
|
|
{
|
|
@public
|
|
/* NB. We retain theTimer rather than depending on the run loop to do it.
|
|
* This is because tis object is typically deallocated on thread exist,
|
|
* so the thread's run loop may be deallocated before this object is
|
|
* deallocated, and we want to be sure the timer is not already deallocated
|
|
* when we invalidate it.
|
|
*/
|
|
NSTimer *theTimer;
|
|
NSMutableArray *observers;
|
|
unsigned last;
|
|
}
|
|
@end
|
|
|
|
@implementation GSTickerThread
|
|
- (void) dealloc
|
|
{
|
|
[theTimer invalidate];
|
|
[theTimer release];
|
|
theTimer = nil;
|
|
[observers release];
|
|
observers = nil;
|
|
[super dealloc];
|
|
}
|
|
- (id) init
|
|
{
|
|
if (nil != (self = [super init]))
|
|
{
|
|
NSTimeInterval ti = GSTickerTimeNow();
|
|
|
|
observers = [NSMutableArray new];
|
|
theTimer = [[NSTimer scheduledTimerWithTimeInterval: ti - (int)ti
|
|
target: [GSTicker class]
|
|
selector: @selector(_tick:)
|
|
userInfo: self
|
|
repeats: NO] retain];
|
|
}
|
|
return self;
|
|
}
|
|
@end
|
|
|
|
@interface GSTicker (Private)
|
|
+ (void) _tick: (NSTimer*)t;
|
|
@end
|
|
|
|
inline NSTimeInterval GSTickerTimeLast()
|
|
{
|
|
return lastTime;
|
|
}
|
|
|
|
inline NSTimeInterval GSTickerTimeStart()
|
|
{
|
|
if (baseTime == 0)
|
|
{
|
|
[GSTicker class];
|
|
}
|
|
return baseTime;
|
|
}
|
|
|
|
inline unsigned GSTickerTimeTick()
|
|
{
|
|
NSTimeInterval start = GSTickerTimeStart();
|
|
|
|
return (GSTickerTimeLast() - start) + 1;
|
|
}
|
|
|
|
|
|
NSTimeInterval GSTickerTimeNow()
|
|
{
|
|
if (baseTime == 0)
|
|
{
|
|
[GSTicker class];
|
|
}
|
|
else
|
|
{
|
|
NSTimeInterval now;
|
|
|
|
/*
|
|
* If the clock has been reset so that time has gone backwards,
|
|
* we adjust the baseTime so that lastTime >= baseTime is true.
|
|
*/
|
|
now = (*tiImp)(NSDateClass, tiSel);
|
|
if (now < lastTime)
|
|
{
|
|
baseTime -= (lastTime - now);
|
|
}
|
|
lastTime = now;
|
|
}
|
|
return lastTime;
|
|
}
|
|
|
|
@implementation GSTicker
|
|
|
|
+ (void) initialize
|
|
{
|
|
if (0 == baseTime)
|
|
{
|
|
NSDateClass = [NSDate class];
|
|
tiSel = @selector(timeIntervalSinceReferenceDate);
|
|
tiImp
|
|
= (NSTimeInterval (*)(Class,SEL))[NSDateClass methodForSelector: tiSel];
|
|
baseTime = lastTime = (*tiImp)(NSDateClass, tiSel);
|
|
startDate = [[NSDateClass alloc]
|
|
initWithTimeIntervalSinceReferenceDate: baseTime];
|
|
}
|
|
}
|
|
|
|
+ (NSDate*) last
|
|
{
|
|
return [NSDateClass dateWithTimeIntervalSinceReferenceDate:
|
|
GSTickerTimeLast()];
|
|
}
|
|
|
|
+ (void) newSecond: (id)userInfo
|
|
{
|
|
return;
|
|
}
|
|
|
|
+ (NSDate*) now
|
|
{
|
|
return [NSDateClass dateWithTimeIntervalSinceReferenceDate:
|
|
GSTickerTimeNow()];
|
|
}
|
|
|
|
+ (void) registerObserver: (id<GSTicker>)anObject
|
|
userInfo: (id)userInfo
|
|
{
|
|
GSTickerThread *tt;
|
|
GSTickerObservation *to;
|
|
unsigned count;
|
|
|
|
tt = [[[NSThread currentThread] threadDictionary]
|
|
objectForKey: @"GSTickerThread"];
|
|
if (tt == nil)
|
|
{
|
|
tt = [GSTickerThread new];
|
|
[[[NSThread currentThread] threadDictionary]
|
|
setObject: tt forKey: @"GSTickerThread"];
|
|
[tt release];
|
|
}
|
|
count = [tt->observers count];
|
|
while (count-- > 0)
|
|
{
|
|
to = [tt->observers objectAtIndex: count];
|
|
|
|
if (to->observer == anObject)
|
|
{
|
|
return; // Already registered.
|
|
}
|
|
}
|
|
to = [GSTickerObservation new];
|
|
to->observer = anObject;
|
|
to->userInfo = userInfo;
|
|
[tt->observers addObject: to];
|
|
[to release];
|
|
}
|
|
|
|
+ (NSDate*) start
|
|
{
|
|
if (startDate == nil)
|
|
{
|
|
startDate = [NSDateClass alloc];
|
|
startDate = [startDate initWithTimeIntervalSinceReferenceDate:
|
|
GSTickerTimeStart()];
|
|
}
|
|
return startDate;
|
|
}
|
|
|
|
+ (unsigned) tick
|
|
{
|
|
return GSTickerTimeTick();
|
|
}
|
|
|
|
+ (void) unregisterObserver: (id<GSTicker>)anObject
|
|
{
|
|
GSTickerThread *tt;
|
|
|
|
tt = [[[NSThread currentThread] threadDictionary]
|
|
objectForKey: @"GSTickerThread"];
|
|
if (tt != nil)
|
|
{
|
|
GSTickerObservation *to;
|
|
unsigned count = [tt->observers count];
|
|
|
|
while (count-- > 0)
|
|
{
|
|
to = [tt->observers objectAtIndex: count];
|
|
if (to->observer == anObject)
|
|
{
|
|
[tt->observers removeObjectAtIndex: count];
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ (void) update
|
|
{
|
|
GSTickerTimeNow();
|
|
}
|
|
|
|
|
|
- (NSDate*) last
|
|
{
|
|
return [NSDateClass dateWithTimeIntervalSinceReferenceDate:
|
|
GSTickerTimeLast()];
|
|
}
|
|
|
|
- (void) newSecond: (id)userInfo
|
|
{
|
|
return;
|
|
}
|
|
|
|
- (NSDate*) now
|
|
{
|
|
return [NSDateClass dateWithTimeIntervalSinceReferenceDate:
|
|
GSTickerTimeNow()];
|
|
}
|
|
|
|
- (NSDate*) start
|
|
{
|
|
return startDate;
|
|
}
|
|
|
|
- (unsigned) tick
|
|
{
|
|
return GSTickerTimeTick();
|
|
}
|
|
|
|
- (void) update
|
|
{
|
|
GSTickerTimeNow();
|
|
}
|
|
|
|
@end
|
|
|
|
@implementation GSTicker (Private)
|
|
+ (void) _tick: (NSTimer*)t
|
|
{
|
|
GSTickerThread *tt = [t userInfo];
|
|
|
|
if (tt == nil)
|
|
{
|
|
tt = [[[NSThread currentThread] threadDictionary]
|
|
objectForKey: @"GSTickerThread"];
|
|
}
|
|
if (tt != nil && [tt->observers count] > 0)
|
|
{
|
|
NSTimeInterval ti;
|
|
|
|
[tt->theTimer invalidate];
|
|
[tt->theTimer release];
|
|
tt->theTimer = nil;
|
|
|
|
if ([tt->observers count] > 0)
|
|
{
|
|
NSArray *a;
|
|
unsigned tick;
|
|
|
|
GSTickerTimeNow();
|
|
tick = GSTickerTimeTick();
|
|
if (tick != tt->last)
|
|
{
|
|
tt->last = tick;
|
|
a = [tt->observers copy];
|
|
NS_DURING
|
|
{
|
|
[a makeObjectsPerformSelector: @selector(fire:)
|
|
withObject: tt->observers];
|
|
}
|
|
NS_HANDLER
|
|
{
|
|
NSLog(@"Problem firing ticker observers: %@", localException);
|
|
}
|
|
NS_ENDHANDLER
|
|
[a release];
|
|
}
|
|
}
|
|
|
|
ti = GSTickerTimeNow();
|
|
tt->theTimer = [[NSTimer scheduledTimerWithTimeInterval: ti - (int)ti
|
|
target: self
|
|
selector: @selector(_tick:)
|
|
userInfo: tt
|
|
repeats: NO] retain];
|
|
}
|
|
else
|
|
{
|
|
[[[NSThread currentThread] threadDictionary]
|
|
removeObjectForKey: @"GSTickerThread"];
|
|
}
|
|
}
|
|
@end
|
|
|