Update contrib.
1 // Copyright (c) 2002-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.
19 // Test system includes
24 * destructor for CFileLogger.
26 CFileLogger::~CFileLogger()
28 // make sure session to file server is closed
35 * Static constructor for CFileLogger.
37 * @return "CFileLogger*"
38 * The constructed CFileLogger
43 CFileLogger* CFileLogger::NewL()
45 CFileLogger* s = new(ELeave) CFileLogger;
51 * Create and open a log file. The file is shareable, and a mutex
52 * and file seeks employed in case more than one session is using
55 * @param "const TDesC& aDir"
56 * The file path of the logfile to be created. If the path
57 * does not exist, the logfile will not be created.
59 * @param "const TDesC& aName"
60 * The file name of same.
65 void CFileLogger::CreateLog(const TDesC& aDir, const TDesC& aName)
67 // if aDir or aName are empty, then panic
68 __ASSERT_ALWAYS(aDir.Ptr() != NULL, User::Panic(_L("CFileLogger"), 0));
69 __ASSERT_ALWAYS(aName.Ptr() != NULL, User::Panic(_L("CFileLogger"), 1));
72 // if aDir doesn't exist, create it anyway
74 if (iFs.Att(aDir, aAttValue) != KErrNone)
76 TInt returnCode = iFs.MkDirAll(aDir);
77 if (returnCode != KErrNone)
80 User::Panic(_L("CFileLogger"), 2);
87 // create logfile mutex
89 logMutex.CreateGlobal(iLogName);
91 // make the correct file name
93 logFile.Format(_L("%S%S"), &aDir, &aName); // aDir will be \\-terminated
95 // If the file does not exist, create it. If it does, truncate it
96 // Open it for sharing
97 TInt returnCode=iLogfile.Replace(iFs, logFile, EFileWrite | EFileStreamText | EFileShareAny);
99 // check if open fails
100 if (returnCode==KErrNone)
103 //add the start to the HTML
104 iLogfile.Write(_L8("<html><body><pre>\n"));
106 iLogfile.Seek(ESeekEnd, dummy);
114 * Close the logfile. The flag iEnabled will be clear if there
115 * is no logfile to close.
120 void CFileLogger::CloseLog()
123 // this should be mutex-safe as each thread has its own handle to
125 // if logging enabled, flush buffers
133 // disconnect from the file server
139 * Write output to the logfile.
141 * @param "const TDesC& aMsg"
142 * The message (string) to be written.
147 void CFileLogger::WriteLog(const TDesC& aMsg)
153 // convert from unicode to 8 bit
154 TBuf8<KMaxLogLineLength> lineBuf8;
155 const TText* msgBuf = aMsg.Ptr();
156 for (TInt i = 0; i < aMsg.Length() ;i++)
157 lineBuf8.Append(STATIC_CAST(TText, msgBuf[i]));
161 logMutex.OpenGlobal(iLogName);
167 iLogfile.Seek(ESeekEnd, dummy);
168 iLogfile.Write(lineBuf8);
169 // seek to end after write - in case another process or thread is also using the file
170 dummy=0; //dummy is updated after a seek to contain the new file position. With ESeekEnd
171 //it is used as an offest value to control the seek.
172 iLogfile.Seek(ESeekEnd, dummy);
180 * Connect to the file server. Used as a helper function
181 * by classes owning a CFileLogger, to ensure that a
182 * file server session can be opened
185 * standard EPOC error code
190 TInt CFileLogger::Connect()
192 TInt err = iFs.Connect();
200 * Close a file server session. Used as a helper function
201 * by classes owning a CFileLogger.
206 void CFileLogger::Close()