Files
BloomPatched/src/DebugServer/Gdb/CommandPackets/EepromFill.cpp

115 lines
4.3 KiB
C++
Raw Normal View History

2022-12-10 19:22:53 +00:00
#include "EepromFill.hpp"
#include <QByteArray>
#include <algorithm>
#include "src/DebugServer/Gdb/ResponsePackets/ResponsePacket.hpp"
#include "src/DebugServer/Gdb/ResponsePackets/ErrorResponsePacket.hpp"
2023-01-21 14:27:45 +00:00
#include "src/Services/StringService.hpp"
#include "src/Logger/Logger.hpp"
2022-12-10 19:22:53 +00:00
#include "src/DebugServer/Gdb/Exceptions/InvalidCommandOption.hpp"
#include "src/Exceptions/Exception.hpp"
namespace Bloom::DebugServer::Gdb::CommandPackets
{
using Services::TargetControllerService;
2022-12-10 19:22:53 +00:00
using ResponsePackets::ResponsePacket;
using ResponsePackets::ErrorResponsePacket;
using Bloom::Exceptions::Exception;
using Exceptions::InvalidCommandOption;
EepromFill::EepromFill(Monitor&& monitorPacket)
: Monitor(std::move(monitorPacket))
{
const auto fillValueOptionIt = this->commandOptions.find("value");
if (fillValueOptionIt == this->commandOptions.end() || !fillValueOptionIt->second.has_value()) {
return;
}
const auto fillValueByteArray = QByteArray::fromHex(QByteArray::fromStdString(*fillValueOptionIt->second));
this->fillValue = Targets::TargetMemoryBuffer(fillValueByteArray.begin(), fillValueByteArray.end());
}
void EepromFill::handle(DebugSession& debugSession, TargetControllerService& targetControllerService) {
2022-12-10 19:22:53 +00:00
Logger::debug("Handling EepromFill packet");
try {
const auto& targetDescriptor = debugSession.gdbTargetDescriptor.targetDescriptor;
const auto eepromDescriptorIt = targetDescriptor.memoryDescriptorsByType.find(
Targets::TargetMemoryType::EEPROM
);
if (eepromDescriptorIt == targetDescriptor.memoryDescriptorsByType.end()) {
throw Exception("Target has no EEPROM");
}
const auto& eepromDescriptor = eepromDescriptorIt->second;
const auto eepromSize = eepromDescriptor.size();
const auto fillValueSize = this->fillValue.size();
if (fillValueSize == 0) {
throw InvalidCommandOption("Fill value required");
}
if (fillValueSize > eepromSize) {
throw InvalidCommandOption(
"Fill value size ("+ std::to_string(fillValueSize) + " bytes) exceeds EEPROM size ("
+ std::to_string(eepromSize) + " bytes)"
);
}
if ((eepromSize % fillValueSize) != 0) {
Logger::warning(
"The fill value size (" + std::to_string(fillValueSize) + " bytes) is not a multiple of the EEPROM "
"size (" + std::to_string(eepromSize) + " bytes) - the fill value will be truncated"
);
}
Logger::warning("Filling " + std::to_string(eepromSize) + " bytes of EEPROM");
auto data = Targets::TargetMemoryBuffer();
data.reserve(eepromSize);
// Repeat this->fillValue until we've filled `data`
while (data.size() < eepromSize) {
data.insert(
data.end(),
this->fillValue.begin(),
this->fillValue.begin() + static_cast<std::int32_t>(
std::min(fillValueSize, (eepromSize - data.size()))
)
);
}
2023-01-21 14:27:45 +00:00
const auto hexValues = Services::StringService::toHex(data);
2022-12-10 19:22:53 +00:00
Logger::debug("Filling EEPROM with values: " + hexValues);
targetControllerService.writeMemory(
2022-12-10 19:22:53 +00:00
Targets::TargetMemoryType::EEPROM,
eepromDescriptor.addressRange.startAddress,
std::move(data)
);
2023-01-21 14:27:45 +00:00
debugSession.connection.writePacket(ResponsePacket(Services::StringService::toHex(
2022-12-10 19:22:53 +00:00
"Filled " + std::to_string(eepromSize) + " bytes of EEPROM, with values: " + hexValues + "\n"
)));
} catch (const InvalidCommandOption& exception) {
Logger::error(exception.getMessage());
2023-01-21 14:27:45 +00:00
debugSession.connection.writePacket(
ResponsePacket(Services::StringService::toHex(exception.getMessage() + "\n"))
);
2022-12-10 19:22:53 +00:00
} catch (const Exception& exception) {
Logger::error("Failed to fill EEPROM - " + exception.getMessage());
debugSession.connection.writePacket(ErrorResponsePacket());
}
}
}