2021-04-04 21:04:12 +01:00
|
|
|
#include <QtCore/QString>
|
|
|
|
|
|
2021-05-24 20:58:49 +01:00
|
|
|
#include "SupportedFeaturesQuery.hpp"
|
2021-04-04 21:04:12 +01:00
|
|
|
#include "src/DebugServers/GdbRsp/GdbRspDebugServer.hpp"
|
|
|
|
|
|
|
|
|
|
using namespace Bloom::DebugServers::Gdb::CommandPackets;
|
|
|
|
|
|
|
|
|
|
void SupportedFeaturesQuery::init() {
|
|
|
|
|
/*
|
|
|
|
|
* For qSupported packets, supported and unsupported GDB features are reported in the packet
|
|
|
|
|
* data, where each GDB feature is separated by a semicolon.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// The "qSupported:" prefix occupies 11 bytes
|
|
|
|
|
if (data.size() > 11) {
|
|
|
|
|
auto packetData = QString::fromLocal8Bit(
|
|
|
|
|
reinterpret_cast<const char*>(this->data.data() + 11),
|
|
|
|
|
static_cast<int>(this->data.size() - 11)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
auto featureList = packetData.split(";");
|
|
|
|
|
auto gdbFeatureMapping = getGdbFeatureToNameMapping();
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < featureList.size(); i++) {
|
|
|
|
|
auto featureString = featureList.at(i);
|
|
|
|
|
|
|
|
|
|
// We only care about supported features. Supported features will precede a '+' character.
|
2021-08-18 22:51:15 +01:00
|
|
|
if (featureString[featureString.size() - 1] == '+') {
|
|
|
|
|
featureString.remove('+');
|
2021-04-04 21:04:12 +01:00
|
|
|
|
|
|
|
|
auto feature = gdbFeatureMapping.valueAt(featureString.toStdString());
|
|
|
|
|
if (feature.has_value()) {
|
|
|
|
|
this->supportedFeatures.insert(static_cast<decltype(feature)::value_type>(feature.value()));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SupportedFeaturesQuery::dispatchToHandler(Gdb::GdbRspDebugServer& gdbRspDebugServer) {
|
|
|
|
|
gdbRspDebugServer.handleGdbPacket(*this);
|
|
|
|
|
}
|