Renamed DebugSessionAborted GDB exception
This commit is contained in:
@@ -1,26 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include "src/Exceptions/Exception.hpp"
|
|
||||||
|
|
||||||
namespace Bloom::DebugServer::Gdb::Exceptions
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* The GDB server may abort a debug session with the client, if an internal error occurs. One circumstance where
|
|
||||||
* this can happen is when the TargetController is not able to service the debug session for whatever reason.
|
|
||||||
*
|
|
||||||
* See GdbRspDebugServer::serve() for handling code.
|
|
||||||
*/
|
|
||||||
class DebugSessionAborted: public Bloom::Exceptions::Exception
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
explicit DebugSessionAborted(const std::string& message): Bloom::Exceptions::Exception(message) {
|
|
||||||
this->message = message;
|
|
||||||
}
|
|
||||||
|
|
||||||
explicit DebugSessionAborted(const char* message): Bloom::Exceptions::Exception(message) {
|
|
||||||
this->message = std::string(message);
|
|
||||||
}
|
|
||||||
|
|
||||||
explicit DebugSessionAborted() = default;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -0,0 +1,30 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "src/Exceptions/Exception.hpp"
|
||||||
|
|
||||||
|
namespace Bloom::DebugServer::Gdb::Exceptions
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* The GDB server may fail to prepare for a debug session, if an internal error occurs. One circumstance where
|
||||||
|
* this can happen is when the TargetController is not able to service the debug session for whatever reason.
|
||||||
|
*
|
||||||
|
* See GdbRspDebugServer::serve() for handling code.
|
||||||
|
*/
|
||||||
|
class DebugSessionInitialisationFailure: public Bloom::Exceptions::Exception
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
explicit DebugSessionInitialisationFailure(const std::string& message)
|
||||||
|
: Bloom::Exceptions::Exception(message)
|
||||||
|
{
|
||||||
|
this->message = message;
|
||||||
|
}
|
||||||
|
|
||||||
|
explicit DebugSessionInitialisationFailure(const char* message)
|
||||||
|
: Bloom::Exceptions::Exception(message)
|
||||||
|
{
|
||||||
|
this->message = std::string(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
explicit DebugSessionInitialisationFailure() = default;
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -9,7 +9,7 @@
|
|||||||
#include "Exceptions/ClientDisconnected.hpp"
|
#include "Exceptions/ClientDisconnected.hpp"
|
||||||
#include "Exceptions/ClientNotSupported.hpp"
|
#include "Exceptions/ClientNotSupported.hpp"
|
||||||
#include "Exceptions/ClientCommunicationError.hpp"
|
#include "Exceptions/ClientCommunicationError.hpp"
|
||||||
#include "Exceptions/DebugSessionAborted.hpp"
|
#include "Exceptions/DebugSessionInitialisationFailure.hpp"
|
||||||
|
|
||||||
#include "src/Exceptions/Exception.hpp"
|
#include "src/Exceptions/Exception.hpp"
|
||||||
#include "src/Exceptions/InvalidConfig.hpp"
|
#include "src/Exceptions/InvalidConfig.hpp"
|
||||||
@@ -175,7 +175,7 @@ namespace Bloom::DebugServer::Gdb
|
|||||||
|
|
||||||
if (!this->targetControllerConsole.isTargetControllerInService()) {
|
if (!this->targetControllerConsole.isTargetControllerInService()) {
|
||||||
this->activeDebugSession.reset();
|
this->activeDebugSession.reset();
|
||||||
throw DebugSessionAborted("TargetController not in service");
|
throw DebugSessionInitialisationFailure("TargetController not in service");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -209,8 +209,8 @@ namespace Bloom::DebugServer::Gdb
|
|||||||
this->activeDebugSession.reset();
|
this->activeDebugSession.reset();
|
||||||
return;
|
return;
|
||||||
|
|
||||||
} catch (const DebugSessionAborted& exception) {
|
} catch (const DebugSessionInitialisationFailure& exception) {
|
||||||
Logger::warning("GDB debug session aborted - " + exception.getMessage());
|
Logger::warning("GDB debug session initialisation failure - " + exception.getMessage());
|
||||||
this->activeDebugSession.reset();
|
this->activeDebugSession.reset();
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user