sl@0
|
1 |
// Copyright (c) 2002-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 |
// Main log server engine.
|
sl@0
|
15 |
// Process log requests from multiple clients simultaneously.
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
/**
|
sl@0
|
20 |
@file server.cpp
|
sl@0
|
21 |
*/
|
sl@0
|
22 |
#include "server.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
CLogServer* CLogServer::NewL()
|
sl@0
|
25 |
/**
|
sl@0
|
26 |
* @return - Instance of the log server
|
sl@0
|
27 |
*/
|
sl@0
|
28 |
{
|
sl@0
|
29 |
CLogServer * server = new (ELeave) CLogServer();
|
sl@0
|
30 |
CleanupStack::PushL(server);
|
sl@0
|
31 |
server->ConstructL();
|
sl@0
|
32 |
// CServer base class call
|
sl@0
|
33 |
server->StartL(KFileLogrerServerName);
|
sl@0
|
34 |
CleanupStack::Pop(server);
|
sl@0
|
35 |
return server;
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
void CLogServer::ConstructL()
|
sl@0
|
39 |
/**
|
sl@0
|
40 |
* Second phase construction
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
{
|
sl@0
|
43 |
User::LeaveIfError(Fs().Connect());
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
|
sl@0
|
47 |
CLogServer::CLogServer() : CServer2(EPriorityStandard,ESharableSessions)
|
sl@0
|
48 |
/**
|
sl@0
|
49 |
* Constructor
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
{
|
sl@0
|
52 |
}
|
sl@0
|
53 |
|
sl@0
|
54 |
CLogServer::~CLogServer()
|
sl@0
|
55 |
/**
|
sl@0
|
56 |
* Destructor
|
sl@0
|
57 |
*/
|
sl@0
|
58 |
{
|
sl@0
|
59 |
// Close the array of control structures
|
sl@0
|
60 |
LogControl().Close();
|
sl@0
|
61 |
Fs().Close();
|
sl@0
|
62 |
}
|
sl@0
|
63 |
|
sl@0
|
64 |
|
sl@0
|
65 |
CSession2* CLogServer::NewSessionL(const TVersion& /*aVersion*/,const RMessage2& /*aMessage*/) const
|
sl@0
|
66 |
/**
|
sl@0
|
67 |
* @param RMessage - RMessage for the session open
|
sl@0
|
68 |
*/
|
sl@0
|
69 |
{
|
sl@0
|
70 |
// Just create the session
|
sl@0
|
71 |
CLogSession* session = new (ELeave) CLogSession();
|
sl@0
|
72 |
return session;
|
sl@0
|
73 |
}
|
sl@0
|
74 |
|
sl@0
|
75 |
void CLogServer::ControlComplete(CLogFileControl& aControl)
|
sl@0
|
76 |
/**
|
sl@0
|
77 |
* @param aControl - Logfile control class reference
|
sl@0
|
78 |
*
|
sl@0
|
79 |
* Checks to see if this control session can be removed
|
sl@0
|
80 |
*/
|
sl@0
|
81 |
{
|
sl@0
|
82 |
// Check session count and the data buffers on the queue
|
sl@0
|
83 |
if(aControl.SessionCount() || !aControl.QueueEmpty())
|
sl@0
|
84 |
return;
|
sl@0
|
85 |
|
sl@0
|
86 |
// There are no subsessions mapped to the logfile control class and
|
sl@0
|
87 |
// no data buffers on its write queue
|
sl@0
|
88 |
// Loop through the server's control array and remove it then delete it
|
sl@0
|
89 |
TInt i;
|
sl@0
|
90 |
for(i=0;i<LogControl().Count();i++)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
if(&aControl == LogControl()[i])
|
sl@0
|
93 |
{
|
sl@0
|
94 |
// Done
|
sl@0
|
95 |
LogControl().Remove(i);
|
sl@0
|
96 |
delete &aControl;
|
sl@0
|
97 |
break;
|
sl@0
|
98 |
}
|
sl@0
|
99 |
}
|
sl@0
|
100 |
// If it's the last one then exit the server
|
sl@0
|
101 |
if(!LogControl().Count())
|
sl@0
|
102 |
CActiveScheduler::Stop();
|
sl@0
|
103 |
}
|
sl@0
|
104 |
|
sl@0
|
105 |
|
sl@0
|
106 |
///////
|
sl@0
|
107 |
|
sl@0
|
108 |
CLogSession::CLogSession()
|
sl@0
|
109 |
/**
|
sl@0
|
110 |
* Constructor
|
sl@0
|
111 |
*/
|
sl@0
|
112 |
{
|
sl@0
|
113 |
}
|
sl@0
|
114 |
|
sl@0
|
115 |
CLogSession::~CLogSession()
|
sl@0
|
116 |
/**
|
sl@0
|
117 |
* Destructor
|
sl@0
|
118 |
*/
|
sl@0
|
119 |
{
|
sl@0
|
120 |
// Check for null
|
sl@0
|
121 |
// Session close without a createlog call leaves iControl null
|
sl@0
|
122 |
if(!iControl)
|
sl@0
|
123 |
return;
|
sl@0
|
124 |
// A logfile control structure can have multiple server sessions
|
sl@0
|
125 |
// decrement its server session count
|
sl@0
|
126 |
iControl->RemoveSession();
|
sl@0
|
127 |
CLogServer* p=(CLogServer*) Server();
|
sl@0
|
128 |
// Shuts Down the server if this is the last open session
|
sl@0
|
129 |
p->ControlComplete(*iControl);
|
sl@0
|
130 |
}
|
sl@0
|
131 |
|
sl@0
|
132 |
void CLogSession::ServiceL(const RMessage2& aMessage)
|
sl@0
|
133 |
/**
|
sl@0
|
134 |
* @param aMessage - Function and data for the session
|
sl@0
|
135 |
*/
|
sl@0
|
136 |
{
|
sl@0
|
137 |
switch(aMessage.Function())
|
sl@0
|
138 |
{
|
sl@0
|
139 |
// API CreateLog() call
|
sl@0
|
140 |
case RFileFlogger::ECreateLog :
|
sl@0
|
141 |
{
|
sl@0
|
142 |
// Sanity check to make sure it's not been called multiple times
|
sl@0
|
143 |
if(iControl)
|
sl@0
|
144 |
{
|
sl@0
|
145 |
aMessage.Complete(KErrInUse);
|
sl@0
|
146 |
break;
|
sl@0
|
147 |
}
|
sl@0
|
148 |
// Get the filepath
|
sl@0
|
149 |
// size policed on the client side
|
sl@0
|
150 |
TBuf<KMaxLoggerFilePath> logFilePath;
|
sl@0
|
151 |
// Read it
|
sl@0
|
152 |
aMessage.ReadL(0,logFilePath);
|
sl@0
|
153 |
// Get the log mode in the second argument
|
sl@0
|
154 |
RFileFlogger::TLogMode logMode;
|
sl@0
|
155 |
logMode = (RFileFlogger::TLogMode)aMessage.Int1();
|
sl@0
|
156 |
// Get a pointer to the parent server
|
sl@0
|
157 |
CLogServer* server=(CLogServer*) Server();
|
sl@0
|
158 |
// For compare's convert the whole path to lower case
|
sl@0
|
159 |
logFilePath.LowerCase();
|
sl@0
|
160 |
// Get rid of leading and trailing spaces.
|
sl@0
|
161 |
logFilePath.Trim();
|
sl@0
|
162 |
|
sl@0
|
163 |
// Loop the through the server's logfile control class list
|
sl@0
|
164 |
// to see if there's a match.
|
sl@0
|
165 |
TInt i;
|
sl@0
|
166 |
for(i=0;i<server->LogControl().Count();i++)
|
sl@0
|
167 |
{
|
sl@0
|
168 |
if(server->LogControl()[i]->LogFile() == logFilePath)
|
sl@0
|
169 |
// This file's already in open so we don't have to open it
|
sl@0
|
170 |
break;
|
sl@0
|
171 |
}
|
sl@0
|
172 |
TInt err = KErrNone;
|
sl@0
|
173 |
// Check the count
|
sl@0
|
174 |
if(i < server->LogControl().Count())
|
sl@0
|
175 |
// Map this session to an existing logfile control class in the list
|
sl@0
|
176 |
iControl = server->LogControl()[i];
|
sl@0
|
177 |
else
|
sl@0
|
178 |
{
|
sl@0
|
179 |
// Create a new logfile control class
|
sl@0
|
180 |
// creates/opens the logfile
|
sl@0
|
181 |
TRAP(err,iControl = CLogFileControl::NewL(*server,logFilePath,logMode));
|
sl@0
|
182 |
if(!err)
|
sl@0
|
183 |
{ // nancy
|
sl@0
|
184 |
// find out the type of output format and assign to this new created control
|
sl@0
|
185 |
TInt error = logFilePath.Find(_L(".xml"));
|
sl@0
|
186 |
if(error==KErrNotFound) iControl->SetLogType(CLogFileControl::ETxt);
|
sl@0
|
187 |
else iControl->SetLogType(CLogFileControl::EXml);
|
sl@0
|
188 |
// end nancy
|
sl@0
|
189 |
// Append it to the logfile control class list
|
sl@0
|
190 |
server->LogControl().Append(iControl);
|
sl@0
|
191 |
}
|
sl@0
|
192 |
}
|
sl@0
|
193 |
if(!err)
|
sl@0
|
194 |
// Increment its session count
|
sl@0
|
195 |
iControl->AddSession();
|
sl@0
|
196 |
aMessage.Complete(err);
|
sl@0
|
197 |
}
|
sl@0
|
198 |
break;
|
sl@0
|
199 |
// One of the API write calls
|
sl@0
|
200 |
case RFileFlogger::EWriteLog :
|
sl@0
|
201 |
{
|
sl@0
|
202 |
// Sanity check
|
sl@0
|
203 |
if(!iControl)
|
sl@0
|
204 |
{
|
sl@0
|
205 |
aMessage.Complete(KErrNotFound);
|
sl@0
|
206 |
break;
|
sl@0
|
207 |
}
|
sl@0
|
208 |
// Data can be any size
|
sl@0
|
209 |
// Get the length from second argument
|
sl@0
|
210 |
TInt bufferLength = aMessage.Int1();
|
sl@0
|
211 |
// Get a heap buffer of the right size
|
sl@0
|
212 |
HBufC8* buffer = HBufC8::NewLC(bufferLength);
|
sl@0
|
213 |
TPtr8 ptr(buffer->Des());
|
sl@0
|
214 |
// read the data
|
sl@0
|
215 |
aMessage.ReadL(0,ptr);
|
sl@0
|
216 |
// Get a buffer control class contructed with the heap data
|
sl@0
|
217 |
// takes ownership
|
sl@0
|
218 |
CLogBuffer* logBuffer = new (ELeave) CLogBuffer(*buffer);
|
sl@0
|
219 |
CleanupStack::Pop(buffer);
|
sl@0
|
220 |
// Add it to the logfile control class buffer queue
|
sl@0
|
221 |
iControl->AddLogBuffer(*logBuffer);
|
sl@0
|
222 |
if(!iControl->IsActive())
|
sl@0
|
223 |
// AO is idle, kick into life
|
sl@0
|
224 |
iControl->Kick();
|
sl@0
|
225 |
aMessage.Complete(KErrNone);
|
sl@0
|
226 |
}
|
sl@0
|
227 |
break;
|
sl@0
|
228 |
|
sl@0
|
229 |
default:
|
sl@0
|
230 |
break;
|
sl@0
|
231 |
}
|
sl@0
|
232 |
}
|
sl@0
|
233 |
|
sl@0
|
234 |
///////
|
sl@0
|
235 |
|
sl@0
|
236 |
CLogFileControl* CLogFileControl::NewL(CLogServer& aParent, const TDesC& aLogFilePath,RFileFlogger::TLogMode aMode)
|
sl@0
|
237 |
/**
|
sl@0
|
238 |
* @param aParent - Server reference for callback
|
sl@0
|
239 |
* @param aLogFilePath - Full path and filename of the logfile
|
sl@0
|
240 |
* @param aMode - Overwrite or Append
|
sl@0
|
241 |
*
|
sl@0
|
242 |
* First phase construction for logfile control class
|
sl@0
|
243 |
*/
|
sl@0
|
244 |
{
|
sl@0
|
245 |
CLogFileControl* self = new (ELeave) CLogFileControl(aParent,aLogFilePath);
|
sl@0
|
246 |
CleanupStack::PushL(self);
|
sl@0
|
247 |
self->ConstructL(aMode);
|
sl@0
|
248 |
CleanupStack::Pop();
|
sl@0
|
249 |
return self;
|
sl@0
|
250 |
}
|
sl@0
|
251 |
|
sl@0
|
252 |
CLogFileControl::CLogFileControl(CLogServer& aParent,const TDesC& aLogFilePath) :
|
sl@0
|
253 |
iParent(aParent),
|
sl@0
|
254 |
iLogFileName(aLogFilePath),
|
sl@0
|
255 |
iTransmitted(EFalse)
|
sl@0
|
256 |
/**
|
sl@0
|
257 |
* @param aParent - Server reference for callback
|
sl@0
|
258 |
* @param aLogFilePath - Full path and filename of the logfile
|
sl@0
|
259 |
*
|
sl@0
|
260 |
* Constructor - Safe initialisation
|
sl@0
|
261 |
*/
|
sl@0
|
262 |
{
|
sl@0
|
263 |
iQueue.SetOffset(CLogBuffer::LinkOffset());
|
sl@0
|
264 |
}
|
sl@0
|
265 |
|
sl@0
|
266 |
void CLogFileControl::ConstructL(RFileFlogger::TLogMode aMode)
|
sl@0
|
267 |
/**
|
sl@0
|
268 |
* @param aMode - Overwrite or Append
|
sl@0
|
269 |
*
|
sl@0
|
270 |
* Second phase construction - Create or open the logfile
|
sl@0
|
271 |
*/
|
sl@0
|
272 |
{
|
sl@0
|
273 |
if(aMode == RFileFlogger::ELogModeOverWrite)
|
sl@0
|
274 |
// In overwrite mode replace
|
sl@0
|
275 |
User::LeaveIfError(iLogFile.Replace(iParent.Fs(),iLogFileName,EFileWrite));
|
sl@0
|
276 |
else
|
sl@0
|
277 |
{
|
sl@0
|
278 |
// For append try open then replace
|
sl@0
|
279 |
TInt err = iLogFile.Open(iParent.Fs(),iLogFileName,EFileWrite);
|
sl@0
|
280 |
if(err != KErrNone)
|
sl@0
|
281 |
// Bomb out if replace fails
|
sl@0
|
282 |
User::LeaveIfError(iLogFile.Replace(iParent.Fs(),iLogFileName,EFileWrite));
|
sl@0
|
283 |
else
|
sl@0
|
284 |
{
|
sl@0
|
285 |
// Open worked. Position at EOF
|
sl@0
|
286 |
TInt pos;
|
sl@0
|
287 |
iLogFile.Size(pos);
|
sl@0
|
288 |
User::LeaveIfError(iLogFile.Seek(ESeekEnd,pos));
|
sl@0
|
289 |
}
|
sl@0
|
290 |
}
|
sl@0
|
291 |
}
|
sl@0
|
292 |
|
sl@0
|
293 |
CLogFileControl::~CLogFileControl()
|
sl@0
|
294 |
/**
|
sl@0
|
295 |
* Destructor
|
sl@0
|
296 |
* The server maintains a list of these classes and will not destruct one if there
|
sl@0
|
297 |
* is data on its queue
|
sl@0
|
298 |
* Destructor just closes the file handle.
|
sl@0
|
299 |
*/
|
sl@0
|
300 |
{
|
sl@0
|
301 |
iLogFile.Close();
|
sl@0
|
302 |
}
|
sl@0
|
303 |
|
sl@0
|
304 |
void CLogFileControl::RunL()
|
sl@0
|
305 |
/**
|
sl@0
|
306 |
* Main File writing pump
|
sl@0
|
307 |
* Called on write completion or Kick() by the session that accepts the data
|
sl@0
|
308 |
*/
|
sl@0
|
309 |
{
|
sl@0
|
310 |
#if (defined _DEBUG)
|
sl@0
|
311 |
_LIT(KPanic,"LogEng RunL()");
|
sl@0
|
312 |
#endif
|
sl@0
|
313 |
__ASSERT_DEBUG(iStatus.Int() == KErrNone,User::Panic(KPanic,iStatus.Int()));
|
sl@0
|
314 |
// Check to see if this is the result of write completion
|
sl@0
|
315 |
if(iTransmitted)
|
sl@0
|
316 |
{
|
sl@0
|
317 |
// Write completed
|
sl@0
|
318 |
// Remove the buffer at the head of the queue and free it
|
sl@0
|
319 |
CLogBuffer* buffer = iQueue.First();
|
sl@0
|
320 |
iQueue.Remove(*buffer);
|
sl@0
|
321 |
delete buffer;
|
sl@0
|
322 |
}
|
sl@0
|
323 |
// Check to see if there's more on the queue
|
sl@0
|
324 |
if(!iQueue.IsEmpty())
|
sl@0
|
325 |
{
|
sl@0
|
326 |
// There is so write the head of the queue
|
sl@0
|
327 |
CLogBuffer* buffer = iQueue.First();
|
sl@0
|
328 |
SetActive();
|
sl@0
|
329 |
// Set the flag to say we've transmitted
|
sl@0
|
330 |
iTransmitted = ETrue;
|
sl@0
|
331 |
|
sl@0
|
332 |
// ------------------------------------
|
sl@0
|
333 |
if(iLogFormat==ETxt) WriteTxt(buffer->Buf());
|
sl@0
|
334 |
else WriteXml(buffer->Buf());
|
sl@0
|
335 |
}
|
sl@0
|
336 |
else
|
sl@0
|
337 |
{
|
sl@0
|
338 |
// Nothing on the queue
|
sl@0
|
339 |
iTransmitted = EFalse;
|
sl@0
|
340 |
// Call into the server to check if this resource can be freed
|
sl@0
|
341 |
iParent.ControlComplete(*this);
|
sl@0
|
342 |
}
|
sl@0
|
343 |
}
|
sl@0
|
344 |
|
sl@0
|
345 |
void CLogFileControl::WriteXml(const TDesC8 &aDes)
|
sl@0
|
346 |
/**
|
sl@0
|
347 |
* @param aDes - send a aDes string in xml format to a log file
|
sl@0
|
348 |
*/
|
sl@0
|
349 |
{
|
sl@0
|
350 |
/*--------- Maintaince Warning: -----------------------------------
|
sl@0
|
351 |
******* the fomat of below is sensible from client original format.
|
sl@0
|
352 |
******* Any change should match actual string formated from client.
|
sl@0
|
353 |
******* Double check the code on client side
|
sl@0
|
354 |
|
sl@0
|
355 |
* The current assumtion of format:
|
sl@0
|
356 |
* First string values are seperated by sign " - " and extra pair of fields are
|
sl@0
|
357 |
* seperated from main log message by long unusual string "LogFieldsRequiredBeingAddedToAboveLogMessage"
|
sl@0
|
358 |
* The \t used to seperate field name and field value and \r\n used to seperate
|
sl@0
|
359 |
* each other from those pairs of field
|
sl@0
|
360 |
* \t\t\t\t\t\t is used to end of whole string
|
sl@0
|
361 |
--------------------------------------------------------------------------------*/
|
sl@0
|
362 |
_LIT8(KxmlHeader,"<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\r\n<LOGFILE>");
|
sl@0
|
363 |
//The order of variables:
|
sl@0
|
364 |
// time - aTime
|
sl@0
|
365 |
// Severity - aSeverity
|
sl@0
|
366 |
// Thread - aThread
|
sl@0
|
367 |
// Filename - aFilename
|
sl@0
|
368 |
// Linenumber - aLinenumber
|
sl@0
|
369 |
// Text - aText
|
sl@0
|
370 |
|
sl@0
|
371 |
// Start of string retrive/deformating
|
sl@0
|
372 |
HBufC8* pBuf1 = HBufC8::New(KMaxLoggerLineLength*2); //(aDes.Length()+200);
|
sl@0
|
373 |
if(!pBuf1)
|
sl@0
|
374 |
{
|
sl@0
|
375 |
return; // no memory
|
sl@0
|
376 |
}
|
sl@0
|
377 |
TPtr8 aPtr(pBuf1->Des()); // used for searching
|
sl@0
|
378 |
TPtr8 alogbuf(pBuf1->Des()); //used for final log
|
sl@0
|
379 |
aPtr.Append(aDes);
|
sl@0
|
380 |
TPtrC8 SearchBuf;
|
sl@0
|
381 |
TInt aCount[8];
|
sl@0
|
382 |
aCount[0]=0;
|
sl@0
|
383 |
TInt posI(0);
|
sl@0
|
384 |
|
sl@0
|
385 |
// retrive log message:
|
sl@0
|
386 |
// Retrive common part of log message:
|
sl@0
|
387 |
TInt i=0;
|
sl@0
|
388 |
for(i=1; i<6; i++)
|
sl@0
|
389 |
{
|
sl@0
|
390 |
SearchBuf.Set(aPtr.Mid(posI));
|
sl@0
|
391 |
aCount[i]=SearchBuf.Find(KSeperation8)+posI;
|
sl@0
|
392 |
posI=aCount[i]+3;
|
sl@0
|
393 |
if(aCount[i]<aCount[i-1])
|
sl@0
|
394 |
{
|
sl@0
|
395 |
delete pBuf1;
|
sl@0
|
396 |
return; // wrong format string from client
|
sl@0
|
397 |
}
|
sl@0
|
398 |
}
|
sl@0
|
399 |
// seperating common log message and extra log fields will be easy for future maintaince.
|
sl@0
|
400 |
TLogField8* alogField = new TLogField8[6]; // the common part of log message for both
|
sl@0
|
401 |
// with and without extra log fields
|
sl@0
|
402 |
if(!alogField)
|
sl@0
|
403 |
{
|
sl@0
|
404 |
delete pBuf1;
|
sl@0
|
405 |
return; // no memory
|
sl@0
|
406 |
}
|
sl@0
|
407 |
|
sl@0
|
408 |
TLogField8* extralogField=NULL; // only applied to extra log fields
|
sl@0
|
409 |
|
sl@0
|
410 |
TInt alength=0; // a length of array of extra log fields
|
sl@0
|
411 |
|
sl@0
|
412 |
alogField[0].iLogTag8.Copy(_L8("TIME"));
|
sl@0
|
413 |
alogField[1].iLogTag8.Copy(_L8("SEVERITY"));
|
sl@0
|
414 |
alogField[2].iLogTag8.Copy(_L8("THREAD"));
|
sl@0
|
415 |
alogField[3].iLogTag8.Copy(_L8("FILENAME"));
|
sl@0
|
416 |
alogField[4].iLogTag8.Copy(_L8("LINENUMBER"));
|
sl@0
|
417 |
alogField[5].iLogTag8.Copy(_L8("TEXT"));
|
sl@0
|
418 |
|
sl@0
|
419 |
alogField[0].iLogValue8.Copy(aPtr.Mid(aCount[0],aCount[1]-aCount[0]));
|
sl@0
|
420 |
for(i=1; i<5; i++)
|
sl@0
|
421 |
{
|
sl@0
|
422 |
alogField[i].iLogValue8.Copy(aPtr.Mid(aCount[i]+3,aCount[i+1]-aCount[i]-3));
|
sl@0
|
423 |
}
|
sl@0
|
424 |
|
sl@0
|
425 |
SearchBuf.Set(aPtr.Mid(posI));
|
sl@0
|
426 |
aCount[6]=SearchBuf.Find(_L8("LogFieldsRequiredBeingAddedToAboveLogMessage"))+posI;
|
sl@0
|
427 |
if(aCount[6]<posI) // no addtional fields. Find return value is KErrNotFound or >0
|
sl@0
|
428 |
{
|
sl@0
|
429 |
alogField[5].iLogValue8.Copy(aPtr.Mid(aCount[5]+3,aDes.Length()-aCount[5]-5));
|
sl@0
|
430 |
}
|
sl@0
|
431 |
else
|
sl@0
|
432 |
{
|
sl@0
|
433 |
alogField[5].iLogValue8.Copy(aPtr.Mid(aCount[5]+3,aCount[6]-aCount[5]-5));
|
sl@0
|
434 |
posI=aCount[6]+45; //45 is from the length of long string and a tab
|
sl@0
|
435 |
SearchBuf.Set(aPtr.Mid(posI));
|
sl@0
|
436 |
aCount[7]=SearchBuf.Find(_L8("\r\n"))+posI;
|
sl@0
|
437 |
TLex8 lex(aPtr.Mid(posI,aCount[7]-posI)); // get the length
|
sl@0
|
438 |
TInt err=lex.Val(alength);
|
sl@0
|
439 |
if (err)
|
sl@0
|
440 |
alength=0; // ignor the extra log fields. Let the log go
|
sl@0
|
441 |
|
sl@0
|
442 |
// Retrive the extra log fields
|
sl@0
|
443 |
extralogField = new TLogField8[alength];
|
sl@0
|
444 |
if(!extralogField)
|
sl@0
|
445 |
{
|
sl@0
|
446 |
delete pBuf1;
|
sl@0
|
447 |
return; // no memory
|
sl@0
|
448 |
}
|
sl@0
|
449 |
for(TInt i=0; i<alength; i++)
|
sl@0
|
450 |
{
|
sl@0
|
451 |
aCount[6]=aCount[7]+2;
|
sl@0
|
452 |
SearchBuf.Set(aPtr.Mid(aCount[6]));
|
sl@0
|
453 |
aCount[7]=SearchBuf.Find(_L8("\t"))+aCount[6];
|
sl@0
|
454 |
extralogField[i].iLogTag8.Copy(aPtr.Mid(aCount[6],aCount[7]-aCount[6]));
|
sl@0
|
455 |
aCount[6]=aCount[7]+1;
|
sl@0
|
456 |
SearchBuf.Set(aPtr.Mid(aCount[6]));
|
sl@0
|
457 |
aCount[7]=SearchBuf.Find(_L8("\r\n"))+aCount[6];
|
sl@0
|
458 |
extralogField[i].iLogValue8.Copy(aPtr.Mid(aCount[6],aCount[7]-aCount[6]));
|
sl@0
|
459 |
}
|
sl@0
|
460 |
}
|
sl@0
|
461 |
// Start to organize an XML format:
|
sl@0
|
462 |
TInt afileSize;
|
sl@0
|
463 |
_LIT(KLogMutex, "LoggingServerMutex");
|
sl@0
|
464 |
RMutex mutex;
|
sl@0
|
465 |
TInt r = mutex.CreateGlobal(KLogMutex);
|
sl@0
|
466 |
if(r==KErrAlreadyExists)
|
sl@0
|
467 |
r = mutex.OpenGlobal(KLogMutex);
|
sl@0
|
468 |
|
sl@0
|
469 |
if(!r)
|
sl@0
|
470 |
mutex.Wait(); // If still failed, let logging go without bother the mutex.
|
sl@0
|
471 |
iLogFile.Size(afileSize);
|
sl@0
|
472 |
if(afileSize<12) // 12 is from charters of "\r\n</LOGFILE>"
|
sl@0
|
473 |
//It shoud happened once at the beginning of the file
|
sl@0
|
474 |
// such as overwrite mode
|
sl@0
|
475 |
{
|
sl@0
|
476 |
afileSize=12; // used for lock position
|
sl@0
|
477 |
alogbuf.Copy(KxmlHeader);
|
sl@0
|
478 |
}
|
sl@0
|
479 |
alogbuf.Append(_L8("\r\n<MESSAGE>\r\n"));
|
sl@0
|
480 |
for(TInt i=0; i<6; i++)
|
sl@0
|
481 |
{
|
sl@0
|
482 |
alogbuf.Append(_L8(" <"));
|
sl@0
|
483 |
alogbuf.Append(alogField[i].iLogTag8);
|
sl@0
|
484 |
alogbuf.Append(_L8(">"));
|
sl@0
|
485 |
alogbuf.Append(alogField[i].iLogValue8);
|
sl@0
|
486 |
alogbuf.Append(_L8("</"));
|
sl@0
|
487 |
alogbuf.Append(alogField[i].iLogTag8);
|
sl@0
|
488 |
alogbuf.Append(_L8(">\r\n"));
|
sl@0
|
489 |
}
|
sl@0
|
490 |
for(TInt i=0; i<alength; i++)
|
sl@0
|
491 |
{
|
sl@0
|
492 |
alogbuf.Append(_L8(" <"));
|
sl@0
|
493 |
alogbuf.Append(extralogField[i].iLogTag8);
|
sl@0
|
494 |
alogbuf.Append(_L8(">"));
|
sl@0
|
495 |
alogbuf.Append(extralogField[i].iLogValue8);
|
sl@0
|
496 |
alogbuf.Append(_L8("</"));
|
sl@0
|
497 |
alogbuf.Append(extralogField[i].iLogTag8);
|
sl@0
|
498 |
alogbuf.Append(_L8(">\r\n"));
|
sl@0
|
499 |
}
|
sl@0
|
500 |
|
sl@0
|
501 |
alogbuf.Append(_L8("</MESSAGE>"));
|
sl@0
|
502 |
alogbuf.Append(_L8("\r\n</LOGFILE>"));
|
sl@0
|
503 |
|
sl@0
|
504 |
iLogFile.Write(afileSize-12, alogbuf,iStatus);
|
sl@0
|
505 |
|
sl@0
|
506 |
if(!r)
|
sl@0
|
507 |
{
|
sl@0
|
508 |
mutex.Signal();
|
sl@0
|
509 |
mutex.Close();
|
sl@0
|
510 |
}
|
sl@0
|
511 |
|
sl@0
|
512 |
if(extralogField)
|
sl@0
|
513 |
delete[] extralogField;
|
sl@0
|
514 |
|
sl@0
|
515 |
delete[] alogField;
|
sl@0
|
516 |
delete pBuf1;
|
sl@0
|
517 |
}
|
sl@0
|
518 |
|
sl@0
|
519 |
void CLogFileControl::WriteTxt(const TDesC8 &aDes)
|
sl@0
|
520 |
/**
|
sl@0
|
521 |
* @param aDes - send a aDes string in xml format to a log file
|
sl@0
|
522 |
*/
|
sl@0
|
523 |
{
|
sl@0
|
524 |
/*--------- Maintaince Warning for aLogBuffer -----------------------------------
|
sl@0
|
525 |
******* the fomat of below is sensible from client original format.
|
sl@0
|
526 |
******* Any change should match actual string formated from client.
|
sl@0
|
527 |
******* Double check the code on client side
|
sl@0
|
528 |
|
sl@0
|
529 |
* The current assumtion of format:
|
sl@0
|
530 |
* First string values are seperated by sign " - " and extra pair of fields are
|
sl@0
|
531 |
* seperated from main log message by long unusual string "LogFieldsRequiredBeingAddedToAboveLogMessage"
|
sl@0
|
532 |
* The \t used to seperate field name and field value and \r\n used to seperate
|
sl@0
|
533 |
* each other from those pairs of field
|
sl@0
|
534 |
--------------------------------------------------------------------------------*/
|
sl@0
|
535 |
iLogFile.Write(aDes,iStatus);
|
sl@0
|
536 |
}
|
sl@0
|
537 |
///////
|
sl@0
|
538 |
CLogBuffer::CLogBuffer(HBufC8& aLogBuffer) : iLogBuffer(aLogBuffer)
|
sl@0
|
539 |
/**
|
sl@0
|
540 |
* @param aLogBuffer - Heap descriptor. This class takes ownership
|
sl@0
|
541 |
* Constructor
|
sl@0
|
542 |
*/
|
sl@0
|
543 |
{
|
sl@0
|
544 |
}
|
sl@0
|
545 |
|
sl@0
|
546 |
CLogBuffer::~CLogBuffer()
|
sl@0
|
547 |
/**
|
sl@0
|
548 |
* Destructor
|
sl@0
|
549 |
* This class owns a heap buffer so just free it
|
sl@0
|
550 |
*/
|
sl@0
|
551 |
{
|
sl@0
|
552 |
delete &iLogBuffer;
|
sl@0
|
553 |
}
|