os/graphics/windowing/windowserver/test/t_genericplugin/src/t_logfile.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #include "t_logfile.h"
    23 
    24 /**
    25 Constructor for CLogFile
    26 */
    27 CLogFile::CLogFile()
    28 	{
    29 	}
    30 
    31 /**
    32 Destructor for CLogFile
    33 @post The log file is closed.
    34 */
    35 CLogFile::~CLogFile()
    36 	{
    37 	iFile.Close();
    38 	iFs.Close();
    39 	}
    40 
    41 /**
    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.
    46 */ 
    47 CLogFile* CLogFile::NewL()
    48 	{
    49 	CLogFile* self = new(ELeave) CLogFile();
    50 	CleanupStack::PushL(self);
    51 	self->ConstructL();
    52 	CleanupStack::Pop(self);
    53 	return self;
    54 	}
    55 
    56 /**
    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.
    60 */
    61 void CLogFile::ConstructL()
    62 	{
    63 	User::LeaveIfError(iFs.Connect());
    64 	iFs.MkDirAll(KLogFileName);
    65 	TInt err = iFile.Open(iFs,KLogFileName,EFileStreamText|EFileWrite|EFileShareReadersOrWriters);
    66 	if (err == KErrNotFound)
    67 		{
    68 		User::LeaveIfError(iFile.Create(iFs,KLogFileName,EFileStreamText|EFileWrite|EFileShareReadersOrWriters));
    69 		}
    70 	else
    71 		{	
    72 		User::LeaveIfError(err);
    73 		}	
    74 	TInt seekpos = 0;
    75 	User::LeaveIfError(iFile.Seek(ESeekEnd,seekpos));	
    76 	iEol8=TPtrC8((TUint8 *)"\r\n");
    77 	}
    78 
    79 /**
    80 Writes the message to the log file.
    81 @param	aDes The message to be written to the log file.
    82 */
    83 void CLogFile::WriteToLogL(const TDesC &aDes)
    84    	{
    85   	TBuf8<255> des1;
    86   	des1.Copy(aDes);
    87   	User::LeaveIfError(iFile.Write(des1));
    88   	User::LeaveIfError(iFile.Write(iEol8));
    89   	iFile.Flush();		//Ignore Error
    90   	}
    91 
    92 /**
    93 Delete the log file.
    94 */
    95 void CLogFile::DeleteLogFileL()
    96 	{
    97 	RFs fs;
    98 	CleanupClosePushL(fs);
    99 	User::LeaveIfError(fs.Connect());
   100 	fs.Delete(KLogFileName);
   101 	CleanupStack::PopAndDestroy(&fs);
   102 	}