1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/dbms/security/SC_Defs.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,78 @@
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 +// Global definitions for DBMS security policy framework
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef __SC_DEFS_H__
1.22 +#define __SC_DEFS_H__
1.23 +
1.24 +#include <e32def.h>
1.25 +
1.26 +/**
1.27 +KMaxStmtLength constant represents max allowed text policy file statement length.
1.28 +@internalComponent
1.29 +*/
1.30 +const TInt KMaxStmtLength = 256;
1.31 +
1.32 +/**
1.33 +The following three constants (KDBSCMajorVersion, KDBSCMinorVersion, KDBSCBuild)
1.34 +represent major, minor and build version numbers, currently
1.35 +supported by the DBMS security policy framework.
1.36 +@internalComponent
1.37 +*/
1.38 +
1.39 +/**
1.40 +An enum with consecutive DBSC major version numbers.
1.41 +If a new major version number has to be added, add it at the end of the enum, giving
1.42 +it the next available number m (KDBSCMajorVersion<m>) and change the value of
1.43 +KDBSCMajorVersion constant.
1.44 +@internalComponent
1.45 +*/
1.46 +enum
1.47 + {
1.48 + //first security policy file major version.
1.49 + KDBSCMajorVersion1 = 1
1.50 + };
1.51 +
1.52 +/**
1.53 +An enum with consecutive DBSC minor version numbers.
1.54 +If a new minor version number has to be added, add it at the end of the enum, giving
1.55 +it the next available number n (KDBSCMinorVersion<m_n>, where m stands for major, n - for minor)
1.56 +and change the value of KDBSCMinorVersion constant.
1.57 +@internalComponent
1.58 +*/
1.59 +enum
1.60 + {
1.61 + //first security policy file minor version.
1.62 + KDBSCMinorVersion1_0 = 0,
1.63 + //A new section type was added to the set of supported sections in the security
1.64 + //policy file - "[BACKUP]" with a "SID" statement, for the sid of the process having
1.65 + //rights to do databases backup and restore.
1.66 + KDBSCMinorVersion1_1 = 1
1.67 + };
1.68 +
1.69 +//If a version v has to be compared agianst some other version, use:
1.70 +//(v.maj * 128 + v.min). 128, because v.maj an v.min are 8 bit integers.
1.71 +//The CVERSION macro does the calculation. "C" in the macro name stands for "COMPARABLE".
1.72 +#define CVERSION(maj, min) (((maj) * 128) + (min))
1.73 +
1.74 +//Current software version.
1.75 +const TInt8 KDBSCMajorVersion = KDBSCMajorVersion1;
1.76 +const TInt8 KDBSCMinorVersion = KDBSCMinorVersion1_1;
1.77 +const TInt KDBSCVersion = CVERSION(KDBSCMajorVersion, KDBSCMinorVersion);
1.78 +
1.79 +const TInt16 KDBSCBuild = 1;//Stored in the file header, but not used
1.80 +
1.81 +#endif//__SC_DEFS_H__