os/security/cryptomgmtlibs/securitytestfw/test/testhandler2extra/t_inputextra.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/security/cryptomgmtlibs/securitytestfw/test/testhandler2extra/t_inputextra.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,79 @@
1.4 +/*
1.5 +* Copyright (c) 1998-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 +#include "t_inputextra.h"
1.23 +
1.24 +
1.25 +EXPORT_C HBufC8* InputExtra::ReadFilesLC(CDesCArray& aFilenames, RFs& aFs)
1.26 + {
1.27 + TInt count = aFilenames.MdcaCount();
1.28 + TInt totalSize = 0;
1.29 + TInt i = 0;
1.30 + for (i = 0; i < count; i++)
1.31 + {
1.32 + RFile file;
1.33 + User::LeaveIfError(file.Open(aFs, aFilenames.MdcaPoint(i), EFileRead));
1.34 + CleanupClosePushL(file);
1.35 + TInt size;
1.36 + file.Size(size);
1.37 + CleanupStack::PopAndDestroy(2);// fileClose
1.38 + totalSize += size;
1.39 + }
1.40 + HBufC8* res = HBufC8::NewLC(totalSize);
1.41 + TPtr8 pRes = res->Des();
1.42 + for (i = 0; i < count; i++)
1.43 + {
1.44 + HBufC8* cert = Input::ReadFileLC(aFilenames.MdcaPoint(i), aFs);
1.45 + pRes.Append(cert->Des());
1.46 + CleanupStack::PopAndDestroy();//cert
1.47 + }
1.48 + return res;
1.49 + }
1.50 +
1.51 +EXPORT_C HBufC8* InputExtra::ReadFilesLC(CDesCArray& aFilenames, const TDesC& aPath, RFs& aFs)
1.52 + {
1.53 + TInt count = aFilenames.MdcaCount();
1.54 + TInt totalSize = 0;
1.55 + TInt i = 0;
1.56 + for (i = 0; i < count; i++)
1.57 + {
1.58 + HBufC* filenameBuf = HBufC::NewLC(256);
1.59 + TPtr fullFilename = filenameBuf->Des();
1.60 + fullFilename.Append(aPath);
1.61 + TPtrC filename = aFilenames.MdcaPoint(i);
1.62 + fullFilename.Append(filename);
1.63 +
1.64 + RFile file;
1.65 + User::LeaveIfError(file.Open(aFs, fullFilename, EFileRead));
1.66 + CleanupClosePushL(file);
1.67 + TInt size;
1.68 + file.Size(size);
1.69 + CleanupStack::PopAndDestroy(2);//filenameBuf, fileClose
1.70 + totalSize += size;
1.71 + }
1.72 + HBufC8* res = HBufC8::NewLC(totalSize);
1.73 + TPtr8 pRes = res->Des();
1.74 + for (i = 0; i < count; i++)
1.75 + {
1.76 + HBufC8* cert = Input::ReadFileLC(aFilenames.MdcaPoint(i), aPath, aFs);
1.77 + pRes.Append(cert->Des());
1.78 + CleanupStack::PopAndDestroy();//cert
1.79 + }
1.80 + return res;
1.81 + }
1.82 +