First public contribution.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
17 #include "SchLogger.h"
25 // ------> CSheduleServerLog (source)
28 CSheduleServerLog::CSheduleServerLog()
32 CSheduleServerLog::~CSheduleServerLog()
38 void CSheduleServerLog::ConstructL(const TDesC& aLogFileName)
41 _LIT(KScheduleServerLoggingDirectoryE, "E:\\Logs\\SchSvr\\");
42 _LIT(KScheduleServerLoggingDirectoryD, "D:\\Logs\\SchSvr\\");
43 _LIT(KScheduleServerLoggingDirectory, "_:\\Logs\\SchSvr\\");
45 User::LeaveIfError(iFs.Connect());
48 // Log to drive D if possible
49 TInt error = iFs.MkDirAll(KScheduleServerLoggingDirectoryE);
50 if (error == KErrAlreadyExists || error == KErrNone)
52 logFile.Append(KScheduleServerLoggingDirectoryE);
56 error = iFs.MkDirAll(KScheduleServerLoggingDirectoryD);
57 if (error == KErrAlreadyExists || error == KErrNone)
59 logFile.Append(KScheduleServerLoggingDirectoryD);
63 // system drive directory
64 TBuf<15> loggingDirOnSysDrive(KScheduleServerLoggingDirectory);
65 loggingDirOnSysDrive[0] = 'A' + static_cast<TInt>(RFs::GetSystemDrive());
67 error = iFs.MkDirAll(loggingDirOnSysDrive);
68 if (error != KErrAlreadyExists && error < KErrNone)
70 logFile.Append(loggingDirOnSysDrive);
75 TParsePtrC parser(aLogFileName);
76 logFile.Append(parser.Name());
79 logFile.Append(_L(".WINS"));
81 logFile.Append(_L(".MARM"));
84 logFile.Append(_L(".UDEB"));
86 logFile.Append(_L(".UREL"));
88 logFile.Append(parser.Ext());
89 logFile.Append(_L(".TXT"));
91 User::LeaveIfError(iFile.Replace(iFs, logFile, EFileStreamText | EFileShareAny));
96 _LIT(KNewLogEntry, "=== NEW LOG ===");
101 CSheduleServerLog* CSheduleServerLog::NewL(const TDesC& aLogFileName)
103 CSheduleServerLog* self = new(ELeave) CSheduleServerLog();
104 CleanupStack::PushL(self);
105 self->ConstructL(aLogFileName);
114 void CSheduleServerLog::Log(TRefByValue<const TDesC> aFmt,...)
117 VA_START(list, aFmt);
120 buf.AppendFormatList(aFmt, list);
121 WriteWithTimeStamp(buf);
125 void CSheduleServerLog::LogList(TRefByValue<const TDesC> aFmt, VA_LIST aList)
128 buf.AppendFormatList(aFmt, aList);
129 WriteWithTimeStamp(buf);
133 void CSheduleServerLog::SeekEnd()
136 iFile.Seek(ESeekEnd, pos);
143 void CSheduleServerLog::Write(const TDesC& aText)
145 HBufC8* buf = HBufC8::New(aText.Length());
149 TPtr8 pBuf(buf->Des());
151 const TInt KTextLength = aText.Length();
152 for(TInt i=0; i<KTextLength; i++)
155 pBuf.Append(aText[i]);
159 TInt error = iFile.Write(pBuf);
161 error = iFile.Flush();
164 void CSheduleServerLog::Write(const TDesC& aFmt, VA_LIST& aList)
166 TDes* buf = new TBuf<1000>;
169 buf->AppendFormatList(aFmt, aList);
174 void CSheduleServerLog::WriteWithTimeStamp(const TDesC& aText)
180 dateTime = now.DateTime();
181 buf.Format(_L("%02d.%02d:%02d:%06d "), dateTime.Hour(), dateTime.Minute(), dateTime.Second(), dateTime.MicroSecond());
186 void CSheduleServerLog::NewLine()