sl@0: // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: /** sl@0: @file sl@0: @test sl@0: @internalComponent sl@0: */ sl@0: sl@0: #include "t_logfile.h" sl@0: sl@0: /** sl@0: Constructor for CLogFile sl@0: */ sl@0: CLogFile::CLogFile() sl@0: { sl@0: } sl@0: sl@0: /** sl@0: Destructor for CLogFile sl@0: @post The log file is closed. sl@0: */ sl@0: CLogFile::~CLogFile() sl@0: { sl@0: iFile.Close(); sl@0: iFs.Close(); sl@0: } sl@0: sl@0: /** sl@0: Creates a new CLogFile object. sl@0: Standardized safe construction which leaves nothing on the cleanup stack. sl@0: @return A pointer to the newly created object. sl@0: @post This object is fully constructed and initialized. sl@0: */ sl@0: CLogFile* CLogFile::NewL() sl@0: { sl@0: CLogFile* self = new(ELeave) CLogFile(); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: /** sl@0: Initialisation phase of two phase construction. sl@0: @post The logfile is opened and seeked to the end for writing. sl@0: The logfile is created if it doesn't exist. sl@0: */ sl@0: void CLogFile::ConstructL() sl@0: { sl@0: User::LeaveIfError(iFs.Connect()); sl@0: iFs.MkDirAll(KLogFileName); sl@0: TInt err = iFile.Open(iFs,KLogFileName,EFileStreamText|EFileWrite|EFileShareReadersOrWriters); sl@0: if (err == KErrNotFound) sl@0: { sl@0: User::LeaveIfError(iFile.Create(iFs,KLogFileName,EFileStreamText|EFileWrite|EFileShareReadersOrWriters)); sl@0: } sl@0: else sl@0: { sl@0: User::LeaveIfError(err); sl@0: } sl@0: TInt seekpos = 0; sl@0: User::LeaveIfError(iFile.Seek(ESeekEnd,seekpos)); sl@0: iEol8=TPtrC8((TUint8 *)"\r\n"); sl@0: } sl@0: sl@0: /** sl@0: Writes the message to the log file. sl@0: @param aDes The message to be written to the log file. sl@0: */ sl@0: void CLogFile::WriteToLogL(const TDesC &aDes) sl@0: { sl@0: TBuf8<255> des1; sl@0: des1.Copy(aDes); sl@0: User::LeaveIfError(iFile.Write(des1)); sl@0: User::LeaveIfError(iFile.Write(iEol8)); sl@0: iFile.Flush(); //Ignore Error sl@0: } sl@0: sl@0: /** sl@0: Delete the log file. sl@0: */ sl@0: void CLogFile::DeleteLogFileL() sl@0: { sl@0: RFs fs; sl@0: CleanupClosePushL(fs); sl@0: User::LeaveIfError(fs.Connect()); sl@0: fs.Delete(KLogFileName); sl@0: CleanupStack::PopAndDestroy(&fs); sl@0: }