| 123456789101112131415161718192021222324252627282930313233343536373839 |
- /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
- file LICENSE.rst or https://cmake.org/licensing for details. */
- #include "cmDebuggerVariablesManager.h"
- #include <utility>
- #include <vector>
- #include <cm3p/cppdap/protocol.h>
- #include <cm3p/cppdap/types.h>
- namespace cmDebugger {
- void cmDebuggerVariablesManager::RegisterHandler(
- int64_t id,
- std::function<dap::array<dap::Variable>(dap::VariablesRequest const&)>
- handler)
- {
- VariablesHandlers[id] = std::move(handler);
- }
- void cmDebuggerVariablesManager::UnregisterHandler(int64_t id)
- {
- VariablesHandlers.erase(id);
- }
- dap::array<dap::Variable> cmDebuggerVariablesManager::HandleVariablesRequest(
- dap::VariablesRequest const& request)
- {
- auto it = VariablesHandlers.find(request.variablesReference);
- if (it != VariablesHandlers.end()) {
- return it->second(request);
- }
- return dap::array<dap::Variable>();
- }
- } // namespace cmDebugger
|