os/kernelhwsrv/kernel/eka/drivers/debug/rmdebug/d_process_tracker.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) 2006-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 the License "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
// Purpose: Kernel-side tracking of process state
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
 
sl@0
    18
#ifndef D_PROCESS_TRACKER_H
sl@0
    19
#define D_PROCESS_TRACKER_H
sl@0
    20
sl@0
    21
#include "d_target_process.h"
sl@0
    22
sl@0
    23
// The global class which tracks all debugged processes.
sl@0
    24
// 
sl@0
    25
// Note that multiple debug agents may attach to a process,
sl@0
    26
// as the security server will ensure only one is an 'active'
sl@0
    27
// agent, preventing conflicts. Other agents will be 'passive',
sl@0
    28
// typically interested only in recording events.
sl@0
    29
//
sl@0
    30
// The above requirement generates the requirement for the class
sl@0
    31
// to track the agent IDs, as multiple debug agents may be interested
sl@0
    32
// in a process.
sl@0
    33
sl@0
    34
class DProcessTracker : public DBase
sl@0
    35
{
sl@0
    36
public:
sl@0
    37
	DProcessTracker();
sl@0
    38
	~DProcessTracker();
sl@0
    39
sl@0
    40
	TInt AttachProcess(const TDesC8& aProcessName, TUint64 aAgentId);
sl@0
    41
sl@0
    42
	TInt DetachProcess(const TDesC8& aProcessName, TUint64 aAgentId);
sl@0
    43
sl@0
    44
	TInt DetachAgent(TUint64 aAgentId);
sl@0
    45
sl@0
    46
	DTargetProcess* FindProcess(const TDesC8& aProcessName);
sl@0
    47
sl@0
    48
	DTargetProcess* FuzzyFindProcess(const TDesC8& aProcessName);
sl@0
    49
sl@0
    50
	TBool CheckSuspended(const TUint64 aTargetThreadId) const;
sl@0
    51
	TBool CheckSuspended(DThread* aTargetThread) const;
sl@0
    52
	TInt SuspendThread(DThread* aTargetThread, TBool aFreezeThread=EFalse);
sl@0
    53
	TInt ResumeThread(DThread* aTargetThread);
sl@0
    54
	void FSWait();
sl@0
    55
sl@0
    56
private:
sl@0
    57
	TInt RemoveSuspendedThread(DThread* aThread);
sl@0
    58
	TInt AddSuspendedThread(DThread* aThread);
sl@0
    59
	HBuf* GetFileName(DThread* aThread) const;
sl@0
    60
sl@0
    61
private:
sl@0
    62
	RPointerArray<DTargetProcess> iProcesses;
sl@0
    63
};
sl@0
    64
sl@0
    65
// static global object
sl@0
    66
extern DProcessTracker TheDProcessTracker;
sl@0
    67
sl@0
    68
#endif // D_PROCESS_TRACKER_H