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 // CPDTextLoader class
18 #ifndef __SC_TEXTIN_H__
19 #define __SC_TEXTIN_H__
23 #include "SC_Policy.h"
29 This enum describes the possible statement types in a text policy file, recogizable by
30 CPDTextLoader implementation.
48 EStmtTInvalid //Include the new enum items before "EStmtTInvalid"
52 This enum describes the possible statement classes in a text policy file, recogizable by
53 CPDTextLoader implementation.
58 EStmtCNoData, //Blank, Comments
59 EStmtCPolicyObj, //Database, Table
60 EStmtCPolicyType, //Read, Write, Schema
61 EStmtCPolicyItem, //Capability, SID, VID
62 EStmtCBackup, //Backup & restore
70 CPDTextLoader class is an implementation of MPolicyDomainLoader interface and is used
71 for loading security policies from a text policy file. The class uses TPolicyDomainBuilder
72 class functionality for adding loaded policies to the controlled by TPolicyDomainBuilder
73 instance CPolicyDomain collection.
74 @see MPolicyDomainLoader
75 @see TPolicyDomainBuilder
76 @see CPolicyBase::RPolicyCollection
80 class CPDTextLoader : public CBase, public MPolicyDomainLoader
83 static CPDTextLoader* NewLC(RFs& aFs, const TDesC& aTextFileName);
84 virtual ~CPDTextLoader();
85 virtual void RunL(TPolicyDomainBuilder& aPolicyDomainBuilder);
88 inline CPDTextLoader();
89 void ConstructL(RFs& aFs, const TDesC& aTextFileName);
91 void GetStmtPropsL(const TDesC& aStmt, TStmtProps& aStmtProps) const;
92 TBool TryGetStmt1Props(const TDesC& aStmt, TStmtProps& aStmtProps) const;
93 TBool TryGetStmt2Props(const TDesC& aStmt, TStmtProps& aStmtProps) const;
94 TBool LoadStmtL(TPtr& aStmt);
95 TStmtClass LoadNextStmtL(TStmtProps& aStmtProps);
96 void LoadNextStmtOfTypeL(TStmtProps& aStmtProps, TStmtType aStmtType);
97 const CDbPolicy* LoadDbPolicyL(TPolicyDomainBuilder& aPolicyDomainBuilder,
98 TStmtProps& aStmtProps);
99 void LoadTblPoliciesL(TPolicyDomainBuilder& aPolicyDomainBuilder, TStmtProps& aStmtProps,
100 const CDbPolicy* aDbPolicy);
101 void LoadBackupSIDL(TPolicyDomainBuilder& aPolicyDomainBuilder, TStmtProps& aStmtProps);
102 void LoadSecurityPoliciesL(CPolicyBase::RPolicyCollection& aPolicyColl, TStmtProps& aStmtProps);
103 void LoadSecurityPolicyL(TSecurityPolicy& aSecurityPolicy, TStmtProps& aStmtProps);
104 void GetCapabilitiesL(const TDesC& aCapabilityStr, RArray<TCapability>& aCapability) const;
105 TUint GetIdL(const TDesC& aStr) const;
108 RFileReadStream iRdStream;
109 TBuf8<KMaxStmtLength> iStmt8;
110 TBuf<KMaxStmtLength> iStmt;
113 } //end of - namespace DBSC
115 #endif//__SC_TEXTIN_H__