os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/Interface.inl
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/Interface.inl	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,327 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// This file contains the placeholder class
    1.18 +// which represents the interface creation.
    1.19 +// 
    1.20 +//
    1.21 +
    1.22 +/**
    1.23 + @internalComponent
    1.24 + @file
    1.25 +*/
    1.26 +
    1.27 +
    1.28 +const TUid KCExampleInterfaceUid = {0x10009DC0};
    1.29 +const TUid KCExample10InterfaceUid = {0x10009DBB};
    1.30 +const TUid KCExtendedInterfaceUid1 = {0x10009E44};
    1.31 +const TUid KCExtendedInterfaceUid2 = {0x10009E45};
    1.32 +const TUid KCExtendedInterfaceUid3 = {0x10009E46};
    1.33 +
    1.34 +_LIT8(KImplementationTest,"text/wml");
    1.35 +_LIT8(KImplementationTest10,"Example 10");
    1.36 +
    1.37 +inline CExampleInterface::CExampleInterface()
    1.38 +: CActive(CActive::EPriorityLow)
    1.39 +	{
    1.40 +	// Do nothing
    1.41 +	}
    1.42 +
    1.43 +
    1.44 +inline CExampleInterface::~CExampleInterface()
    1.45 +	{
    1.46 +	Cancel();
    1.47 +	// Destroy any instance variables and then
    1.48 +	// inform the framework that this specific 
    1.49 +	// instance of the interface has been destroyed.
    1.50 +	REComSession::DestroyedImplementation(iDtor_ID_Key);
    1.51 +	}
    1.52 +
    1.53 +
    1.54 +inline CExampleInterface* CExampleInterface::NewL()
    1.55 +	{
    1.56 +	// Set up the interface find for the default resolver.
    1.57 +	TEComResolverParams ResolverParams;
    1.58 +	ResolverParams.SetDataType(KImplementationTest());
    1.59 +	ResolverParams.SetWildcardMatch(ETrue);		// Allow wildcard matching
    1.60 +	TUid resolverUid = {0x10009DD0};
    1.61 +
    1.62 +	// Set up some empty initialisation parameters
    1.63 +	TExampleInterfaceInitParams initParams;
    1.64 +	initParams.integer		= 0;
    1.65 +	initParams.descriptor	= NULL;
    1.66 +
    1.67 +	return REINTERPRET_CAST(CExampleInterface*, 
    1.68 +							REComSession::CreateImplementationL(KCExampleInterfaceUid, 
    1.69 +															   _FOFF(CExampleInterface,iDtor_ID_Key),
    1.70 +															   &initParams,
    1.71 +															   ResolverParams,
    1.72 +															   resolverUid));
    1.73 +	}
    1.74 +
    1.75 +inline CExampleInterface* CExampleInterface::NewL(const TDesC8& aMatchString)
    1.76 +	{
    1.77 +	// Set up the interface find for the default resolver.
    1.78 +	TEComResolverParams ResolverParams;
    1.79 +	ResolverParams.SetDataType(aMatchString);
    1.80 +	ResolverParams.SetWildcardMatch(ETrue);		// Allow wildcard matching
    1.81 +
    1.82 +	// Set up some empty initialisation parameters
    1.83 +	TExampleInterfaceInitParams initParams;
    1.84 +	initParams.integer		= 0;
    1.85 +	initParams.descriptor	= NULL;
    1.86 +
    1.87 +	return REINTERPRET_CAST(CExampleInterface*, 
    1.88 +							REComSession::CreateImplementationL(KCExampleInterfaceUid, 
    1.89 +															   _FOFF(CExampleInterface,iDtor_ID_Key), 
    1.90 +															   &initParams,
    1.91 +															   ResolverParams));
    1.92 +	}
    1.93 +
    1.94 +inline CExampleInterface* CExampleInterface::NewL(TInt aIntParameterTest, const TDesC& aDesParameterTest)
    1.95 +	{
    1.96 +	// Set up the interface find for the default resolver.
    1.97 +	TEComResolverParams ResolverParams;
    1.98 +	ResolverParams.SetDataType(KImplementationTest());
    1.99 +	ResolverParams.SetWildcardMatch(ETrue);		// Allow wildcard matching
   1.100 +
   1.101 +	// Set up the initialisation parameter passing
   1.102 +	TExampleInterfaceInitParams initParams;
   1.103 +	initParams.integer		= aIntParameterTest;
   1.104 +	initParams.descriptor	= &aDesParameterTest;
   1.105 +
   1.106 +	// The CreateImplementationL method will return
   1.107 +	// the created item.
   1.108 +	return REINTERPRET_CAST(CExampleInterface*, REComSession::CreateImplementationL(KCExampleInterfaceUid,
   1.109 +												_FOFF(CExampleInterface,iDtor_ID_Key),
   1.110 +												&initParams,
   1.111 +												ResolverParams));
   1.112 +	}
   1.113 +
   1.114 +inline CExampleInterface* CExampleInterface::NewL2(const TUid aImplementationUid)
   1.115 +	{
   1.116 +	// Set up some empty initialisation parameters
   1.117 +	TExampleInterfaceInitParams initParams;
   1.118 +	initParams.integer		= 0;
   1.119 +	initParams.descriptor	= NULL;
   1.120 +	
   1.121 +	// The CreateImplementationL method will return
   1.122 +	// the created item.
   1.123 +	return REINTERPRET_CAST(CExampleInterface*, 
   1.124 +							REComSession::CreateImplementationL(aImplementationUid, 
   1.125 +															   _FOFF(CExampleInterface,iDtor_ID_Key),
   1.126 +															   &initParams));
   1.127 +	}
   1.128 +
   1.129 +inline CExampleInterface* CExampleInterface::NewL3()
   1.130 +	{
   1.131 +	// Set up the interface find for the default resolver.
   1.132 +	TEComResolverParams ResolverParams;
   1.133 +	ResolverParams.SetDataType(KImplementationTest());
   1.134 +	ResolverParams.SetWildcardMatch(ETrue);		// Allow wildcard matching
   1.135 +	
   1.136 +	// Set up some empty initialisation parameters
   1.137 +	TExampleInterfaceInitParams initParams;
   1.138 +	initParams.integer		= 0;
   1.139 +	initParams.descriptor	= NULL;
   1.140 +
   1.141 +	// The CreateImplementationL method will return
   1.142 +	// the created item.
   1.143 +	return REINTERPRET_CAST(CExampleInterface*, 
   1.144 +							REComSession::CreateImplementationL(KCExampleInterfaceUid, 
   1.145 +															   _FOFF(CExampleInterface,iDtor_ID_Key),
   1.146 +															   &initParams,
   1.147 +															   ResolverParams));
   1.148 +	}
   1.149 +
   1.150 +inline CExampleInterface* CExampleInterface::NewL4()
   1.151 +	{
   1.152 +	// Set up the interface find for the default resolver.
   1.153 +	TEComResolverParams ResolverParams;
   1.154 +	ResolverParams.SetDataType(KImplementationTest());
   1.155 +	ResolverParams.SetWildcardMatch(ETrue);		// Allow wildcard matching
   1.156 +	TUid resolverUid = {0x10009DD0};
   1.157 +
   1.158 +	// Set up some empty initialisation parameters
   1.159 +	TExampleInterfaceInitParams initParams;
   1.160 +	initParams.integer		= 0;
   1.161 +	initParams.descriptor	= NULL;
   1.162 +	
   1.163 +	// The CreateImplementationL method will return
   1.164 +	// the created item.
   1.165 +	return REINTERPRET_CAST(CExampleInterface*, 
   1.166 +							REComSession::CreateImplementationL(KCExampleInterfaceUid, 
   1.167 +															   _FOFF(CExampleInterface,iDtor_ID_Key),
   1.168 +															   &initParams,
   1.169 +															   ResolverParams,
   1.170 +															   resolverUid));
   1.171 +	}
   1.172 +
   1.173 +
   1.174 +inline CExampleInterface* CExampleInterface::NewL5()
   1.175 +	{
   1.176 +	//set up extended interface;
   1.177 +	RArray<TUid> extendedInterface;
   1.178 +	CleanupClosePushL(extendedInterface);
   1.179 +	extendedInterface.AppendL(KCExtendedInterfaceUid1);
   1.180 +	extendedInterface.AppendL(KCExtendedInterfaceUid2);
   1.181 +	extendedInterface.AppendL(KCExtendedInterfaceUid3);
   1.182 +	
   1.183 +	// Set up the interface find for the default resolver.
   1.184 +	TEComResolverParams ResolverParams;
   1.185 +	ResolverParams.SetDataType(KImplementationTest10());
   1.186 +	ResolverParams.SetWildcardMatch(ETrue);		// Allow wildcard matching
   1.187 +	
   1.188 +	// The CreateImplementationL method will return the created item.
   1.189 +	CExampleInterface* dll = REINTERPRET_CAST(CExampleInterface*, 
   1.190 +							REComSession::CreateImplementationL(KCExample10InterfaceUid, 
   1.191 +																extendedInterface,
   1.192 +															   _FOFF(CExampleInterface,iDtor_ID_Key),
   1.193 +															   ResolverParams));
   1.194 +	CleanupStack::PopAndDestroy(&extendedInterface);
   1.195 +	return dll;															   
   1.196 +	}
   1.197 +
   1.198 +
   1.199 +inline CExampleInterface* CExampleInterface::NewL6()
   1.200 +	{
   1.201 +	//set up extended interface;
   1.202 +	RArray<TUid> extendedInterface;
   1.203 +	CleanupClosePushL(extendedInterface);
   1.204 +	extendedInterface.AppendL(KCExtendedInterfaceUid1);
   1.205 +	extendedInterface.AppendL(KCExtendedInterfaceUid2);
   1.206 +	extendedInterface.AppendL(KCExtendedInterfaceUid3);
   1.207 +	
   1.208 +	// Set up the interface find for the default resolver.
   1.209 +	TEComResolverParams ResolverParams;
   1.210 +	ResolverParams.SetDataType(KImplementationTest10());
   1.211 +	ResolverParams.SetWildcardMatch(ETrue);		// Allow wildcard matching
   1.212 +	TUid resolverUid = {0x10009DD0};
   1.213 +
   1.214 +	// The CreateImplementationL method will return the created item.
   1.215 +	CExampleInterface* dll = REINTERPRET_CAST(CExampleInterface*, 
   1.216 +							REComSession::CreateImplementationL(KCExample10InterfaceUid, 
   1.217 +																extendedInterface,
   1.218 +															   _FOFF(CExampleInterface,iDtor_ID_Key),
   1.219 +															   ResolverParams,
   1.220 +															   resolverUid));
   1.221 +	CleanupStack::PopAndDestroy(&extendedInterface);
   1.222 +	return dll;															   
   1.223 +	}
   1.224 +
   1.225 +
   1.226 +inline CExampleInterface* CExampleInterface::NewL7()
   1.227 +	{
   1.228 +	//set up extended interface;
   1.229 +	RArray<TUid> extendedInterface;
   1.230 +	CleanupClosePushL(extendedInterface);
   1.231 +	extendedInterface.AppendL(KCExtendedInterfaceUid1);
   1.232 +	extendedInterface.AppendL(KCExtendedInterfaceUid2);
   1.233 +	extendedInterface.AppendL(KCExtendedInterfaceUid3);
   1.234 +	
   1.235 +	// Set up the interface find for the default resolver.
   1.236 +	TEComResolverParams ResolverParams;
   1.237 +	ResolverParams.SetDataType(KImplementationTest10());
   1.238 +	ResolverParams.SetWildcardMatch(ETrue);		// Allow wildcard matching
   1.239 +	
   1.240 +	// Set up some empty initialisation parameters
   1.241 +	TExampleInterfaceInitParams initParams;
   1.242 +	initParams.integer		= 0;
   1.243 +	initParams.descriptor	= NULL;
   1.244 +
   1.245 +	// The CreateImplementationL method will return the created item.
   1.246 +	CExampleInterface* dll = REINTERPRET_CAST(CExampleInterface*, 
   1.247 +							REComSession::CreateImplementationL(KCExample10InterfaceUid, 
   1.248 +																extendedInterface,
   1.249 +															   _FOFF(CExampleInterface,iDtor_ID_Key),
   1.250 +															   ResolverParams,
   1.251 +															   &initParams));
   1.252 +	CleanupStack::PopAndDestroy(&extendedInterface);
   1.253 +	return dll;															   
   1.254 +	}
   1.255 +
   1.256 +
   1.257 +inline CExampleInterface* CExampleInterface::NewL8()
   1.258 +	{
   1.259 +	//set up extended interface;
   1.260 +	RArray<TUid> extendedInterface;
   1.261 +	CleanupClosePushL(extendedInterface);
   1.262 +	extendedInterface.AppendL(KCExtendedInterfaceUid1);
   1.263 +	extendedInterface.AppendL(KCExtendedInterfaceUid2);
   1.264 +	extendedInterface.AppendL(KCExtendedInterfaceUid3);
   1.265 +	
   1.266 +	// Set up the interface find for the default resolver.
   1.267 +	TEComResolverParams ResolverParams;
   1.268 +	ResolverParams.SetDataType(KImplementationTest10());
   1.269 +	ResolverParams.SetWildcardMatch(ETrue);		// Allow wildcard matching
   1.270 +	TUid resolverUid = {0x10009DD0};
   1.271 +
   1.272 +	// Set up some empty initialisation parameters
   1.273 +	TExampleInterfaceInitParams initParams;
   1.274 +	initParams.integer		= 0;
   1.275 +	initParams.descriptor	= NULL;
   1.276 +
   1.277 +	// The CreateImplementationL method will return the created item.
   1.278 +	CExampleInterface* dll = REINTERPRET_CAST(CExampleInterface*, 
   1.279 +							REComSession::CreateImplementationL(KCExample10InterfaceUid, 
   1.280 +																extendedInterface,
   1.281 +															   _FOFF(CExampleInterface,iDtor_ID_Key),
   1.282 +															   ResolverParams,
   1.283 +															   resolverUid,
   1.284 +															   &initParams));
   1.285 +	CleanupStack::PopAndDestroy(&extendedInterface);
   1.286 +	return dll;															   
   1.287 +	}
   1.288 +
   1.289 +
   1.290 +	
   1.291 +inline void CExampleInterface::ListImplementationsL(RImplInfoPtrArray& aImplInfoArray)
   1.292 +	{
   1.293 +	// Set up the interface find for the default resolver.
   1.294 +	TEComResolverParams ResolverParams;
   1.295 +	ResolverParams.SetDataType(KImplementationTest());
   1.296 +	ResolverParams.SetWildcardMatch(ETrue);		// Allow wildcard matching
   1.297 +
   1.298 +	REComSession::ListImplementationsL(KCExampleInterfaceUid,
   1.299 +									   ResolverParams, 
   1.300 +									   aImplInfoArray);
   1.301 +	}
   1.302 +
   1.303 +inline void CExampleInterface::ListAllImplementationsL(RImplInfoPtrArray& aImplInfoArray)
   1.304 +	{
   1.305 +	REComSession::ListImplementationsL(KCExampleInterfaceUid, aImplInfoArray);
   1.306 +	}
   1.307 +
   1.308 +
   1.309 +inline void CExampleInterface::DoMethodL()
   1.310 +	{
   1.311 +	User::Leave(KErrNotSupported);
   1.312 +	}
   1.313 +
   1.314 +
   1.315 +inline TInt CExampleInterface::FireAndForget()
   1.316 +	{
   1.317 +	return KErrNotSupported;
   1.318 +	}
   1.319 +
   1.320 +inline TAny* CExampleInterface::GetExtendedInterfaceL(const TUid& aInterfaceUid)
   1.321 +	{
   1.322 +	TAny *object = NULL;
   1.323 +	object = REComSession::GetExtendedInterfaceL(iDtor_ID_Key, aInterfaceUid);
   1.324 +	return object;
   1.325 +	}
   1.326 +	
   1.327 +inline void CExampleInterface::ManuallyReleaseExtendedInterfaceL(const TUid& aInterfaceUid)
   1.328 +	{
   1.329 +	REComSession::ManuallyReleaseExtendedInterfaceL(iDtor_ID_Key, aInterfaceUid);
   1.330 +	}