Renamed DebugServers directory to DebugServer

This commit is contained in:
Nav
2022-03-31 16:13:44 +01:00
parent ac9fad3726
commit a131833379
58 changed files with 63 additions and 63 deletions

View File

@@ -125,28 +125,28 @@ add_executable(Bloom
build/resources/TargetDescriptionFiles/AVR/Mapping.json build/resources/TargetDescriptionFiles/AVR/Mapping.json
# Debug servers # Debug servers
src/DebugServers/DebugServerComponent.cpp src/DebugServer/DebugServerComponent.cpp
src/DebugServers/GdbRsp/GdbRspDebugServer.cpp src/DebugServer/GdbRsp/GdbRspDebugServer.cpp
src/DebugServers/GdbRsp/GdbDebugServerConfig.cpp src/DebugServer/GdbRsp/GdbDebugServerConfig.cpp
src/DebugServers/GdbRsp/Connection.cpp src/DebugServer/GdbRsp/Connection.cpp
src/DebugServers/GdbRsp/DebugSession.cpp src/DebugServer/GdbRsp/DebugSession.cpp
src/DebugServers/GdbRsp/CommandPackets/CommandPacket.cpp src/DebugServer/GdbRsp/CommandPackets/CommandPacket.cpp
src/DebugServers/GdbRsp/CommandPackets/SupportedFeaturesQuery.cpp src/DebugServer/GdbRsp/CommandPackets/SupportedFeaturesQuery.cpp
src/DebugServers/GdbRsp/CommandPackets/ReadRegisters.cpp src/DebugServer/GdbRsp/CommandPackets/ReadRegisters.cpp
src/DebugServers/GdbRsp/CommandPackets/WriteRegister.cpp src/DebugServer/GdbRsp/CommandPackets/WriteRegister.cpp
src/DebugServers/GdbRsp/CommandPackets/ContinueExecution.cpp src/DebugServer/GdbRsp/CommandPackets/ContinueExecution.cpp
src/DebugServers/GdbRsp/CommandPackets/StepExecution.cpp src/DebugServer/GdbRsp/CommandPackets/StepExecution.cpp
src/DebugServers/GdbRsp/CommandPackets/InterruptExecution.cpp src/DebugServer/GdbRsp/CommandPackets/InterruptExecution.cpp
src/DebugServers/GdbRsp/CommandPackets/SetBreakpoint.cpp src/DebugServer/GdbRsp/CommandPackets/SetBreakpoint.cpp
src/DebugServers/GdbRsp/CommandPackets/RemoveBreakpoint.cpp src/DebugServer/GdbRsp/CommandPackets/RemoveBreakpoint.cpp
src/DebugServers/GdbRsp/ResponsePackets/SupportedFeaturesResponse.cpp src/DebugServer/GdbRsp/ResponsePackets/SupportedFeaturesResponse.cpp
# AVR GDB Server # AVR GDB Server
src/DebugServers/GdbRsp/AvrGdb/AvrGdbRsp.cpp src/DebugServer/GdbRsp/AvrGdb/AvrGdbRsp.cpp
src/DebugServers/GdbRsp/AvrGdb/TargetDescriptor.cpp src/DebugServer/GdbRsp/AvrGdb/TargetDescriptor.cpp
src/DebugServers/GdbRsp/AvrGdb/CommandPackets/AbstractMemoryAccessPacket.cpp src/DebugServer/GdbRsp/AvrGdb/CommandPackets/AbstractMemoryAccessPacket.cpp
src/DebugServers/GdbRsp/AvrGdb/CommandPackets/ReadMemory.cpp src/DebugServer/GdbRsp/AvrGdb/CommandPackets/ReadMemory.cpp
src/DebugServers/GdbRsp/AvrGdb/CommandPackets/WriteMemory.cpp src/DebugServer/GdbRsp/AvrGdb/CommandPackets/WriteMemory.cpp
# Insight # Insight
src/Insight/Insight.cpp src/Insight/Insight.cpp

View File

@@ -10,7 +10,7 @@
#include "src/Helpers/Thread.hpp" #include "src/Helpers/Thread.hpp"
#include "src/TargetController/TargetController.hpp" #include "src/TargetController/TargetController.hpp"
#include "src/DebugServers/DebugServerComponent.hpp" #include "src/DebugServer/DebugServerComponent.hpp"
#include "src/Insight/Insight.hpp" #include "src/Insight/Insight.hpp"
#include "src/SignalHandler/SignalHandler.hpp" #include "src/SignalHandler/SignalHandler.hpp"

View File

@@ -4,7 +4,7 @@
#include "TargetDescriptor.hpp" #include "TargetDescriptor.hpp"
#include "src/DebugServers/GdbRsp/GdbRspDebugServer.hpp" #include "src/DebugServer/GdbRsp/GdbRspDebugServer.hpp"
namespace Bloom::DebugServer::Gdb::AvrGdb namespace Bloom::DebugServer::Gdb::AvrGdb
{ {

View File

@@ -1,8 +1,8 @@
#include "AbstractMemoryAccessPacket.hpp" #include "AbstractMemoryAccessPacket.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/TargetStopped.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/TargetStopped.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp"
#include "src/DebugServers/GdbRsp/Signal.hpp" #include "src/DebugServer/GdbRsp/Signal.hpp"
#include "src/Logger/Logger.hpp" #include "src/Logger/Logger.hpp"
#include "src/Exceptions/Exception.hpp" #include "src/Exceptions/Exception.hpp"

View File

@@ -3,7 +3,7 @@
#include <cstdint> #include <cstdint>
#include <optional> #include <optional>
#include "src/DebugServers/GdbRsp/CommandPackets/CommandPacket.hpp" #include "src/DebugServer/GdbRsp/CommandPackets/CommandPacket.hpp"
#include "src/Targets/TargetMemory.hpp" #include "src/Targets/TargetMemory.hpp"

View File

@@ -1,7 +1,7 @@
#include "ReadMemory.hpp" #include "ReadMemory.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/ResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/ResponsePacket.hpp"
#include "src/Logger/Logger.hpp" #include "src/Logger/Logger.hpp"
#include "src/Exceptions/Exception.hpp" #include "src/Exceptions/Exception.hpp"

View File

@@ -1,7 +1,7 @@
#include "WriteMemory.hpp" #include "WriteMemory.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/OkResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/OkResponsePacket.hpp"
#include "src/Logger/Logger.hpp" #include "src/Logger/Logger.hpp"
#include "src/Exceptions/Exception.hpp" #include "src/Exceptions/Exception.hpp"

View File

@@ -1,6 +1,6 @@
#pragma once #pragma once
#include "src/DebugServers/GdbRsp/TargetDescriptor.hpp" #include "src/DebugServer/GdbRsp/TargetDescriptor.hpp"
#include "src/Helpers/BiMap.hpp" #include "src/Helpers/BiMap.hpp"

View File

@@ -1,11 +1,11 @@
#include "CommandPacket.hpp" #include "CommandPacket.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/ResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/ResponsePacket.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/OkResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/OkResponsePacket.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/TargetStopped.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/TargetStopped.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp"
#include "src/DebugServers/GdbRsp/Signal.hpp" #include "src/DebugServer/GdbRsp/Signal.hpp"
#include "src/Logger/Logger.hpp" #include "src/Logger/Logger.hpp"
#include "src/Exceptions/Exception.hpp" #include "src/Exceptions/Exception.hpp"

View File

@@ -3,8 +3,8 @@
#include <vector> #include <vector>
#include <memory> #include <memory>
#include "src/DebugServers/GdbRsp/Packet.hpp" #include "src/DebugServer/GdbRsp/Packet.hpp"
#include "src/DebugServers/GdbRsp/DebugSession.hpp" #include "src/DebugServer/GdbRsp/DebugSession.hpp"
#include "src/TargetController/TargetControllerConsole.hpp" #include "src/TargetController/TargetControllerConsole.hpp"

View File

@@ -1,6 +1,6 @@
#include "ContinueExecution.hpp" #include "ContinueExecution.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp"
#include "src/Logger/Logger.hpp" #include "src/Logger/Logger.hpp"
#include "src/Exceptions/Exception.hpp" #include "src/Exceptions/Exception.hpp"

View File

@@ -1,8 +1,8 @@
#include "InterruptExecution.hpp" #include "InterruptExecution.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/TargetStopped.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/TargetStopped.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp"
#include "src/DebugServers/GdbRsp/Signal.hpp" #include "src/DebugServer/GdbRsp/Signal.hpp"
#include "src/Logger/Logger.hpp" #include "src/Logger/Logger.hpp"
#include "src/Exceptions/Exception.hpp" #include "src/Exceptions/Exception.hpp"

View File

@@ -1,7 +1,7 @@
#include "ReadRegisters.hpp" #include "ReadRegisters.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/TargetStopped.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/TargetStopped.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp"
#include "src/Targets/TargetRegister.hpp" #include "src/Targets/TargetRegister.hpp"

View File

@@ -4,7 +4,7 @@
#include "CommandPacket.hpp" #include "CommandPacket.hpp"
#include "src/DebugServers/GdbRsp/RegisterDescriptor.hpp" #include "src/DebugServer/GdbRsp/RegisterDescriptor.hpp"
namespace Bloom::DebugServer::Gdb::CommandPackets namespace Bloom::DebugServer::Gdb::CommandPackets
{ {

View File

@@ -2,8 +2,8 @@
#include <QtCore/QString> #include <QtCore/QString>
#include "src/DebugServers/GdbRsp/ResponsePackets/OkResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/OkResponsePacket.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp"
#include "src/Targets/TargetBreakpoint.hpp" #include "src/Targets/TargetBreakpoint.hpp"

View File

@@ -5,7 +5,7 @@
#include <set> #include <set>
#include "CommandPacket.hpp" #include "CommandPacket.hpp"
#include "src/DebugServers/GdbRsp/BreakpointType.hpp" #include "src/DebugServer/GdbRsp/BreakpointType.hpp"
namespace Bloom::DebugServer::Gdb::CommandPackets namespace Bloom::DebugServer::Gdb::CommandPackets
{ {

View File

@@ -2,8 +2,8 @@
#include <QtCore/QString> #include <QtCore/QString>
#include "src/DebugServers/GdbRsp/ResponsePackets/OkResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/OkResponsePacket.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp"
#include "src/Targets/TargetBreakpoint.hpp" #include "src/Targets/TargetBreakpoint.hpp"

View File

@@ -5,7 +5,7 @@
#include <set> #include <set>
#include "CommandPacket.hpp" #include "CommandPacket.hpp"
#include "src/DebugServers/GdbRsp/BreakpointType.hpp" #include "src/DebugServer/GdbRsp/BreakpointType.hpp"
namespace Bloom::DebugServer::Gdb::CommandPackets namespace Bloom::DebugServer::Gdb::CommandPackets
{ {

View File

@@ -1,6 +1,6 @@
#include "StepExecution.hpp" #include "StepExecution.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp"
#include "src/Logger/Logger.hpp" #include "src/Logger/Logger.hpp"
#include "src/Exceptions/Exception.hpp" #include "src/Exceptions/Exception.hpp"

View File

@@ -2,14 +2,14 @@
#include <QtCore/QString> #include <QtCore/QString>
#include "src/DebugServers/GdbRsp/Feature.hpp" #include "src/DebugServer/GdbRsp/Feature.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/SupportedFeaturesResponse.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/SupportedFeaturesResponse.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp"
#include "src/Logger/Logger.hpp" #include "src/Logger/Logger.hpp"
#include "src/Exceptions/Exception.hpp" #include "src/Exceptions/Exception.hpp"
#include "src/DebugServers/GdbRsp/Exceptions/ClientNotSupported.hpp" #include "src/DebugServer/GdbRsp/Exceptions/ClientNotSupported.hpp"
namespace Bloom::DebugServer::Gdb::CommandPackets namespace Bloom::DebugServer::Gdb::CommandPackets
{ {

View File

@@ -1,8 +1,8 @@
#include "WriteRegister.hpp" #include "WriteRegister.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/TargetStopped.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/TargetStopped.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/OkResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/OkResponsePacket.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/ErrorResponsePacket.hpp"
#include "src/Targets/TargetRegister.hpp" #include "src/Targets/TargetRegister.hpp"

View File

@@ -12,8 +12,8 @@
#include "src/Helpers/EventNotifier.hpp" #include "src/Helpers/EventNotifier.hpp"
#include "src/Helpers/EpollInstance.hpp" #include "src/Helpers/EpollInstance.hpp"
#include "src/DebugServers/GdbRsp/Packet.hpp" #include "src/DebugServer/GdbRsp/Packet.hpp"
#include "src/DebugServers/GdbRsp/ResponsePackets/ResponsePacket.hpp" #include "src/DebugServer/GdbRsp/ResponsePackets/ResponsePacket.hpp"
namespace Bloom::DebugServer::Gdb namespace Bloom::DebugServer::Gdb
{ {

View File

@@ -7,7 +7,7 @@
#include <queue> #include <queue>
#include <optional> #include <optional>
#include "src/DebugServers/ServerInterface.hpp" #include "src/DebugServer/ServerInterface.hpp"
#include "GdbDebugServerConfig.hpp" #include "GdbDebugServerConfig.hpp"
#include "src/EventManager/EventListener.hpp" #include "src/EventManager/EventListener.hpp"

View File

@@ -3,7 +3,7 @@
#include <vector> #include <vector>
#include <memory> #include <memory>
#include "src/DebugServers/GdbRsp/Packet.hpp" #include "src/DebugServer/GdbRsp/Packet.hpp"
namespace Bloom::DebugServer::Gdb::ResponsePackets namespace Bloom::DebugServer::Gdb::ResponsePackets
{ {