1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/dbms/security/SC_PassAllPolicy.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,67 @@
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 +// CPassAllPolicy class - "DBMS security" related code. Used in no_security environment or for
1.18 +// non-secure databases
1.19 +//
1.20 +//
1.21 +
1.22 +#include "SC_PassAllPolicy.h"
1.23 +
1.24 +namespace DBSC
1.25 +{
1.26 +
1.27 +CPassAllPolicy::CPassAllPolicy(TPolicyObjType aPOType) :
1.28 + iPOType(aPOType)
1.29 + {
1.30 + }
1.31 +
1.32 +CPassAllPolicy::~CPassAllPolicy()
1.33 + {
1.34 + }
1.35 +
1.36 +//The method returns always ETrue.
1.37 +TBool CPassAllPolicy::Check(const RMessage2&, TPolicyType) const
1.38 + {
1.39 + return ETrue;
1.40 + }
1.41 +
1.42 +//The method initializes aPolicy parameter with "EAlwaysPass" type policy instance and
1.43 +//returns KErrNone.
1.44 +TInt CPassAllPolicy::Get(TPolicyType, TSecurityPolicy& aPolicy) const
1.45 + {
1.46 + __ASSERT(0);
1.47 + aPolicy = TSecurityPolicy(TSecurityPolicy::EAlwaysPass);
1.48 + return KErrNone;
1.49 + }
1.50 +
1.51 +#ifdef __DBDUMP__
1.52 +void CPassAllPolicy::Dump(RFile& aFile) const
1.53 + {
1.54 + _LIT8(KClassName, "Class: CPassAllPolicy. this=%X");
1.55 + TBuf8<40> buf;
1.56 + _LIT8(KCrLf, "\r\n");
1.57 + _LIT8(KObjType, "Object: ");
1.58 + _LIT8(KDatabase, "Database");
1.59 + _LIT8(KTable, "Table");
1.60 +
1.61 + buf.Format(KClassName, this);
1.62 + (void)aFile.Write(buf);
1.63 + (void)aFile.Write(KCrLf);
1.64 + (void)aFile.Write(KObjType);
1.65 + iPOType == EPOTDatabase ? (void)aFile.Write(KDatabase) : (void)aFile.Write(KTable);
1.66 + (void)aFile.Write(KCrLf);
1.67 + }
1.68 +#endif
1.69 +
1.70 +} //end of - namespace DBSC