os/ossrv/lowlevellibsandfws/pluginfw/Framework/inc/ecompanics.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) 2008-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
#ifndef ECOMPANICS_H
sl@0
    17
#define ECOMPANICS_H
sl@0
    18
sl@0
    19
/**
sl@0
    20
The following enumaration defines the ECOM panic codes used in the ecom.dll and 
sl@0
    21
ecomserver.exe binaries. They are provided for debug purposes only to help 
sl@0
    22
diagnose problems.
sl@0
    23
Server panics have the category - "ECOMServer" and client DLL panics have the
sl@0
    24
category - "ECOMClientDLL". ECOM will log a message to RDebug::Print prior to 
sl@0
    25
panics to give further information.
sl@0
    26
@internalComponent
sl@0
    27
*/
sl@0
    28
enum TEComPanic
sl@0
    29
{
sl@0
    30
    EEComPanicUndefined = 0,
sl@0
    31
    
sl@0
    32
    //------------------------------------------------------------------------
sl@0
    33
    
sl@0
    34
    EEComPanicClientDllBase = -16900,
sl@0
    35
    
sl@0
    36
    /** ECOM API used before when there is no open session to ECOM Server.
sl@0
    37
    Raised on: UREL & UDEB builds */
sl@0
    38
    EEComPanic_LibraryNotInitialised                                = -16900,
sl@0
    39
    
sl@0
    40
    /** Plug-in implementation claims to support an extended object that
sl@0
    41
    requires allocation/deallocation but supplies no release function.
sl@0
    42
    Raised on: UDEB builds */
sl@0
    43
    EEComPanic_CInstanceInfoExtended_CreateExtObjectL_NoReleaseFunc = -16901,
sl@0
    44
    
sl@0
    45
    /** Plug-in implementation claims to support an extended object that
sl@0
    46
    requires allocation/deallocation but failed to supply a release object.
sl@0
    47
    Raised on: UDEB builds */
sl@0
    48
    EEComPanic_CInstanceInfoExtended_CreateExtObjectL_NoReleaseObj  = -16902,
sl@0
    49
    
sl@0
    50
    /** Plug-in implementation claims to support an extended object that
sl@0
    51
    requires allocation/deallocation but failed to supply a release object.
sl@0
    52
    Raised on: UDEB builds */
sl@0
    53
    EEComPanic_CInstanceInfoExtended_DestroyExtObject_NoReleaseObj  = -16903,
sl@0
    54
sl@0
    55
    /** Client supplied an implementation instance key which is not known to
sl@0
    56
    the ECOM API i.e. it was not returned from a previous call.
sl@0
    57
    Raised on: UDEB builds */
sl@0
    58
    EEComPanic_InvalidImplementationInstanceKey                     = -16904,
sl@0
    59
    
sl@0
    60
    EEComPanicClientDllEnd = -16949,  
sl@0
    61
      
sl@0
    62
    //------------------------------------------------------------------------
sl@0
    63
sl@0
    64
    EEComPanicServerBase = -16950,
sl@0
    65
sl@0
    66
    /** Fatal leave occurred in the CServerStartupMgr class during startup
sl@0
    67
    Raised on: UREL & UDEB builds */
sl@0
    68
    EEComPanic_CServerStartupMgr_RunError                           = -16950,
sl@0
    69
    
sl@0
    70
    /** Fatal leave occurred in the CServerStartupMgr class during 
sl@0
    71
    plug-in (re)scanning and registration. e.g. Out of memory  
sl@0
    72
    Raised on: UREL & UDEB builds */
sl@0
    73
    EEComPanic_CDiscoverer_CIdleScanningTimer_RunError              = -16951,
sl@0
    74
     
sl@0
    75
    /** Fatal leave occurred in the CIdleScanningTimer class during 
sl@0
    76
    plug-in (re)scanning and registration. e.g. Out of memory  
sl@0
    77
    Raised on: UREL & UDEB builds */
sl@0
    78
    EEComPanic_CDiscoverer_CDirChangeNotifier_RunError              = -16952,
sl@0
    79
    
sl@0
    80
    /** Input stream used to construct CImplementationInformation has 
sl@0
    81
    duplicate extended interfaces UIDs.    
sl@0
    82
    Raised on: UDEB builds */
sl@0
    83
    EEComPanic_CImlpementationInfromation_DuplicateExIf             = -16953,
sl@0
    84
    
sl@0
    85
    /** Plug-in resource file contains duplciate extended interface UIDs.
sl@0
    86
    Raised on: UDEB builds */
sl@0
    87
    EEComPanic_CParseImplementationDataFormatVersion3_DuplicateExIf = -16954,
sl@0
    88
    
sl@0
    89
    /** Server invariant test. CDllData object previously found in the registry
sl@0
    90
    was found to be missing during an update operation following a re-scan.
sl@0
    91
    Raised on: UDEB builds */
sl@0
    92
    EEComPanic_CRegistryData_UpdateDllDataL_DllRegistrationMissing  = -16955,
sl@0
    93
    
sl@0
    94
    EEComPanicServerEnd  = -16999    
sl@0
    95
    
sl@0
    96
    //------------------------------------------------------------------------
sl@0
    97
};
sl@0
    98
sl@0
    99
// ____________________________________________________________________________
sl@0
   100
// FUNCTIONS
sl@0
   101
sl@0
   102
/** 
sl@0
   103
Function for clean up RExtendedInterfaceArray when leave occurs
sl@0
   104
@internalComponent
sl@0
   105
*/
sl@0
   106
extern void CloseAndDeleteArray(TAny* aPtr);
sl@0
   107
sl@0
   108
sl@0
   109
sl@0
   110
#endif // ECOMPANICS_H