blob: 7b37b2b9ce5ab37da8a7ced4f201af946ca54d8e [file] [log] [blame]
Andrew Walbran3d2c1972020-04-07 12:24:26 +01001//===-- 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
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020010#ifndef LLDB_TARGET_THREADPLANPYTHON_H
11#define LLDB_TARGET_THREADPLANPYTHON_H
Andrew Walbran3d2c1972020-04-07 12:24:26 +010012
13#include <string>
14
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020015#include "lldb/lldb-forward.h"
16
Andrew Walbran3d2c1972020-04-07 12:24:26 +010017#include "lldb/Target/Process.h"
18#include "lldb/Target/StopInfo.h"
19#include "lldb/Target/Target.h"
20#include "lldb/Target/Thread.h"
21#include "lldb/Target/ThreadPlan.h"
22#include "lldb/Target/ThreadPlanTracer.h"
23#include "lldb/Utility/StructuredData.h"
24#include "lldb/Utility/UserID.h"
25#include "lldb/lldb-private.h"
26
27namespace lldb_private {
28
29// ThreadPlanPython:
30//
31
32class ThreadPlanPython : public ThreadPlan {
33public:
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020034 ThreadPlanPython(Thread &thread, const char *class_name,
35 StructuredDataImpl *args_data);
Andrew Walbran3d2c1972020-04-07 12:24:26 +010036 ~ThreadPlanPython() override;
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
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020048 bool StopOthers() override { return m_stop_others; }
49
50 void SetStopOthers(bool new_value) override { m_stop_others = new_value; }
Andrew Walbran3d2c1972020-04-07 12:24:26 +010051
52 void DidPush() override;
53
54 bool IsPlanStale() override;
55
56protected:
57 bool DoPlanExplainsStop(Event *event_ptr) override;
58
59 lldb::StateType GetPlanRunState() override;
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020060
61 ScriptInterpreter *GetScriptInterpreter();
Andrew Walbran3d2c1972020-04-07 12:24:26 +010062
63private:
64 std::string m_class_name;
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020065 StructuredDataImpl *m_args_data; // We own this, but the implementation
66 // has to manage the UP (since that is
67 // how it gets stored in the
68 // SBStructuredData).
69 std::string m_error_str;
Andrew Walbran3d2c1972020-04-07 12:24:26 +010070 StructuredData::ObjectSP m_implementation_sp;
71 bool m_did_push;
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020072 bool m_stop_others;
Andrew Walbran3d2c1972020-04-07 12:24:26 +010073
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020074 ThreadPlanPython(const ThreadPlanPython &) = delete;
75 const ThreadPlanPython &operator=(const ThreadPlanPython &) = delete;
Andrew Walbran3d2c1972020-04-07 12:24:26 +010076};
77
78} // namespace lldb_private
79
Olivier Deprezf4ef2d02021-04-20 13:36:24 +020080#endif // LLDB_TARGET_THREADPLANPYTHON_H