LLDB mainline
BreakpointName.cpp
Go to the documentation of this file.
1//===-- BreakpointName.cpp ------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#include "llvm/Support/Casting.h"
10
16#include "lldb/Utility/Log.h"
17#include "lldb/Utility/Stream.h"
19
20using namespace lldb;
21using namespace lldb_private;
22
24 [BreakpointName::Permissions::PermissionKinds::allPerms + 1] = {
25 (1u << 0),
26 (1u << 1),
27 (1u << 2),
28 (0x5u)
29};
30
32 const char *help) :
33 m_name(name), m_options(bkpt.GetOptions())
34{
35 SetHelp(help);
36}
37
40 if (!AnySet())
41 return false;
42 s->IndentMore();
43 s->Indent();
44 if (IsSet(listPerm))
45 s->Printf("list: %s", GetAllowList() ? "allowed" : "disallowed");
46
47 if (IsSet(disablePerm))
48 s->Printf("disable: %s", GetAllowDisable() ? "allowed" : "disallowed");
49
50 if (IsSet(deletePerm))
51 s->Printf("delete: %s", GetAllowDelete() ? "allowed" : "disallowed");
52 s->IndentLess();
53 return true;
54}
55
57 bool printed_any = false;
58 if (!m_help.empty())
59 s->Printf("Help: %s\n", m_help.c_str());
60
61 if (GetOptions().AnySet())
62 {
63 s->PutCString("Options: \n");
64 s->IndentMore();
65 s->Indent();
66 GetOptions().GetDescription(s, level);
67 printed_any = true;
68 s->IndentLess();
69 }
70 if (GetPermissions().AnySet())
71 {
72 s->PutCString("Permissions: \n");
73 s->IndentMore();
74 s->Indent();
76 printed_any = true;
77 s->IndentLess();
78 }
79 return printed_any;
80}
81
82void BreakpointName::ConfigureBreakpoint(lldb::BreakpointSP bp_sp)
83{
84 bp_sp->GetOptions().CopyOverSetOptions(GetOptions());
85 bp_sp->GetPermissions().MergeInto(GetPermissions());
86}
bool IsSet(enum PermissionKinds permission) const
bool GetDescription(Stream *s, lldb::DescriptionLevel level)
static const Flags::ValueType permissions_mask[allPerms+1]
bool GetDescription(Stream *s, lldb::DescriptionLevel level)
void SetHelp(const char *description)
BreakpointOptions & GetOptions()
BreakpointName(ConstString name, const char *help=nullptr)
void ConfigureBreakpoint(lldb::BreakpointSP bp_sp)
void GetDescription(Stream *s, lldb::DescriptionLevel level) const
General Outline: A breakpoint has four main parts, a filter, a resolver, the list of breakpoint locat...
Definition: Breakpoint.h:81
A uniqued constant string class.
Definition: ConstString.h:40
A stream class that can stream formatted output to a file.
Definition: Stream.h:28
size_t Indent(llvm::StringRef s="")
Indent the current line in the stream.
Definition: Stream.cpp:130
size_t Printf(const char *format,...) __attribute__((format(printf
Output printf formatted output to the stream.
Definition: Stream.cpp:107
size_t PutCString(llvm::StringRef cstr)
Output a C string to the stream.
Definition: Stream.cpp:63
void IndentLess(unsigned amount=2)
Decrement the current indentation level.
Definition: Stream.cpp:171
void IndentMore(unsigned amount=2)
Increment the current indentation level.
Definition: Stream.cpp:168
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
Definition: SBAddress.h:15
DescriptionLevel
Description levels for "void GetDescription(Stream *, DescriptionLevel)" calls.