sl@0: // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // CPolicyProxy class sl@0: // sl@0: // sl@0: sl@0: #ifndef __SD_POLICYPROXY_H__ sl@0: #define __SD_POLICYPROXY_H__ sl@0: sl@0: #include //RFs sl@0: #include "D32Security.h" sl@0: sl@0: using namespace DBSC; sl@0: sl@0: /** sl@0: CPolicyProxy class describes an object, which encapsulates all DBMS security related sl@0: functionality, like policy loading and destroying, policy checking. sl@0: It helps also separating the real "DBMS security" code from fake implementations for sl@0: non-secure releases. sl@0: @internalComponent sl@0: */ sl@0: NONSHARABLE_CLASS(CPolicyProxy) : public CBase sl@0: { sl@0: public: sl@0: static CPolicyProxy* NewL(RFs& aFs,const TDesC& aPrivatePath); sl@0: virtual ~CPolicyProxy(); sl@0: sl@0: const MPolicy* DbPolicyL(const TDbPolicyRequest& aDbPolicyRequest); sl@0: const MPolicy* TblPolicyL(const TDbPolicyRequest& aDbPolicyRequest, const TDesC& aTblName); sl@0: const MPolicy* SqlPolicyL(const TDbPolicyRequest& aDbPolicyRequest, const TDesC& aSql, sl@0: TPolicyType& aPolicyType); sl@0: TSecureId BackupSIDL(TUid aDbUid) const; sl@0: sl@0: void CheckL(const RMessage2& aMessage, const MPolicy& aPolicy) const; sl@0: void CheckL(TPolicyType aPolicyType, const RMessage2& aMessage, const MPolicy& aPolicy) const; sl@0: sl@0: private: sl@0: inline CPolicyProxy(RFs& aFs); sl@0: void ConstructL(const TDesC& aPrivatePath); sl@0: sl@0: private: sl@0: RFs iFs; sl@0: MPolicySpace* iPolicySpace; //secure releases related sl@0: MPolicy* iPolicy; //non-secure releases related sl@0: sl@0: }; sl@0: sl@0: #endif//__SD_POLICYPROXY_H__ sl@0: