clang 20.0.0 (based on r547379) from build 12806354. Bug: http://b/379133546 Test: N/A Change-Id: I2eb8938af55d809de674be63cb30cf27e801862b Upstream-Commit: ad834e67b1105d15ef907f6255d4c96e8e733f57
136 lines
4.3 KiB
C++
136 lines
4.3 KiB
C++
//===-- DebuggerEvents.h ----------------------------------------*- C++ -*-===//
|
|
//
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "lldb/Core/ModuleSpec.h"
|
|
#include "lldb/Core/Progress.h"
|
|
#include "lldb/Utility/Event.h"
|
|
#include "lldb/Utility/StructuredData.h"
|
|
|
|
#include <string>
|
|
|
|
#ifndef LLDB_CORE_DEBUGGER_EVENTS_H
|
|
#define LLDB_CORE_DEBUGGER_EVENTS_H
|
|
|
|
namespace lldb_private {
|
|
class Stream;
|
|
|
|
class ProgressEventData : public EventData {
|
|
public:
|
|
ProgressEventData(uint64_t progress_id, std::string title,
|
|
std::string details, uint64_t completed, uint64_t total,
|
|
bool debugger_specific)
|
|
: m_title(std::move(title)), m_details(std::move(details)),
|
|
m_id(progress_id), m_completed(completed), m_total(total),
|
|
m_debugger_specific(debugger_specific) {}
|
|
|
|
static llvm::StringRef GetFlavorString();
|
|
|
|
llvm::StringRef GetFlavor() const override;
|
|
|
|
void Dump(Stream *s) const override;
|
|
|
|
static const ProgressEventData *GetEventDataFromEvent(const Event *event_ptr);
|
|
|
|
static StructuredData::DictionarySP
|
|
GetAsStructuredData(const Event *event_ptr);
|
|
|
|
uint64_t GetID() const { return m_id; }
|
|
bool IsFinite() const { return m_total != Progress::kNonDeterministicTotal; }
|
|
uint64_t GetCompleted() const { return m_completed; }
|
|
uint64_t GetTotal() const { return m_total; }
|
|
std::string GetMessage() const {
|
|
std::string message = m_title;
|
|
if (!m_details.empty()) {
|
|
message.append(": ");
|
|
message.append(m_details);
|
|
}
|
|
return message;
|
|
}
|
|
const std::string &GetTitle() const { return m_title; }
|
|
const std::string &GetDetails() const { return m_details; }
|
|
bool IsDebuggerSpecific() const { return m_debugger_specific; }
|
|
|
|
private:
|
|
/// The title of this progress event. The value is expected to remain stable
|
|
/// for a given progress ID.
|
|
std::string m_title;
|
|
|
|
/// Details associated with this progress event update. The value is expected
|
|
/// to change between progress events.
|
|
std::string m_details;
|
|
|
|
/// Unique ID used to associate progress events.
|
|
const uint64_t m_id;
|
|
|
|
uint64_t m_completed;
|
|
const uint64_t m_total;
|
|
const bool m_debugger_specific;
|
|
ProgressEventData(const ProgressEventData &) = delete;
|
|
const ProgressEventData &operator=(const ProgressEventData &) = delete;
|
|
};
|
|
|
|
class DiagnosticEventData : public EventData {
|
|
public:
|
|
DiagnosticEventData(lldb::Severity severity, std::string message,
|
|
bool debugger_specific)
|
|
: m_message(std::move(message)), m_severity(severity),
|
|
m_debugger_specific(debugger_specific) {}
|
|
~DiagnosticEventData() override = default;
|
|
|
|
const std::string &GetMessage() const { return m_message; }
|
|
bool IsDebuggerSpecific() const { return m_debugger_specific; }
|
|
lldb::Severity GetSeverity() const { return m_severity; }
|
|
|
|
llvm::StringRef GetPrefix() const;
|
|
|
|
void Dump(Stream *s) const override;
|
|
|
|
static llvm::StringRef GetFlavorString();
|
|
llvm::StringRef GetFlavor() const override;
|
|
|
|
static const DiagnosticEventData *
|
|
GetEventDataFromEvent(const Event *event_ptr);
|
|
|
|
static StructuredData::DictionarySP
|
|
GetAsStructuredData(const Event *event_ptr);
|
|
|
|
protected:
|
|
std::string m_message;
|
|
lldb::Severity m_severity;
|
|
const bool m_debugger_specific;
|
|
|
|
DiagnosticEventData(const DiagnosticEventData &) = delete;
|
|
const DiagnosticEventData &operator=(const DiagnosticEventData &) = delete;
|
|
};
|
|
|
|
class SymbolChangeEventData : public EventData {
|
|
public:
|
|
SymbolChangeEventData(lldb::DebuggerWP debugger_wp, ModuleSpec module_spec)
|
|
: m_debugger_wp(debugger_wp), m_module_spec(std::move(module_spec)) {}
|
|
|
|
static llvm::StringRef GetFlavorString();
|
|
llvm::StringRef GetFlavor() const override;
|
|
|
|
static const SymbolChangeEventData *
|
|
GetEventDataFromEvent(const Event *event_ptr);
|
|
|
|
void DoOnRemoval(Event *event_ptr) override;
|
|
|
|
private:
|
|
lldb::DebuggerWP m_debugger_wp;
|
|
ModuleSpec m_module_spec;
|
|
|
|
SymbolChangeEventData(const SymbolChangeEventData &) = delete;
|
|
const SymbolChangeEventData &
|
|
operator=(const SymbolChangeEventData &) = delete;
|
|
};
|
|
|
|
} // namespace lldb_private
|
|
|
|
#endif // LLDB_CORE_DEBUGGER_EVENTS_H
|