Update contrib.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // CPolicyDomainLoader class
18 #ifndef __SC_DOMAINLOADER_H__
19 #define __SC_DOMAINLOADER_H__
23 #include "SC_Policy.h"
29 CPolicyDomainLoader is a special policy file loader.
30 The "special" thing is that it will trap all errors during processing of
31 the binary policy files. If there is an error, the loader will check it
32 anld leave if it is KErrNoMemory. The rest of errors, which are caused by
33 things such as file system problems, hardware problems and binary policy file problems
34 (bad format, bad names,...), will be supressed.
37 NONSHARABLE_CLASS(CPolicyDomainLoader) : public CBase
40 static CPolicyDomainLoader* NewLC(RFs& aFs, const TDesC& aPolicyDir,
41 RMap<TInt,CPolicyDomain*>& aPDCollection);
42 virtual ~CPolicyDomainLoader();
46 inline CPolicyDomainLoader(RFs& aFs, const TDesC& aPolicyDir,
47 RMap<TInt,CPolicyDomain*>& aPDCollection);
49 void CreatePolicyDomainL(TInt aPolicyFileIndex);
50 void DoCreatePolicyDomainL(TInt aPolicyFileIndex);
51 TUid CreatePolicyFilePathL(TInt aPolicyFileIndex);
55 const TDesC& iPolicyDir;
56 RMap<TInt, CPolicyDomain*>& iPDCollection;
57 CDir* iFoundPolicyFiles;
59 TBuf<KMaxPath> iPolicyFilePath;
63 } //end of - namespace DBSC
65 #endif//__SC_DOMAINLOADER_H__