mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 02:39:48 -06:00
`include-what-you-use` diagnostics, in practice, are specific to the environment's compiler and standard library. Update includes to satisfy IWYU for our CI job under Debian 13. Some patterns: * Types named in virtual `override` signatures no longer require includes since the overridden signature already names them. * A function argument's type needs to be included even if its constructor is called only by implicit conversion. For example, constructing a `std::function` from a lambda now requires `<functional>`. * Some prior mysterious `<type_traits>` inclusions are no longer required.
53 lines
1.3 KiB
C++
53 lines
1.3 KiB
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file LICENSE.rst or https://cmake.org/licensing for details. */
|
|
|
|
#include "cmDebuggerThreadManager.h"
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cm/optional>
|
|
|
|
#include <cm3p/cppdap/optional.h>
|
|
#include <cm3p/cppdap/protocol.h>
|
|
#include <cm3p/cppdap/types.h>
|
|
|
|
#include "cmDebuggerThread.h"
|
|
|
|
namespace cmDebugger {
|
|
|
|
std::atomic<int64_t> cmDebuggerThreadManager::NextThreadId(1);
|
|
|
|
std::shared_ptr<cmDebuggerThread> cmDebuggerThreadManager::StartThread(
|
|
std::string const& name)
|
|
{
|
|
std::shared_ptr<cmDebuggerThread> thread =
|
|
std::make_shared<cmDebuggerThread>(
|
|
cmDebuggerThreadManager::NextThreadId.fetch_add(1), name);
|
|
Threads.emplace_back(thread);
|
|
return thread;
|
|
}
|
|
|
|
void cmDebuggerThreadManager::EndThread(
|
|
std::shared_ptr<cmDebuggerThread> const& thread)
|
|
{
|
|
Threads.remove(thread);
|
|
}
|
|
|
|
cm::optional<dap::StackTraceResponse>
|
|
cmDebuggerThreadManager::GetThreadStackTraceResponse(
|
|
dap::StackTraceRequest const& request)
|
|
{
|
|
auto it = find_if(Threads.begin(), Threads.end(),
|
|
[&](std::shared_ptr<cmDebuggerThread> const& t) {
|
|
return t->GetId() == request.threadId;
|
|
});
|
|
|
|
if (it == Threads.end()) {
|
|
return {};
|
|
}
|
|
|
|
return GetStackTraceResponse(*it, request.format);
|
|
}
|
|
|
|
} // namespace cmDebugger
|