1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/security/cryptomgmtlibs/securitytestfw/test/testhandler2/t_output.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,253 @@
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_output.h"
1.23 +#include <securityerr.h>
1.24 +
1.25 +// Size used for stack based buffers
1.26 +const static TInt KMaxLineLength = 200;
1.27 +
1.28 +_LIT(KNewLine, "\r\n");
1.29 +
1.30 +// Output //////////////////////////////////////////////////////////////////////
1.31 +
1.32 +EXPORT_C void Output::writeString(const TDesC& aString)
1.33 + {
1.34 + FixNewlinesAndWriteL(aString);
1.35 + }
1.36 +
1.37 +EXPORT_C void Output::writeString(const TDesC8& aString)
1.38 + {
1.39 + HBufC16* des = HBufC16::NewLC(aString.Length());
1.40 + des->Des().Copy(aString);
1.41 + FixNewlinesAndWriteL(*des);
1.42 + CleanupStack::PopAndDestroy(des);
1.43 + }
1.44 +
1.45 +EXPORT_C void Output::write(TRefByValue<const TDesC16> aFmt, ...)
1.46 + {
1.47 + TBuf<KMaxLineLength> buf;
1.48 + VA_LIST args;
1.49 + VA_START(args, aFmt);
1.50 + buf.AppendFormatList(aFmt, args);
1.51 + VA_END(args);
1.52 +
1.53 + FixNewlinesAndWriteL(buf);
1.54 + }
1.55 +
1.56 +EXPORT_C void Output::writeSpaces(TInt aNum)
1.57 + {
1.58 + for (TInt i = 0; i < aNum; i++)
1.59 + {
1.60 + DoWriteL(_L(" "));
1.61 + }
1.62 + }
1.63 +
1.64 +EXPORT_C void Output::writeNewLine()
1.65 + {
1.66 + DoWriteL(KNewLine);
1.67 + }
1.68 +
1.69 +EXPORT_C void Output::writeNum(TInt aNum)
1.70 + {
1.71 + write(_L("%d"), aNum);
1.72 + }
1.73 +
1.74 +EXPORT_C void Output::writeHex(TInt aHex)
1.75 + {
1.76 + write(_L("%x"), aHex);
1.77 + }
1.78 +
1.79 +EXPORT_C void Output::writeError(TInt aError)
1.80 + {
1.81 + switch (aError)
1.82 + {
1.83 + case KErrNone: // 0
1.84 + DoWriteL(_L("KErrNone"));
1.85 + break;
1.86 +
1.87 + case KErrNotFound: // -1
1.88 + DoWriteL(_L("KErrNotFound"));
1.89 + break;
1.90 +
1.91 + case KErrNotSupported: // -5
1.92 + DoWriteL(_L("KErrNotSupported"));
1.93 + break;
1.94 +
1.95 + case KErrInUse: // -14
1.96 + DoWriteL(_L("KErrInUse"));
1.97 + break;
1.98 +
1.99 + case KErrNotReady: // -18
1.100 + DoWriteL(_L("KErrNotReady"));
1.101 + break;
1.102 +
1.103 + case KRequestPending:
1.104 + DoWriteL(_L("KRequestPending"));
1.105 + break;
1.106 +
1.107 + case KErrAlreadyExists:
1.108 + DoWriteL(_L("KErrAlreadyExists"));
1.109 + break;
1.110 +
1.111 + case KErrArgument:
1.112 + DoWriteL(_L("KErrArgument"));
1.113 + break;
1.114 +
1.115 + case KErrBadName: // -28
1.116 + DoWriteL(_L("KErrBadName"));
1.117 + break;
1.118 + case KErrPrivateKeyNotFound:
1.119 + writeString(_L("KErrPrivateKeyNotFound"));
1.120 + break;
1.121 +
1.122 + default:
1.123 + writeNum(aError);
1.124 + break;
1.125 + }
1.126 + }
1.127 +
1.128 +EXPORT_C void Output::writeOctetString(const TDesC8& aString)
1.129 + {
1.130 + writeOctetStringL(aString);
1.131 + }
1.132 +
1.133 +EXPORT_C void Output::writeOctetStringL(const TDesC8& aString)
1.134 + {
1.135 + TInt len = aString.Length();
1.136 + HBufC* buf = HBufC::NewLC(len * 3);
1.137 + TPtr pBuf = buf->Des();
1.138 + for (TInt index = 0; index < len; ++index)
1.139 + {
1.140 + pBuf.AppendFormat(_L("%02x "),aString[index]);
1.141 + }
1.142 + DoWriteL(*buf);
1.143 + CleanupStack::PopAndDestroy(buf);
1.144 + }
1.145 +
1.146 +EXPORT_C void Output::writeBoolL(TBool aBool)
1.147 + {
1.148 + if (aBool)
1.149 + {
1.150 + DoWriteL(_L("ETrue"));
1.151 + }
1.152 + else
1.153 + {
1.154 + DoWriteL(_L("EFalse"));
1.155 + }
1.156 + }
1.157 +
1.158 +// Fix up newlines by turning any occurences of just "\n" into "\r\n".
1.159 +void Output::FixNewlinesAndWriteL(const TDesC& aString)
1.160 + {
1.161 + TPtrC remainder(aString);
1.162 + TInt index = 0;
1.163 + while (remainder.Length())
1.164 + {
1.165 + index = remainder.Locate('\n');
1.166 +
1.167 + if (index == KErrNotFound)
1.168 + {
1.169 + DoWriteL(remainder);
1.170 + break;
1.171 + }
1.172 +
1.173 + if (index == 0)
1.174 + {
1.175 + DoWriteL(KNewLine);
1.176 + }
1.177 + else
1.178 + {
1.179 + if (remainder[index - 1] == '\r')
1.180 + {
1.181 + DoWriteL(remainder.Left(index + 1));
1.182 + }
1.183 + else
1.184 + {
1.185 + DoWriteL(remainder.Left(index));
1.186 + DoWriteL(KNewLine);
1.187 + }
1.188 + }
1.189 + remainder.Set(remainder.Mid(index + 1));
1.190 + }
1.191 + }
1.192 +
1.193 +// writeCapabilityL, writeCapabilitySetL, writeSecurityPolicyL implemented in
1.194 +// t_capability.cpp
1.195 +
1.196 +// NullOutput //////////////////////////////////////////////////////////////////
1.197 +
1.198 +EXPORT_C NullOutput::NullOutput()
1.199 + {
1.200 + }
1.201 +
1.202 +void NullOutput::DoWriteL(const TDesC& /*aString*/)
1.203 + {
1.204 + }
1.205 +
1.206 +// FileOutput //////////////////////////////////////////////////////////////////
1.207 +
1.208 +EXPORT_C FileOutput::FileOutput(RFile& aFile) :
1.209 + iFile(aFile)
1.210 + {
1.211 + }
1.212 +
1.213 +void FileOutput::DoWriteL(const TDesC& aString)
1.214 + {
1.215 + TBuf8<KMaxLineLength> buf;
1.216 + buf.Copy(aString.Left(KMaxLineLength));
1.217 + User::LeaveIfError(iFile.Write(buf));
1.218 + User::LeaveIfError(iFile.Flush()); // Commit data
1.219 + }
1.220 +
1.221 +// ConsoleOutput ///////////////////////////////////////////////////////////////
1.222 +
1.223 +EXPORT_C ConsoleOutput::ConsoleOutput(CConsoleBase& aConsole) :
1.224 + iConsole(aConsole)
1.225 + {
1.226 + }
1.227 +
1.228 +void ConsoleOutput::DoWriteL(const TDesC& aString)
1.229 + {
1.230 + iConsole.Printf(aString);
1.231 + }
1.232 +
1.233 +// COutputTee //////////////////////////////////////////////////////////////////
1.234 +
1.235 +COutputTee::COutputTee()
1.236 + {
1.237 + }
1.238 +
1.239 +COutputTee::~COutputTee()
1.240 + {
1.241 + iChildren.ResetAndDestroy();
1.242 + }
1.243 +
1.244 +void COutputTee::AddChildL(Output* aChild)
1.245 + {
1.246 + User::LeaveIfError(iChildren.Append(aChild));
1.247 + }
1.248 +
1.249 +void COutputTee::DoWriteL(const TDesC& aString)
1.250 + {
1.251 + for (TInt i = 0 ; i < iChildren.Count() ; ++i)
1.252 + {
1.253 + iChildren[i]->writeString(aString);
1.254 + }
1.255 + }
1.256 +