Update contrib.
1 // Copyright (c) 2008-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.
22 #include "t_logfile.h"
25 Constructor for CLogFile
32 Destructor for CLogFile
33 @post The log file is closed.
42 Creates a new CLogFile object.
43 Standardized safe construction which leaves nothing on the cleanup stack.
44 @return A pointer to the newly created object.
45 @post This object is fully constructed and initialized.
47 CLogFile* CLogFile::NewL()
49 CLogFile* self = new(ELeave) CLogFile();
50 CleanupStack::PushL(self);
52 CleanupStack::Pop(self);
57 Initialisation phase of two phase construction.
58 @post The logfile is opened and seeked to the end for writing.
59 The logfile is created if it doesn't exist.
61 void CLogFile::ConstructL()
63 User::LeaveIfError(iFs.Connect());
64 iFs.MkDirAll(KLogFileName);
65 TInt err = iFile.Open(iFs,KLogFileName,EFileStreamText|EFileWrite|EFileShareReadersOrWriters);
66 if (err == KErrNotFound)
68 User::LeaveIfError(iFile.Create(iFs,KLogFileName,EFileStreamText|EFileWrite|EFileShareReadersOrWriters));
72 User::LeaveIfError(err);
75 User::LeaveIfError(iFile.Seek(ESeekEnd,seekpos));
76 iEol8=TPtrC8((TUint8 *)"\r\n");
80 Writes the message to the log file.
81 @param aDes The message to be written to the log file.
83 void CLogFile::WriteToLogL(const TDesC &aDes)
87 User::LeaveIfError(iFile.Write(des1));
88 User::LeaveIfError(iFile.Write(iEol8));
89 iFile.Flush(); //Ignore Error
95 void CLogFile::DeleteLogFileL()
98 CleanupClosePushL(fs);
99 User::LeaveIfError(fs.Connect());
100 fs.Delete(KLogFileName);
101 CleanupStack::PopAndDestroy(&fs);