2003-11-24 09:57:33 +00:00
|
|
|
/** GSWStaticResourceRequestHandler.m - <title>GSWeb: Class GSWStaticResourceRequestHandler</title>
|
|
|
|
|
|
|
|
Copyright (C) 2003 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
|
|
|
Date: Jul 2003
|
|
|
|
|
|
|
|
$Revision$
|
|
|
|
$Date$
|
|
|
|
$Id$
|
|
|
|
|
|
|
|
This file is part of the GNUstep Web Library.
|
|
|
|
|
|
|
|
<license>
|
|
|
|
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.
|
|
|
|
</license>
|
|
|
|
**/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
RCS_ID("$Id$")
|
|
|
|
|
|
|
|
#include "GSWeb.h"
|
|
|
|
|
|
|
|
//====================================================================
|
|
|
|
@implementation GSWStaticResourceRequestHandler
|
|
|
|
|
|
|
|
-(void)dealloc
|
|
|
|
{
|
|
|
|
DESTROY(_documentRoot);
|
|
|
|
[super dealloc];
|
|
|
|
};
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
-(GSWResponse*)handleRequest:(GSWRequest*)aRequest
|
|
|
|
{
|
|
|
|
GSWResponse* response=nil;
|
|
|
|
NSString* uri=nil;
|
|
|
|
NSFileHandle* resourceFileHandle = nil;
|
|
|
|
unsigned long resourceLength=0;
|
|
|
|
NSString* contentType = nil;
|
|
|
|
uri = [aRequest uri];
|
|
|
|
if ([uri hasPrefix:@"/"])
|
|
|
|
{
|
|
|
|
NSMutableString* resourcePath=nil;
|
|
|
|
GSWResourceManager* rmanager = [[GSWApplication application] resourceManager];
|
|
|
|
NSString* documentRoot = [self _documentRoot];
|
|
|
|
[resourcePath appendString:documentRoot];
|
|
|
|
[resourcePath appendString:uri];
|
2013-02-27 04:27:07 +00:00
|
|
|
NSError *error = nil;
|
|
|
|
|
2003-11-24 09:57:33 +00:00
|
|
|
NS_DURING
|
|
|
|
{
|
2013-02-27 04:27:07 +00:00
|
|
|
NSDictionary* fileAttributes=[[NSFileManager defaultManager] attributesOfItemAtPath:resourcePath
|
|
|
|
error:&error];
|
2003-11-24 09:57:33 +00:00
|
|
|
resourceLength=(unsigned long)[fileAttributes fileSize];
|
|
|
|
|
|
|
|
resourceFileHandle=[NSFileHandle fileHandleForReadingAtPath:resourcePath];
|
|
|
|
contentType = [rmanager contentTypeForResourcePath:resourcePath];
|
|
|
|
}
|
|
|
|
NS_HANDLER
|
|
|
|
{
|
|
|
|
localException=ExceptionByAddingUserInfoObjectFrameInfo0(localException,
|
* GSWeb.framework/GSWUtils.h/m
(IsStyle,IsNumberStyle, ExceptionRaise, ExceptionRaise0,
ValidationExceptionRaise, ValidationExceptionRaise0,
ExceptionByAddingUserInfoObjectFrameInfo,
ExceptionByAddingUserInfoObjectFrameInfo0,
ExceptionByAddingUserInfoFunctionFrameInfo,
ExceptionByAddingUserInfoFunctionFrameInfo0, ): Reformat
defines.
(GSW_LOCK_LIMIT): New define.
(ExceptionRaiseFn, ExceptionRaiseFn0,
ValidationExceptionRaiseFn,
ValidationExceptionRaiseFn0): Reformat declaration.
(TmpLock, TmpTryLockBeforeDate, TmpLockBeforeDate, TmpUnlock):
Remove.
([NSLock isLocked]): Remove.
([NSLock tmplock]): Ditto.
([NSLock tmplockFromFunction:file:line:]): Ditto.
([NSLock tmptryLock]): Ditto.
([NSLock tmptryLockFromFunction:file:line:]): Ditto.
([NSLock tmptryLockBeforeDate:]): Ditto.
([NSLock tmptryLockBeforeDate:fromFunction:file:line:]):
Ditto.
([NSLock tmpunlock]): Ditto.
([NSLock tmpunlockFromFunction:file:line:]): Ditto.
([NSLock description]): Ditto.
([NSRecursiveLock isLocked]): Ditto.
([NSRecursiveLock tmplock]): Ditto.
([NSRecursiveLock tmplockFromFunction:file:line:]): Ditto.
([NSRecursiveLock tmptryLock]): Ditto.
([NSRecursiveLock tmptryLockFromFunction:file:line:]): Ditto.
([NSRecursiveLock tmptryLockBeforeDate:]): Ditto.
([NSRecursiveLock
tmptryLockBeforeDate:fromFunction:file:line:]):
Ditto.
([NSRecursiveLock tmpunlock]): Ditto.
([NSRecursiveLock tmpunlockFromFunction:file:line:]): Ditto.
(NSLockException, MessageForMutexLockError)
(LoggedLock, LoggedLockBeforeDate, LoggedTryLock,
LoggedTryLockBeforeDate, LoggedUnlock): New macros.
(loggedLockBeforeDateFromFunctionInFileInLine,
loggedUnlockFromFunctionInFileInLine): New logging lock
functions.
([NSThread description]): New Category.
(volatileInternalDescription): New static function.
(GSW_LOCK_LIMIT): New marco.
* GSWeb.framework/GSWApplication.m
([GSWApplication isRequestHandlingLocked]): Test lock instead
of relying on obsolete lock categories.
([GSWApplication lockRequestHandling]): Use new locking
macros.
([GSWApplication unlockRequestHandling]): Ditto.
([GSWApplication lock]): Ditto.
([GSWApplication unlock]): Ditto.
* GSWeb.framework/GSWAssociation.m
([GSWAssociation setClasse:forHandler:]): Ditto
([GSWAssociation addLogHandlerClasse:]): Ditto.
([GSWAssociation removeLogHandlerClasse:]): Ditto.
([GSWAssociation logValue:forSet:]): Ditto.
([GSWAssociation
logSynchronizeForValue:inComponent:componentToParent:]):
Ditto.
* GSWeb.framework/GSWBundle.m
([GSWBundle unlock]): Ditto.
([GSWBundle lock]): Ditto.
* GSWeb.framework/GSWDefaultAdaptor.m
([GSWDefaultAdaptor tryLock]): Ditto.
([GSWDefaultAdaptor unlock]): Ditto.
* GSWeb.framework/GSWDeployedBundle.m
([GSWDeployedBundle lock]): Ditto.
([GSWDeployedBundle unlock]): Ditto.
* GSWeb.framework/GSWResourceManager.m
([GSWResourceManager unlock]): Ditto.
([GSWResourceManager lock]): Ditto.
* GSWeb.framework/GSWSessionStore.m
([GSWSessionStore unlock]): Ditto.
([GSWSessionStore tryLock]): Ditto.
([GSWSessionStore lock]): Ditto.
* GSWeb.framework/GSWSessionTimeOutManager.m
([GSWSessionTimeOutManager
tryLockBeforeTimeIntervalSinceNow:]):
Ditto.
([GSWSessionTimeOutManager lockBeforeTimeIntervalSinceNow]):
Ditto.
([GSWSessionTimeOutManager unlock]): Ditto.
* GSWeb.framework/GSWStaticResourceRequestHandler.m
([GSWStaticResourceRequestHandler handleRequest:]): Ditto.
* GSWeb.framework/GSWStatisticsStore.m
([GSWStatisticsStore unlock]): Ditto.
([GSWStatisticsStore lock]): Ditto.
* GSWeb.framework/NSObject+IVarAccess+PerformSel.m:
([NSObject getIVarNamed]): Use GSW_LOCK_LIMIT macro.
Reformat.
([NSObject setIVarNamed:withValue:]): Ditto.
* Makefile.postamble: Remove autom4te.cache on distclean.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18605 72102866-910b-0410-8b05-ffd578937521
2004-02-16 14:37:46 +00:00
|
|
|
@"globalLock loggedlockBeforeDate");
|
2003-11-24 09:57:33 +00:00
|
|
|
[localException raise];
|
|
|
|
}
|
|
|
|
NS_ENDHANDLER;
|
|
|
|
}
|
|
|
|
response = [self _generateResponseForFileHandle:resourceFileHandle
|
|
|
|
length:resourceLength
|
|
|
|
contentType:contentType];
|
|
|
|
[[NSNotificationCenter defaultCenter]postNotificationName:@"DidHandleRequestNotification"
|
|
|
|
object:response];
|
|
|
|
[response _finalizeInContext:nil];
|
|
|
|
return response;
|
|
|
|
};
|
|
|
|
|
|
|
|
-(GSWResponse*)_generateResponseForFileHandle:(NSFileHandle*)fileHandle
|
|
|
|
length:(unsigned long)length
|
|
|
|
contentType:(NSString*)contentType
|
|
|
|
{
|
|
|
|
GSWResponse* response = [[GSWApplication application]createResponseInContext:nil];
|
|
|
|
if (fileHandle)
|
|
|
|
{
|
|
|
|
if(length>0)
|
|
|
|
[response setContentStreamFileHandle:fileHandle
|
|
|
|
bufferSize:4096
|
|
|
|
length:length];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Not found ==> 404
|
|
|
|
[response setStatus:404];
|
|
|
|
}
|
|
|
|
if (contentType)
|
|
|
|
[response setHeader:contentType
|
|
|
|
forKey:GSWHTTPHeader_ContentType];
|
|
|
|
|
|
|
|
[response setHeader:[NSString stringWithFormat:@"%lu",(unsigned long)length]
|
|
|
|
forKey:GSWHTTPHeader_ContentLength];
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
|
|
|
-(NSString*)_documentRoot
|
|
|
|
{
|
|
|
|
if (!_documentRoot)
|
|
|
|
{
|
|
|
|
NSString* configFilePath=[[[GSWApplication application] resourceManager]
|
|
|
|
pathForResourceNamed:@"WebServerConfig.plist"
|
|
|
|
inFramework:nil];
|
|
|
|
if (configFilePath)
|
|
|
|
{
|
|
|
|
NSDictionary* config=[NSDictionary dictionaryWithContentsOfFile:configFilePath];
|
|
|
|
ASSIGN(_documentRoot,[config objectForKey:@"DocumentRoot"]);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
return _documentRoot;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
//====================================================================
|
|
|
|
@implementation GSWStaticResourceRequestHandler (GSWRequestHandlerClassA)
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
|
|
+(id)handler
|
|
|
|
{
|
|
|
|
return [[GSWStaticResourceRequestHandler new] autorelease];
|
|
|
|
};
|
|
|
|
|
|
|
|
@end
|