39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
#include "StepExecution.hpp"
|
|
|
|
#include "src/DebugServer/Gdb/ResponsePackets/ErrorResponsePacket.hpp"
|
|
|
|
#include "src/Logger/Logger.hpp"
|
|
#include "src/Exceptions/Exception.hpp"
|
|
|
|
namespace Bloom::DebugServer::Gdb::CommandPackets
|
|
{
|
|
using TargetController::TargetControllerConsole;
|
|
|
|
using ResponsePackets::ErrorResponsePacket;
|
|
|
|
using Exceptions::Exception;
|
|
|
|
StepExecution::StepExecution(const RawPacketType& rawPacket)
|
|
: CommandPacket(rawPacket)
|
|
{
|
|
if (this->data.size() > 1) {
|
|
this->fromProgramCounter = static_cast<Targets::TargetProgramCounter>(
|
|
std::stoi(std::string(this->data.begin(), this->data.end()), nullptr, 16)
|
|
);
|
|
}
|
|
}
|
|
|
|
void StepExecution::handle(DebugSession& debugSession, TargetControllerConsole& targetControllerConsole) {
|
|
Logger::debug("Handling StepExecution packet");
|
|
|
|
try {
|
|
targetControllerConsole.stepTargetExecution(this->fromProgramCounter);
|
|
debugSession.waitingForBreak = true;
|
|
|
|
} catch (const Exception& exception) {
|
|
Logger::error("Failed to step execution on target - " + exception.getMessage());
|
|
debugSession.connection.writePacket(ErrorResponsePacket());
|
|
}
|
|
}
|
|
}
|