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.
19 //////////////////////////////////////////////////////////////////////////////////////////////
24 inline CPolicyBase::CPolicyBase()
29 @return A const reference to the controlled collection of R/W/S policies.
31 inline const CPolicyBase::RPolicyCollection& CPolicyBase::PolicyCollection() const
33 return iPolicyCollection;
36 //////////////////////////////////////////////////////////////////////////////////////////////
41 inline CDbPolicy::CDbPolicy()
46 Standard phase-one CDbPolicy factory method.
47 @param aPolicyCollection A collection of R/W/S policies.
48 @return A pointer to just created CDbPolicy instance.
49 @leave System-wide error codes, including KErrNoMemory
51 inline CDbPolicy* CDbPolicy::NewL(const RPolicyCollection& aPolicyCollection)
53 CDbPolicy* policy = CDbPolicy::NewLC(aPolicyCollection);
54 CleanupStack::Pop(policy);
58 //////////////////////////////////////////////////////////////////////////////////////////////
63 inline CTblPolicy::CTblPolicy(const CDbPolicy* aDbPolicy) :
70 Standard phase-one CTblPolicy factory method.
71 @param aTblName The name of the table, access to which is controlled by the supplied policies
72 @param aPolicyCollection A collection of R/W/S policies.
73 @param aDbPolicy The related for the table database policy.
74 @return A pointer to just created CTblPolicy instance.
75 @leave System-wide error codes, including KErrNoMemory
77 inline CTblPolicy* CTblPolicy::NewL(const TDesC& aTblName,
78 const RPolicyCollection& aPolicyCollection,
79 const CDbPolicy* aDbPolicy)
81 CTblPolicy* policy = CTblPolicy::NewLC(aTblName, aPolicyCollection, aDbPolicy);
82 CleanupStack::Pop(policy);
87 @return A const reference to the table name.
89 inline const TDesC& CTblPolicy::TableName() const
95 //////////////////////////////////////////////////////////////////////////////////////////////
99 CPolicyDomain collection of table security policies - the granularity.
102 const TInt KTblPolicyCollGranularity = 32;
105 @param aUid The domain UID
107 inline CPolicyDomain::CPolicyDomain(TUid aUid) :
109 iTPCollection(KTblPolicyCollGranularity)
114 Standard phase-one CPolicyDomain factory method.
115 @param aUid The format uid of the databases, access to which is controlled by security policies
116 @param aPDLoader The interface, which actual implementation is used to load the related set
117 of security policies into CPolicyDomain collection. Currently CPolicyDomain
118 policy collection can be loaded from a text or binary policy file.
119 @return A pointer to just created CPolicyDomain instance.
120 @leave System-wide error codes, including KErrNoMemory
122 inline CPolicyDomain* CPolicyDomain::NewL(TUid aUid, MPolicyDomainLoader& aPDLoader)
124 CPolicyDomain* domain = CPolicyDomain::NewLC(aUid, aPDLoader);
125 CleanupStack::Pop(domain);
130 @return Policy domain UID.
132 inline TUid CPolicyDomain::Uid() const
139 @return Backup&restore SID.
141 inline TSecureId CPolicyDomain::BackupSID() const
147 //////////////////////////////////////////////////////////////////////////////////////////////
148 //class TPolicyDomainBuilder
151 TPolicyDomainBuilder is a friend class of CPolicyDomain, which means that it can access
152 CPolicyDomain's data members and add/update new policies there.
153 The idea is that TPolicyDomainBuilder will be used by the implementors of MPolicyDomainLoader
154 interface, removing the need of making them friends of CPolicyDomain or visible from CPolicyDomain.
155 @param aPolicyDomain A reference to the policy domain object, which collection has to be
156 created by the TPolicyDomainBuilder instance.
158 inline TPolicyDomainBuilder::TPolicyDomainBuilder(CPolicyDomain& aPolicyDomain) :
159 iPolicyDomain(aPolicyDomain)
164 The method adds a table policy to the related CPolicyDomain collection.
165 @param aTblPolicy A pointer to CTblPolicy instance, which has to be added to
166 the related CPolicyDomain collection. CPolicyDomain collection takes the
167 ownership on the supplied CTblPolicy instance.
169 inline void TPolicyDomainBuilder::AddTblPolicyL(CTblPolicy* aTblPolicy)
171 __ASSERT(aTblPolicy);
172 __LEAVE_IF_ERROR(iPolicyDomain.iTPCollection.Append(aTblPolicy));
176 The method initializes CPolicyDomain::iBackupSID data member.
177 The backup&restore SID can be ECapability_None, which means - no one is allowed to do backup&restore
178 for the databases, covered by current policy domain.
179 @param aTblPolicy aSecureId SID of the process, which is allowed to do backup&restore
180 for databases covered by current TPolicyDomainBuilder object.
182 inline void TPolicyDomainBuilder::SetBackupSID(TSecureId& aSecureId)
184 iPolicyDomain.iBackupSID = aSecureId;
187 //////////////////////////////////////////////////////////////////////////////////////////////
188 //class TPolicyDomainReader
191 TPolicyDomainReader is a friend class of CPolicyDomain, which means that it can access
192 CPolicyDomain's data members and iterate through the policies collection.
193 The idea is that TPolicyDomainReader will be used by the implementors of MPolicyDomainPersister
194 interface, removing the need of making them friends of CPolicyDomain or visible from CPolicyDomain.
195 @param aPolicyDomain A reference to the policy domain object, which collection has to be
196 traversed by the TPolicyDomainReader instance.
198 inline TPolicyDomainReader::TPolicyDomainReader(const CPolicyDomain& aPolicyDomain) :
199 iPolicyDomain(aPolicyDomain),
205 @return The UID of the related CPolicyDomain object.
207 inline TUid TPolicyDomainReader::Uid() const
209 return iPolicyDomain.Uid();
213 @return A const reference to the existing CDbPolicy instance - part of the related
214 CPolicyDomain security policies collection.
216 inline const CDbPolicy& TPolicyDomainReader::DbPolicy() const
218 __ASSERT(iPolicyDomain.iDbPolicy);
219 return *iPolicyDomain.iDbPolicy;
223 Resets the iterator for a new scan from the beginning of the controlled table
226 inline void TPolicyDomainReader::ResetTblPos() const
232 @return The count of security policies in the controlled table policies collection.
234 inline TInt TPolicyDomainReader::TblPolicyCount() const
236 return iPolicyDomain.iTPCollection.Count();
240 @return A const pointer to the next CTblPolicy instance in the controlled collection
241 of table security policies.
243 inline const CTblPolicy* TPolicyDomainReader::NextTblPolicy() const
245 return iIndex < iPolicyDomain.iTPCollection.Count() ? iPolicyDomain.iTPCollection[iIndex++] : NULL;
249 @return Backup&restore process SID.
251 inline TSecureId TPolicyDomainReader::BackupSID() const
253 return iPolicyDomain.iBackupSID;
256 } //end of - namespace DBSC