Update contrib.
2 * Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #include <securityerr.h>
22 // Size used for stack based buffers
23 const static TInt KMaxLineLength = 200;
25 _LIT(KNewLine, "\r\n");
27 // Output //////////////////////////////////////////////////////////////////////
29 EXPORT_C void Output::writeString(const TDesC& aString)
31 FixNewlinesAndWriteL(aString);
34 EXPORT_C void Output::writeString(const TDesC8& aString)
36 HBufC16* des = HBufC16::NewLC(aString.Length());
37 des->Des().Copy(aString);
38 FixNewlinesAndWriteL(*des);
39 CleanupStack::PopAndDestroy(des);
42 EXPORT_C void Output::write(TRefByValue<const TDesC16> aFmt, ...)
44 TBuf<KMaxLineLength> buf;
47 buf.AppendFormatList(aFmt, args);
50 FixNewlinesAndWriteL(buf);
53 EXPORT_C void Output::writeSpaces(TInt aNum)
55 for (TInt i = 0; i < aNum; i++)
61 EXPORT_C void Output::writeNewLine()
66 EXPORT_C void Output::writeNum(TInt aNum)
68 write(_L("%d"), aNum);
71 EXPORT_C void Output::writeHex(TInt aHex)
73 write(_L("%x"), aHex);
76 EXPORT_C void Output::writeError(TInt aError)
81 DoWriteL(_L("KErrNone"));
84 case KErrNotFound: // -1
85 DoWriteL(_L("KErrNotFound"));
88 case KErrNotSupported: // -5
89 DoWriteL(_L("KErrNotSupported"));
92 case KErrInUse: // -14
93 DoWriteL(_L("KErrInUse"));
96 case KErrNotReady: // -18
97 DoWriteL(_L("KErrNotReady"));
100 case KRequestPending:
101 DoWriteL(_L("KRequestPending"));
104 case KErrAlreadyExists:
105 DoWriteL(_L("KErrAlreadyExists"));
109 DoWriteL(_L("KErrArgument"));
112 case KErrBadName: // -28
113 DoWriteL(_L("KErrBadName"));
115 case KErrPrivateKeyNotFound:
116 writeString(_L("KErrPrivateKeyNotFound"));
125 EXPORT_C void Output::writeOctetString(const TDesC8& aString)
127 writeOctetStringL(aString);
130 EXPORT_C void Output::writeOctetStringL(const TDesC8& aString)
132 TInt len = aString.Length();
133 HBufC* buf = HBufC::NewLC(len * 3);
134 TPtr pBuf = buf->Des();
135 for (TInt index = 0; index < len; ++index)
137 pBuf.AppendFormat(_L("%02x "),aString[index]);
140 CleanupStack::PopAndDestroy(buf);
143 EXPORT_C void Output::writeBoolL(TBool aBool)
147 DoWriteL(_L("ETrue"));
151 DoWriteL(_L("EFalse"));
155 // Fix up newlines by turning any occurences of just "\n" into "\r\n".
156 void Output::FixNewlinesAndWriteL(const TDesC& aString)
158 TPtrC remainder(aString);
160 while (remainder.Length())
162 index = remainder.Locate('\n');
164 if (index == KErrNotFound)
176 if (remainder[index - 1] == '\r')
178 DoWriteL(remainder.Left(index + 1));
182 DoWriteL(remainder.Left(index));
186 remainder.Set(remainder.Mid(index + 1));
190 // writeCapabilityL, writeCapabilitySetL, writeSecurityPolicyL implemented in
193 // NullOutput //////////////////////////////////////////////////////////////////
195 EXPORT_C NullOutput::NullOutput()
199 void NullOutput::DoWriteL(const TDesC& /*aString*/)
203 // FileOutput //////////////////////////////////////////////////////////////////
205 EXPORT_C FileOutput::FileOutput(RFile& aFile) :
210 void FileOutput::DoWriteL(const TDesC& aString)
212 TBuf8<KMaxLineLength> buf;
213 buf.Copy(aString.Left(KMaxLineLength));
214 User::LeaveIfError(iFile.Write(buf));
215 User::LeaveIfError(iFile.Flush()); // Commit data
218 // ConsoleOutput ///////////////////////////////////////////////////////////////
220 EXPORT_C ConsoleOutput::ConsoleOutput(CConsoleBase& aConsole) :
225 void ConsoleOutput::DoWriteL(const TDesC& aString)
227 iConsole.Printf(aString);
230 // COutputTee //////////////////////////////////////////////////////////////////
232 COutputTee::COutputTee()
236 COutputTee::~COutputTee()
238 iChildren.ResetAndDestroy();
241 void COutputTee::AddChildL(Output* aChild)
243 User::LeaveIfError(iChildren.Append(aChild));
246 void COutputTee::DoWriteL(const TDesC& aString)
248 for (TInt i = 0 ; i < iChildren.Count() ; ++i)
250 iChildren[i]->writeString(aString);