os/security/cryptomgmtlibs/cryptotokenfw/tframework/TestPlugin.cpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/security/cryptomgmtlibs/cryptotokenfw/tframework/TestPlugin.cpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,292 @@
     1.4 +/*
     1.5 +* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of the License "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description: 
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +/**
    1.23 + @file
    1.24 +*/
    1.25 +
    1.26 +#include <e32base.h>
    1.27 +#include <ecom/ecom.h>
    1.28 +#include <ecom/implementationproxy.h>
    1.29 +#include <ct.h>
    1.30 +#include "MTestInterface.h"
    1.31 +
    1.32 +_LIT(KToken5Info, "Test Token 5");
    1.33 +_LIT(KToken6Info, "Test Token 6");
    1.34 +
    1.35 +
    1.36 +class CTestObject : public MTestObject
    1.37 +	{
    1.38 +public:
    1.39 +	CTestObject(MCTToken& aToken) : MTestObject(aToken), iToken(aToken) {};
    1.40 +
    1.41 +	virtual const TDesC& Label() const;
    1.42 +	virtual MCTToken& Token() const;
    1.43 +	virtual TUid Type() const;
    1.44 +	virtual TCTTokenObjectHandle Handle() const;
    1.45 +
    1.46 +private:
    1.47 +	MCTToken& iToken;
    1.48 +	};
    1.49 +
    1.50 +class CTestInterface : public MTestInterface
    1.51 +	{
    1.52 +public:
    1.53 +	CTestInterface(const TDesC& aLabel, MCTToken& aToken)
    1.54 +			: iLabel(aLabel), iToken(aToken) {};
    1.55 +
    1.56 +	virtual MCTToken& Token();
    1.57 +
    1.58 +	virtual const TDesC& Label();
    1.59 +
    1.60 +	MTestObject* ObjectL();
    1.61 +
    1.62 +private:
    1.63 +	const TDesC& iLabel;
    1.64 +	MCTToken& iToken;
    1.65 +	};
    1.66 +
    1.67 +class CTestToken : public CBase, public MCTToken
    1.68 +	{
    1.69 +public:
    1.70 +	CTestToken(const TDesC& aLabel, MCTTokenType& aTokenType);
    1.71 +
    1.72 +	virtual void DoGetInterface(TUid aRequiredInterface,
    1.73 +							  MCTTokenInterface*& aReturnedInterface, 
    1.74 +							  TRequestStatus& aStatus);
    1.75 +	virtual TBool DoCancelGetInterface();
    1.76 +
    1.77 +	virtual const TDesC& Label();
    1.78 +
    1.79 +	virtual MCTTokenType& TokenType();
    1.80 +
    1.81 +	virtual TCTTokenHandle Handle();
    1.82 +	virtual const TDesC& Information(TTokenInformation aRequiredInformation);
    1.83 +protected:
    1.84 +	virtual TInt& ReferenceCount();
    1.85 +
    1.86 +private:
    1.87 +	MCTTokenType& iTokenType;
    1.88 +	const TDesC& iLabel;
    1.89 +	TInt iCount;
    1.90 +	TBool iAsyncGetInterfaceRunning;
    1.91 +	};
    1.92 +
    1.93 +CTestToken::CTestToken(const TDesC& aLabel, MCTTokenType& aTokenType)
    1.94 +		: iTokenType(aTokenType), iLabel(aLabel)
    1.95 +	{
    1.96 +	}
    1.97 +
    1.98 +const TDesC& CTestToken::Label()
    1.99 +	{
   1.100 +	return iLabel;
   1.101 +	}
   1.102 +
   1.103 +const TDesC& CTestToken::Information(TTokenInformation aRequiredInformation)
   1.104 +	{
   1.105 +	_LIT(KVersion, "The Ultimate Version");
   1.106 +	_LIT(KSerial, "Serial No. 1");
   1.107 +	_LIT(KManufacturer, "ACME Corporation");
   1.108 +	switch (aRequiredInformation)
   1.109 +		{
   1.110 +	case EVersion:
   1.111 +		return KVersion;
   1.112 +	case ESerialNo:
   1.113 +		return KSerial;
   1.114 +	case EManufacturer:
   1.115 +	default:
   1.116 +		return KManufacturer;
   1.117 +		}
   1.118 +	}
   1.119 +
   1.120 +MCTTokenType& CTestToken::TokenType()
   1.121 +	{
   1.122 +	return iTokenType;
   1.123 +	}
   1.124 +
   1.125 +MCTToken& CTestInterface::Token()
   1.126 +	{
   1.127 +	return iToken;
   1.128 +	}
   1.129 +const TDesC& CTestInterface::Label()
   1.130 +	{
   1.131 +	return iLabel;
   1.132 +	}
   1.133 +
   1.134 +MTestObject* CTestInterface::ObjectL()
   1.135 +	{
   1.136 +	return new (ELeave) CTestObject(Token());
   1.137 +	}
   1.138 +
   1.139 +const TDesC& CTestObject::Label() const
   1.140 +	{
   1.141 +	return Token().Label();
   1.142 +	}
   1.143 +
   1.144 +MCTToken& CTestObject::Token() const
   1.145 +	{
   1.146 +	return iToken;
   1.147 +	}
   1.148 +
   1.149 +TUid CTestObject::Type() const
   1.150 +	{
   1.151 +	TUid uid = {0};
   1.152 +	return uid;
   1.153 +	}
   1.154 +
   1.155 +TCTTokenObjectHandle CTestObject::Handle() const
   1.156 +	{
   1.157 +	return TCTTokenObjectHandle(Token().Handle(), 1);
   1.158 +	}
   1.159 +
   1.160 +TCTTokenHandle CTestToken::Handle()
   1.161 +	{
   1.162 +	return TCTTokenHandle(TokenType().Type(), 1);
   1.163 +	}
   1.164 +
   1.165 +void CTestToken::DoGetInterface(TUid aRequiredInterface,
   1.166 +							  MCTTokenInterface*& aReturnedInterface, 
   1.167 +							  TRequestStatus& aStatus)
   1.168 +	{
   1.169 +	// InterfaceC is returned. InterfaceB (actually anything else) is
   1.170 +	// used to test async behaviour and never returns anything.
   1.171 +	TUid uid = {0x101f4e52};
   1.172 +	if (aRequiredInterface != uid)
   1.173 +		{
   1.174 +		iAsyncGetInterfaceRunning = ETrue;
   1.175 +		return;
   1.176 +		}
   1.177 +	aReturnedInterface = new CTestInterface(iLabel, *this);
   1.178 +	TRequestStatus* r = &aStatus;
   1.179 +	if (aReturnedInterface)
   1.180 +		User::RequestComplete(r, KErrNone);
   1.181 +	else
   1.182 +		User::RequestComplete(r, KErrNoMemory);
   1.183 +	}
   1.184 +
   1.185 +TBool CTestToken::DoCancelGetInterface()
   1.186 +	{
   1.187 +	if (iAsyncGetInterfaceRunning)
   1.188 +		{
   1.189 +		iAsyncGetInterfaceRunning = EFalse;
   1.190 +		return ETrue;
   1.191 +		}
   1.192 +	return EFalse;
   1.193 +	}
   1.194 +
   1.195 +
   1.196 +TInt& CTestToken::ReferenceCount()
   1.197 +	{
   1.198 +	return iCount;
   1.199 +	}
   1.200 +
   1.201 +class CTokenTypeImplementation : public CCTTokenType
   1.202 +	{
   1.203 +public:
   1.204 +	static CTokenTypeImplementation* NewL5();
   1.205 +	static CTokenTypeImplementation* NewL6();
   1.206 +
   1.207 +	virtual void List(RCPointerArray<HBufC>& aTokens, 
   1.208 +					  TRequestStatus& aStatus);
   1.209 +	virtual void CancelList();
   1.210 +	virtual void OpenToken(const TDesC& aTokenInfo, MCTToken*& aToken, 
   1.211 +						   TRequestStatus& aStatus);
   1.212 +	virtual void OpenToken(TCTTokenHandle aHandle, MCTToken*& aToken, 
   1.213 +						   TRequestStatus& aStatus);
   1.214 +	virtual void CancelOpenToken();
   1.215 +
   1.216 +	virtual ~CTokenTypeImplementation();
   1.217 +protected:
   1.218 +	HBufC* iMyInfo;
   1.219 +	};
   1.220 +
   1.221 +void CTokenTypeImplementation::List(RCPointerArray<HBufC>& aTokens, 
   1.222 +							   TRequestStatus& aStatus)
   1.223 +	{
   1.224 +	TRequestStatus* r = &aStatus;
   1.225 +	HBufC* name = iMyInfo->Alloc();
   1.226 +	if (name)
   1.227 +		User::RequestComplete(r, aTokens.Append(name));
   1.228 +	else
   1.229 +		User::RequestComplete(r, KErrNoMemory);
   1.230 +	}
   1.231 +
   1.232 +void CTokenTypeImplementation::CancelList()
   1.233 +	{
   1.234 +	}
   1.235 +
   1.236 +void CTokenTypeImplementation::OpenToken(const TDesC& /*aTokenInfo*/, MCTToken*& aToken,
   1.237 +						   TRequestStatus& aStatus)
   1.238 +	{
   1.239 +	aToken = new CTestToken(*iMyInfo, *this);
   1.240 +	TRequestStatus* r = &aStatus;
   1.241 +	User::RequestComplete(r, KErrNone);
   1.242 +	IncReferenceCount();
   1.243 +	}
   1.244 +
   1.245 +void CTokenTypeImplementation::OpenToken(TCTTokenHandle /*aHandle*/,
   1.246 +										 MCTToken*& aToken,
   1.247 +										 TRequestStatus& aStatus)
   1.248 +	{
   1.249 +	aToken = new CTestToken(*iMyInfo, *this);
   1.250 +	TRequestStatus* r = &aStatus;
   1.251 +	User::RequestComplete(r, KErrNone);
   1.252 +	IncReferenceCount();
   1.253 +	}
   1.254 +
   1.255 +void CTokenTypeImplementation::CancelOpenToken()
   1.256 +	{
   1.257 +	}
   1.258 +
   1.259 +
   1.260 +CTokenTypeImplementation::~CTokenTypeImplementation()
   1.261 +	{
   1.262 +	delete iMyInfo;
   1.263 +	}
   1.264 +
   1.265 +CTokenTypeImplementation* CTokenTypeImplementation::NewL5()
   1.266 +	{
   1.267 +	CTokenTypeImplementation* that = new (ELeave) CTokenTypeImplementation;
   1.268 +	CleanupStack::PushL(that);
   1.269 +	that->iMyInfo = KToken5Info().AllocL();
   1.270 +	CleanupStack::Pop(that);
   1.271 +	return that;
   1.272 +	}
   1.273 +
   1.274 +CTokenTypeImplementation* CTokenTypeImplementation::NewL6()
   1.275 +	{
   1.276 +	CTokenTypeImplementation* that = new (ELeave) CTokenTypeImplementation;
   1.277 +	CleanupStack::PushL(that);
   1.278 +	that->iMyInfo = KToken6Info().AllocL();
   1.279 +	CleanupStack::Pop(that);
   1.280 +	return that;
   1.281 +	}
   1.282 +
   1.283 +const TImplementationProxy ImplementationTable[] = 
   1.284 +	{
   1.285 +		IMPLEMENTATION_PROXY_ENTRY(0x101F4E4D,	CTokenTypeImplementation::NewL5),
   1.286 +		IMPLEMENTATION_PROXY_ENTRY(0x101F4E4C,	CTokenTypeImplementation::NewL6),
   1.287 +	};
   1.288 +
   1.289 +EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
   1.290 +	{
   1.291 +	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
   1.292 +
   1.293 +	return ImplementationTable;
   1.294 +	}
   1.295 +