kernel/eka/include/drivers/rm_debug_eventhandler.h
branchRCL_3
changeset 257 3e88ff8f41d5
child 258 880ff05ad710
equal deleted inserted replaced
256:c1f20ce4abcf 257:3e88ff8f41d5
       
     1 // Copyright (c) 2004-2010 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of the License "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 /** Event handler and container for all objects being tracked.  */
       
    17 #ifndef __RM_DEBUG_EVENTHANDLER_H__
       
    18 #define __RM_DEBUG_EVENTHANDLER_H__
       
    19 
       
    20 
       
    21 class DRM_DebugEventHandler : public DKernelEventHandler
       
    22 {
       
    23 	public:
       
    24 		DRM_DebugEventHandler();
       
    25 		TInt Create(DLogicalDevice* aDevice, DLogicalChannel* aChannel, DThread* aClient);
       
    26 		~DRM_DebugEventHandler();
       
    27 		TInt Start();
       
    28 		TInt Stop();
       
    29 		
       
    30 		inline void LockDataAccess();
       
    31 		inline void ReleaseDataAccess();
       
    32 		
       
    33 	private:
       
    34 		static TUint EventHandler(TKernelEvent aEvent, TAny* a1, TAny* a2, TAny* aThis);
       
    35 		TUint HandleEvent(TKernelEvent aType, TAny* a1, TAny* a2);
       
    36 		TBool HandleSpecificEvent(TKernelEvent aType, TAny* a1, TAny* a2);
       
    37 		
       
    38 	private:
       
    39 		/** Used to serialise access data structures */
       
    40 		DSemaphore* iProtectionLock;
       
    41 
       
    42 		TBool iTracking;
       
    43 
       
    44 		DLogicalDevice* iDevice;	// open reference to LDD for avoiding lifetime issues
       
    45 		DThread* iClientThread;
       
    46 		DRM_DebugChannel* iChannel;
       
    47 
       
    48 		// typdef for functions which handle our specific events
       
    49 		typedef TBool (DRM_DebugChannel::*eventHandler)(TAny* a1, TAny* a2);
       
    50 		eventHandler iEventHandlers[EEventLimit];
       
    51 };
       
    52 
       
    53 #include <rm_debug_eventhandler.inl>
       
    54 
       
    55 #endif //__RM_DEBUG_EVENTHANDLER_H__