os/persistentdata/persistentstorage/dbms/security/SC_Defs.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
// Global definitions for DBMS security policy framework
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __SC_DEFS_H__
sl@0
    19
#define __SC_DEFS_H__
sl@0
    20
sl@0
    21
#include <e32def.h>
sl@0
    22
sl@0
    23
/**
sl@0
    24
KMaxStmtLength constant represents max allowed text policy file statement length.
sl@0
    25
@internalComponent
sl@0
    26
*/
sl@0
    27
const TInt KMaxStmtLength = 256;
sl@0
    28
sl@0
    29
/**
sl@0
    30
The following three constants (KDBSCMajorVersion, KDBSCMinorVersion, KDBSCBuild) 
sl@0
    31
represent major, minor and build version numbers, currently 
sl@0
    32
supported by the DBMS security policy framework.
sl@0
    33
@internalComponent
sl@0
    34
*/
sl@0
    35
sl@0
    36
/**
sl@0
    37
An enum with consecutive DBSC major version numbers.
sl@0
    38
If a new major version number has to be added, add it at the end of the enum, giving
sl@0
    39
it the next available number m (KDBSCMajorVersion<m>) and change the value of 
sl@0
    40
KDBSCMajorVersion constant.
sl@0
    41
@internalComponent
sl@0
    42
*/
sl@0
    43
enum
sl@0
    44
	{
sl@0
    45
	//first security policy file major version.
sl@0
    46
	KDBSCMajorVersion1 = 1
sl@0
    47
	};
sl@0
    48
sl@0
    49
/**
sl@0
    50
An enum with consecutive DBSC minor version numbers.
sl@0
    51
If a new minor version number has to be added, add it at the end of the enum, giving
sl@0
    52
it the next available number n (KDBSCMinorVersion<m_n>, where m stands for major, n - for minor) 
sl@0
    53
and change the value of KDBSCMinorVersion constant.
sl@0
    54
@internalComponent
sl@0
    55
*/
sl@0
    56
enum
sl@0
    57
	{
sl@0
    58
	//first security policy file minor version.
sl@0
    59
	KDBSCMinorVersion1_0 = 0,
sl@0
    60
	//A new section type was added to the set of supported sections in the security
sl@0
    61
	//policy file - "[BACKUP]" with a "SID" statement, for the sid of the process having
sl@0
    62
	//rights to do databases backup and restore.
sl@0
    63
	KDBSCMinorVersion1_1 = 1
sl@0
    64
	};
sl@0
    65
sl@0
    66
//If a version v has to be compared agianst some other version, use:
sl@0
    67
//(v.maj * 128 + v.min). 128, because v.maj an v.min are 8 bit integers.
sl@0
    68
//The CVERSION macro does the calculation. "C" in the macro name stands for "COMPARABLE".
sl@0
    69
#define CVERSION(maj, min) (((maj) * 128) + (min))
sl@0
    70
sl@0
    71
//Current software version.
sl@0
    72
const TInt8 KDBSCMajorVersion	= KDBSCMajorVersion1;
sl@0
    73
const TInt8 KDBSCMinorVersion	= KDBSCMinorVersion1_1;
sl@0
    74
const TInt  KDBSCVersion		= CVERSION(KDBSCMajorVersion, KDBSCMinorVersion);
sl@0
    75
sl@0
    76
const TInt16 KDBSCBuild			= 1;//Stored in the file header, but not used
sl@0
    77
sl@0
    78
#endif//__SC_DEFS_H__