ThreadPlanPython.h revision 360784
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 liblldb_ThreadPlan_Python_h_
11#define liblldb_ThreadPlan_Python_h_
12
13#include <string>
14
15#include "lldb/lldb-forward.h"
16
17#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:
34  ThreadPlanPython(Thread &thread, const char *class_name,
35                   StructuredDataImpl *args_data);
36  ~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
48  bool StopOthers() override;
49
50  void DidPush() override;
51
52  bool IsPlanStale() override;
53
54protected:
55  bool DoPlanExplainsStop(Event *event_ptr) override;
56
57  lldb::StateType GetPlanRunState() override;
58
59private:
60  std::string m_class_name;
61  StructuredDataImpl *m_args_data; // We own this, but the implementation
62                                   // has to manage the UP (since that is
63                                   // how it gets stored in the
64                                   // SBStructuredData).
65  std::string m_error_str;
66  StructuredData::ObjectSP m_implementation_sp;
67  bool m_did_push;
68
69  DISALLOW_COPY_AND_ASSIGN(ThreadPlanPython);
70};
71
72} // namespace lldb_private
73
74#endif // liblldb_ThreadPlan_Python_h_
75