os/security/cryptomgmtlibs/cryptotokenfw/tframework/TestPlugin.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 /*
     2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     3 * All rights reserved.
     4 * This component and the accompanying materials are made available
     5 * under the terms of the License "Eclipse Public License v1.0"
     6 * which accompanies this distribution, and is available
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
     8 *
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    11 *
    12 * Contributors:
    13 *
    14 * Description: 
    15 *
    16 */
    17 
    18 
    19 /**
    20  @file
    21 */
    22 
    23 #include <e32base.h>
    24 #include <ecom/ecom.h>
    25 #include <ecom/implementationproxy.h>
    26 #include <ct.h>
    27 #include "MTestInterface.h"
    28 
    29 _LIT(KToken5Info, "Test Token 5");
    30 _LIT(KToken6Info, "Test Token 6");
    31 
    32 
    33 class CTestObject : public MTestObject
    34 	{
    35 public:
    36 	CTestObject(MCTToken& aToken) : MTestObject(aToken), iToken(aToken) {};
    37 
    38 	virtual const TDesC& Label() const;
    39 	virtual MCTToken& Token() const;
    40 	virtual TUid Type() const;
    41 	virtual TCTTokenObjectHandle Handle() const;
    42 
    43 private:
    44 	MCTToken& iToken;
    45 	};
    46 
    47 class CTestInterface : public MTestInterface
    48 	{
    49 public:
    50 	CTestInterface(const TDesC& aLabel, MCTToken& aToken)
    51 			: iLabel(aLabel), iToken(aToken) {};
    52 
    53 	virtual MCTToken& Token();
    54 
    55 	virtual const TDesC& Label();
    56 
    57 	MTestObject* ObjectL();
    58 
    59 private:
    60 	const TDesC& iLabel;
    61 	MCTToken& iToken;
    62 	};
    63 
    64 class CTestToken : public CBase, public MCTToken
    65 	{
    66 public:
    67 	CTestToken(const TDesC& aLabel, MCTTokenType& aTokenType);
    68 
    69 	virtual void DoGetInterface(TUid aRequiredInterface,
    70 							  MCTTokenInterface*& aReturnedInterface, 
    71 							  TRequestStatus& aStatus);
    72 	virtual TBool DoCancelGetInterface();
    73 
    74 	virtual const TDesC& Label();
    75 
    76 	virtual MCTTokenType& TokenType();
    77 
    78 	virtual TCTTokenHandle Handle();
    79 	virtual const TDesC& Information(TTokenInformation aRequiredInformation);
    80 protected:
    81 	virtual TInt& ReferenceCount();
    82 
    83 private:
    84 	MCTTokenType& iTokenType;
    85 	const TDesC& iLabel;
    86 	TInt iCount;
    87 	TBool iAsyncGetInterfaceRunning;
    88 	};
    89 
    90 CTestToken::CTestToken(const TDesC& aLabel, MCTTokenType& aTokenType)
    91 		: iTokenType(aTokenType), iLabel(aLabel)
    92 	{
    93 	}
    94 
    95 const TDesC& CTestToken::Label()
    96 	{
    97 	return iLabel;
    98 	}
    99 
   100 const TDesC& CTestToken::Information(TTokenInformation aRequiredInformation)
   101 	{
   102 	_LIT(KVersion, "The Ultimate Version");
   103 	_LIT(KSerial, "Serial No. 1");
   104 	_LIT(KManufacturer, "ACME Corporation");
   105 	switch (aRequiredInformation)
   106 		{
   107 	case EVersion:
   108 		return KVersion;
   109 	case ESerialNo:
   110 		return KSerial;
   111 	case EManufacturer:
   112 	default:
   113 		return KManufacturer;
   114 		}
   115 	}
   116 
   117 MCTTokenType& CTestToken::TokenType()
   118 	{
   119 	return iTokenType;
   120 	}
   121 
   122 MCTToken& CTestInterface::Token()
   123 	{
   124 	return iToken;
   125 	}
   126 const TDesC& CTestInterface::Label()
   127 	{
   128 	return iLabel;
   129 	}
   130 
   131 MTestObject* CTestInterface::ObjectL()
   132 	{
   133 	return new (ELeave) CTestObject(Token());
   134 	}
   135 
   136 const TDesC& CTestObject::Label() const
   137 	{
   138 	return Token().Label();
   139 	}
   140 
   141 MCTToken& CTestObject::Token() const
   142 	{
   143 	return iToken;
   144 	}
   145 
   146 TUid CTestObject::Type() const
   147 	{
   148 	TUid uid = {0};
   149 	return uid;
   150 	}
   151 
   152 TCTTokenObjectHandle CTestObject::Handle() const
   153 	{
   154 	return TCTTokenObjectHandle(Token().Handle(), 1);
   155 	}
   156 
   157 TCTTokenHandle CTestToken::Handle()
   158 	{
   159 	return TCTTokenHandle(TokenType().Type(), 1);
   160 	}
   161 
   162 void CTestToken::DoGetInterface(TUid aRequiredInterface,
   163 							  MCTTokenInterface*& aReturnedInterface, 
   164 							  TRequestStatus& aStatus)
   165 	{
   166 	// InterfaceC is returned. InterfaceB (actually anything else) is
   167 	// used to test async behaviour and never returns anything.
   168 	TUid uid = {0x101f4e52};
   169 	if (aRequiredInterface != uid)
   170 		{
   171 		iAsyncGetInterfaceRunning = ETrue;
   172 		return;
   173 		}
   174 	aReturnedInterface = new CTestInterface(iLabel, *this);
   175 	TRequestStatus* r = &aStatus;
   176 	if (aReturnedInterface)
   177 		User::RequestComplete(r, KErrNone);
   178 	else
   179 		User::RequestComplete(r, KErrNoMemory);
   180 	}
   181 
   182 TBool CTestToken::DoCancelGetInterface()
   183 	{
   184 	if (iAsyncGetInterfaceRunning)
   185 		{
   186 		iAsyncGetInterfaceRunning = EFalse;
   187 		return ETrue;
   188 		}
   189 	return EFalse;
   190 	}
   191 
   192 
   193 TInt& CTestToken::ReferenceCount()
   194 	{
   195 	return iCount;
   196 	}
   197 
   198 class CTokenTypeImplementation : public CCTTokenType
   199 	{
   200 public:
   201 	static CTokenTypeImplementation* NewL5();
   202 	static CTokenTypeImplementation* NewL6();
   203 
   204 	virtual void List(RCPointerArray<HBufC>& aTokens, 
   205 					  TRequestStatus& aStatus);
   206 	virtual void CancelList();
   207 	virtual void OpenToken(const TDesC& aTokenInfo, MCTToken*& aToken, 
   208 						   TRequestStatus& aStatus);
   209 	virtual void OpenToken(TCTTokenHandle aHandle, MCTToken*& aToken, 
   210 						   TRequestStatus& aStatus);
   211 	virtual void CancelOpenToken();
   212 
   213 	virtual ~CTokenTypeImplementation();
   214 protected:
   215 	HBufC* iMyInfo;
   216 	};
   217 
   218 void CTokenTypeImplementation::List(RCPointerArray<HBufC>& aTokens, 
   219 							   TRequestStatus& aStatus)
   220 	{
   221 	TRequestStatus* r = &aStatus;
   222 	HBufC* name = iMyInfo->Alloc();
   223 	if (name)
   224 		User::RequestComplete(r, aTokens.Append(name));
   225 	else
   226 		User::RequestComplete(r, KErrNoMemory);
   227 	}
   228 
   229 void CTokenTypeImplementation::CancelList()
   230 	{
   231 	}
   232 
   233 void CTokenTypeImplementation::OpenToken(const TDesC& /*aTokenInfo*/, MCTToken*& aToken,
   234 						   TRequestStatus& aStatus)
   235 	{
   236 	aToken = new CTestToken(*iMyInfo, *this);
   237 	TRequestStatus* r = &aStatus;
   238 	User::RequestComplete(r, KErrNone);
   239 	IncReferenceCount();
   240 	}
   241 
   242 void CTokenTypeImplementation::OpenToken(TCTTokenHandle /*aHandle*/,
   243 										 MCTToken*& aToken,
   244 										 TRequestStatus& aStatus)
   245 	{
   246 	aToken = new CTestToken(*iMyInfo, *this);
   247 	TRequestStatus* r = &aStatus;
   248 	User::RequestComplete(r, KErrNone);
   249 	IncReferenceCount();
   250 	}
   251 
   252 void CTokenTypeImplementation::CancelOpenToken()
   253 	{
   254 	}
   255 
   256 
   257 CTokenTypeImplementation::~CTokenTypeImplementation()
   258 	{
   259 	delete iMyInfo;
   260 	}
   261 
   262 CTokenTypeImplementation* CTokenTypeImplementation::NewL5()
   263 	{
   264 	CTokenTypeImplementation* that = new (ELeave) CTokenTypeImplementation;
   265 	CleanupStack::PushL(that);
   266 	that->iMyInfo = KToken5Info().AllocL();
   267 	CleanupStack::Pop(that);
   268 	return that;
   269 	}
   270 
   271 CTokenTypeImplementation* CTokenTypeImplementation::NewL6()
   272 	{
   273 	CTokenTypeImplementation* that = new (ELeave) CTokenTypeImplementation;
   274 	CleanupStack::PushL(that);
   275 	that->iMyInfo = KToken6Info().AllocL();
   276 	CleanupStack::Pop(that);
   277 	return that;
   278 	}
   279 
   280 const TImplementationProxy ImplementationTable[] = 
   281 	{
   282 		IMPLEMENTATION_PROXY_ENTRY(0x101F4E4D,	CTokenTypeImplementation::NewL5),
   283 		IMPLEMENTATION_PROXY_ENTRY(0x101F4E4C,	CTokenTypeImplementation::NewL6),
   284 	};
   285 
   286 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
   287 	{
   288 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
   289 
   290 	return ImplementationTable;
   291 	}
   292