diff -r 000000000000 -r a41df078684a kerneltest/e32test/hcr/d_hcrsim_psl.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/kerneltest/e32test/hcr/d_hcrsim_psl.cpp Mon Oct 19 15:55:17 2009 +0100 @@ -0,0 +1,108 @@ +/* +* 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(&CompiledEmptyRepository); + } + else if (PslConfigurationFlags & ETestCorruptRepository1) + { + aAddr = static_cast(&CompiledRepositoryCorrupt1); + } + else if (PslConfigurationFlags & ETestCorruptRepository2) + { + aAddr = static_cast(&CompiledRepositoryCorrupt2); + } + else + { + aAddr = static_cast(&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(&CompiledEmptyRepository); + r = KErrNone; + } + HCR_LOG_RETURN(r); + } + +GLDEF_C HCR::MVariant* CreateHCRVariant() + { + HCR_FUNC("CreateHCRTest"); + return new HCRTest; + }