os/persistentdata/persistentstorage/dbms/security/SC_Policy.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
// CPolicyBase, CDbPolicy, CTblPolicy, CPolicyDomain classes
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "SC_Policy.h"
sl@0
    19
sl@0
    20
namespace DBSC
sl@0
    21
{
sl@0
    22
sl@0
    23
///////////////////////////////////////////////////////////////////////////////////////////
sl@0
    24
//CPolicyBase class
sl@0
    25
sl@0
    26
/**
sl@0
    27
*/
sl@0
    28
CPolicyBase::~CPolicyBase()
sl@0
    29
	{
sl@0
    30
	iPolicyCollection.Close();//Collection of R/W/S security policies
sl@0
    31
	}
sl@0
    32
sl@0
    33
#ifdef __DBDUMP__
sl@0
    34
/**
sl@0
    35
Dumps the content of a CPolicyBase instance to a text file.
sl@0
    36
@param aFile A reference to RFile object, which has to be used for the output.
sl@0
    37
*/
sl@0
    38
void CPolicyBase::Dump(RFile& aFile) const
sl@0
    39
	{
sl@0
    40
	DB_INVARIANT();
sl@0
    41
sl@0
    42
	_LIT8(KClassName, "Class: CPolicyBase. this=%X");
sl@0
    43
	_LIT8(KCount, "Security Policy, Count=%d");
sl@0
    44
	_LIT8(KCrLf, "\r\n");
sl@0
    45
	_LIT8(KPolicyType, "Policy type: ");
sl@0
    46
	_LIT8(KRead,   "Read, ");
sl@0
    47
	_LIT8(KWrite,  "Write, ");
sl@0
    48
	_LIT8(KSchema, "Schema, ");
sl@0
    49
	_LIT8(KPolicyData, "Policy data: ");
sl@0
    50
	_LIT8(KFmt, "%02X ");
sl@0
    51
	TBuf8<100> buf;
sl@0
    52
sl@0
    53
	buf.Format(KClassName, this);
sl@0
    54
	(void)aFile.Write(buf);
sl@0
    55
	(void)aFile.Write(KCrLf);
sl@0
    56
sl@0
    57
	TInt cnt = iPolicyCollection.Count();
sl@0
    58
	buf.Format(KCount, TInt32(cnt));
sl@0
    59
	(void)aFile.Write(buf);
sl@0
    60
	(void)aFile.Write(KCrLf);
sl@0
    61
sl@0
    62
	for(TInt i=0;i<cnt;++i)
sl@0
    63
		{
sl@0
    64
		const TPolicy& policy = iPolicyCollection[i];
sl@0
    65
		(void)aFile.Write(KPolicyType);
sl@0
    66
		switch(policy.iType)
sl@0
    67
			{
sl@0
    68
			case EPTRead:
sl@0
    69
				(void)aFile.Write(KRead);
sl@0
    70
				break;
sl@0
    71
			case EPTWrite:
sl@0
    72
				(void)aFile.Write(KWrite);
sl@0
    73
				break;
sl@0
    74
			case EPTSchema:
sl@0
    75
				(void)aFile.Write(KSchema);
sl@0
    76
				break;
sl@0
    77
			default:
sl@0
    78
				__ASSERT(0);
sl@0
    79
				break;
sl@0
    80
			}
sl@0
    81
		(void)aFile.Write(KPolicyData);
sl@0
    82
		TPtrC8 packet = policy.iData.Package();
sl@0
    83
		TInt len = packet.Length();
sl@0
    84
		for(TInt j=0;j<len;++j)
sl@0
    85
			{
sl@0
    86
			buf.Format(KFmt, packet[j]);
sl@0
    87
			(void)aFile.Write(buf);
sl@0
    88
			}
sl@0
    89
		(void)aFile.Write(KCrLf);
sl@0
    90
		}
sl@0
    91
	}
sl@0
    92
#endif//__DBDUMP__
sl@0
    93
sl@0
    94
/**
sl@0
    95
Standard phase-two construction method for CPolicyBase instance.
sl@0
    96
@param aPolicyCollection A const reference to a collection of R/W/S policies, which has to
sl@0
    97
       be used to control the access to a database object, controlled by CPolicyBase
sl@0
    98
	   instance.
sl@0
    99
*/
sl@0
   100
void CPolicyBase::ConstructL(const CPolicyBase::RPolicyCollection& aPolicyCollection)
sl@0
   101
	{
sl@0
   102
	iPolicyCollection.Reset();
sl@0
   103
	TInt cnt = aPolicyCollection.Count();
sl@0
   104
	for(TInt i=0;i<cnt;++i)
sl@0
   105
		{
sl@0
   106
		__LEAVE_IF_ERROR(iPolicyCollection.Append(aPolicyCollection[i]));
sl@0
   107
		}
sl@0
   108
	DB_INVARIANT();
sl@0
   109
	}
sl@0
   110
sl@0
   111
/**
sl@0
   112
It is used in the production code.
sl@0
   113
If the object data is not in a consistent state, the method will leave 
sl@0
   114
with KErrGeneral error.
sl@0
   115
@leave KErrGeneral, if the object data is not in a consistent state
sl@0
   116
*/
sl@0
   117
void CPolicyBase::InvariantL() const
sl@0
   118
	{
sl@0
   119
	TUint32 mask = 0;
sl@0
   120
	for(TInt i=(iPolicyCollection.Count()-1);i>-1;--i)
sl@0
   121
		{
sl@0
   122
		TPolicy& policy = const_cast <TPolicy&> (iPolicyCollection[i]);
sl@0
   123
		if(policy.iType == EPTNone)
sl@0
   124
			{
sl@0
   125
			__LEAVE(KErrGeneral);
sl@0
   126
			}
sl@0
   127
		if(mask & policy.iType)	//This security policy is duplicated
sl@0
   128
			{
sl@0
   129
			__LEAVE(KErrGeneral);
sl@0
   130
			}
sl@0
   131
		TPtrC8 packet = policy.iData.Package();
sl@0
   132
		if(policy.iData.Set(packet) != KErrNone)
sl@0
   133
			{
sl@0
   134
			__LEAVE(KErrGeneral);
sl@0
   135
			}
sl@0
   136
		mask |= policy.iType;
sl@0
   137
		}
sl@0
   138
	}
sl@0
   139
sl@0
   140
/**
sl@0
   141
This method implements pure virtual MPolicy::Get().
sl@0
   142
It searches object's policy collection for a policy of type aPolicyType
sl@0
   143
and initializes aPolicy parameter with the found policy.
sl@0
   144
@param aPolicyType Type of the requested security policy: read/write/schema
sl@0
   145
@param aPolicy Outout parameter, which will be initialized with the found security policy data.
sl@0
   146
@return System-wide error code, including KErrNotFound if the requested policy was not found.
sl@0
   147
*/
sl@0
   148
TInt CPolicyBase::Get(TPolicyType aPolicyType, TSecurityPolicy& aPolicy) const
sl@0
   149
	{
sl@0
   150
	DB_INVARIANT();
sl@0
   151
	TInt err = KErrNotFound;
sl@0
   152
	const TSecurityPolicy* securityPolicy = Policy(aPolicyType);
sl@0
   153
	if(securityPolicy)
sl@0
   154
		{
sl@0
   155
		err = aPolicy.Set(securityPolicy->Package());
sl@0
   156
		}
sl@0
   157
	return err;
sl@0
   158
	}
sl@0
   159
sl@0
   160
#ifdef __DBINVARIANT__
sl@0
   161
/**
sl@0
   162
Asserts the internal state of CPolicyBase instance.
sl@0
   163
It can be used for pre- or post- condition checks in CPolicyBase methods implementations.
sl@0
   164
*/
sl@0
   165
void CPolicyBase::Invariant() const
sl@0
   166
	{
sl@0
   167
	TRAPD(err, InvariantL());
sl@0
   168
	DB_INVARIANT_ASSERT(err == KErrNone);
sl@0
   169
	}
sl@0
   170
#endif//__DBINVARIANT__
sl@0
   171
sl@0
   172
/**
sl@0
   173
The method traverses the policies collection and searches for a policy of aPolicyType type.
sl@0
   174
If such a policy exists, a const pointer to it will be returned, otherwise - NULL.
sl@0
   175
@param aPolicyType Policy type - R/W/S
sl@0
   176
@return A const pointer to the found policy or NULL if not found.
sl@0
   177
*/
sl@0
   178
const TSecurityPolicy* CPolicyBase::Policy(TPolicyType aPolicyType) const
sl@0
   179
	{
sl@0
   180
	__ASSERT(aPolicyType != EPTNone);
sl@0
   181
	const TSecurityPolicy* policy = NULL;
sl@0
   182
	for(TInt i=(iPolicyCollection.Count()-1);i>-1;--i)
sl@0
   183
		{
sl@0
   184
		if(iPolicyCollection[i].iType == aPolicyType)
sl@0
   185
			{
sl@0
   186
			policy = &iPolicyCollection[i].iData;
sl@0
   187
			break;
sl@0
   188
			}
sl@0
   189
		}
sl@0
   190
	return policy;
sl@0
   191
	}
sl@0
   192
sl@0
   193
/**
sl@0
   194
Asserts caller capabilities/SID/VID.
sl@0
   195
@param aMessage An object whith caller capabilities/SID/VID, which has to be checked.
sl@0
   196
@param aPolicyType Policy type - R/W/S. 
sl@0
   197
@return EPCNotFound - the policy cannot be found
sl@0
   198
        EPCPassed - policy check passed
sl@0
   199
        EPCNotPassed - policy check not passed
sl@0
   200
*/
sl@0
   201
CPolicyBase::TPolicyCheckResult CPolicyBase::DoCheck(const RMessage2& aMessage, TPolicyType aPolicyType) const
sl@0
   202
	{
sl@0
   203
	const TSecurityPolicy* securityPolicy = Policy(aPolicyType);
sl@0
   204
sl@0
   205
	if(!securityPolicy)
sl@0
   206
		{
sl@0
   207
		return EPCNotFound;
sl@0
   208
		}
sl@0
   209
sl@0
   210
	return securityPolicy->CheckPolicy(aMessage) ? EPCPassed : EPCNotPassed;
sl@0
   211
	}
sl@0
   212
sl@0
   213
///////////////////////////////////////////////////////////////////////////////////////////
sl@0
   214
//CDbPolicy class
sl@0
   215
sl@0
   216
/**
sl@0
   217
*/
sl@0
   218
CDbPolicy::~CDbPolicy()
sl@0
   219
	{
sl@0
   220
	}
sl@0
   221
sl@0
   222
/**
sl@0
   223
Asserts caller capabilities/SID/VID.
sl@0
   224
@param aMessage An object whith caller capabilities/SID/VID, which has to be checked.
sl@0
   225
@param aPolicyType Policy type - R/W/S. 
sl@0
   226
@return ETrue The caller capabilities/SID/VID satisfy the specified security policy.
sl@0
   227
        EFalse The check not passed.
sl@0
   228
@panic EDBSCPolicyNotFound, if there is no such policy 
sl@0
   229
*/
sl@0
   230
TBool CDbPolicy::Check(const RMessage2& aMessage, TPolicyType aPolicyType) const
sl@0
   231
	{
sl@0
   232
	__ASSERT(aPolicyType != EPTNone);
sl@0
   233
	DB_INVARIANT();
sl@0
   234
	TPolicyCheckResult res = DoCheck(aMessage, aPolicyType);
sl@0
   235
	__ASSERT(res != EPCNotFound);
sl@0
   236
	return  res == EPCPassed ? ETrue : EFalse;
sl@0
   237
	}
sl@0
   238
sl@0
   239
/**
sl@0
   240
Standard phase-one factory method for CDbPolicy instance.
sl@0
   241
@param aPolicyCollection A const reference to a collection of R/W/S policies, which has to
sl@0
   242
       be used to control the access to the database, controlled by CDbPolicy instance.
sl@0
   243
@return A pointer to just created CDbPolicy instance.
sl@0
   244
@leave System-wide error codes, including KErrNoMemory.
sl@0
   245
*/
sl@0
   246
CDbPolicy* CDbPolicy::NewLC(const CPolicyBase::RPolicyCollection& aPolicyCollection)
sl@0
   247
	{
sl@0
   248
	CDbPolicy* self = new (ELeave) CDbPolicy;
sl@0
   249
	CleanupStack::PushL(self);
sl@0
   250
	self->ConstructL(aPolicyCollection);
sl@0
   251
	return self;
sl@0
   252
	}
sl@0
   253
sl@0
   254
#ifdef __DBDUMP__
sl@0
   255
/**
sl@0
   256
Dumps the content of a CDbPolicy instance to a text file.
sl@0
   257
@param aFile A reference to RFile object, which has to be used for the output.
sl@0
   258
*/
sl@0
   259
void CDbPolicy::Dump(RFile& aFile) const
sl@0
   260
	{
sl@0
   261
	DB_INVARIANT();
sl@0
   262
sl@0
   263
	_LIT8(KClassName, "Class: CDbPolicy. this=%X");
sl@0
   264
	_LIT8(KCrLf, "\r\n");
sl@0
   265
	_LIT8(KObjType, "Object: Database");
sl@0
   266
	_LIT8(KEnd, "==========================");
sl@0
   267
	TBuf8<40> buf;
sl@0
   268
sl@0
   269
	buf.Format(KClassName, this);
sl@0
   270
	(void)aFile.Write(buf);
sl@0
   271
	(void)aFile.Write(KCrLf);
sl@0
   272
	(void)aFile.Write(KObjType);
sl@0
   273
	(void)aFile.Write(KCrLf);
sl@0
   274
	CPolicyBase::Dump(aFile);
sl@0
   275
	(void)aFile.Write(KEnd);
sl@0
   276
	(void)aFile.Write(KCrLf);
sl@0
   277
	}
sl@0
   278
#endif//__DBDUMP__
sl@0
   279
sl@0
   280
/**
sl@0
   281
It is used in the production code.
sl@0
   282
If the object data is not in a consistent state, the method will leave 
sl@0
   283
with KErrGeneral error.
sl@0
   284
@leave KErrGeneral, if the object data is not in a consistent state
sl@0
   285
*/
sl@0
   286
void CDbPolicy::InvariantL() const
sl@0
   287
	{
sl@0
   288
	for(TInt c=0;c<KPolicyTypesCount;++c)
sl@0
   289
		{
sl@0
   290
		TPolicyType t = static_cast <TPolicyType> (1 << c);
sl@0
   291
		if(Policy(t) == NULL)
sl@0
   292
			{
sl@0
   293
			__LEAVE(KErrGeneral);
sl@0
   294
			}
sl@0
   295
		}
sl@0
   296
	CPolicyBase::InvariantL();
sl@0
   297
	}
sl@0
   298
sl@0
   299
///////////////////////////////////////////////////////////////////////////////////////////
sl@0
   300
//CTblPolicy class
sl@0
   301
sl@0
   302
/**
sl@0
   303
*/
sl@0
   304
CTblPolicy::~CTblPolicy()
sl@0
   305
	{
sl@0
   306
	delete iTblName;
sl@0
   307
	}
sl@0
   308
sl@0
   309
/**
sl@0
   310
Asserts caller capabilities/SID/VID.
sl@0
   311
@param aMessage An object whith caller capabilities/SID/VID, which has to be checked.
sl@0
   312
@param aPolicyType Policy type - R/W/S. 
sl@0
   313
@return ETrue The caller capabilities/SID/VID satisfy the specified security policy.
sl@0
   314
        EFalse The check not passed.
sl@0
   315
@panic EDBSCPolicyNotFound, if there is no such policy 
sl@0
   316
*/
sl@0
   317
TBool CTblPolicy::Check(const RMessage2& aMessage, TPolicyType aPolicyType) const
sl@0
   318
	{
sl@0
   319
	__ASSERT(aPolicyType != EPTNone);
sl@0
   320
	__ASSERT(iDbPolicy);
sl@0
   321
	DB_INVARIANT();
sl@0
   322
	TPolicyCheckResult res = EPCNotPassed;
sl@0
   323
	//1. Check database security policy
sl@0
   324
	if(iDbPolicy->Check(aMessage, aPolicyType))
sl@0
   325
		{
sl@0
   326
	//2. Check table security policy
sl@0
   327
		res = DoCheck(aMessage, aPolicyType);
sl@0
   328
		}
sl@0
   329
	//If there is no table security policy of the requested type - no problem, the database
sl@0
   330
	//security policy of that type has been checked already and the check passed.
sl@0
   331
	return res == EPCNotPassed ? EFalse : ETrue;
sl@0
   332
	}
sl@0
   333
sl@0
   334
/**
sl@0
   335
This method implements pure virtual MPolicy::Get().
sl@0
   336
It searches object's policy collection for a policy of type aPolicyType
sl@0
   337
and initializes aPolicy parameter with the found policy.
sl@0
   338
@param aPolicyType Type of the requested security policy: read/write
sl@0
   339
@param aPolicy Outout parameter, which will be initialized with the found security policy data.
sl@0
   340
@return System-wide error codes, including KErrNotSupported, if the request is for a schema policy.
sl@0
   341
*/
sl@0
   342
TInt CTblPolicy::Get(TPolicyType aPolicyType, TSecurityPolicy& aPolicy) const
sl@0
   343
	{
sl@0
   344
	if(aPolicyType == EPTSchema)
sl@0
   345
		{
sl@0
   346
		return KErrNotSupported;
sl@0
   347
		}
sl@0
   348
	DB_INVARIANT();
sl@0
   349
	TInt err = CPolicyBase::Get(aPolicyType, aPolicy);
sl@0
   350
	if(err == KErrNotFound)
sl@0
   351
		{
sl@0
   352
		err = iDbPolicy->Get(aPolicyType, aPolicy);
sl@0
   353
		}
sl@0
   354
	__ASSERT(err != KErrNotFound);
sl@0
   355
	return err;
sl@0
   356
	}
sl@0
   357
sl@0
   358
/**
sl@0
   359
Standard phase-one factory method for CTblPolicy instance.
sl@0
   360
@param aTblName Name of the controlled by this instance database table.
sl@0
   361
@param aPolicyCollection A const reference to a collection of R/W/S policies, which has to
sl@0
   362
       be used to control the access to the table, controlled by CTblPolicy instance.
sl@0
   363
@param aDbPolicy The related for the table database policy.
sl@0
   364
       CTblPolicy instance does not take the ownership on aDbPolicy pointer!        
sl@0
   365
@return A pointer to just created CTblPolicy instance.
sl@0
   366
@leave System-wide error codes, including KErrNoMemory.
sl@0
   367
*/
sl@0
   368
CTblPolicy* CTblPolicy::NewLC(const TDesC& aTblName, 
sl@0
   369
							  const CPolicyBase::RPolicyCollection& aPolicyCollection,
sl@0
   370
							  const CDbPolicy* aDbPolicy)
sl@0
   371
	{
sl@0
   372
	CTblPolicy* self = new (ELeave) CTblPolicy(aDbPolicy);
sl@0
   373
	CleanupStack::PushL(self);
sl@0
   374
	self->ConstructL(aTblName, aPolicyCollection);
sl@0
   375
	return self;
sl@0
   376
	}
sl@0
   377
sl@0
   378
#ifdef __DBDUMP__
sl@0
   379
/**
sl@0
   380
Dumps the content of a CTblPolicy instance to a text file.
sl@0
   381
@param aFile A reference to RFile object, which has to be used for the output.
sl@0
   382
*/
sl@0
   383
void CTblPolicy::Dump(RFile& aFile) const
sl@0
   384
	{
sl@0
   385
	DB_INVARIANT();
sl@0
   386
sl@0
   387
	_LIT8(KClassName, "Class: CTblPolicy. this=%X");
sl@0
   388
	_LIT8(KDbPolicyPtr, "Db policy ptr=%X");
sl@0
   389
	_LIT8(KCrLf, "\r\n");
sl@0
   390
	_LIT8(KName, "Table name: ");
sl@0
   391
	_LIT8(KObjType, "Object: Table");
sl@0
   392
	_LIT8(KEnd, "==========================");
sl@0
   393
	TBuf8<100> buf;
sl@0
   394
sl@0
   395
	buf.Format(KClassName, this);
sl@0
   396
	(void)aFile.Write(buf);
sl@0
   397
	(void)aFile.Write(KCrLf);
sl@0
   398
	(void)aFile.Write(KObjType);
sl@0
   399
	(void)aFile.Write(KCrLf);
sl@0
   400
	buf.Format(KDbPolicyPtr, iDbPolicy);
sl@0
   401
	(void)aFile.Write(buf);
sl@0
   402
	(void)aFile.Write(KCrLf);
sl@0
   403
	buf.Copy(KName);
sl@0
   404
	buf.Append(*iTblName);
sl@0
   405
	(void)aFile.Write(buf);
sl@0
   406
	(void)aFile.Write(KCrLf);
sl@0
   407
	CPolicyBase::Dump(aFile);
sl@0
   408
	(void)aFile.Write(KEnd);
sl@0
   409
	(void)aFile.Write(KCrLf);
sl@0
   410
	}
sl@0
   411
#endif//__DBDUMP__
sl@0
   412
sl@0
   413
/**
sl@0
   414
It is used in the production code.
sl@0
   415
If the object data is not in a consistent state, the method will leave 
sl@0
   416
with KErrGeneral error.
sl@0
   417
@leave KErrGeneral, if the object data is not in a consistent state
sl@0
   418
*/
sl@0
   419
void CTblPolicy::InvariantL() const
sl@0
   420
	{
sl@0
   421
	if(iDbPolicy == NULL)
sl@0
   422
		{
sl@0
   423
		__LEAVE(KErrGeneral);
sl@0
   424
		}
sl@0
   425
	if(iTblName == NULL || iTblName->Length() == 0)
sl@0
   426
		{
sl@0
   427
		__LEAVE(KErrGeneral);
sl@0
   428
		}
sl@0
   429
	if(Policy(EPTSchema) != NULL)
sl@0
   430
		{
sl@0
   431
		__LEAVE(KErrGeneral);
sl@0
   432
		}
sl@0
   433
	CPolicyBase::InvariantL();
sl@0
   434
	}
sl@0
   435
sl@0
   436
/**
sl@0
   437
Standard phase-two construction method for CTblPolicy instance.
sl@0
   438
@param aTblName Name of the controlled by this instance database table.
sl@0
   439
@param aPolicyCollection A const reference to a collection of R/W/S policies, which has to
sl@0
   440
       be used to control the access to the table object, controlled by CTblPolicy
sl@0
   441
	   instance.
sl@0
   442
*/
sl@0
   443
void CTblPolicy::ConstructL(const TDesC& aTblName, const CPolicyBase::RPolicyCollection& aPolicyCollection)
sl@0
   444
	{
sl@0
   445
	iTblName = HBufC::NewL(aTblName.Length());
sl@0
   446
	*iTblName = aTblName;
sl@0
   447
	CPolicyBase::ConstructL(aPolicyCollection);
sl@0
   448
	DB_INVARIANT();
sl@0
   449
	}
sl@0
   450
sl@0
   451
///////////////////////////////////////////////////////////////////////////////////////////
sl@0
   452
//CPolicyDomain class
sl@0
   453
sl@0
   454
/**
sl@0
   455
Standard phase-one factory method for CPolicyDomain instance.
sl@0
   456
@param aUid UID of the controlled by this instance security policy domain.
sl@0
   457
@param aPDLoader A reference to an implementation of MPolicyDomainLoader interface,
sl@0
   458
       which is used to load and add security policies to the controlled collection.
sl@0
   459
@return A pointer to just created CPolicyDomain instance.
sl@0
   460
@leave System-wide error codes, including KErrNoMemory.
sl@0
   461
*/
sl@0
   462
CPolicyDomain* CPolicyDomain::NewLC(TUid aUid, MPolicyDomainLoader& aPDLoader)
sl@0
   463
	{
sl@0
   464
	CPolicyDomain* self = new (ELeave) CPolicyDomain(aUid);
sl@0
   465
	CleanupStack::PushL(self);
sl@0
   466
	self->InternalizeL(aPDLoader);
sl@0
   467
	return self;
sl@0
   468
	}
sl@0
   469
sl@0
   470
/**
sl@0
   471
*/
sl@0
   472
CPolicyDomain::~CPolicyDomain()
sl@0
   473
	{
sl@0
   474
	Destroy();
sl@0
   475
	}
sl@0
   476
sl@0
   477
/**
sl@0
   478
The method returns the database policy interface.
sl@0
   479
@return A const pointer to the database policy interface in CPolicyDomain.
sl@0
   480
*/
sl@0
   481
const MPolicy* CPolicyDomain::DbPolicy() const
sl@0
   482
	{
sl@0
   483
	DB_INVARIANT();
sl@0
   484
	return iDbPolicy;
sl@0
   485
	}
sl@0
   486
sl@0
   487
/**
sl@0
   488
The method returns a table policy interface, identified by aTblName parameter.
sl@0
   489
@param aTblName Name of the table, which policy interface has to be retrieved.
sl@0
   490
@return A const pointer to the table policy interface, which is identified by aTblName parameter.
sl@0
   491
*/
sl@0
   492
const MPolicy* CPolicyDomain::TblPolicy(const TDesC& aTblName) const
sl@0
   493
	{
sl@0
   494
	__ASSERT(aTblName.Length() > 0);
sl@0
   495
	DB_INVARIANT();
sl@0
   496
	const MPolicy* policy = NULL;
sl@0
   497
	TInt cnt = iTPCollection.Count();
sl@0
   498
	for(TInt i=0;i<cnt;++i)
sl@0
   499
		{
sl@0
   500
		CTblPolicy* tblPolicy = iTPCollection[i];
sl@0
   501
		__ASSERT(tblPolicy);
sl@0
   502
		if(aTblName.CompareF(tblPolicy->TableName()) == 0)
sl@0
   503
			{
sl@0
   504
			policy = tblPolicy;
sl@0
   505
			break;
sl@0
   506
			}
sl@0
   507
		}
sl@0
   508
	if(!policy)
sl@0
   509
		{
sl@0
   510
		policy = iDbPolicy;
sl@0
   511
		}
sl@0
   512
	__ASSERT(policy);
sl@0
   513
	return policy;
sl@0
   514
	}
sl@0
   515
sl@0
   516
/**
sl@0
   517
Externalizes the security policy collection using MPolicyDomainPersister interface as an
sl@0
   518
persister.
sl@0
   519
@param aPDPersister A reference to an MPolicyDomainPersister implementation, which will 
sl@0
   520
       persist the controlled collection of security policies.
sl@0
   521
*/
sl@0
   522
void CPolicyDomain::ExternalizeL(MPolicyDomainPersister& aPDPersister) const
sl@0
   523
	{
sl@0
   524
	DB_INVARIANT();
sl@0
   525
	TPolicyDomainReader reader(*this);
sl@0
   526
	aPDPersister.RunL(reader);
sl@0
   527
	}
sl@0
   528
sl@0
   529
#ifdef __DBDUMP__
sl@0
   530
/**
sl@0
   531
Dumps the content of a CPolicyDomain instance to a text file.
sl@0
   532
@param aFile A reference to RFile object, which has to be used for the output.
sl@0
   533
*/
sl@0
   534
void CPolicyDomain::Dump(RFile& aFile) const
sl@0
   535
	{
sl@0
   536
	DB_INVARIANT();
sl@0
   537
sl@0
   538
	_LIT8(KClassName, "Class: CPolicyDomain. this=%X");
sl@0
   539
	_LIT8(KUidFmt, "UID=%X");
sl@0
   540
	_LIT8(KCrLf, "\r\n");
sl@0
   541
	_LIT8(KEnd, "==========================");
sl@0
   542
	_LIT8(KBackupSIDFmt, "BackupSID=%X");
sl@0
   543
	TBuf8<40> buf;
sl@0
   544
sl@0
   545
	buf.Format(KClassName, this);
sl@0
   546
	(void)aFile.Write(buf);
sl@0
   547
	(void)aFile.Write(KCrLf);
sl@0
   548
	buf.Format(KUidFmt, iUid.iUid);
sl@0
   549
	(void)aFile.Write(buf);
sl@0
   550
	(void)aFile.Write(KCrLf);
sl@0
   551
	(void)aFile.Write(KEnd);
sl@0
   552
	(void)aFile.Write(KCrLf);
sl@0
   553
	iDbPolicy->Dump(aFile);
sl@0
   554
	TInt cnt = iTPCollection.Count();
sl@0
   555
	for(TInt i=0;i<cnt;++i)
sl@0
   556
		{
sl@0
   557
		__ASSERT(iTPCollection[i]);
sl@0
   558
		iTPCollection[i]->Dump(aFile);
sl@0
   559
		}
sl@0
   560
	(void)aFile.Write(KEnd);
sl@0
   561
	buf.Format(KBackupSIDFmt, iBackupSID.iUid);
sl@0
   562
	(void)aFile.Write(buf);
sl@0
   563
	(void)aFile.Write(KCrLf);
sl@0
   564
	}
sl@0
   565
#endif//__DBDUMP__
sl@0
   566
sl@0
   567
/**
sl@0
   568
It is used in the production code.
sl@0
   569
If the object data is not in a consistent state, the method will leave 
sl@0
   570
with KErrGeneral error.
sl@0
   571
@leave KErrGeneral, if the object data is not in a consistent state
sl@0
   572
*/
sl@0
   573
void CPolicyDomain::InvariantL() const
sl@0
   574
	{
sl@0
   575
	if(iUid == KNullUid)
sl@0
   576
		{
sl@0
   577
		__LEAVE(KErrGeneral);
sl@0
   578
		}
sl@0
   579
	if(iDbPolicy == NULL)
sl@0
   580
		{
sl@0
   581
		__LEAVE(KErrGeneral);
sl@0
   582
		}
sl@0
   583
	iDbPolicy->InvariantL();
sl@0
   584
sl@0
   585
	TInt cnt = iTPCollection.Count();
sl@0
   586
	TInt i;
sl@0
   587
	for(i=0;i<cnt;++i)
sl@0
   588
		{
sl@0
   589
		if(iTPCollection[i] == NULL)
sl@0
   590
			{
sl@0
   591
			__LEAVE(KErrGeneral);
sl@0
   592
			}
sl@0
   593
		iTPCollection[i]->InvariantL();
sl@0
   594
		}
sl@0
   595
	//Check that each represented table has unique name
sl@0
   596
	for(i=0;i<(cnt-1);++i)
sl@0
   597
		{
sl@0
   598
		for(TInt j=(i+1);j<cnt;++j)
sl@0
   599
			{
sl@0
   600
			if(iTPCollection[i]->TableName() == iTPCollection[j]->TableName())
sl@0
   601
				{
sl@0
   602
				__LEAVE(KErrGeneral);
sl@0
   603
				}
sl@0
   604
			}
sl@0
   605
		}
sl@0
   606
	}
sl@0
   607
sl@0
   608
#ifdef __DBINVARIANT__
sl@0
   609
/**
sl@0
   610
Asserts the internal state of CPolicyDomain instance.
sl@0
   611
It can be used for pre- or post- condition checks in CPolicyDomain methods implementations.
sl@0
   612
*/
sl@0
   613
void CPolicyDomain::Invariant() const
sl@0
   614
	{
sl@0
   615
	TRAPD(err, InvariantL());
sl@0
   616
	DB_INVARIANT_ASSERT(err == KErrNone);
sl@0
   617
	}
sl@0
   618
#endif//__DBINVARIANT__
sl@0
   619
sl@0
   620
/**
sl@0
   621
Creates the collection of security policies using MPolicyDomainLoader interface as a security
sl@0
   622
policy loader.
sl@0
   623
@param aPDLoader A reference to MPolicyDomainLoader implementation, which is used to load
sl@0
   624
       and add security policies to the controlled collection.
sl@0
   625
@leave System-wide error code including KErrGeneral if the data is not consistent
sl@0
   626
*/
sl@0
   627
void CPolicyDomain::InternalizeL(MPolicyDomainLoader& aPDLoader)
sl@0
   628
	{
sl@0
   629
	TPolicyDomainBuilder builder(*this);
sl@0
   630
	aPDLoader.RunL(builder);
sl@0
   631
#ifdef __DBINVARIANT__
sl@0
   632
	Invariant();
sl@0
   633
#else
sl@0
   634
	InvariantL();
sl@0
   635
#endif
sl@0
   636
	}
sl@0
   637
sl@0
   638
/**
sl@0
   639
The method destroys the controlled by CPolicyDomain collection of security policies.
sl@0
   640
*/
sl@0
   641
void CPolicyDomain::Destroy()
sl@0
   642
	{
sl@0
   643
	TInt cnt = iTPCollection.Count();
sl@0
   644
	for(TInt i=0;i<cnt;++i)
sl@0
   645
		{
sl@0
   646
		__ASSERT(iTPCollection[i]);
sl@0
   647
		delete iTPCollection[i];
sl@0
   648
		}
sl@0
   649
	iTPCollection.Close();
sl@0
   650
	delete iDbPolicy;
sl@0
   651
	iDbPolicy = NULL;
sl@0
   652
	}
sl@0
   653
sl@0
   654
} //end of - namespace DBSC
sl@0
   655