sl@0
|
1 |
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// CPolicyDomainLoader class
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __SC_DOMAINLOADER_H__
|
sl@0
|
19 |
#define __SC_DOMAINLOADER_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <e32base.h>
|
sl@0
|
22 |
#include "D32Map.h"
|
sl@0
|
23 |
#include "SC_Policy.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
namespace DBSC
|
sl@0
|
26 |
{
|
sl@0
|
27 |
|
sl@0
|
28 |
/**
|
sl@0
|
29 |
CPolicyDomainLoader is a special policy file loader.
|
sl@0
|
30 |
The "special" thing is that it will trap all errors during processing of
|
sl@0
|
31 |
the binary policy files. If there is an error, the loader will check it
|
sl@0
|
32 |
anld leave if it is KErrNoMemory. The rest of errors, which are caused by
|
sl@0
|
33 |
things such as file system problems, hardware problems and binary policy file problems
|
sl@0
|
34 |
(bad format, bad names,...), will be supressed.
|
sl@0
|
35 |
@internalComponent
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
NONSHARABLE_CLASS(CPolicyDomainLoader) : public CBase
|
sl@0
|
38 |
{
|
sl@0
|
39 |
public:
|
sl@0
|
40 |
static CPolicyDomainLoader* NewLC(RFs& aFs, const TDesC& aPolicyDir,
|
sl@0
|
41 |
RMap<TInt,CPolicyDomain*>& aPDCollection);
|
sl@0
|
42 |
virtual ~CPolicyDomainLoader();
|
sl@0
|
43 |
void RunL();
|
sl@0
|
44 |
|
sl@0
|
45 |
private:
|
sl@0
|
46 |
inline CPolicyDomainLoader(RFs& aFs, const TDesC& aPolicyDir,
|
sl@0
|
47 |
RMap<TInt,CPolicyDomain*>& aPDCollection);
|
sl@0
|
48 |
void ConstructL();
|
sl@0
|
49 |
void CreatePolicyDomainL(TInt aPolicyFileIndex);
|
sl@0
|
50 |
void DoCreatePolicyDomainL(TInt aPolicyFileIndex);
|
sl@0
|
51 |
TUid CreatePolicyFilePathL(TInt aPolicyFileIndex);
|
sl@0
|
52 |
|
sl@0
|
53 |
private:
|
sl@0
|
54 |
RFs& iFs;
|
sl@0
|
55 |
const TDesC& iPolicyDir;
|
sl@0
|
56 |
RMap<TInt, CPolicyDomain*>& iPDCollection;
|
sl@0
|
57 |
CDir* iFoundPolicyFiles;
|
sl@0
|
58 |
TParse iParser;
|
sl@0
|
59 |
TBuf<KMaxPath> iPolicyFilePath;
|
sl@0
|
60 |
|
sl@0
|
61 |
};
|
sl@0
|
62 |
|
sl@0
|
63 |
} //end of - namespace DBSC
|
sl@0
|
64 |
|
sl@0
|
65 |
#endif//__SC_DOMAINLOADER_H__
|