mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-22 19:21:23 +00:00
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18739 72102866-910b-0410-8b05-ffd578937521
1492 lines
47 KiB
Objective-C
1492 lines
47 KiB
Objective-C
/** GSWContext.m - <title>GSWeb: Class GSWContext</title>
|
|
|
|
Copyright (C) 1999-2003 Free Software Foundation, Inc.
|
|
|
|
Written by: Manuel Guesdon <mguesdon@orange-concept.com>
|
|
Date: Jan 1999
|
|
|
|
$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"
|
|
|
|
static int dontTraceComponentActionURL=0;
|
|
//====================================================================
|
|
@implementation GSWContext
|
|
|
|
//--------------------------------------------------------------------
|
|
// init
|
|
|
|
-(id)init
|
|
{
|
|
//OK
|
|
LOGObjectFnStart();
|
|
if ((self=[super init]))
|
|
{
|
|
[self _initWithContextID:(unsigned int)-1];
|
|
};
|
|
LOGObjectFnStop();
|
|
return self;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)dealloc
|
|
{
|
|
GSWLogAssertGood(self);
|
|
NSDebugFLog(@"Dealloc GSWContext %p. %@",
|
|
(void*)self, GSCurrentThread());
|
|
NSDebugFLog0(@"Release GSWContext senderID");
|
|
DESTROY(_senderID);
|
|
NSDebugFLog0(@"Release GSWContext requestSessionID");
|
|
DESTROY(_requestSessionID);
|
|
NSDebugFLog0(@"Release GSWContext requestContextID");
|
|
DESTROY(_requestContextID);
|
|
NSDebugFLog0(@"Release GSWContext elementID");
|
|
DESTROY(_elementID);
|
|
if (_session)
|
|
{
|
|
NSDebugFLog(@"sessionCount=%u",[_session retainCount]);
|
|
};
|
|
NSDebugFLog0(@"Release GSWContext session");
|
|
DESTROY(_session);
|
|
NSDebugFLog0(@"Release GSWContext request");
|
|
DESTROY(_request);
|
|
NSDebugFLog0(@"Release GSWContext Response");
|
|
DESTROY(_response);
|
|
NSDebugFLog0(@"Release GSWContext pageElement");
|
|
DESTROY(_pageElement);
|
|
NSDebugFLog0(@"Release GSWContext pageComponent");
|
|
DESTROY(_pageComponent);
|
|
NSDebugFLog0(@"Release GSWContext currentComponent");
|
|
DESTROY(_currentComponent);
|
|
NSDebugFLog0(@"Release GSWContext url");
|
|
DESTROY(_url);
|
|
NSDebugFLog0(@"Release GSWContext awakePageComponents");
|
|
DESTROY(_awakePageComponents);
|
|
#ifndef NDEBUG
|
|
DESTROY(_docStructure);
|
|
DESTROY(_docStructureElements);
|
|
#endif
|
|
NSDebugFLog0(@"Release GSWContext userInfo");
|
|
DESTROY(_userInfo);
|
|
DESTROY(_languages);
|
|
NSDebugFLog0(@"Dealloc GSWContext super");
|
|
[super dealloc];
|
|
NSDebugFLog0(@"end Dealloc GSWContext");
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
-(id)initWithRequest:(GSWRequest*)aRequest
|
|
{
|
|
//OK
|
|
LOGObjectFnStart();
|
|
if ((self=[self init]))
|
|
{
|
|
[self _setRequest:aRequest];
|
|
};
|
|
LOGObjectFnStop();
|
|
return self;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
+(GSWContext*)contextWithRequest:(GSWRequest*)aRequest
|
|
{
|
|
//OK
|
|
GSWContext* context=nil;
|
|
LOGObjectFnStart();
|
|
context=[[[self alloc]
|
|
initWithRequest:aRequest]
|
|
autorelease];
|
|
LOGObjectFnStop();
|
|
return context;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(id)copyWithZone:(NSZone*)zone
|
|
{
|
|
GSWContext* clone = [[isa allocWithZone:zone] init];
|
|
if (clone)
|
|
{
|
|
clone->_contextID=_contextID;
|
|
ASSIGNCOPY(clone->_senderID,_senderID);
|
|
ASSIGNCOPY(clone->_requestSessionID,_requestSessionID);
|
|
ASSIGNCOPY(clone->_requestContextID,_requestContextID);
|
|
ASSIGNCOPY(clone->_elementID,_elementID);
|
|
ASSIGN(clone->_session,_session); //TODOV
|
|
ASSIGN(clone->_request,_request); //TODOV
|
|
ASSIGN(clone->_response,_response); //TODOV
|
|
ASSIGN(clone->_pageElement,_pageElement);
|
|
ASSIGN(clone->_pageComponent,_pageComponent);
|
|
ASSIGN(clone->_currentComponent,_currentComponent);
|
|
ASSIGNCOPY(clone->_url,_url);
|
|
if (_awakePageComponents)
|
|
clone->_awakePageComponents=[_awakePageComponents mutableCopy];
|
|
if (_userInfo)
|
|
clone->_userInfo=[_userInfo mutableCopy];
|
|
clone->_urlApplicationNumber=_urlApplicationNumber;
|
|
clone->_isClientComponentRequest=_isClientComponentRequest;
|
|
clone->_distributionEnabled=_distributionEnabled;
|
|
clone->_pageChanged=_pageChanged;
|
|
clone->_pageReplaced=_pageReplaced;
|
|
clone->_generateCompleteURLs=_generateCompleteURLs;
|
|
clone->_isInForm=_isInForm;
|
|
clone->_actionInvoked=_actionInvoked;
|
|
clone->_formSubmitted=_formSubmitted;
|
|
clone->_isMultipleSubmitForm=_isMultipleSubmitForm;
|
|
};
|
|
return clone;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(NSString*)description
|
|
{
|
|
//OK
|
|
NSString* desc=nil;
|
|
dontTraceComponentActionURL++;
|
|
desc= [NSString stringWithFormat:
|
|
@"%s: %p contextID=%@ senderID=%@ elementID=%@ session=%p request=%p response=%p pageElement=%p pageComponent=%p currentComponent=%p url=%@ urlApplicationNumber=%d isClientComponentRequest=%s distributionEnabled=%s pageChanged=%s pageReplaced=%s",
|
|
object_get_class_name(self),
|
|
(void*)self,
|
|
[self contextID],
|
|
[self senderID],
|
|
[self elementID],
|
|
(void*)[self existingSession],
|
|
(void*)[self request],
|
|
(void*)[self response],
|
|
(void*)_pageElement,
|
|
(void*)_pageComponent,
|
|
(void*)_currentComponent,
|
|
_url,
|
|
_urlApplicationNumber,
|
|
_isClientComponentRequest ? "YES" : "NO",
|
|
_distributionEnabled ? "YES" : "NO",
|
|
_pageChanged ? "YES" : "NO",
|
|
_pageReplaced ? "YES" : "NO"];
|
|
dontTraceComponentActionURL--;
|
|
return desc;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(BOOL)_isRefusingThisRequest
|
|
{
|
|
return _isRefusingThisRequest;
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setIsRefusingThisRequest:(BOOL)yn
|
|
{
|
|
_isRefusingThisRequest = yn;
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)setInForm:(BOOL)flag
|
|
{
|
|
_isInForm=flag;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(BOOL)isInForm
|
|
{
|
|
return _isInForm;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
// elementID
|
|
-(GSWElementIDString*)elementID
|
|
{
|
|
return _elementID;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
// returns contextID.ElementID
|
|
-(NSString*)contextAndElementID
|
|
{
|
|
return [NSString stringWithFormat:@"%u.%@",
|
|
_contextID,
|
|
_elementID];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWComponent*)component
|
|
{
|
|
return _currentComponent;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(NSString*)contextID
|
|
{
|
|
//OK
|
|
if (_contextID==(unsigned int)-1)
|
|
return nil;
|
|
else
|
|
return [NSString stringWithFormat:@"%u",_contextID];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWComponent*)page
|
|
{
|
|
if ([_pageComponent _isPage])
|
|
return _pageComponent;
|
|
else
|
|
return nil;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWRequest*)request
|
|
{
|
|
return _request;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWResponse*)response
|
|
{
|
|
return _response;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(BOOL)hasSession
|
|
{
|
|
return (_session!=nil);
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWSession*)_session
|
|
{
|
|
return _session;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWSession*)session
|
|
{
|
|
LOGObjectFnStart();
|
|
|
|
if (!_session)
|
|
{
|
|
NSDebugMLog(@"_requestSessionID=%@",_requestSessionID);
|
|
if (_requestSessionID)
|
|
[GSWApp restoreSessionWithID:_requestSessionID
|
|
inContext:self];//Application call context _setSession
|
|
};
|
|
if (!_session)
|
|
[GSWApp _initializeSessionInContext:self]; //Application call context _setSession
|
|
|
|
NSAssert(_session,@"Unable to create new session");
|
|
|
|
LOGObjectFnStop();
|
|
return _session;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(NSString*)senderID
|
|
{
|
|
return _senderID;
|
|
};
|
|
|
|
#ifndef NDEBUG
|
|
-(void)incrementLoopLevel //ForDebugging purpose: each repetition increment and next decrement it
|
|
{
|
|
_loopLevel++;
|
|
};
|
|
-(void)decrementLoopLevel
|
|
{
|
|
_loopLevel--;
|
|
};
|
|
|
|
-(BOOL)isInLoop
|
|
{
|
|
return _loopLevel>0;
|
|
};
|
|
|
|
-(void)addToDocStructureElement:(id)element
|
|
{
|
|
if(GSDebugSet(@"GSWDocStructure"))
|
|
{
|
|
NSString* string=nil;
|
|
int elementIDNb=[[self elementID] elementsNb];
|
|
NSMutableData* data=[NSMutableData dataWithCapacity:elementIDNb+1];
|
|
char* ptab=(char*)[data bytes];
|
|
if (!_docStructure)
|
|
_docStructure=[NSMutableString new];
|
|
if (!_docStructureElements)
|
|
_docStructureElements=[NSMutableSet new];
|
|
memset(ptab,'\t',elementIDNb);
|
|
ptab[elementIDNb]='\0';
|
|
string=[NSString stringWithFormat:@"%s %@ Element %p Class %@ defName=%@\n",
|
|
ptab,
|
|
[self elementID],
|
|
element,
|
|
[element class],
|
|
[element definitionName]];
|
|
if (![_docStructureElements containsObject:string])
|
|
{
|
|
[_docStructure appendString:string];
|
|
[_docStructureElements addObject:string];
|
|
};
|
|
};
|
|
}
|
|
|
|
-(void)addDocStructureStep:(NSString*)stepLabel
|
|
{
|
|
if(GSDebugSet(@"GSWDocStructure"))
|
|
{
|
|
if (!_docStructure)
|
|
_docStructure=[NSMutableString new];
|
|
[_docStructureElements removeAllObjects];
|
|
[_docStructure appendFormat:@"===== %@ =====\n",stepLabel];
|
|
};
|
|
}
|
|
|
|
-(NSString*)docStructure
|
|
{
|
|
if(GSDebugSet(@"GSWDocStructure"))
|
|
return _docStructure;
|
|
else
|
|
return nil;
|
|
}
|
|
#endif
|
|
|
|
@end
|
|
|
|
//====================================================================
|
|
@implementation GSWContext (GSWURLGeneration)
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWDynamicURLString*)directActionURLForActionNamed:(NSString*)actionName
|
|
urlPrefix:(NSString*)urlPrefix
|
|
queryDictionary:(NSDictionary*)queryDictionary
|
|
{
|
|
GSWDynamicURLString* url=nil;
|
|
LOGObjectFnStart();
|
|
url=[self directActionURLForActionNamed:actionName
|
|
urlPrefix:urlPrefix
|
|
queryDictionary:queryDictionary
|
|
isSecure:NO];
|
|
LOGObjectFnStop();
|
|
return url;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWDynamicURLString*)directActionURLForActionNamed:(NSString*)actionName
|
|
queryDictionary:(NSDictionary*)queryDictionary
|
|
{
|
|
return [self directActionURLForActionNamed:actionName
|
|
urlPrefix:nil
|
|
queryDictionary:queryDictionary];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWDynamicURLString*)directActionURLForActionNamed:(NSString*)actionName
|
|
urlPrefix:(NSString*)urlPrefix
|
|
queryDictionary:(NSDictionary*)queryDictionary
|
|
pathQueryDictionary:(NSDictionary*)pathQueryDictionary
|
|
{
|
|
GSWDynamicURLString* url=nil;
|
|
LOGObjectFnStart();
|
|
url=[self directActionURLForActionNamed:actionName
|
|
urlPrefix:urlPrefix
|
|
queryDictionary:queryDictionary
|
|
pathQueryDictionary:pathQueryDictionary];
|
|
LOGObjectFnStop();
|
|
return url;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWDynamicURLString*)directActionURLForActionNamed:(NSString*)actionName
|
|
queryDictionary:(NSDictionary*)queryDictionary
|
|
pathQueryDictionary:(NSDictionary*)pathQueryDictionary
|
|
{
|
|
return [self directActionURLForActionNamed:actionName
|
|
urlPrefix:nil
|
|
queryDictionary:queryDictionary
|
|
pathQueryDictionary:pathQueryDictionary];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWDynamicURLString*)directActionURLForActionNamed:(NSString*)actionName
|
|
urlPrefix:(NSString*)urlPrefix
|
|
queryDictionary:(NSDictionary*)queryDictionary
|
|
isSecure:(BOOL)isSecure
|
|
{
|
|
GSWDynamicURLString* url=nil;
|
|
LOGObjectFnStart();
|
|
url=[self directActionURLForActionNamed:actionName
|
|
urlPrefix:urlPrefix
|
|
queryDictionary:queryDictionary
|
|
pathQueryDictionary:nil
|
|
isSecure:NO];
|
|
LOGObjectFnStop();
|
|
return url;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWDynamicURLString*)directActionURLForActionNamed:(NSString*)actionName
|
|
queryDictionary:(NSDictionary*)queryDictionary
|
|
isSecure:(BOOL)isSecure
|
|
{
|
|
return [self directActionURLForActionNamed:actionName
|
|
urlPrefix:nil
|
|
queryDictionary:queryDictionary
|
|
isSecure:isSecure];
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWDynamicURLString*)directActionURLForActionNamed:(NSString*)actionName
|
|
urlPrefix:(NSString*)urlPrefix
|
|
queryDictionary:(NSDictionary*)queryDictionary
|
|
pathQueryDictionary:(NSDictionary*)pathQueryDictionary
|
|
isSecure:(BOOL)isSecure
|
|
{
|
|
GSWDynamicURLString* url=nil;
|
|
LOGObjectFnStart();
|
|
url=[self _directActionURLForActionNamed:actionName
|
|
urlPrefix:(NSString*)urlPrefix
|
|
queryDictionary:queryDictionary
|
|
pathQueryDictionary:pathQueryDictionary
|
|
isSecure:isSecure
|
|
url:url];
|
|
NSDebugMLog(@"url=%@",url);
|
|
LOGObjectFnStop();
|
|
return url;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWDynamicURLString*)directActionURLForActionNamed:(NSString*)actionName
|
|
queryDictionary:(NSDictionary*)queryDictionary
|
|
pathQueryDictionary:(NSDictionary*)pathQueryDictionary
|
|
isSecure:(BOOL)isSecure
|
|
{
|
|
return [self directActionURLForActionNamed:actionName
|
|
urlPrefix:nil
|
|
queryDictionary:queryDictionary
|
|
pathQueryDictionary:pathQueryDictionary
|
|
isSecure:isSecure];
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWDynamicURLString*)componentActionURL
|
|
{
|
|
GSWDynamicURLString* url=nil;
|
|
LOGObjectFnStartCond(dontTraceComponentActionURL==0);
|
|
url=[self componentActionURLIsSecure:NO];
|
|
LOGObjectFnStopCond(dontTraceComponentActionURL==0);
|
|
return url;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWDynamicURLString*)componentActionURLIsSecure:(BOOL)isSecure
|
|
{
|
|
//TODO: use isSecure
|
|
BOOL storesIDsInURLs=NO;
|
|
GSWDynamicURLString* url=nil;
|
|
GSWSession* session=nil;
|
|
NSString* elementID=nil;
|
|
NSString* componentRequestHandlerKey=nil;
|
|
NSString* requestHandlerKey=nil;
|
|
NSString* requestHandlerPath=nil;
|
|
LOGObjectFnStartCond(dontTraceComponentActionURL==0);
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"contextID=%u",_contextID);
|
|
/*
|
|
url=[[url copy] autorelease];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"url=%@",url);
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"urlApplicationNumber=%d",_urlApplicationNumber);
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"[url urlApplicationNumber]=%d",[url urlApplicationNumber]);
|
|
session=[self session]; //OK
|
|
NSDebugMLLogCond(dontTraceComponentActionURL==0,@"sessions",@"session=%@",session);
|
|
NSDebugMLLogCond(dontTraceComponentActionURL==0,@"sessions",@"sessionID=%@",[session sessionID]);
|
|
elementID=[self elementID];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"elementID=%@",elementID);
|
|
componentRequestHandlerKey=[GSWApplication componentRequestHandlerKey];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"componentRequestHandlerKey=%@",componentRequestHandlerKey);
|
|
[url setURLRequestHandlerKey:componentRequestHandlerKey];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"url=%@",url);
|
|
//call application pageCacheSize
|
|
storesIDsInURLs=[session storesIDsInURLs];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"storesIDsInURLs=%s",(storesIDsInURLs ? "YES" : "NO"));
|
|
if (storesIDsInURLs)
|
|
{
|
|
NSString* sessionID=[session sessionID];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"sessionID=%@",sessionID);
|
|
[url setURLRequestHandlerPath:[NSString stringWithFormat:@"%@/%u.%@",
|
|
sessionID,
|
|
contextID,
|
|
elementID]];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"url=%@",url);
|
|
}
|
|
else
|
|
{
|
|
[url setURLRequestHandlerPath:[NSString stringWithFormat:@"/%u.%@", //??
|
|
_contextID,
|
|
elementID]];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"url=%@",url);
|
|
};
|
|
[url setURLQueryString:nil]; //???
|
|
*/
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"urlApplicationNumber=%d",_urlApplicationNumber);
|
|
session=[self session]; //OK
|
|
NSDebugMLLogCond(dontTraceComponentActionURL==0,@"sessions",@"session=%@",session);
|
|
NSDebugMLLogCond(dontTraceComponentActionURL==0,@"sessions",@"sessionID=%@",[session sessionID]);
|
|
elementID=[self elementID];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"elementID=%@",elementID);
|
|
componentRequestHandlerKey=[GSWApplication componentRequestHandlerKey];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"componentRequestHandlerKey=%@",componentRequestHandlerKey);
|
|
|
|
requestHandlerKey=componentRequestHandlerKey;
|
|
storesIDsInURLs=[session storesIDsInURLs];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"storesIDsInURLs=%s",(storesIDsInURLs ? "YES" : "NO"));
|
|
if (storesIDsInURLs)
|
|
{
|
|
NSString* sessionID=[_session sessionID];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"sessionID=%@",sessionID);
|
|
requestHandlerPath=[NSString stringWithFormat:@"%@/%u.%@",
|
|
sessionID,
|
|
_contextID,
|
|
elementID];
|
|
}
|
|
else
|
|
requestHandlerPath=[NSString stringWithFormat:@"/%u.%@", //??
|
|
_contextID,
|
|
elementID];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"requestHandlerPath=%@",requestHandlerPath);
|
|
url=[self urlWithRequestHandlerKey:requestHandlerKey
|
|
path:requestHandlerPath
|
|
queryString:nil];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,@"url=%@",url);
|
|
LOGObjectFnStopCond(dontTraceComponentActionURL==0);
|
|
return url;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWDynamicURLString*)urlWithURLPrefix:(NSString*)urlPrefix
|
|
requestHandlerKey:(NSString*)requestHandlerKey
|
|
path:(NSString*)requestHandlerPath
|
|
queryString:(NSString*)queryString
|
|
isSecure:(BOOL)isSecure
|
|
port:(int)port
|
|
{
|
|
GSWDynamicURLString* url=nil;
|
|
GSWRequest* request=[self request];
|
|
LOGObjectFnStartCond(dontTraceComponentActionURL==0);
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,
|
|
@"generateCompleteURLs=%s",
|
|
(_generateCompleteURLs ? "YES" : "NO"));
|
|
|
|
// Try to avoid complete URLs
|
|
if (_generateCompleteURLs
|
|
|| (isSecure!=[request isSecure])
|
|
|| (port!=0 && port!=[request urlPort]))
|
|
url=[self completeURLWithURLPrefix:urlPrefix
|
|
requestHandlerKey:requestHandlerKey
|
|
path:requestHandlerPath
|
|
queryString:queryString
|
|
isSecure:isSecure
|
|
port:port];
|
|
else
|
|
url=[request _urlWithURLPrefix:urlPrefix
|
|
requestHandlerKey:requestHandlerKey
|
|
path:requestHandlerPath
|
|
queryString:queryString];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,
|
|
@"url=%@",url);
|
|
LOGObjectFnStopCond(dontTraceComponentActionURL==0);
|
|
return url;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWDynamicURLString*)urlWithRequestHandlerKey:(NSString*)requestHandlerKey
|
|
path:(NSString*)requestHandlerPath
|
|
queryString:(NSString*)queryString
|
|
isSecure:(BOOL)isSecure
|
|
port:(int)port
|
|
{
|
|
return [self urlWithURLPrefix:nil
|
|
requestHandlerKey:requestHandlerKey
|
|
path:requestHandlerPath
|
|
queryString:queryString
|
|
isSecure:isSecure
|
|
port:port];
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWDynamicURLString*)urlWithURLPrefix:(NSString*)urlPrefix
|
|
RequestHandlerKey:(NSString*)requestHandlerKey
|
|
path:(NSString*)requestHandlerPath
|
|
queryString:(NSString*)queryString
|
|
{
|
|
GSWDynamicURLString* url=nil;
|
|
GSWRequest* request=[self request];
|
|
LOGObjectFnStartCond(dontTraceComponentActionURL==0);
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,
|
|
@"generateCompleteURLs=%s",
|
|
(_generateCompleteURLs ? "YES" : "NO"));
|
|
if (_generateCompleteURLs)
|
|
url=[self completeURLWithRequestHandlerKey:requestHandlerKey
|
|
path:requestHandlerPath
|
|
queryString:queryString];
|
|
else
|
|
url=[request _urlWithRequestHandlerKey:requestHandlerKey
|
|
path:requestHandlerPath
|
|
queryString:queryString];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,
|
|
@"url=%@",url);
|
|
LOGObjectFnStopCond(dontTraceComponentActionURL==0);
|
|
return url;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWDynamicURLString*)urlWithRequestHandlerKey:(NSString*)requestHandlerKey
|
|
path:(NSString*)requestHandlerPath
|
|
queryString:(NSString*)queryString
|
|
{
|
|
return [self urlWithURLPrefix:nil
|
|
RequestHandlerKey:requestHandlerKey
|
|
path:requestHandlerPath
|
|
queryString:queryString];
|
|
};
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
//NDFN
|
|
-(GSWDynamicURLString*)completeURLWithURLPrefix:(NSString*)urlPrefix
|
|
requestHandlerKey:(NSString*)requestHandlerKey
|
|
path:(NSString*)requestHandlerPath
|
|
queryString:(NSString*)queryString
|
|
{
|
|
GSWRequest* request=nil;
|
|
request=[self request];
|
|
return [self completeURLWithURLPrefix:urlPrefix
|
|
requestHandlerKey:requestHandlerKey
|
|
path:requestHandlerPath
|
|
queryString:queryString
|
|
isSecure:[request isSecure]
|
|
port:[request urlPort]];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
//NDFN
|
|
-(GSWDynamicURLString*)completeURLWithRequestHandlerKey:(NSString*)requestHandlerKey
|
|
path:(NSString*)requestHandlerPath
|
|
queryString:(NSString*)queryString
|
|
{
|
|
return [self completeURLWithURLPrefix:nil
|
|
requestHandlerKey:requestHandlerKey
|
|
path:requestHandlerPath
|
|
queryString:queryString];
|
|
};
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWDynamicURLString*)completeURLWithURLPrefix:(NSString*)urlPrefix
|
|
requestHandlerKey:(NSString*)requestHandlerKey
|
|
path:(NSString*)requestHandlerPath
|
|
queryString:(NSString*)queryString
|
|
isSecure:(BOOL)isSecure
|
|
port:(int)port
|
|
{
|
|
NSString* host=nil;
|
|
GSWDynamicURLString* url=nil;
|
|
GSWRequest* request=nil;
|
|
LOGObjectFnStart();
|
|
request=[self request];
|
|
url=[_request _urlWithRequestHandlerKey:requestHandlerKey
|
|
path:requestHandlerPath
|
|
queryString:queryString];
|
|
NSDebugMLLog(@"low",@"url=%@",url);
|
|
if (isSecure)
|
|
[url setURLProtocol:GSWProtocol_HTTPS];
|
|
else
|
|
[url setURLProtocol:GSWProtocol_HTTP];
|
|
|
|
if (port)
|
|
[url setURLPort:port];
|
|
NSDebugMLLog(@"low",@"url=%@",url);
|
|
host=[request urlHost];
|
|
NSAssert1(host,@"No host in request %@",request);
|
|
NSDebugMLLog(@"low",@"host=%@",host);
|
|
[url setURLHost:host];
|
|
NSDebugMLLog(@"low",@"url=%@",url);
|
|
LOGObjectFnStop();
|
|
return url;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWDynamicURLString*)completeURLWithRequestHandlerKey:(NSString*)requestHandlerKey
|
|
path:(NSString*)requestHandlerPath
|
|
queryString:(NSString*)queryString
|
|
isSecure:(BOOL)isSecure
|
|
port:(int)port
|
|
{
|
|
return [self completeURLWithURLPrefix:nil
|
|
requestHandlerKey:requestHandlerKey
|
|
path:requestHandlerPath
|
|
queryString:queryString
|
|
isSecure:isSecure
|
|
port:port];
|
|
};
|
|
@end
|
|
|
|
//====================================================================
|
|
@implementation GSWContext (GSWContextA)
|
|
|
|
//--------------------------------------------------------------------
|
|
-(id)_initWithContextID:(unsigned int)contextID
|
|
{
|
|
LOGObjectFnStart();
|
|
NSDebugMLLog(@"low",@"contextID=%u",contextID);
|
|
_contextID=contextID;
|
|
DESTROY(_url);
|
|
_url=[GSWDynamicURLString new];
|
|
DESTROY(_awakePageComponents);
|
|
_awakePageComponents=[NSMutableArray new];
|
|
_urlApplicationNumber=-1;
|
|
LOGObjectFnStop();
|
|
return self;
|
|
};
|
|
|
|
@end
|
|
|
|
//====================================================================
|
|
@implementation GSWContext (GSWContextB)
|
|
|
|
//--------------------------------------------------------------------
|
|
-(BOOL)_isMultipleSubmitForm
|
|
{
|
|
return _isMultipleSubmitForm;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setIsMultipleSubmitForm:(BOOL)flag
|
|
{
|
|
_isMultipleSubmitForm=flag;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(BOOL)_wasActionInvoked
|
|
{
|
|
return _actionInvoked;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setActionInvoked:(BOOL)flag
|
|
{
|
|
NSDebugMLLog(@"gswdync",@"Set Action invoked:%d",flag);
|
|
_actionInvoked=flag;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(BOOL)_wasFormSubmitted
|
|
{
|
|
return _formSubmitted;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setFormSubmitted:(BOOL)flag
|
|
{
|
|
_formSubmitted=flag;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_putAwakeComponentsToSleep
|
|
{
|
|
int i=0;
|
|
GSWComponent* component=nil;
|
|
LOGObjectFnStart();
|
|
NSDebugMLLog(@"low",@"awakePageComponents=%@",_awakePageComponents);
|
|
for(i=0;i<[_awakePageComponents count];i++)
|
|
{
|
|
component=[_awakePageComponents objectAtIndex:i];
|
|
[component sleepInContext:self];
|
|
};
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(BOOL)_generateCompleteURLs
|
|
{
|
|
BOOL previousState=_generateCompleteURLs;
|
|
_generateCompleteURLs=YES;
|
|
return previousState;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(BOOL)_generateRelativeURLs
|
|
{
|
|
BOOL previousState=!_generateCompleteURLs;
|
|
_generateCompleteURLs=NO;
|
|
return previousState;
|
|
};
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
//_url is a semi complete one: line /cgi/WebObjects.exe/ObjCTest3.woa
|
|
-(GSWDynamicURLString*)_directActionURLForActionNamed:(NSString*)actionName
|
|
urlPrefix:(NSString*)urlPrefix
|
|
queryDictionary:(NSDictionary*)dict
|
|
url:(id)anURL
|
|
{
|
|
LOGObjectFnStart();
|
|
anURL=[self _directActionURLForActionNamed:actionName
|
|
urlPrefix:urlPrefix
|
|
queryDictionary:dict
|
|
pathQueryDictionary:nil
|
|
url:anURL];
|
|
LOGObjectFnStop();
|
|
return anURL;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
//_url is a semi complete one: line /cgi/WebObjects.exe/ObjCTest3.woa
|
|
-(GSWDynamicURLString*)_directActionURLForActionNamed:(NSString*)actionName
|
|
queryDictionary:(NSDictionary*)dict
|
|
url:(id)anURL
|
|
{
|
|
return [self _directActionURLForActionNamed:actionName
|
|
urlPrefix:nil
|
|
queryDictionary:dict
|
|
url:anURL];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
//_url is a semi complete one: line /cgi/WebObjects.exe/ObjCTest3.woa
|
|
-(GSWDynamicURLString*)_directActionURLForActionNamed:(NSString*)actionName
|
|
urlPrefix:(NSString*)urlPrefix
|
|
queryDictionary:(NSDictionary*)dict
|
|
pathQueryDictionary:(NSDictionary*)pathQueryDictionary
|
|
url:(id)anURL
|
|
{
|
|
LOGObjectFnStart();
|
|
anURL=[self _directActionURLForActionNamed:actionName
|
|
urlPrefix:urlPrefix
|
|
queryDictionary:dict
|
|
pathQueryDictionary:pathQueryDictionary
|
|
isSecure:NO
|
|
url:anURL];
|
|
LOGObjectFnStop();
|
|
return anURL;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
//_url is a semi complete one: line /cgi/WebObjects.exe/ObjCTest3.woa
|
|
-(GSWDynamicURLString*)_directActionURLForActionNamed:(NSString*)actionName
|
|
queryDictionary:(NSDictionary*)dict
|
|
pathQueryDictionary:(NSDictionary*)pathQueryDictionary
|
|
url:(id)anURL
|
|
{
|
|
return [self _directActionURLForActionNamed:actionName
|
|
urlPrefix:nil
|
|
queryDictionary:dict
|
|
pathQueryDictionary:pathQueryDictionary
|
|
url:anURL];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
//_url is a semi complete one: line /cgi/WebObjects.exe/ObjCTest3.woa
|
|
-(GSWDynamicURLString*)_directActionURLForActionNamed:(NSString*)actionName
|
|
urlPrefix:(NSString*)urlPrefix
|
|
queryDictionary:(NSDictionary*)dict
|
|
isSecure:(BOOL)isSecure
|
|
url:(id)anURL
|
|
{
|
|
LOGObjectFnStart();
|
|
anURL=[self _directActionURLForActionNamed:actionName
|
|
urlPrefix:urlPrefix
|
|
queryDictionary:dict
|
|
pathQueryDictionary:nil
|
|
isSecure:isSecure
|
|
url:anURL];
|
|
LOGObjectFnStop();
|
|
return anURL;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
//_url is a semi complete one: line /cgi/WebObjects.exe/ObjCTest3.woa
|
|
-(GSWDynamicURLString*)_directActionURLForActionNamed:(NSString*)actionName
|
|
queryDictionary:(NSDictionary*)dict
|
|
isSecure:(BOOL)isSecure
|
|
url:(id)anURL
|
|
{
|
|
return [self _directActionURLForActionNamed:actionName
|
|
urlPrefix:nil
|
|
queryDictionary:dict
|
|
isSecure:isSecure
|
|
url:anURL];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
//_url is a semi complete one: line /cgi/WebObjects.exe/ObjCTest3.woa
|
|
-(GSWDynamicURLString*)_directActionURLForActionNamed:(NSString*)actionName
|
|
urlPrefix:(NSString*)urlPrefix
|
|
queryDictionary:(NSDictionary*)dict
|
|
pathQueryDictionary:(NSDictionary*)pathQueryDictionary
|
|
isSecure:(BOOL)isSecure
|
|
url:(id)anURL
|
|
{
|
|
//OK
|
|
NSString* queryString=nil;
|
|
NSEnumerator* enumerator =nil;
|
|
id key=nil;
|
|
NSString* path=nil;
|
|
LOGObjectFnStart();
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,
|
|
@"anURL=%@",anURL);
|
|
NSDebugMLog(@"dict=%@",dict);
|
|
NSDebugMLog(@"pathQueryDictionary=%@",pathQueryDictionary);
|
|
|
|
// _url=[[_url copy] autorelease];
|
|
//TODOV
|
|
enumerator = [dict keyEnumerator];
|
|
while ((key = [enumerator nextObject]))
|
|
{
|
|
if (!queryString)
|
|
queryString=[[NSString new] autorelease];
|
|
else
|
|
queryString=[queryString stringByAppendingString:@"&"];
|
|
queryString=[queryString stringByAppendingFormat:@"%@=%@",
|
|
key,
|
|
[dict objectForKey:key]];
|
|
};
|
|
/*
|
|
[anURL setURLRequestHandlerKey:GSWDirectActionRequestHandlerKey[GSWebNamingConv]];
|
|
[anURL setURLRequestHandlerPath:actionName];
|
|
[anURL setURLQueryString:queryString];
|
|
*/
|
|
|
|
/* anURL=[self completeURLWithRequestHandlerKey:GSWDirectActionRequestHandlerKey[GSWebNamingConv]
|
|
path:actionName
|
|
queryString:queryString
|
|
isSecure:isSecure
|
|
port:0];
|
|
*/
|
|
path=actionName;
|
|
if ([pathQueryDictionary count]>0)
|
|
{
|
|
// We sort keys so URL are always the same for same parameters
|
|
NSArray* keys=[[pathQueryDictionary allKeys]sortedArrayUsingSelector:@selector(compare:)];
|
|
int count=[keys count];
|
|
int i=0;
|
|
NSDebugMLLog(@"gswdync",@"pathQueryDictionary=%@",pathQueryDictionary);
|
|
for(i=0;i<count;i++)
|
|
{
|
|
id key = [keys objectAtIndex:i];
|
|
id value = [pathQueryDictionary valueForKey:key];
|
|
NSDebugMLLog(@"gswdync",@"key=%@",key);
|
|
NSDebugMLLog(@"gswdync",@"value=%@",value);
|
|
if (!value)
|
|
value=[NSString string];
|
|
path=[path stringByAppendingFormat:@"/%@=%@",
|
|
key,
|
|
value];
|
|
};
|
|
};
|
|
if (urlPrefix)
|
|
anURL=[self urlWithURLPrefix:urlPrefix
|
|
requestHandlerKey:GSWDirectActionRequestHandlerKey[GSWebNamingConv]
|
|
path:path
|
|
queryString:queryString
|
|
isSecure:isSecure
|
|
port:0];
|
|
else
|
|
anURL=[self urlWithRequestHandlerKey:GSWDirectActionRequestHandlerKey[GSWebNamingConv]
|
|
path:path
|
|
queryString:queryString
|
|
isSecure:isSecure
|
|
port:0];
|
|
NSDebugMLogCond(dontTraceComponentActionURL==0,
|
|
@"url=%@",anURL);
|
|
LOGObjectFnStop();
|
|
return anURL;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
//_url is a semi complete one: line /cgi/WebObjects.exe/ObjCTest3.woa
|
|
-(GSWDynamicURLString*)_directActionURLForActionNamed:(NSString*)actionName
|
|
queryDictionary:(NSDictionary*)dict
|
|
pathQueryDictionary:(NSDictionary*)pathQueryDictionary
|
|
isSecure:(BOOL)isSecure
|
|
url:(id)anURL
|
|
{
|
|
return [self _directActionURLForActionNamed:actionName
|
|
urlPrefix:nil
|
|
queryDictionary:dict
|
|
pathQueryDictionary:pathQueryDictionary
|
|
isSecure:isSecure
|
|
url:anURL];
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
/** Returns array of languages
|
|
First try session languages, if none, try self language
|
|
If none, try request languages
|
|
**/
|
|
-(NSArray*)languages
|
|
{
|
|
NSArray* languages=nil;
|
|
|
|
LOGObjectFnStart();
|
|
|
|
languages=[_session languages];
|
|
NSDebugMLog(@"_session %p languages=%@",_session,languages);
|
|
|
|
if ([languages count]==0)
|
|
{
|
|
languages=_languages;
|
|
NSDebugMLog(@"context %p languages=%@",self,languages);
|
|
|
|
if ([languages count]==0)
|
|
{
|
|
languages=[[self request]browserLanguages];
|
|
NSDebugMLog(@"resquest %p browserLanguages=%@",[self request],languages);
|
|
}
|
|
};
|
|
|
|
NSDebugMLog(@"context %p ==> languages=%@",self,languages);
|
|
|
|
//GSWeb specific: It enable application languages filtering
|
|
languages=[GSWApp filterLanguages:languages];
|
|
NSDebugMLog(@"context %p ==> filtered languages=%@",self,languages);
|
|
|
|
LOGObjectFnStop();
|
|
|
|
return languages;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setLanguages:(NSArray*)languages
|
|
{
|
|
LOGObjectFnStart();
|
|
|
|
NSDebugMLog(@"languages=%@",languages);
|
|
|
|
ASSIGNCOPY(_languages,languages);
|
|
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWComponent*)_pageComponent
|
|
{
|
|
return _pageComponent;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWElement*)_pageElement
|
|
{
|
|
return _pageElement;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setPageElement:(GSWElement*)element
|
|
{
|
|
LOGObjectFnStart();
|
|
if (_pageElement!=element)
|
|
{
|
|
ASSIGN(_pageElement,element);
|
|
|
|
[self _setPageComponent:nil];
|
|
|
|
if ([element isKindOfClass:[GSWComponent class]])
|
|
[self _setPageComponent:(GSWComponent*)element];
|
|
};
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setPageComponent:(GSWComponent*)component
|
|
{
|
|
LOGObjectFnStart();
|
|
ASSIGN(_pageComponent,component);
|
|
if (component)
|
|
[self _takeAwakeComponent:component];
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setResponse:(GSWResponse*)aResponse
|
|
{
|
|
//OK
|
|
LOGObjectFnStart();
|
|
ASSIGN(_response,aResponse);
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setRequest:(GSWRequest*)aRequest
|
|
{
|
|
//OK
|
|
NSString* adaptorPrefix=nil;
|
|
NSString* applicationName=nil;
|
|
|
|
LOGObjectFnStart();
|
|
|
|
if (_request!=aRequest)
|
|
{
|
|
NSDebugMLLog(@"low",@"aRequest=%@",aRequest);
|
|
ASSIGN(_request,aRequest);
|
|
|
|
[_request _setContext:self];
|
|
|
|
NSDebugMLLog(@"low",@"url=%@",_url);
|
|
|
|
adaptorPrefix=[aRequest adaptorPrefix];
|
|
NSDebugMLLog(@"low",@"adaptorPrefix=%@",adaptorPrefix);
|
|
[_url setURLPrefix:adaptorPrefix];
|
|
|
|
NSDebugMLLog(@"low",@"url=%@",_url);
|
|
|
|
applicationName=[aRequest applicationName];
|
|
NSDebugMLLog(@"low",@"applicationName=%@",applicationName);
|
|
[_url setURLApplicationName:applicationName];
|
|
|
|
NSDebugMLLog(@"low",@"url=%@",_url);
|
|
|
|
[self _synchronizeForDistribution];
|
|
};
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setSession:(GSWSession*)aSession
|
|
{
|
|
//OK
|
|
LOGObjectFnStart();
|
|
NSDebugMLLog(@"sessions",@"aSession ID:%@",[aSession sessionID]);
|
|
if (_session!=aSession)
|
|
{
|
|
ASSIGN(_session,aSession);
|
|
[self _synchronizeForDistribution];
|
|
};
|
|
if (_session)
|
|
{
|
|
NSDebugMLLog(@"low",@"contextID=%u",_contextID);
|
|
_contextID=[_session _contextCounter];
|
|
NSDebugMLLog(@"low",@"contextID=%u",_contextID);
|
|
};
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setSenderID:(NSString*)aSenderID
|
|
{
|
|
LOGObjectFnStart();
|
|
ASSIGNCOPY(_senderID,aSenderID);
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_synchronizeForDistribution
|
|
{
|
|
int instance=-1;
|
|
NSString* sessionID=nil;
|
|
BOOL storesIDsInURLs=NO;
|
|
BOOL isDistributionEnabled=NO;
|
|
|
|
LOGObjectFnStart();
|
|
|
|
storesIDsInURLs=[_session storesIDsInURLs];
|
|
isDistributionEnabled=[_session isDistributionEnabled];
|
|
|
|
NSDebugMLog(@"storesIDsInURLs=%d",storesIDsInURLs);
|
|
NSDebugMLog(@"isDistributionEnabled=%d",isDistributionEnabled);
|
|
|
|
NSDebugMLog(@"_request=%p",_request);
|
|
|
|
if (_request)
|
|
{
|
|
instance=[_request applicationNumber];
|
|
sessionID=[_request sessionID];
|
|
|
|
NSDebugMLog(@"instance=%d",instance);
|
|
NSDebugMLog(@"sessionID=%@",sessionID);
|
|
|
|
if (instance>=0
|
|
&& (!storesIDsInURLs || isDistributionEnabled)
|
|
&& (!_session || !sessionID))
|
|
instance=-1;
|
|
};
|
|
|
|
NSDebugMLog(@"instance=%d",instance);
|
|
|
|
_urlApplicationNumber = instance;
|
|
[_url setURLApplicationNumber:instance];
|
|
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_incrementContextID
|
|
{
|
|
_contextID++;
|
|
[_session _contextDidIncrementContextID];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWSession*)existingSession
|
|
{
|
|
return _session;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setCurrentComponent:(GSWComponent*)component
|
|
{
|
|
//OK
|
|
LOGObjectFnStart();
|
|
ASSIGN(_currentComponent,component);
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setPageReplaced:(BOOL)flag
|
|
{
|
|
_pageReplaced=flag;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(BOOL)_pageReplaced
|
|
{
|
|
return _pageReplaced;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setPageChanged:(BOOL)flag
|
|
{
|
|
_pageChanged=flag;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(BOOL)_pageChanged
|
|
{
|
|
return _pageChanged;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setRequestContextID:(NSString*)contextID
|
|
{
|
|
ASSIGN(_requestContextID,contextID);
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
-(NSString*)_requestContextID
|
|
{
|
|
return _requestContextID;
|
|
}
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setRequestSessionID:(NSString*)aSessionID
|
|
{
|
|
LOGObjectFnStart();
|
|
ASSIGNCOPY(_requestSessionID,aSessionID);
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(NSString*)_requestSessionID
|
|
{
|
|
return _requestSessionID;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_takeAwakeComponentsFromArray:(NSArray*)components
|
|
{
|
|
LOGObjectFnStart();
|
|
if ([components count]>0)
|
|
{
|
|
NSEnumerator* enumerator = nil;
|
|
GSWComponent* component = nil;
|
|
if (!_awakePageComponents)
|
|
_awakePageComponents=[NSMutableArray new];
|
|
|
|
enumerator = [components objectEnumerator];
|
|
while ((component = [enumerator nextObject]))
|
|
{
|
|
if (![_awakePageComponents containsObject:component])
|
|
[_awakePageComponents addObject:component];
|
|
};
|
|
};
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_takeAwakeComponent:(GSWComponent*)component
|
|
{
|
|
//OK
|
|
LOGObjectFnStart();
|
|
NSDebugMLLog(@"low",@"component: %@",[component class]);
|
|
if (!_awakePageComponents)
|
|
_awakePageComponents=[NSMutableArray new];
|
|
if (![_awakePageComponents containsObject:component])
|
|
[_awakePageComponents addObject:component];
|
|
LOGObjectFnStop();
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(NSMutableDictionary*)userInfo
|
|
{
|
|
return [self _userInfo];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(NSMutableDictionary*)_userInfo
|
|
{
|
|
if (!_userInfo)
|
|
_userInfo=[NSMutableDictionary new];
|
|
return _userInfo;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)_setUserInfo:(NSMutableDictionary*)userInfo
|
|
{
|
|
NSAssert2(!userInfo || [userInfo isKindOfClass:[NSMutableDictionary class]],
|
|
@"userInfo is not a NSMutableDictionary but a %@: %@",
|
|
[userInfo class],
|
|
userInfo);
|
|
ASSIGN(_userInfo,userInfo);
|
|
};
|
|
@end
|
|
|
|
//====================================================================
|
|
@implementation GSWContext (GSWContextC)
|
|
|
|
//--------------------------------------------------------------------
|
|
// incrementLastElementIDComponent
|
|
-(void)incrementLastElementIDComponent
|
|
{
|
|
if (!_elementID)
|
|
_elementID=[GSWElementIDString new];
|
|
[_elementID incrementLastElementIDComponent];
|
|
};
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------
|
|
// appendElementIDComponent:
|
|
-(void)appendElementIDComponent:(NSString*)string
|
|
{
|
|
if (!_elementID)
|
|
_elementID=[GSWElementIDString new];
|
|
[_elementID appendElementIDComponent:string];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
// appendZeroElementIDComponent
|
|
-(void)appendZeroElementIDComponent
|
|
{
|
|
if (!_elementID)
|
|
_elementID=[GSWElementIDString new];
|
|
[_elementID appendZeroElementIDComponent];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
// deleteAllElementIDComponents
|
|
-(void)deleteAllElementIDComponents
|
|
{
|
|
if (!_elementID)
|
|
_elementID=[GSWElementIDString new];
|
|
[_elementID deleteAllElementIDComponents];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
// deleteLastElementIDComponent
|
|
-(void)deleteLastElementIDComponent
|
|
{
|
|
if (!_elementID)
|
|
_elementID=[GSWElementIDString new];
|
|
[_elementID deleteLastElementIDComponent];
|
|
};
|
|
|
|
@end
|
|
|
|
//====================================================================
|
|
@implementation GSWContext (GSWContextD)
|
|
//--------------------------------------------------------------------
|
|
-(NSString*)url
|
|
{
|
|
//OK
|
|
GSWDynamicURLString* componentActionURL=nil;
|
|
LOGObjectFnStart();
|
|
componentActionURL=[self componentActionURL];
|
|
LOGObjectFnStop();
|
|
return (NSString*)componentActionURL;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
// urlSessionPrefix
|
|
|
|
// return http://my.host.org/cgi-bin/GSWeb/MyApp.ApplicationSuffix/123456789012334567890123456789
|
|
-(NSString*)urlSessionPrefix
|
|
{
|
|
LOGObjectFnNotImplemented(); //TODOFN
|
|
NSDebugMLLog(@"low",@"[request urlProtocolHorstPort]=%@",[_request urlProtocolHostPort]);
|
|
NSDebugMLLog(@"low",@"[request adaptorPrefix]=%@",[_request adaptorPrefix]);
|
|
NSDebugMLLog(@"low",@"[request applicationName]=%@",[_request applicationName]);
|
|
NSDebugMLLog(@"low",@"[session sessionID]=%@",[_session sessionID]);
|
|
return [NSString stringWithFormat:@"%@%@/%@.%@/%@",
|
|
[_request urlProtocolHostPort],
|
|
[_request adaptorPrefix],
|
|
[_request applicationName],
|
|
GSWApplicationSuffix[GSWebNamingConv],
|
|
[_session sessionID]];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(GSWApplication*)application
|
|
{
|
|
return [GSWApplication application];
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
// isDistributionEnabled
|
|
|
|
-(BOOL)isDistributionEnabled
|
|
{
|
|
return _distributionEnabled;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
// setDistributionEnabled:
|
|
|
|
-(void)setDistributionEnabled:(BOOL)isDistributionEnabled
|
|
{
|
|
_distributionEnabled=isDistributionEnabled;
|
|
};
|
|
|
|
@end
|
|
|
|
//====================================================================
|
|
@implementation GSWContext (GSWContextGSWeb)
|
|
-(BOOL)isValidate
|
|
{
|
|
return _isValidate;
|
|
};
|
|
|
|
//--------------------------------------------------------------------
|
|
-(void)setValidate:(BOOL)isValidate
|
|
{
|
|
_isValidate = isValidate;
|
|
NSDebugMLLog(@"low",@"isValidate=%d",(int)isValidate);
|
|
};
|
|
|
|
@end
|