baseapitest/basesvs/validation/f32/sfsrv/src/T_ParsePtrCData.cpp
author John Imhofe
Mon, 19 Oct 2009 15:55:17 +0100
changeset 0 a41df078684a
child 15 4122176ea935
permissions -rw-r--r--
Convert Kernelhwsrv package from SFL to EPL kernel\eka\compsupp is subject to the ARM EABI LICENSE userlibandfileserver\fatfilenameconversionplugins\unicodeTables is subject to the Unicode license kernel\eka\kernel\zlib is subject to the zlib license

/*
* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). 
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
*
*/

#include "T_ParsePtrCData.h"


// Commands
_LIT( KCmdDelete,					"~" );
_LIT( KCmdNew,						"new" );
_LIT( KCmdAddDir,					"AddDir");
_LIT( KCmdPopDir,					"PopDir");

// Parameters
_LIT( KParamFileName,				"FileName" );
_LIT( KParamDirName,				"DirName" );


CT_ParsePtrCData* CT_ParsePtrCData::NewL()
/**
* Two phase constructor
*/
	{
	CT_ParsePtrCData* ret = new (ELeave) CT_ParsePtrCData();
	CleanupStack::PushL( ret );
	ret->ConstructL();
	CleanupStack::Pop( ret );
	return ret;
	}

CT_ParsePtrCData::CT_ParsePtrCData()
:	iParsePtrC(NULL)
/**
* Protected constructor. First phase construction
*/
	{
	}
	
void CT_ParsePtrCData::ConstructL()
/**
* Protected constructor. Second phase construction
*/
	{
	}
	
CT_ParsePtrCData::~CT_ParsePtrCData()
/**
* Destructor.
*/
	{
	DoCleanup();
	}
	


TParseBase* CT_ParsePtrCData::GetParse()
	{
	return iParsePtrC;
	}
	
TBool CT_ParsePtrCData::DoCommandL( const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex)
/**
* Process a command read from the ini file
*
* @param aCommand	the command to process
* @param aSection		the entry in the ini file requiring the command to be processed
*
* @return ETrue if the command is processed
*/
	{
	TBool retVal = ETrue;
	
	if ( aCommand == KCmdDelete )
		{
		DoCleanup();
		}
	else if ( aCommand == KCmdNew )
		{
		DoCmdNew( aSection );
		}
	else if ( aCommand == KCmdAddDir )
		{
		DoCmdAddDir( aSection );
		}
	else if ( aCommand == KCmdPopDir )
		{
		DoCmdPopDir();
		}
	else
	    {
	    retVal = CT_ParseBaseData::DoCommandL(aCommand, aSection, aAsyncErrorIndex);
	    }
	
	return retVal;
	}
	
void CT_ParsePtrCData::DoCleanup()
/** Deletes TParsePtr class instance */
    {
    INFO_PRINTF1( _L( "Delete TParsePtrC class instance." ) );

	delete iParsePtrC;
	iParsePtrC = NULL;
    }

void CT_ParsePtrCData::DoCmdNew( const TDesC& aSection )
/** Creates new TParsePtr class instance */
	{
	DoCleanup();
	
	TPtrC fileName;
	if ( GET_MANDATORY_STRING_PARAMETER( KParamFileName, aSection, fileName ) )
		{
		INFO_PRINTF2( _L( "Create new TParsePtrC(\"%S\") class instance." ), &fileName );
		
		iFileName = fileName;
		TRAPD( err, iParsePtrC = new (ELeave) TParsePtrC( iFileName ) );
		if ( err != KErrNone )
			{
			ERR_PRINTF3( _L( "new TParsePtrC(\"%S\") error=%d" ), &fileName, err );
			SetError( err );
			}
		}
	}

	
void CT_ParsePtrCData::DoCmdPopDir()
/** Removes the last directory from the path using PopDir(). */
	{
	INFO_PRINTF1( _L( "PopDir()" ) );
		
	TInt err = iParsePtrC->PopDir();
	
	if( err != KErrNone)
			{
			ERR_PRINTF2( _L( "PopDir() returned %d error"), err);
			SetError(err);
			}
	}

    
void CT_ParsePtrCData::DoCmdAddDir( const TDesC& aSection )
/** Adds a single directory onto the end of the path using AddDir. */
	{
	TPtrC dirName;
	if ( GET_MANDATORY_STRING_PARAMETER( KParamDirName, aSection, dirName ) )
		{
		INFO_PRINTF2( _L( "AddDir(\"%S\")" ), &dirName );
		
		TInt err = iParsePtrC->AddDir( dirName );
		if(	err != KErrNone)
			{
			ERR_PRINTF2( _L( "AddDir() returned %d error"), err);
			SetError(err);
			}
		}
	}