sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// This file contains the definition of the class CDataLogger
|
sl@0
|
15 |
// This file comment is for DOxygen only and is ignored by EDoc.
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@test
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
|
sl@0
|
23 |
#ifndef __DATALOGGER_H__
|
sl@0
|
24 |
#define __DATALOGGER_H__
|
sl@0
|
25 |
|
sl@0
|
26 |
#include <e32base.h>
|
sl@0
|
27 |
#include <flogger.h>
|
sl@0
|
28 |
#include <ecom/test_bed/dataformat.h>
|
sl@0
|
29 |
#include <ecom/test_bed/defaultlogoutput.h>
|
sl@0
|
30 |
|
sl@0
|
31 |
/**
|
sl@0
|
32 |
@internalAll
|
sl@0
|
33 |
Comments : Handles the transformation of input data into text suitable
|
sl@0
|
34 |
for output to a permanent store and the placing of that
|
sl@0
|
35 |
data in the store.
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
|
sl@0
|
38 |
|
sl@0
|
39 |
class CDataLogger : public CBase
|
sl@0
|
40 |
{
|
sl@0
|
41 |
public:
|
sl@0
|
42 |
/**
|
sl@0
|
43 |
@fn static CDataLogger* NewL(TLoggingInfo* aLogInfo)
|
sl@0
|
44 |
Intended Usage : Standardized safe construction which leaves nothing on the cleanup stack.
|
sl@0
|
45 |
@leave KErrNoMemory.
|
sl@0
|
46 |
@since 7.0
|
sl@0
|
47 |
@param aLogInfo The logging configuration information
|
sl@0
|
48 |
@return CDataLogger* A pointer to the newly created class.
|
sl@0
|
49 |
@pre None
|
sl@0
|
50 |
@post Nothing is left on the CleanupStack
|
sl@0
|
51 |
*/
|
sl@0
|
52 |
|
sl@0
|
53 |
static CDataLogger* NewL(TLoggingInfo* aLogInfo);
|
sl@0
|
54 |
|
sl@0
|
55 |
/**
|
sl@0
|
56 |
@fn static CDataLogger* NewLC(TLoggingInfo* aLogInfo)
|
sl@0
|
57 |
Intended Usage : Standardized safe construction which leaves CDataLogger* on the cleanup stack.
|
sl@0
|
58 |
@leave KErrNoMemory.
|
sl@0
|
59 |
@since 7.0
|
sl@0
|
60 |
@param aLogInfo The logging configuration information
|
sl@0
|
61 |
@return CDataLogger* A pointer to the newly created class.
|
sl@0
|
62 |
@pre None
|
sl@0
|
63 |
@post CDataLogger is on the CleanupStack
|
sl@0
|
64 |
*/
|
sl@0
|
65 |
|
sl@0
|
66 |
static CDataLogger* NewLC(TLoggingInfo* aLogInfo);
|
sl@0
|
67 |
|
sl@0
|
68 |
/**
|
sl@0
|
69 |
@fn ~CDataLogger()
|
sl@0
|
70 |
Intended Usage : Standardized virtual destruction method
|
sl@0
|
71 |
@since 7.0
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
|
sl@0
|
74 |
~CDataLogger();
|
sl@0
|
75 |
|
sl@0
|
76 |
/**
|
sl@0
|
77 |
@fn IMPORT_C void DumpMemoryBlock(const TUint8* aAddress, TInt aLength)
|
sl@0
|
78 |
Intended Usage : Logs a block of memory to file in hexadecimal and ASCII format.
|
sl@0
|
79 |
For example:
|
sl@0
|
80 |
|
sl@0
|
81 |
@code
|
sl@0
|
82 |
0000 : 40 fd 8f 01 38 fd 8f 01 21 5f 00 10 61 00 74 00 : @...8...!_..a.t.
|
sl@0
|
83 |
0010 : 61 55 ff 00 48 fd 8f 01 ac fd 8f 01 ac fd 8f 01 : aU..H...........
|
sl@0
|
84 |
0020 : 21 88 00 60 90 41 ff 00 01 00 00 00 24 1f 7b 00 : !..`.A......$.{.
|
sl@0
|
85 |
0030 : 61 00 74 00 72 00 65 00 34 fd 8f 01 23 00 f1 77 : a.t.r.e.4...#..w
|
sl@0
|
86 |
0040 : 23 00 00 00 38 00 : #...8.
|
sl@0
|
87 |
@endcode
|
sl@0
|
88 |
|
sl@0
|
89 |
@since 7.0
|
sl@0
|
90 |
@param aAddress The address of the start of the block to be logged
|
sl@0
|
91 |
@param aLength The number of bytes to be logged
|
sl@0
|
92 |
@pre None
|
sl@0
|
93 |
@post The specified block of memory is output to file in hex and ASCII format
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
|
sl@0
|
96 |
IMPORT_C void DumpMemoryBlock(const TUint8* aAddress, TInt aLength);
|
sl@0
|
97 |
|
sl@0
|
98 |
/**
|
sl@0
|
99 |
@fn IMPORT_C void LogInformation(const TDesC16& aComment)
|
sl@0
|
100 |
Intended Usage : Add the specified comment to the log file. Wide descriptor version
|
sl@0
|
101 |
Error Condition :
|
sl@0
|
102 |
@since 7.0
|
sl@0
|
103 |
@param aComment The text to be logged
|
sl@0
|
104 |
@pre None
|
sl@0
|
105 |
@post The specified text is added to the log file
|
sl@0
|
106 |
*/
|
sl@0
|
107 |
|
sl@0
|
108 |
IMPORT_C void LogInformation(const TDesC16& aComment);
|
sl@0
|
109 |
|
sl@0
|
110 |
/**
|
sl@0
|
111 |
@fn IMPORT_C void LogInformation(const TDesC8& aComment)
|
sl@0
|
112 |
Intended Usage : Add the specified comment to the log file. Narrow descriptor
|
sl@0
|
113 |
version
|
sl@0
|
114 |
Error Condition :
|
sl@0
|
115 |
@since 7.0
|
sl@0
|
116 |
@param aComment The text to be logged
|
sl@0
|
117 |
@pre None
|
sl@0
|
118 |
@post The specified text is added to the log file
|
sl@0
|
119 |
*/
|
sl@0
|
120 |
|
sl@0
|
121 |
IMPORT_C void LogInformation(const TDesC8& aComment);
|
sl@0
|
122 |
|
sl@0
|
123 |
/**
|
sl@0
|
124 |
@fn IMPORT_C void LogInformationWithParameters(TRefByValue<const TDesC16> aFormat, ...)
|
sl@0
|
125 |
Intended Usage : Add the specified comment to the log file. Wide descriptor version
|
sl@0
|
126 |
Error Condition :
|
sl@0
|
127 |
@since 7.0
|
sl@0
|
128 |
@param aFormat The text to be formatted and logged
|
sl@0
|
129 |
@param ... An argument set
|
sl@0
|
130 |
@pre None
|
sl@0
|
131 |
@post The specified text is formatted and added to the log file
|
sl@0
|
132 |
*/
|
sl@0
|
133 |
|
sl@0
|
134 |
IMPORT_C void LogInformationWithParameters(TRefByValue<const TDesC16> aFormat, ...);
|
sl@0
|
135 |
|
sl@0
|
136 |
/**
|
sl@0
|
137 |
@fn IMPORT_C void LogInformationWithParameters(TRefByValue<const TDesC8> aFormat, ...)
|
sl@0
|
138 |
Intended Usage : Add the specified comment to the log file. Narrow
|
sl@0
|
139 |
descriptor version
|
sl@0
|
140 |
Error Condition :
|
sl@0
|
141 |
@since 7.0
|
sl@0
|
142 |
@param aFormat The text to be formatted and logged
|
sl@0
|
143 |
@param ... An argument set
|
sl@0
|
144 |
@pre None
|
sl@0
|
145 |
@post The specified text is formatted and added to the log file
|
sl@0
|
146 |
*/
|
sl@0
|
147 |
|
sl@0
|
148 |
IMPORT_C void LogInformationWithParameters(TRefByValue<const TDesC8> aFormat, ...);
|
sl@0
|
149 |
|
sl@0
|
150 |
/**
|
sl@0
|
151 |
@fn IMPORT_C void ReportInformation(const TDesC& aComment)
|
sl@0
|
152 |
Intended Usage : Add the specified comment to the report file
|
sl@0
|
153 |
Error Condition :
|
sl@0
|
154 |
@since 7.0
|
sl@0
|
155 |
@param aComment The text to be logged
|
sl@0
|
156 |
@pre None
|
sl@0
|
157 |
@post The specified text is added to the report file
|
sl@0
|
158 |
*/
|
sl@0
|
159 |
|
sl@0
|
160 |
IMPORT_C void ReportInformation(const TDesC& aComment);
|
sl@0
|
161 |
|
sl@0
|
162 |
/**
|
sl@0
|
163 |
@fn IMPORT_C void ReportInformationWithParameters(TRefByValue<const TDesC> aFormat, ...)
|
sl@0
|
164 |
Intended Usage : Add the specified comment to the report file
|
sl@0
|
165 |
Error Condition :
|
sl@0
|
166 |
@since 7.0
|
sl@0
|
167 |
@param aFormat The text to be formatted and logged
|
sl@0
|
168 |
@param ... An argument set
|
sl@0
|
169 |
@pre None
|
sl@0
|
170 |
@post The specified text is formatted and added to the log file
|
sl@0
|
171 |
*/
|
sl@0
|
172 |
|
sl@0
|
173 |
IMPORT_C void ReportInformationWithParameters(TRefByValue<const TDesC> aFormat, ...);
|
sl@0
|
174 |
|
sl@0
|
175 |
private:
|
sl@0
|
176 |
/**
|
sl@0
|
177 |
@fn CDataLogger()
|
sl@0
|
178 |
Intended Usage : Constructor
|
sl@0
|
179 |
@since 7.0
|
sl@0
|
180 |
*/
|
sl@0
|
181 |
|
sl@0
|
182 |
CDataLogger();
|
sl@0
|
183 |
|
sl@0
|
184 |
/**
|
sl@0
|
185 |
@fn void ConstructL(TLoggingInfo* aLogInfo)
|
sl@0
|
186 |
Intended Usage : Completes the safe construction of the CDataLogger object
|
sl@0
|
187 |
@leave KErrNoMemory.
|
sl@0
|
188 |
@since 7.0
|
sl@0
|
189 |
@param aLogInfo The logging configuration information
|
sl@0
|
190 |
@pre First phase of construction is complete
|
sl@0
|
191 |
@post CDatalogger is fully constructed
|
sl@0
|
192 |
*/
|
sl@0
|
193 |
|
sl@0
|
194 |
void ConstructL(TLoggingInfo* aLogInfo);
|
sl@0
|
195 |
|
sl@0
|
196 |
/**
|
sl@0
|
197 |
@fn void SetupRDebugL(TBool aRequest)
|
sl@0
|
198 |
Intended Usage :
|
sl@0
|
199 |
Error Condition :
|
sl@0
|
200 |
@since 7.0
|
sl@0
|
201 |
@param TBool aRequest " "
|
sl@0
|
202 |
@pre Called only from ConstructL()
|
sl@0
|
203 |
@post iDebug is set up for debug outputting or not.
|
sl@0
|
204 |
*/
|
sl@0
|
205 |
|
sl@0
|
206 |
void SetupRDebugL(TBool aRequest);
|
sl@0
|
207 |
|
sl@0
|
208 |
/**
|
sl@0
|
209 |
@fn void Log(MLogOutput* aLogOutput, const TDesC16& aMessage)
|
sl@0
|
210 |
Intended Usage : Helper function which will log out a descriptor. The destination for
|
sl@0
|
211 |
logging depends whether an alternative logger was supplied by the user at construction.
|
sl@0
|
212 |
Descriptors to be logged are broken up into maximum lengths of 150 as this is more
|
sl@0
|
213 |
manageable and is the limit supported by RFileLogger. Wide descriptor version.
|
sl@0
|
214 |
@since 7.0
|
sl@0
|
215 |
@param aLogOutput The logging mechanism to use
|
sl@0
|
216 |
@param aMessage The descriptor to log
|
sl@0
|
217 |
@pre This CDataLogger is constructed
|
sl@0
|
218 |
@post The message is logged to the destination
|
sl@0
|
219 |
*/
|
sl@0
|
220 |
|
sl@0
|
221 |
void Log(MLogOutput* aLogOutput, const TDesC16& aMessage);
|
sl@0
|
222 |
|
sl@0
|
223 |
/**
|
sl@0
|
224 |
@fn void SetupLoggingL(TLoggingInfo* aLogInfo)
|
sl@0
|
225 |
Intended Usage :
|
sl@0
|
226 |
Error Condition :
|
sl@0
|
227 |
@since 7.0
|
sl@0
|
228 |
@param aLogInfo The user supplied logging configuration information
|
sl@0
|
229 |
@pre Called from ConstructL()
|
sl@0
|
230 |
@post Logging output objects are configured.
|
sl@0
|
231 |
*/
|
sl@0
|
232 |
|
sl@0
|
233 |
void SetupLoggingL(TLoggingInfo* aLogInfo);
|
sl@0
|
234 |
|
sl@0
|
235 |
private:
|
sl@0
|
236 |
/** A do nothing base class for debug logging */
|
sl@0
|
237 |
class TNullDebugPrint
|
sl@0
|
238 |
{
|
sl@0
|
239 |
public:
|
sl@0
|
240 |
virtual void Print(const TDesC&);
|
sl@0
|
241 |
};
|
sl@0
|
242 |
|
sl@0
|
243 |
/** An override class for debug logging to RDebug */
|
sl@0
|
244 |
NONSHARABLE_CLASS(TDebugPrint) : public TNullDebugPrint
|
sl@0
|
245 |
{
|
sl@0
|
246 |
public:
|
sl@0
|
247 |
/** Print the output to RDebug */
|
sl@0
|
248 |
void Print(const TDesC& aMessage);
|
sl@0
|
249 |
};
|
sl@0
|
250 |
/** The class instance */
|
sl@0
|
251 |
|
sl@0
|
252 |
TNullDebugPrint* iDebug;
|
sl@0
|
253 |
|
sl@0
|
254 |
/** The logging style to be used (plain text, HTML or custom). */
|
sl@0
|
255 |
|
sl@0
|
256 |
TLoggingStyle iLogStyle;
|
sl@0
|
257 |
/** The logging formats to be used if iLogStyle is HTML or custom. */
|
sl@0
|
258 |
|
sl@0
|
259 |
TLogFormat iLogFormat;
|
sl@0
|
260 |
/** Provides the file logging facilities*/
|
sl@0
|
261 |
|
sl@0
|
262 |
MLogOutput* iLogOutput;
|
sl@0
|
263 |
/** Provides the reporting facilities*/
|
sl@0
|
264 |
|
sl@0
|
265 |
MLogOutput* iReportOutput;
|
sl@0
|
266 |
/** Pointer to a default log output if the user doesn't supply one */
|
sl@0
|
267 |
|
sl@0
|
268 |
CDefaultLogOutput* iDefaultLogOutput;
|
sl@0
|
269 |
/** Pointer to a default report output if the user doesn't supply one */
|
sl@0
|
270 |
|
sl@0
|
271 |
CDefaultLogOutput* iDefaultReportOutput;
|
sl@0
|
272 |
/** Provides the file reporting facilities*/
|
sl@0
|
273 |
|
sl@0
|
274 |
RFileLogger iReportFlogger;
|
sl@0
|
275 |
/** Provides the area for formatting log and report data */
|
sl@0
|
276 |
|
sl@0
|
277 |
HBufC* iFormatBuf;
|
sl@0
|
278 |
/** Make the test State Accessor a friend */
|
sl@0
|
279 |
friend class TDataLogger_StateAccessor;
|
sl@0
|
280 |
};
|
sl@0
|
281 |
|
sl@0
|
282 |
inline void CDataLogger::TNullDebugPrint::Print(const TDesC&)
|
sl@0
|
283 |
{
|
sl@0
|
284 |
// Do nothing
|
sl@0
|
285 |
}
|
sl@0
|
286 |
|
sl@0
|
287 |
#endif
|