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.
sl@0
     1
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @test
sl@0
    19
 @internalComponent
sl@0
    20
*/
sl@0
    21
sl@0
    22
#include "t_logfile.h"
sl@0
    23
sl@0
    24
/**
sl@0
    25
Constructor for CLogFile
sl@0
    26
*/
sl@0
    27
CLogFile::CLogFile()
sl@0
    28
	{
sl@0
    29
	}
sl@0
    30
sl@0
    31
/**
sl@0
    32
Destructor for CLogFile
sl@0
    33
@post The log file is closed.
sl@0
    34
*/
sl@0
    35
CLogFile::~CLogFile()
sl@0
    36
	{
sl@0
    37
	iFile.Close();
sl@0
    38
	iFs.Close();
sl@0
    39
	}
sl@0
    40
sl@0
    41
/**
sl@0
    42
Creates a new CLogFile object. 
sl@0
    43
Standardized safe construction which leaves nothing on the cleanup stack.
sl@0
    44
@return A pointer to the newly created object.
sl@0
    45
@post	This object is fully constructed and initialized.
sl@0
    46
*/ 
sl@0
    47
CLogFile* CLogFile::NewL()
sl@0
    48
	{
sl@0
    49
	CLogFile* self = new(ELeave) CLogFile();
sl@0
    50
	CleanupStack::PushL(self);
sl@0
    51
	self->ConstructL();
sl@0
    52
	CleanupStack::Pop(self);
sl@0
    53
	return self;
sl@0
    54
	}
sl@0
    55
sl@0
    56
/**
sl@0
    57
Initialisation phase of two phase construction.
sl@0
    58
@post	The logfile is opened and seeked to the end for writing. 
sl@0
    59
		The logfile is created if it doesn't exist.
sl@0
    60
*/
sl@0
    61
void CLogFile::ConstructL()
sl@0
    62
	{
sl@0
    63
	User::LeaveIfError(iFs.Connect());
sl@0
    64
	iFs.MkDirAll(KLogFileName);
sl@0
    65
	TInt err = iFile.Open(iFs,KLogFileName,EFileStreamText|EFileWrite|EFileShareReadersOrWriters);
sl@0
    66
	if (err == KErrNotFound)
sl@0
    67
		{
sl@0
    68
		User::LeaveIfError(iFile.Create(iFs,KLogFileName,EFileStreamText|EFileWrite|EFileShareReadersOrWriters));
sl@0
    69
		}
sl@0
    70
	else
sl@0
    71
		{	
sl@0
    72
		User::LeaveIfError(err);
sl@0
    73
		}	
sl@0
    74
	TInt seekpos = 0;
sl@0
    75
	User::LeaveIfError(iFile.Seek(ESeekEnd,seekpos));	
sl@0
    76
	iEol8=TPtrC8((TUint8 *)"\r\n");
sl@0
    77
	}
sl@0
    78
sl@0
    79
/**
sl@0
    80
Writes the message to the log file.
sl@0
    81
@param	aDes The message to be written to the log file.
sl@0
    82
*/
sl@0
    83
void CLogFile::WriteToLogL(const TDesC &aDes)
sl@0
    84
   	{
sl@0
    85
  	TBuf8<255> des1;
sl@0
    86
  	des1.Copy(aDes);
sl@0
    87
  	User::LeaveIfError(iFile.Write(des1));
sl@0
    88
  	User::LeaveIfError(iFile.Write(iEol8));
sl@0
    89
  	iFile.Flush();		//Ignore Error
sl@0
    90
  	}
sl@0
    91
sl@0
    92
/**
sl@0
    93
Delete the log file.
sl@0
    94
*/
sl@0
    95
void CLogFile::DeleteLogFileL()
sl@0
    96
	{
sl@0
    97
	RFs fs;
sl@0
    98
	CleanupClosePushL(fs);
sl@0
    99
	User::LeaveIfError(fs.Connect());
sl@0
   100
	fs.Delete(KLogFileName);
sl@0
   101
	CleanupStack::PopAndDestroy(&fs);
sl@0
   102
	}