aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Host/HostProcess.h
blob: 59585fc31130173eecb843ed79704400f0ed80e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
//===-- HostProcess.h ------------------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef lldb_Host_HostProcess_h_
#define lldb_Host_HostProcess_h_

#include "lldb/Host/Host.h"
#include "lldb/lldb-types.h"

//----------------------------------------------------------------------
/// @class HostInfo HostInfo.h "lldb/Host/HostProcess.h"
/// @brief A class that represents a running process on the host machine.
///
/// HostProcess allows querying and manipulation of processes running on the
/// host machine.  It is not intended to be represent a process which is
/// being debugged, although the native debug engine of a platform may likely
/// back inferior processes by a HostProcess.
///
/// HostProcess is implemented using static polymorphism so that on any given
/// platform, an instance of HostProcess will always be able to bind statically
/// to the concrete Process implementation for that platform.  See HostInfo
/// for more details.
///
//----------------------------------------------------------------------

namespace lldb_private
{

class HostNativeProcessBase;
class HostThread;

class HostProcess
{
public:
    HostProcess();
    HostProcess(lldb::process_t process);
    ~HostProcess();

    Error Terminate();
    Error GetMainModule(FileSpec &file_spec) const;

    lldb::pid_t GetProcessId() const;
    bool IsRunning() const;

    HostThread
    StartMonitoring(const Host::MonitorChildProcessCallback &callback, bool monitor_signals);

    HostNativeProcessBase &GetNativeProcess();
    const HostNativeProcessBase &GetNativeProcess() const;

  private:
    std::shared_ptr<HostNativeProcessBase> m_native_process;
};

}

#endif