sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
#include "t_output.h"
|
sl@0
|
20 |
#include <securityerr.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
// Size used for stack based buffers
|
sl@0
|
23 |
const static TInt KMaxLineLength = 200;
|
sl@0
|
24 |
|
sl@0
|
25 |
_LIT(KNewLine, "\r\n");
|
sl@0
|
26 |
|
sl@0
|
27 |
// Output //////////////////////////////////////////////////////////////////////
|
sl@0
|
28 |
|
sl@0
|
29 |
EXPORT_C void Output::writeString(const TDesC& aString)
|
sl@0
|
30 |
{
|
sl@0
|
31 |
FixNewlinesAndWriteL(aString);
|
sl@0
|
32 |
}
|
sl@0
|
33 |
|
sl@0
|
34 |
EXPORT_C void Output::writeString(const TDesC8& aString)
|
sl@0
|
35 |
{
|
sl@0
|
36 |
HBufC16* des = HBufC16::NewLC(aString.Length());
|
sl@0
|
37 |
des->Des().Copy(aString);
|
sl@0
|
38 |
FixNewlinesAndWriteL(*des);
|
sl@0
|
39 |
CleanupStack::PopAndDestroy(des);
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
EXPORT_C void Output::write(TRefByValue<const TDesC16> aFmt, ...)
|
sl@0
|
43 |
{
|
sl@0
|
44 |
TBuf<KMaxLineLength> buf;
|
sl@0
|
45 |
VA_LIST args;
|
sl@0
|
46 |
VA_START(args, aFmt);
|
sl@0
|
47 |
buf.AppendFormatList(aFmt, args);
|
sl@0
|
48 |
VA_END(args);
|
sl@0
|
49 |
|
sl@0
|
50 |
FixNewlinesAndWriteL(buf);
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
EXPORT_C void Output::writeSpaces(TInt aNum)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
for (TInt i = 0; i < aNum; i++)
|
sl@0
|
56 |
{
|
sl@0
|
57 |
DoWriteL(_L(" "));
|
sl@0
|
58 |
}
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
EXPORT_C void Output::writeNewLine()
|
sl@0
|
62 |
{
|
sl@0
|
63 |
DoWriteL(KNewLine);
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
EXPORT_C void Output::writeNum(TInt aNum)
|
sl@0
|
67 |
{
|
sl@0
|
68 |
write(_L("%d"), aNum);
|
sl@0
|
69 |
}
|
sl@0
|
70 |
|
sl@0
|
71 |
EXPORT_C void Output::writeHex(TInt aHex)
|
sl@0
|
72 |
{
|
sl@0
|
73 |
write(_L("%x"), aHex);
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
EXPORT_C void Output::writeError(TInt aError)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
switch (aError)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
case KErrNone: // 0
|
sl@0
|
81 |
DoWriteL(_L("KErrNone"));
|
sl@0
|
82 |
break;
|
sl@0
|
83 |
|
sl@0
|
84 |
case KErrNotFound: // -1
|
sl@0
|
85 |
DoWriteL(_L("KErrNotFound"));
|
sl@0
|
86 |
break;
|
sl@0
|
87 |
|
sl@0
|
88 |
case KErrNotSupported: // -5
|
sl@0
|
89 |
DoWriteL(_L("KErrNotSupported"));
|
sl@0
|
90 |
break;
|
sl@0
|
91 |
|
sl@0
|
92 |
case KErrInUse: // -14
|
sl@0
|
93 |
DoWriteL(_L("KErrInUse"));
|
sl@0
|
94 |
break;
|
sl@0
|
95 |
|
sl@0
|
96 |
case KErrNotReady: // -18
|
sl@0
|
97 |
DoWriteL(_L("KErrNotReady"));
|
sl@0
|
98 |
break;
|
sl@0
|
99 |
|
sl@0
|
100 |
case KRequestPending:
|
sl@0
|
101 |
DoWriteL(_L("KRequestPending"));
|
sl@0
|
102 |
break;
|
sl@0
|
103 |
|
sl@0
|
104 |
case KErrAlreadyExists:
|
sl@0
|
105 |
DoWriteL(_L("KErrAlreadyExists"));
|
sl@0
|
106 |
break;
|
sl@0
|
107 |
|
sl@0
|
108 |
case KErrArgument:
|
sl@0
|
109 |
DoWriteL(_L("KErrArgument"));
|
sl@0
|
110 |
break;
|
sl@0
|
111 |
|
sl@0
|
112 |
case KErrBadName: // -28
|
sl@0
|
113 |
DoWriteL(_L("KErrBadName"));
|
sl@0
|
114 |
break;
|
sl@0
|
115 |
case KErrPrivateKeyNotFound:
|
sl@0
|
116 |
writeString(_L("KErrPrivateKeyNotFound"));
|
sl@0
|
117 |
break;
|
sl@0
|
118 |
|
sl@0
|
119 |
default:
|
sl@0
|
120 |
writeNum(aError);
|
sl@0
|
121 |
break;
|
sl@0
|
122 |
}
|
sl@0
|
123 |
}
|
sl@0
|
124 |
|
sl@0
|
125 |
EXPORT_C void Output::writeOctetString(const TDesC8& aString)
|
sl@0
|
126 |
{
|
sl@0
|
127 |
writeOctetStringL(aString);
|
sl@0
|
128 |
}
|
sl@0
|
129 |
|
sl@0
|
130 |
EXPORT_C void Output::writeOctetStringL(const TDesC8& aString)
|
sl@0
|
131 |
{
|
sl@0
|
132 |
TInt len = aString.Length();
|
sl@0
|
133 |
HBufC* buf = HBufC::NewLC(len * 3);
|
sl@0
|
134 |
TPtr pBuf = buf->Des();
|
sl@0
|
135 |
for (TInt index = 0; index < len; ++index)
|
sl@0
|
136 |
{
|
sl@0
|
137 |
pBuf.AppendFormat(_L("%02x "),aString[index]);
|
sl@0
|
138 |
}
|
sl@0
|
139 |
DoWriteL(*buf);
|
sl@0
|
140 |
CleanupStack::PopAndDestroy(buf);
|
sl@0
|
141 |
}
|
sl@0
|
142 |
|
sl@0
|
143 |
EXPORT_C void Output::writeBoolL(TBool aBool)
|
sl@0
|
144 |
{
|
sl@0
|
145 |
if (aBool)
|
sl@0
|
146 |
{
|
sl@0
|
147 |
DoWriteL(_L("ETrue"));
|
sl@0
|
148 |
}
|
sl@0
|
149 |
else
|
sl@0
|
150 |
{
|
sl@0
|
151 |
DoWriteL(_L("EFalse"));
|
sl@0
|
152 |
}
|
sl@0
|
153 |
}
|
sl@0
|
154 |
|
sl@0
|
155 |
// Fix up newlines by turning any occurences of just "\n" into "\r\n".
|
sl@0
|
156 |
void Output::FixNewlinesAndWriteL(const TDesC& aString)
|
sl@0
|
157 |
{
|
sl@0
|
158 |
TPtrC remainder(aString);
|
sl@0
|
159 |
TInt index = 0;
|
sl@0
|
160 |
while (remainder.Length())
|
sl@0
|
161 |
{
|
sl@0
|
162 |
index = remainder.Locate('\n');
|
sl@0
|
163 |
|
sl@0
|
164 |
if (index == KErrNotFound)
|
sl@0
|
165 |
{
|
sl@0
|
166 |
DoWriteL(remainder);
|
sl@0
|
167 |
break;
|
sl@0
|
168 |
}
|
sl@0
|
169 |
|
sl@0
|
170 |
if (index == 0)
|
sl@0
|
171 |
{
|
sl@0
|
172 |
DoWriteL(KNewLine);
|
sl@0
|
173 |
}
|
sl@0
|
174 |
else
|
sl@0
|
175 |
{
|
sl@0
|
176 |
if (remainder[index - 1] == '\r')
|
sl@0
|
177 |
{
|
sl@0
|
178 |
DoWriteL(remainder.Left(index + 1));
|
sl@0
|
179 |
}
|
sl@0
|
180 |
else
|
sl@0
|
181 |
{
|
sl@0
|
182 |
DoWriteL(remainder.Left(index));
|
sl@0
|
183 |
DoWriteL(KNewLine);
|
sl@0
|
184 |
}
|
sl@0
|
185 |
}
|
sl@0
|
186 |
remainder.Set(remainder.Mid(index + 1));
|
sl@0
|
187 |
}
|
sl@0
|
188 |
}
|
sl@0
|
189 |
|
sl@0
|
190 |
// writeCapabilityL, writeCapabilitySetL, writeSecurityPolicyL implemented in
|
sl@0
|
191 |
// t_capability.cpp
|
sl@0
|
192 |
|
sl@0
|
193 |
// NullOutput //////////////////////////////////////////////////////////////////
|
sl@0
|
194 |
|
sl@0
|
195 |
EXPORT_C NullOutput::NullOutput()
|
sl@0
|
196 |
{
|
sl@0
|
197 |
}
|
sl@0
|
198 |
|
sl@0
|
199 |
void NullOutput::DoWriteL(const TDesC& /*aString*/)
|
sl@0
|
200 |
{
|
sl@0
|
201 |
}
|
sl@0
|
202 |
|
sl@0
|
203 |
// FileOutput //////////////////////////////////////////////////////////////////
|
sl@0
|
204 |
|
sl@0
|
205 |
EXPORT_C FileOutput::FileOutput(RFile& aFile) :
|
sl@0
|
206 |
iFile(aFile)
|
sl@0
|
207 |
{
|
sl@0
|
208 |
}
|
sl@0
|
209 |
|
sl@0
|
210 |
void FileOutput::DoWriteL(const TDesC& aString)
|
sl@0
|
211 |
{
|
sl@0
|
212 |
TBuf8<KMaxLineLength> buf;
|
sl@0
|
213 |
buf.Copy(aString.Left(KMaxLineLength));
|
sl@0
|
214 |
User::LeaveIfError(iFile.Write(buf));
|
sl@0
|
215 |
User::LeaveIfError(iFile.Flush()); // Commit data
|
sl@0
|
216 |
}
|
sl@0
|
217 |
|
sl@0
|
218 |
// ConsoleOutput ///////////////////////////////////////////////////////////////
|
sl@0
|
219 |
|
sl@0
|
220 |
EXPORT_C ConsoleOutput::ConsoleOutput(CConsoleBase& aConsole) :
|
sl@0
|
221 |
iConsole(aConsole)
|
sl@0
|
222 |
{
|
sl@0
|
223 |
}
|
sl@0
|
224 |
|
sl@0
|
225 |
void ConsoleOutput::DoWriteL(const TDesC& aString)
|
sl@0
|
226 |
{
|
sl@0
|
227 |
iConsole.Printf(aString);
|
sl@0
|
228 |
}
|
sl@0
|
229 |
|
sl@0
|
230 |
// COutputTee //////////////////////////////////////////////////////////////////
|
sl@0
|
231 |
|
sl@0
|
232 |
COutputTee::COutputTee()
|
sl@0
|
233 |
{
|
sl@0
|
234 |
}
|
sl@0
|
235 |
|
sl@0
|
236 |
COutputTee::~COutputTee()
|
sl@0
|
237 |
{
|
sl@0
|
238 |
iChildren.ResetAndDestroy();
|
sl@0
|
239 |
}
|
sl@0
|
240 |
|
sl@0
|
241 |
void COutputTee::AddChildL(Output* aChild)
|
sl@0
|
242 |
{
|
sl@0
|
243 |
User::LeaveIfError(iChildren.Append(aChild));
|
sl@0
|
244 |
}
|
sl@0
|
245 |
|
sl@0
|
246 |
void COutputTee::DoWriteL(const TDesC& aString)
|
sl@0
|
247 |
{
|
sl@0
|
248 |
for (TInt i = 0 ; i < iChildren.Count() ; ++i)
|
sl@0
|
249 |
{
|
sl@0
|
250 |
iChildren[i]->writeString(aString);
|
sl@0
|
251 |
}
|
sl@0
|
252 |
}
|
sl@0
|
253 |
|