1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/dbms/security/SC_PolicySpace.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,62 @@
1.4 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// CPolicySpace class
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __SC_POLICYSPACE_H__
1.22 +#define __SC_POLICYSPACE_H__
1.23 +
1.24 +#include "D32Map.h"
1.25 +#include "SC_Policy.h"
1.26 +
1.27 +namespace DBSC
1.28 +{
1.29 +
1.30 +//Forward declarations
1.31 +class CPassAllPolicy;
1.32 +
1.33 +/**
1.34 +CPolicySpace class implements MPolicySpace interface and manages a set of
1.35 +CPolicyDomain objects (one per binary policy file).
1.36 +All requests for particular MPOlicy implementations go through CPolicySpace object.
1.37 +The DBMS server has to create only one CPolicySpace instance during the DBMS startup.
1.38 +@internalComponent
1.39 +*/
1.40 +NONSHARABLE_CLASS(CPolicySpace) : public CBase, public MPolicySpace
1.41 + {
1.42 +public:
1.43 + static CPolicySpace* NewL(RFs& aFs, const TDesC& aPrivatePath);
1.44 + virtual ~CPolicySpace();
1.45 + virtual void Release();
1.46 + virtual const MPolicy* DbPolicyL(const TDbPolicyRequest& aDbPolicyRequest) const;
1.47 + virtual const MPolicy* TblPolicyL(const TDbPolicyRequest& aDbPolicyRequest, const TDesC& aTblName) const;
1.48 + virtual TSecureId BackupSIDL(TUid aDbUid) const;
1.49 +
1.50 +private:
1.51 + inline CPolicySpace();
1.52 + void ConstructL(RFs& aFs, const TDesC& aPrivatePath);
1.53 + void LoadPolicyDomainsL(RFs& aFs, const TDesC& aPolicyDir);
1.54 + CPolicyDomain* PolicyDomain(TUid aDomainUid) const;
1.55 +
1.56 +private:
1.57 + CPassAllPolicy* iPassAllDbPolicy;
1.58 + CPassAllPolicy* iPassAllTblPolicy;
1.59 + RMap<TInt, CPolicyDomain*> iPDCollection;
1.60 +
1.61 + };
1.62 +
1.63 +} //end of - namespace DBSC
1.64 +
1.65 +#endif//__SC_POLICYSPACE_H__