LLDB mainline
ThreadPlanPython.h
Go to the documentation of this file.
1//===-- ThreadPlanPython.h --------------------------------------------*- C++
2//-*-===//
3//
4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5// See https://llvm.org/LICENSE.txt for license information.
6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLDB_TARGET_THREADPLANPYTHON_H
11#define LLDB_TARGET_THREADPLANPYTHON_H
12
13#include <string>
14
17#include "lldb/Target/Process.h"
19#include "lldb/Target/Target.h"
20#include "lldb/Target/Thread.h"
24#include "lldb/Utility/UserID.h"
25#include "lldb/lldb-forward.h"
26#include "lldb/lldb-private.h"
27
28namespace lldb_private {
29
30// ThreadPlanPython:
31//
32
34public:
35 ThreadPlanPython(Thread &thread, const char *class_name,
36 const StructuredDataImpl &args_data);
37
38 void GetDescription(Stream *s, lldb::DescriptionLevel level) override;
39
40 bool ValidatePlan(Stream *error) override;
41
42 bool ShouldStop(Event *event_ptr) override;
43
44 bool MischiefManaged() override;
45
46 bool WillStop() override;
47
48 bool StopOthers() override { return m_stop_others; }
49
50 void SetStopOthers(bool new_value) override { m_stop_others = new_value; }
51
52 void DidPush() override;
53
54 bool IsPlanStale() override;
55
56 bool DoWillResume(lldb::StateType resume_state, bool current_plan) override;
57
58
59protected:
60 bool DoPlanExplainsStop(Event *event_ptr) override;
61
63
65
66private:
67 std::string m_class_name;
69 std::string m_error_str;
71 StreamString m_stop_description; // Cache the stop description here
75
78};
79
80} // namespace lldb_private
81
82#endif // LLDB_TARGET_THREADPLANPYTHON_H
static llvm::raw_ostream & error(Stream &strm)
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
std::shared_ptr< Object > ObjectSP
ScriptInterpreter * GetScriptInterpreter()
bool ValidatePlan(Stream *error) override
Returns whether this plan could be successfully created.
bool DoPlanExplainsStop(Event *event_ptr) override
void SetStopOthers(bool new_value) override
const ThreadPlanPython & operator=(const ThreadPlanPython &)=delete
StructuredData::ObjectSP m_implementation_sp
bool ShouldStop(Event *event_ptr) override
lldb::ScriptedThreadPlanInterfaceSP m_interface
bool DoWillResume(lldb::StateType resume_state, bool current_plan) override
void GetDescription(Stream *s, lldb::DescriptionLevel level) override
Print a description of this thread to the stream s.
ThreadPlanPython(const ThreadPlanPython &)=delete
lldb::StateType GetPlanRunState() override
A class that represents a running process on the host machine.
DescriptionLevel
Description levels for "void GetDescription(Stream *, DescriptionLevel)" calls.
std::shared_ptr< lldb_private::ScriptedThreadPlanInterface > ScriptedThreadPlanInterfaceSP
Definition: lldb-forward.h:412
StateType
Process and Thread States.