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 |
// CPDTextLoader class
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __SC_TEXTIN_H__
|
sl@0
|
19 |
#define __SC_TEXTIN_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include <s32file.h>
|
sl@0
|
22 |
#include "SC_Defs.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 |
This enum describes the possible statement types in a text policy file, recogizable by
|
sl@0
|
30 |
CPDTextLoader implementation.
|
sl@0
|
31 |
@internalComponent
|
sl@0
|
32 |
*/
|
sl@0
|
33 |
typedef enum
|
sl@0
|
34 |
{
|
sl@0
|
35 |
EStmtTEof,
|
sl@0
|
36 |
EStmtTComment,
|
sl@0
|
37 |
EStmtTBlank,
|
sl@0
|
38 |
EStmtTDatabase,
|
sl@0
|
39 |
EStmtTTable,
|
sl@0
|
40 |
EStmtTName,
|
sl@0
|
41 |
EStmtTRead,
|
sl@0
|
42 |
EStmtTWrite,
|
sl@0
|
43 |
EStmtTSchema,
|
sl@0
|
44 |
EStmtTCapability,
|
sl@0
|
45 |
EStmtTSID,
|
sl@0
|
46 |
EStmtTVID,
|
sl@0
|
47 |
EStmtTBackup,
|
sl@0
|
48 |
EStmtTInvalid //Include the new enum items before "EStmtTInvalid"
|
sl@0
|
49 |
} TStmtType;
|
sl@0
|
50 |
|
sl@0
|
51 |
/**
|
sl@0
|
52 |
This enum describes the possible statement classes in a text policy file, recogizable by
|
sl@0
|
53 |
CPDTextLoader implementation.
|
sl@0
|
54 |
@internalComponent
|
sl@0
|
55 |
*/
|
sl@0
|
56 |
typedef enum
|
sl@0
|
57 |
{
|
sl@0
|
58 |
EStmtCNoData, //Blank, Comments
|
sl@0
|
59 |
EStmtCPolicyObj, //Database, Table
|
sl@0
|
60 |
EStmtCPolicyType, //Read, Write, Schema
|
sl@0
|
61 |
EStmtCPolicyItem, //Capability, SID, VID
|
sl@0
|
62 |
EStmtCBackup, //Backup & restore
|
sl@0
|
63 |
EStmtCInvalid
|
sl@0
|
64 |
} TStmtClass;
|
sl@0
|
65 |
|
sl@0
|
66 |
//Forward declaration
|
sl@0
|
67 |
struct TStmtProps;
|
sl@0
|
68 |
|
sl@0
|
69 |
/**
|
sl@0
|
70 |
CPDTextLoader class is an implementation of MPolicyDomainLoader interface and is used
|
sl@0
|
71 |
for loading security policies from a text policy file. The class uses TPolicyDomainBuilder
|
sl@0
|
72 |
class functionality for adding loaded policies to the controlled by TPolicyDomainBuilder
|
sl@0
|
73 |
instance CPolicyDomain collection.
|
sl@0
|
74 |
@see MPolicyDomainLoader
|
sl@0
|
75 |
@see TPolicyDomainBuilder
|
sl@0
|
76 |
@see CPolicyBase::RPolicyCollection
|
sl@0
|
77 |
@see CPolicyDomain
|
sl@0
|
78 |
@internalComponent
|
sl@0
|
79 |
*/
|
sl@0
|
80 |
class CPDTextLoader : public CBase, public MPolicyDomainLoader
|
sl@0
|
81 |
{
|
sl@0
|
82 |
public:
|
sl@0
|
83 |
static CPDTextLoader* NewLC(RFs& aFs, const TDesC& aTextFileName);
|
sl@0
|
84 |
virtual ~CPDTextLoader();
|
sl@0
|
85 |
virtual void RunL(TPolicyDomainBuilder& aPolicyDomainBuilder);
|
sl@0
|
86 |
|
sl@0
|
87 |
private:
|
sl@0
|
88 |
inline CPDTextLoader();
|
sl@0
|
89 |
void ConstructL(RFs& aFs, const TDesC& aTextFileName);
|
sl@0
|
90 |
TBool IsEofL();
|
sl@0
|
91 |
void GetStmtPropsL(const TDesC& aStmt, TStmtProps& aStmtProps) const;
|
sl@0
|
92 |
TBool TryGetStmt1Props(const TDesC& aStmt, TStmtProps& aStmtProps) const;
|
sl@0
|
93 |
TBool TryGetStmt2Props(const TDesC& aStmt, TStmtProps& aStmtProps) const;
|
sl@0
|
94 |
TBool LoadStmtL(TPtr& aStmt);
|
sl@0
|
95 |
TStmtClass LoadNextStmtL(TStmtProps& aStmtProps);
|
sl@0
|
96 |
void LoadNextStmtOfTypeL(TStmtProps& aStmtProps, TStmtType aStmtType);
|
sl@0
|
97 |
const CDbPolicy* LoadDbPolicyL(TPolicyDomainBuilder& aPolicyDomainBuilder,
|
sl@0
|
98 |
TStmtProps& aStmtProps);
|
sl@0
|
99 |
void LoadTblPoliciesL(TPolicyDomainBuilder& aPolicyDomainBuilder, TStmtProps& aStmtProps,
|
sl@0
|
100 |
const CDbPolicy* aDbPolicy);
|
sl@0
|
101 |
void LoadBackupSIDL(TPolicyDomainBuilder& aPolicyDomainBuilder, TStmtProps& aStmtProps);
|
sl@0
|
102 |
void LoadSecurityPoliciesL(CPolicyBase::RPolicyCollection& aPolicyColl, TStmtProps& aStmtProps);
|
sl@0
|
103 |
void LoadSecurityPolicyL(TSecurityPolicy& aSecurityPolicy, TStmtProps& aStmtProps);
|
sl@0
|
104 |
void GetCapabilitiesL(const TDesC& aCapabilityStr, RArray<TCapability>& aCapability) const;
|
sl@0
|
105 |
TUint GetIdL(const TDesC& aStr) const;
|
sl@0
|
106 |
|
sl@0
|
107 |
private:
|
sl@0
|
108 |
RFileReadStream iRdStream;
|
sl@0
|
109 |
TBuf8<KMaxStmtLength> iStmt8;
|
sl@0
|
110 |
TBuf<KMaxStmtLength> iStmt;
|
sl@0
|
111 |
};
|
sl@0
|
112 |
|
sl@0
|
113 |
} //end of - namespace DBSC
|
sl@0
|
114 |
|
sl@0
|
115 |
#endif//__SC_TEXTIN_H__
|