kerneltest/e32test/hcr/d_hcrsim_psl.cpp
author John Imhofe
Mon, 19 Oct 2009 15:55:17 +0100
changeset 0 a41df078684a
child 31 56f325a607ea
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) 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 "hcr_debug.h"
#include "hcr_hai.h"
#include "d_hcrsim.h"

extern HCR::SRepositoryCompiled CompiledRepository;
extern HCR::SRepositoryCompiled CompiledEmptyRepository;
extern HCR::SRepositoryCompiled CompiledRepositoryCorrupt1;
extern HCR::SRepositoryCompiled CompiledRepositoryCorrupt2;
TUint32 PslConfigurationFlags = 0;

class HCRTest : public HCR::MVariant
	{
public:
	HCRTest();
	virtual ~HCRTest();
	
public:	
	TInt Initialise(); 
	TBool IgnoreCoreImgRepository();
	TInt GetCompiledRepositoryAddress( TAny* & aAddr);
	TInt GetOverrideRepositoryAddress( TAny* & aAddr);
	};

HCRTest::HCRTest()
	{
	HCR_FUNC("HCRTest");
	}

HCRTest::~HCRTest()
	{
	HCR_FUNC("~HCRTest");
	}

TInt HCRTest::Initialise()
	{
	HCR_FUNC("HCRTest::Initialise");

	HCR_LOG_RETURN(KErrNone);
	}

TInt HCRTest::GetCompiledRepositoryAddress(TAny*& aAddr)
	{
	HCR_FUNC("HCRTest::GetCompiledRepositoryAddress");
	TInt r = KErrNone;
	if (PslConfigurationFlags & ETestNullRepository)
		{
		aAddr = NULL;
		r = KErrNotSupported;
		}
	else if (PslConfigurationFlags & ETestEmptyRepository)
		{
		aAddr = static_cast<TAny*>(&CompiledEmptyRepository);
		}
	else if (PslConfigurationFlags & ETestCorruptRepository1)
		{
		aAddr = static_cast<TAny*>(&CompiledRepositoryCorrupt1);
		}
	else if (PslConfigurationFlags & ETestCorruptRepository2)
		{
		aAddr = static_cast<TAny*>(&CompiledRepositoryCorrupt2);
		}
	else
		{
		aAddr = static_cast<TAny*>(&CompiledRepository);
		}
	HCR_LOG_RETURN(r);
	}

TBool HCRTest::IgnoreCoreImgRepository()
	{
	HCR_FUNC("HCRTest::IgnoreCoreImgRepository");
	HCR_LOG_RETURN(PslConfigurationFlags & ETestIgnoreCoreImgRepository);
	}

TInt HCRTest::GetOverrideRepositoryAddress(TAny*& aAddr)
	{
	HCR_FUNC("HCRTest::GetRAMRepositoryAddress");
	TInt r = KErrNotSupported;
	if (PslConfigurationFlags & ETestEnableOverrideRepository)
		{
		aAddr = static_cast<TAny*>(&CompiledEmptyRepository);
		r = KErrNone;
		}
	HCR_LOG_RETURN(r);
	}

GLDEF_C HCR::MVariant* CreateHCRVariant()
	{
	HCR_FUNC("CreateHCRTest");
	return new HCRTest;
	}