mirror of
https://github.com/Kitware/CMake.git
synced 2025-05-10 07:10:32 +08:00

Run the `clang-format.bash` script to update all our C and C++ code to a new style defined by `.clang-format`, now with "east const" enforcement. Use `clang-format` version 18. * If you reached this commit for a line in `git blame`, re-run the blame operation starting at the parent of this commit to see older history for the content. * See the parent commit for instructions to rebase a change across this style transition commit. Issue: #26123
119 lines
3.2 KiB
C++
119 lines
3.2 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#pragma once
|
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
|
|
|
#include <atomic>
|
|
#include <cstdint>
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include <cm3p/cppdap/types.h> // IWYU pragma: keep
|
|
|
|
namespace cmDebugger {
|
|
class cmDebuggerVariablesManager;
|
|
}
|
|
|
|
namespace dap {
|
|
struct Variable;
|
|
}
|
|
|
|
namespace cmDebugger {
|
|
|
|
struct cmDebuggerVariableEntry
|
|
{
|
|
cmDebuggerVariableEntry()
|
|
: cmDebuggerVariableEntry("", "", "")
|
|
{
|
|
}
|
|
cmDebuggerVariableEntry(std::string name, std::string value,
|
|
std::string type)
|
|
: Name(std::move(name))
|
|
, Value(std::move(value))
|
|
, Type(std::move(type))
|
|
{
|
|
}
|
|
cmDebuggerVariableEntry(std::string name, std::string value)
|
|
: Name(std::move(name))
|
|
, Value(std::move(value))
|
|
, Type("string")
|
|
{
|
|
}
|
|
cmDebuggerVariableEntry(std::string name, char const* value)
|
|
: Name(std::move(name))
|
|
, Value(value ? value : "")
|
|
, Type("string")
|
|
{
|
|
}
|
|
cmDebuggerVariableEntry(std::string name, bool value)
|
|
: Name(std::move(name))
|
|
, Value(value ? "TRUE" : "FALSE")
|
|
, Type("bool")
|
|
{
|
|
}
|
|
cmDebuggerVariableEntry(std::string name, int64_t value)
|
|
: Name(std::move(name))
|
|
, Value(std::to_string(value))
|
|
, Type("int")
|
|
{
|
|
}
|
|
cmDebuggerVariableEntry(std::string name, int value)
|
|
: Name(std::move(name))
|
|
, Value(std::to_string(value))
|
|
, Type("int")
|
|
{
|
|
}
|
|
std::string const Name;
|
|
std::string const Value;
|
|
std::string const Type;
|
|
};
|
|
|
|
class cmDebuggerVariables
|
|
{
|
|
static std::atomic<int64_t> NextId;
|
|
int64_t Id;
|
|
std::string Name;
|
|
std::string Value;
|
|
|
|
std::function<std::vector<cmDebuggerVariableEntry>()> GetKeyValuesFunction;
|
|
std::vector<std::shared_ptr<cmDebuggerVariables>> SubVariables;
|
|
bool IgnoreEmptyStringEntries = false;
|
|
bool EnableSorting = true;
|
|
|
|
virtual dap::array<dap::Variable> HandleVariablesRequest();
|
|
friend class cmDebuggerVariablesManager;
|
|
|
|
protected:
|
|
bool const SupportsVariableType;
|
|
std::shared_ptr<cmDebuggerVariablesManager> VariablesManager;
|
|
void EnumerateSubVariablesIfAny(
|
|
dap::array<dap::Variable>& toBeReturned) const;
|
|
void ClearSubVariables();
|
|
|
|
public:
|
|
cmDebuggerVariables(
|
|
std::shared_ptr<cmDebuggerVariablesManager> variablesManager,
|
|
std::string name, bool supportsVariableType);
|
|
cmDebuggerVariables(
|
|
std::shared_ptr<cmDebuggerVariablesManager> variablesManager,
|
|
std::string name, bool supportsVariableType,
|
|
std::function<std::vector<cmDebuggerVariableEntry>()> getKeyValuesFunc);
|
|
int64_t GetId() const noexcept { return this->Id; }
|
|
std::string GetName() const noexcept { return this->Name; }
|
|
std::string GetValue() const noexcept { return this->Value; }
|
|
void SetValue(std::string const& value) noexcept { this->Value = value; }
|
|
void AddSubVariables(std::shared_ptr<cmDebuggerVariables> const& variables);
|
|
void SetIgnoreEmptyStringEntries(bool value) noexcept
|
|
{
|
|
this->IgnoreEmptyStringEntries = value;
|
|
}
|
|
void SetEnableSorting(bool value) noexcept { this->EnableSorting = value; }
|
|
virtual ~cmDebuggerVariables();
|
|
};
|
|
|
|
} // namespace cmDebugger
|