os/persistentdata/featuremgmt/featuremgr/inc/featurepanics.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) 2007-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
//
sl@0
    15
sl@0
    16
/**
sl@0
    17
 @file
sl@0
    18
 @internalComponent
sl@0
    19
*/
sl@0
    20
sl@0
    21
#ifndef FEATUREPANICS_H
sl@0
    22
#define FEATUREPANICS_H
sl@0
    23
sl@0
    24
/**
sl@0
    25
The following enumaration defines the Feature Manager panic codes.
sl@0
    26
They are provided for debug purposes only. They are internal values
sl@0
    27
that may change in future.
sl@0
    28
*/
sl@0
    29
enum TFeatMgrPanic
sl@0
    30
{
sl@0
    31
    //EFmpUndefined = 0,
sl@0
    32
    
sl@0
    33
    // TLS has not been set up to the thread using Feature Manager.    
sl@0
    34
    ELibNotInitialized = 0,
sl@0
    35
sl@0
    36
    // Illegal function called via client-server interface
sl@0
    37
    EPanicIllegalFunction,
sl@0
    38
    
sl@0
    39
    // Bad handle in client-server interface
sl@0
    40
	EPanicBadHandle,
sl@0
    41
	
sl@0
    42
	// Bad descriptor in client-server interface
sl@0
    43
	EPanicBadDescriptor,
sl@0
    44
	
sl@0
    45
	// Invalid feature info
sl@0
    46
	EPanicInvalidFeatureInfo,
sl@0
    47
	
sl@0
    48
	// Feature change notification has already been requested.
sl@0
    49
	EPanicNotifyRequest,
sl@0
    50
	
sl@0
    51
	// Illegal argument, cannot identify the message.
sl@0
    52
	EPanicIllegalArgument,
sl@0
    53
	
sl@0
    54
	// Error when loading existing plugin.
sl@0
    55
	EPanicLoadPluginError,
sl@0
    56
sl@0
    57
	// No feature files have been found in the ROM; indicates integration error.
sl@0
    58
	EPanicNoFeatureFiles,
sl@0
    59
	
sl@0
    60
	// No DSRs have been found in the ROM; indicates integration error.
sl@0
    61
	EPanicNoDSR,
sl@0
    62
	
sl@0
    63
	/** The Feature Manager server has found an invalid feature bit flag 
sl@0
    64
    combination. ROM defined feature has broken rule 1. A blacklisted ROM 
sl@0
    65
    defined feature had one of modifiable, persisted or uninitialised 
sl@0
    66
    flags set. */
sl@0
    67
	EFmpInvalidFeatureBitFlagsRule1,
sl@0
    68
	
sl@0
    69
	/** The Feature Manager server has found an invalid feature bit flag 
sl@0
    70
    combination. ROM defined feature has broken rule 2. A ROM defined read-only
sl@0
    71
    feature had either persist or uninitialised flags set. */
sl@0
    72
	EFmpInvalidFeatureBitFlagsRule2,
sl@0
    73
	
sl@0
    74
	/** The Feature Manager server has found an invalid feature bit flag 
sl@0
    75
    combination. Feature added using the API broke rule 3. Run-time created
sl@0
    76
    feature had the black listed flag set. Only used for ROM defined features */
sl@0
    77
	EFmpInvalidFeatureBitFlagsRule3,
sl@0
    78
	
sl@0
    79
	/** The Feature Manager server has found an invalid feature bit flag 
sl@0
    80
    combination. ROM defined feature has broken rule 4. Run-time created
sl@0
    81
    feature had the uninitialised flag set but was marked as non-modifiable */
sl@0
    82
	EFmpInvalidFeatureBitFlagsRule4,
sl@0
    83
	
sl@0
    84
};
sl@0
    85
sl@0
    86
sl@0
    87
#endif  // FEATUREPANICS_H
sl@0
    88
sl@0
    89
// End of File