os/persistentdata/persistentstorage/dbms/security/SC_Policy.inl
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
//
sl@0
    15
sl@0
    16
namespace DBSC
sl@0
    17
{
sl@0
    18
sl@0
    19
//////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    20
//class CPolicyBase
sl@0
    21
sl@0
    22
/**
sl@0
    23
*/
sl@0
    24
inline CPolicyBase::CPolicyBase()
sl@0
    25
	{
sl@0
    26
	}
sl@0
    27
sl@0
    28
/**
sl@0
    29
@return A const reference to the controlled collection of R/W/S policies.
sl@0
    30
*/
sl@0
    31
inline const CPolicyBase::RPolicyCollection& CPolicyBase::PolicyCollection() const
sl@0
    32
	{
sl@0
    33
	return iPolicyCollection;
sl@0
    34
	}
sl@0
    35
sl@0
    36
//////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    37
//class CDbPolicy
sl@0
    38
sl@0
    39
/**
sl@0
    40
*/
sl@0
    41
inline CDbPolicy::CDbPolicy()
sl@0
    42
	{
sl@0
    43
	}
sl@0
    44
sl@0
    45
/**
sl@0
    46
Standard phase-one CDbPolicy factory method.
sl@0
    47
@param aPolicyCollection A collection of R/W/S policies.
sl@0
    48
@return A pointer to just created CDbPolicy instance.
sl@0
    49
@leave System-wide error codes, including KErrNoMemory
sl@0
    50
*/
sl@0
    51
inline CDbPolicy* CDbPolicy::NewL(const RPolicyCollection& aPolicyCollection)
sl@0
    52
	{
sl@0
    53
	CDbPolicy* policy = CDbPolicy::NewLC(aPolicyCollection);
sl@0
    54
	CleanupStack::Pop(policy);
sl@0
    55
	return policy;
sl@0
    56
	}
sl@0
    57
sl@0
    58
//////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    59
//class CTblPolicy
sl@0
    60
sl@0
    61
/**
sl@0
    62
*/
sl@0
    63
inline CTblPolicy::CTblPolicy(const CDbPolicy* aDbPolicy) :
sl@0
    64
	iDbPolicy(aDbPolicy)
sl@0
    65
	{
sl@0
    66
	__ASSERT(iDbPolicy);
sl@0
    67
	}
sl@0
    68
sl@0
    69
/**
sl@0
    70
Standard phase-one CTblPolicy factory method.
sl@0
    71
@param aTblName The name of the table, access to which is controlled by the supplied policies
sl@0
    72
@param aPolicyCollection A collection of R/W/S policies.
sl@0
    73
@param aDbPolicy The related for the table database policy.
sl@0
    74
@return A pointer to just created CTblPolicy instance.
sl@0
    75
@leave System-wide error codes, including KErrNoMemory
sl@0
    76
*/
sl@0
    77
inline CTblPolicy* CTblPolicy::NewL(const TDesC& aTblName, 
sl@0
    78
									const RPolicyCollection& aPolicyCollection,
sl@0
    79
									const CDbPolicy* aDbPolicy)
sl@0
    80
	{
sl@0
    81
	CTblPolicy* policy = CTblPolicy::NewLC(aTblName, aPolicyCollection, aDbPolicy);
sl@0
    82
	CleanupStack::Pop(policy);
sl@0
    83
	return policy;
sl@0
    84
	}
sl@0
    85
sl@0
    86
/**
sl@0
    87
@return A const reference to the table name.
sl@0
    88
*/
sl@0
    89
inline const TDesC& CTblPolicy::TableName() const
sl@0
    90
	{
sl@0
    91
	DB_INVARIANT();
sl@0
    92
	return *iTblName;
sl@0
    93
	}
sl@0
    94
sl@0
    95
//////////////////////////////////////////////////////////////////////////////////////////////
sl@0
    96
//class CPolicyDomain
sl@0
    97
sl@0
    98
/**
sl@0
    99
CPolicyDomain collection of table security policies  - the granularity.
sl@0
   100
@internalComponent
sl@0
   101
*/
sl@0
   102
const TInt KTblPolicyCollGranularity = 32;
sl@0
   103
sl@0
   104
/**
sl@0
   105
@param aUid The domain UID
sl@0
   106
*/
sl@0
   107
inline CPolicyDomain::CPolicyDomain(TUid aUid) :
sl@0
   108
	iUid(aUid),
sl@0
   109
	iTPCollection(KTblPolicyCollGranularity)
sl@0
   110
	{
sl@0
   111
	}
sl@0
   112
sl@0
   113
/**
sl@0
   114
Standard phase-one CPolicyDomain factory method.
sl@0
   115
@param aUid The format uid of the databases, access to which is controlled by security policies
sl@0
   116
@param aPDLoader The interface, which actual implementation is used to load the related set
sl@0
   117
                 of security policies into CPolicyDomain collection. Currently CPolicyDomain
sl@0
   118
				 policy collection can be loaded from a text or binary policy file.
sl@0
   119
@return A pointer to just created CPolicyDomain instance.
sl@0
   120
@leave System-wide error codes, including KErrNoMemory
sl@0
   121
*/
sl@0
   122
inline CPolicyDomain* CPolicyDomain::NewL(TUid aUid, MPolicyDomainLoader& aPDLoader)
sl@0
   123
	{
sl@0
   124
	CPolicyDomain* domain = CPolicyDomain::NewLC(aUid, aPDLoader);
sl@0
   125
	CleanupStack::Pop(domain);
sl@0
   126
	return domain;
sl@0
   127
	}
sl@0
   128
sl@0
   129
/**
sl@0
   130
@return Policy domain UID.
sl@0
   131
*/
sl@0
   132
inline TUid CPolicyDomain::Uid() const
sl@0
   133
	{
sl@0
   134
	DB_INVARIANT();
sl@0
   135
	return iUid;
sl@0
   136
	}
sl@0
   137
sl@0
   138
/**
sl@0
   139
@return Backup&restore SID.
sl@0
   140
*/
sl@0
   141
inline TSecureId CPolicyDomain::BackupSID() const
sl@0
   142
	{
sl@0
   143
	DB_INVARIANT();
sl@0
   144
	return iBackupSID;
sl@0
   145
	}
sl@0
   146
sl@0
   147
//////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   148
//class TPolicyDomainBuilder
sl@0
   149
sl@0
   150
/**
sl@0
   151
TPolicyDomainBuilder is a friend class of CPolicyDomain, which means that it can access
sl@0
   152
CPolicyDomain's data members and add/update new policies there.
sl@0
   153
The idea is that TPolicyDomainBuilder will be used by the implementors of MPolicyDomainLoader
sl@0
   154
interface, removing the need of making them friends of CPolicyDomain or visible from CPolicyDomain.
sl@0
   155
@param aPolicyDomain A reference to the policy domain object, which collection has to be 
sl@0
   156
                     created by the TPolicyDomainBuilder instance.
sl@0
   157
*/
sl@0
   158
inline TPolicyDomainBuilder::TPolicyDomainBuilder(CPolicyDomain& aPolicyDomain) :
sl@0
   159
	iPolicyDomain(aPolicyDomain)
sl@0
   160
	{
sl@0
   161
	}
sl@0
   162
sl@0
   163
/**
sl@0
   164
The method adds a table policy to the related CPolicyDomain collection.
sl@0
   165
@param aTblPolicy A pointer to CTblPolicy instance, which has to be added to 
sl@0
   166
                  the related CPolicyDomain collection. CPolicyDomain collection takes the
sl@0
   167
				  ownership on the supplied CTblPolicy instance.
sl@0
   168
*/
sl@0
   169
inline void TPolicyDomainBuilder::AddTblPolicyL(CTblPolicy* aTblPolicy)
sl@0
   170
	{
sl@0
   171
	__ASSERT(aTblPolicy);
sl@0
   172
	__LEAVE_IF_ERROR(iPolicyDomain.iTPCollection.Append(aTblPolicy));
sl@0
   173
	}
sl@0
   174
sl@0
   175
/**
sl@0
   176
The method initializes CPolicyDomain::iBackupSID data member.
sl@0
   177
The backup&restore SID can be ECapability_None, which means - no one is allowed to do backup&restore
sl@0
   178
for the databases, covered by current policy domain.
sl@0
   179
@param aTblPolicy aSecureId SID of the process, which is allowed to do backup&restore
sl@0
   180
                  for databases covered by current TPolicyDomainBuilder object.
sl@0
   181
*/
sl@0
   182
inline void TPolicyDomainBuilder::SetBackupSID(TSecureId& aSecureId)
sl@0
   183
	{
sl@0
   184
	iPolicyDomain.iBackupSID = aSecureId;
sl@0
   185
	}
sl@0
   186
sl@0
   187
//////////////////////////////////////////////////////////////////////////////////////////////
sl@0
   188
//class TPolicyDomainReader
sl@0
   189
sl@0
   190
/**
sl@0
   191
TPolicyDomainReader is a friend class of CPolicyDomain, which means that it can access
sl@0
   192
CPolicyDomain's data members and iterate through the policies collection.
sl@0
   193
The idea is that TPolicyDomainReader will be used by the implementors of MPolicyDomainPersister
sl@0
   194
interface, removing the need of making them friends of CPolicyDomain or visible from CPolicyDomain.
sl@0
   195
@param aPolicyDomain A reference to the policy domain object, which collection has to be 
sl@0
   196
                     traversed by the TPolicyDomainReader instance.
sl@0
   197
*/
sl@0
   198
inline TPolicyDomainReader::TPolicyDomainReader(const CPolicyDomain& aPolicyDomain) :
sl@0
   199
	iPolicyDomain(aPolicyDomain),
sl@0
   200
	iIndex(0)
sl@0
   201
	{
sl@0
   202
	}
sl@0
   203
sl@0
   204
/**
sl@0
   205
@return The UID of the related CPolicyDomain object.
sl@0
   206
*/
sl@0
   207
inline TUid TPolicyDomainReader::Uid() const
sl@0
   208
	{
sl@0
   209
	return iPolicyDomain.Uid();
sl@0
   210
	}
sl@0
   211
sl@0
   212
/**
sl@0
   213
@return A const reference to the existing CDbPolicy instance - part of the related
sl@0
   214
        CPolicyDomain security policies collection.
sl@0
   215
*/
sl@0
   216
inline const CDbPolicy& TPolicyDomainReader::DbPolicy() const
sl@0
   217
	{
sl@0
   218
	__ASSERT(iPolicyDomain.iDbPolicy);
sl@0
   219
	return *iPolicyDomain.iDbPolicy;
sl@0
   220
	}
sl@0
   221
sl@0
   222
/**
sl@0
   223
Resets the iterator for a new scan from the beginning of the controlled table 
sl@0
   224
policies collection.
sl@0
   225
*/
sl@0
   226
inline void TPolicyDomainReader::ResetTblPos() const
sl@0
   227
	{
sl@0
   228
	iIndex = 0;
sl@0
   229
	}
sl@0
   230
sl@0
   231
/**
sl@0
   232
@return The count of security policies in the controlled table policies collection.
sl@0
   233
*/
sl@0
   234
inline TInt TPolicyDomainReader::TblPolicyCount() const
sl@0
   235
	{
sl@0
   236
	return iPolicyDomain.iTPCollection.Count();
sl@0
   237
	}
sl@0
   238
sl@0
   239
/**
sl@0
   240
@return A const pointer to the next CTblPolicy instance in the controlled collection
sl@0
   241
        of table security policies.
sl@0
   242
*/
sl@0
   243
inline const CTblPolicy* TPolicyDomainReader::NextTblPolicy() const
sl@0
   244
	{
sl@0
   245
	return iIndex < iPolicyDomain.iTPCollection.Count() ? iPolicyDomain.iTPCollection[iIndex++] : NULL;
sl@0
   246
	}
sl@0
   247
sl@0
   248
/**
sl@0
   249
@return Backup&restore process SID.
sl@0
   250
*/
sl@0
   251
inline TSecureId TPolicyDomainReader::BackupSID() const
sl@0
   252
	{
sl@0
   253
	return iPolicyDomain.iBackupSID;
sl@0
   254
	}
sl@0
   255
sl@0
   256
} //end of - namespace DBSC