sl@0: // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // CPolicyDomainLoader class sl@0: // sl@0: // sl@0: sl@0: #ifndef __SC_DOMAINLOADER_H__ sl@0: #define __SC_DOMAINLOADER_H__ sl@0: sl@0: #include sl@0: #include "D32Map.h" sl@0: #include "SC_Policy.h" sl@0: sl@0: namespace DBSC sl@0: { sl@0: sl@0: /** sl@0: CPolicyDomainLoader is a special policy file loader. sl@0: The "special" thing is that it will trap all errors during processing of sl@0: the binary policy files. If there is an error, the loader will check it sl@0: anld leave if it is KErrNoMemory. The rest of errors, which are caused by sl@0: things such as file system problems, hardware problems and binary policy file problems sl@0: (bad format, bad names,...), will be supressed. sl@0: @internalComponent sl@0: */ sl@0: NONSHARABLE_CLASS(CPolicyDomainLoader) : public CBase sl@0: { sl@0: public: sl@0: static CPolicyDomainLoader* NewLC(RFs& aFs, const TDesC& aPolicyDir, sl@0: RMap& aPDCollection); sl@0: virtual ~CPolicyDomainLoader(); sl@0: void RunL(); sl@0: sl@0: private: sl@0: inline CPolicyDomainLoader(RFs& aFs, const TDesC& aPolicyDir, sl@0: RMap& aPDCollection); sl@0: void ConstructL(); sl@0: void CreatePolicyDomainL(TInt aPolicyFileIndex); sl@0: void DoCreatePolicyDomainL(TInt aPolicyFileIndex); sl@0: TUid CreatePolicyFilePathL(TInt aPolicyFileIndex); sl@0: sl@0: private: sl@0: RFs& iFs; sl@0: const TDesC& iPolicyDir; sl@0: RMap& iPDCollection; sl@0: CDir* iFoundPolicyFiles; sl@0: TParse iParser; sl@0: TBuf iPolicyFilePath; sl@0: sl@0: }; sl@0: sl@0: } //end of - namespace DBSC sl@0: sl@0: #endif//__SC_DOMAINLOADER_H__