mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-22 03:01:27 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@5815 72102866-910b-0410-8b05-ffd578937521
335 lines
9.5 KiB
Objective-C
335 lines
9.5 KiB
Objective-C
/* GSWSessionTimeOutManager.m - GSWeb: Class GSWSessionTimeOutManager
|
|
Copyright (C) 1999 Free Software Foundation, Inc.
|
|
|
|
Written by: Manuel Guesdon <mguesdon@sbuilders.com>
|
|
Date: Mar 1999
|
|
|
|
This file is part of the GNUstep Web Library.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public
|
|
License along with this library; if not, write to the Free
|
|
Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
static char rcsId[] = "$Id$";
|
|
|
|
#include <gsweb/GSWeb.framework/GSWeb.h>
|
|
#include "GSWSessionTimeOut.h"
|
|
|
|
//====================================================================
|
|
@implementation GSWSessionTimeOutManager
|
|
-(id)init
|
|
{
|
|
//OK
|
|
if ((self=[super init]))
|
|
{
|
|
sessionOrderedTimeOuts=[[NSMutableOrderedArray alloc]initWithCompareSelector:@selector(compareTimeOutDate:)];
|
|
sessionTimeOuts=[NSMutableDictionary new];
|
|
// selfLock=[NSRecursiveLock new];
|
|
selfLock=[NSLock new];
|
|
};
|
|
return self;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)dealloc
|
|
{
|
|
DESTROY(sessionTimeOuts);
|
|
DESTROY(sessionTimeOuts);
|
|
//Do Not Retain ! DESTROY(target);
|
|
DESTROY(timer);
|
|
DESTROY(selfLock);
|
|
[super dealloc];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)updateTimeOutForSessionWithID:(NSString*)sessionID_
|
|
timeOut:(NSTimeInterval)timeOut_
|
|
{
|
|
//OK
|
|
LOGObjectFnStart();
|
|
[self lock];
|
|
NS_DURING
|
|
{
|
|
NSTimer* _timer=nil;
|
|
GSWSessionTimeOut* _sessionTimeOut=nil;
|
|
NSDebugMLLog(@"sessions",@"timeOut_=%ld",(long)timeOut_);
|
|
_sessionTimeOut=[sessionTimeOuts objectForKey:sessionID_];
|
|
NSDebugMLLog(@"sessions",@"_sessionTimeOut=%@",_sessionTimeOut);
|
|
NSDebugMLLog(@"sessions",@"sessionOrderedTimeOuts=%@",sessionOrderedTimeOuts);
|
|
if (_sessionTimeOut)
|
|
{
|
|
[_sessionTimeOut retain];
|
|
[sessionOrderedTimeOuts removeObject:_sessionTimeOut];
|
|
[_sessionTimeOut setLastAccessTime:[NSDate timeIntervalSinceReferenceDate]];
|
|
if (timeOut_!=[_sessionTimeOut sessionTimeOut])
|
|
[_sessionTimeOut setSessionTimeOut:timeOut_];
|
|
[sessionOrderedTimeOuts addObject:_sessionTimeOut];
|
|
[_sessionTimeOut release];
|
|
}
|
|
else
|
|
{
|
|
_sessionTimeOut=[GSWSessionTimeOut timeOutWithSessionID:sessionID_
|
|
lastAccessTime:[NSDate timeIntervalSinceReferenceDate]
|
|
sessionTimeOut:timeOut_];
|
|
[sessionTimeOuts setObject:_sessionTimeOut
|
|
forKey:sessionID_];
|
|
[sessionOrderedTimeOuts addObject:_sessionTimeOut];
|
|
};
|
|
NSDebugMLLog(@"sessions",@"sessionOrderedTimeOuts=%@",sessionOrderedTimeOuts);
|
|
NSDebugMLLog(@"sessions",@"_sessionTimeOut=%@",_sessionTimeOut);
|
|
_timer=[self resetTimer];
|
|
NSDebugMLLog(@"sessions",@"_timer=%@",_timer);
|
|
if (_timer)
|
|
{
|
|
GSWLog(@"lock Target...");
|
|
[target lock];
|
|
NS_DURING
|
|
{
|
|
[self addTimer:_timer];
|
|
}
|
|
NS_HANDLER
|
|
{
|
|
LOGException(@"%@ (%@)",localException,[localException reason]);
|
|
//TODO
|
|
[target unlock];
|
|
[self unlock];
|
|
[localException raise];
|
|
}
|
|
NS_ENDHANDLER;
|
|
|
|
GSWLog(@"unlock Target...");
|
|
[target unlock];
|
|
};
|
|
}
|
|
NS_HANDLER
|
|
{
|
|
LOGException(@"%@ (%@)",localException,[localException reason]);
|
|
//TODO
|
|
[self unlock];
|
|
[localException raise];
|
|
}
|
|
NS_ENDHANDLER;
|
|
[self unlock];
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)handleTimer:(id)timer_
|
|
{
|
|
//OK
|
|
GSWLogCStdOut("Start HandleTimer");
|
|
GSWLogC("Start HandleTimer");
|
|
// LOGObjectFnStart();
|
|
[GSWApp lockRequestHandling];
|
|
NS_DURING
|
|
{
|
|
[self lock];
|
|
NS_DURING
|
|
{
|
|
GSWSessionTimeOut* _sessionTimeOut=nil;
|
|
NSTimeInterval _now=[NSDate timeIntervalSinceReferenceDate];
|
|
NSTimer* _timer=nil;
|
|
int _removedNb=0;
|
|
if ([sessionOrderedTimeOuts count]>0)
|
|
_sessionTimeOut=[sessionOrderedTimeOuts objectAtIndex:0];
|
|
while (/*_removedNb<20 && */_sessionTimeOut && [_sessionTimeOut timeOutTime]<_now)
|
|
{
|
|
id _session=nil;
|
|
[target lock];
|
|
NS_DURING
|
|
{
|
|
_session=[target performSelector:callback
|
|
withObject:[_sessionTimeOut sessionID]];
|
|
NSDebugMLLog(@"sessions",@"_session=%@",_session);
|
|
}
|
|
NS_HANDLER
|
|
{
|
|
LOGException(@"%@ (%@)",localException,[localException reason]);
|
|
//TODO
|
|
[target unlock];
|
|
|
|
_timer=[self resetTimer];
|
|
if (_timer)
|
|
[self addTimer:_timer];
|
|
|
|
[self unlock];
|
|
[GSWApp unlockRequestHandling];
|
|
[localException raise];
|
|
}
|
|
NS_ENDHANDLER;
|
|
[target unlock];
|
|
|
|
if (_session)
|
|
{
|
|
NSDebugMLLog(@"sessions",@"sessionOrderedTimeOuts=%@",sessionOrderedTimeOuts);
|
|
[_session terminate];
|
|
NSDebugMLLog(@"sessions",@"sessionOrderedTimeOuts=%@",sessionOrderedTimeOuts);
|
|
[sessionOrderedTimeOuts removeObjectAtIndex:0];
|
|
NSDebugMLLog(@"sessions",@"sessionOrderedTimeOuts=%@",sessionOrderedTimeOuts);
|
|
_removedNb++;
|
|
if ([sessionOrderedTimeOuts count]>0)
|
|
_sessionTimeOut=[sessionOrderedTimeOuts objectAtIndex:0];
|
|
else
|
|
_sessionTimeOut=nil;
|
|
}
|
|
else
|
|
_sessionTimeOut=nil;
|
|
};
|
|
|
|
_timer=[self resetTimer];
|
|
if (_timer)
|
|
[self addTimer:_timer];
|
|
}
|
|
NS_HANDLER
|
|
{
|
|
LOGException(@"%@ (%@)",localException,[localException reason]);
|
|
//TODO
|
|
[self unlock];
|
|
[GSWApp unlockRequestHandling];
|
|
[localException raise];
|
|
};
|
|
NS_ENDHANDLER;
|
|
NSDebugMLLog(@"sessions",@"sessionOrderedTimeOuts=%@",sessionOrderedTimeOuts);
|
|
[self unlock];
|
|
}
|
|
NS_HANDLER
|
|
{
|
|
LOGException(@"%@ (%@)",localException,[localException reason]);
|
|
//TODO
|
|
[GSWApp unlockRequestHandling];
|
|
[localException raise];
|
|
};
|
|
NS_ENDHANDLER;
|
|
[GSWApp unlockRequestHandling];
|
|
// LOGObjectFnStop();
|
|
GSWLogCStdOut("Stop HandleTimer");
|
|
GSWLogC("Stop HandleTimer");
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(NSTimer*)resetTimer
|
|
{
|
|
NSTimer* _newTimer=nil;
|
|
GSWSessionTimeOut* _sessionTimeOut=nil;
|
|
LOGObjectFnStart();
|
|
// [self lock];
|
|
NS_DURING
|
|
{
|
|
NSTimeInterval _now=[NSDate timeIntervalSinceReferenceDate];
|
|
NSTimeInterval _timerFireTimeInterval=[[timer fireDate]timeIntervalSinceReferenceDate];
|
|
|
|
NSDebugMLLog(@"sessions",@"sessionOrderedTimeOuts=%@",sessionOrderedTimeOuts);
|
|
if ([sessionOrderedTimeOuts count]>0)
|
|
{
|
|
_sessionTimeOut=[sessionOrderedTimeOuts objectAtIndex:0];
|
|
NSDebugMLLog(@"sessions",@"_sessionTimeOut=%@",_sessionTimeOut);
|
|
NSDebugMLLog(@"sessions",@"[timer fireDate]=%@",[timer fireDate]);
|
|
NSDebugMLLog(@"sessions",@"[old timer isValide]=%s",
|
|
[timer isValid] ? "YES" : "NO");
|
|
if (_sessionTimeOut
|
|
&& (![timer isValid]
|
|
|| [_sessionTimeOut timeOutTime]<_timerFireTimeInterval
|
|
|| _timerFireTimeInterval<_now))
|
|
{
|
|
NSTimeInterval _timerTimeInterval=[_sessionTimeOut timeOutTime]-_now;
|
|
NSDebugMLLog(@"sessions",@"_timerTimeInterval=%ld",(long)_timerTimeInterval);
|
|
_timerTimeInterval=max(_timerTimeInterval,10);//20s minimum
|
|
NSDebugMLLog(@"sessions",@"_timerTimeInterval=%ld",(long)_timerTimeInterval);
|
|
_newTimer=[NSTimer timerWithTimeInterval:_timerTimeInterval
|
|
target:self
|
|
selector:@selector(handleTimer:)
|
|
userInfo:nil
|
|
repeats:NO];
|
|
NSDebugMLLog(@"sessions",@"old timer=%@",timer);
|
|
NSDebugMLLog(@"sessions",@"new timer=%@",_newTimer);
|
|
//If timer is a repeat one (anormal) or will be fired in the future
|
|
NSDebugMLLog(@"sessions",@"[old timer fireDate]=%@",
|
|
[timer fireDate]);
|
|
NSDebugMLLog(@"sessions",@"[old timer isValide]=%s",
|
|
[timer isValid] ? "YES" : "NO");
|
|
/*
|
|
if (timer && [[timer fireDate]compare:[NSDate date]]==NSOrderedDescending)
|
|
[timer invalidate];
|
|
*/
|
|
ASSIGN(timer,_newTimer);
|
|
};
|
|
}
|
|
else
|
|
ASSIGN(timer,_newTimer);
|
|
}
|
|
NS_HANDLER
|
|
{
|
|
LOGException(@"%@ (%@)",localException,[localException reason]);
|
|
//TODO
|
|
// [self unlock];
|
|
[localException raise];
|
|
}
|
|
NS_ENDHANDLER;
|
|
// [self unlock];
|
|
LOGObjectFnStop();
|
|
return _newTimer;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)addTimer:(NSTimer*)timer_
|
|
{
|
|
//OK
|
|
LOGObjectFnStart();
|
|
[GSWApp addTimer:timer];
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)removeCallBack
|
|
{
|
|
target=nil;
|
|
callback=NULL;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)setCallBack:(SEL)callback_
|
|
target:(id)target_
|
|
{
|
|
//OK
|
|
target=target_; //Do not retain !
|
|
callback=callback_;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)lock
|
|
{
|
|
LOGObjectFnStart();
|
|
NSDebugMLLog(@"sessions",@"selfLockn=%d",selfLockn);
|
|
TmpLockBeforeDate(selfLock,[NSDate dateWithTimeIntervalSinceNow:GSLOCK_DELAY_S]);
|
|
#ifndef NDEBUG
|
|
selfLockn++;
|
|
#endif
|
|
NSDebugMLLog(@"sessions",@"selfLockn=%d",selfLockn);
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)unlock
|
|
{
|
|
LOGObjectFnStart();
|
|
NSDebugMLLog(@"sessions",@"selfLockn=%d",selfLockn);
|
|
TmpUnlock(selfLock);
|
|
#ifndef NDEBUG
|
|
selfLockn--;
|
|
#endif
|
|
NSDebugMLLog(@"sessions",@"selfLockn=%d",selfLockn);
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
@end
|