SObjectizer  5.8
Loading...
Searching...
No Matches
so_5/exception_logger/main.cpp
/*
* A sample of the exception logger.
*/
#include <iostream>
#include <stdexcept>
// Main SObjectizer header file.
#include <so_5/all.hpp>
// A class of the exception logger.
class sample_event_exception_logger_t final
{
public:
// A reaction to an exception.
const std::exception & event_exception,
const so_5::coop_handle_t & coop ) noexcept override
{
std::cerr
<< "Event_exception, coop:"
<< coop << "; "
" error: "
<< event_exception.what()
<< std::endl;
}
};
// A class of an agent which will throw an exception.
class a_hello_t final : public so_5::agent_t
{
public:
a_hello_t( context_t ctx ) : so_5::agent_t( ctx )
{}
// A reaction to start work in SObjectizer.
void so_evt_start() override
{
std::make_unique<sample_event_exception_logger_t>() );
throw std::runtime_error( "sample exception" );
}
// An instruction to SObjectizer for unhandled exception.
{
}
};
int main()
{
try
{
// SObjectizer initialization code.
[]( so_5::environment_t & env )
{
// Creating and registering cooperation with a single agent.
env.register_agent_as_coop( env.make_agent< a_hello_t >() );
} );
}
catch( const std::exception & ex )
{
std::cerr << "Error: " << ex.what() << std::endl;
return 1;
}
return 0;
}
A helper header file for including all public SObjectizer stuff.
A base class for agents.
Definition agent.hpp:673
virtual exception_reaction_t so_exception_reaction() const noexcept
A reaction from SObjectizer to an exception from agent's event.
Definition agent.cpp:871
environment_t & so_environment() const noexcept
Access to the SObjectizer Environment which this agent is belong.
Definition agent.cpp:987
virtual void so_evt_start()
Hook on agent start inside SObjectizer.
Definition agent.cpp:832
Type of smart handle for a cooperation.
SObjectizer Environment.
coop_handle_t register_agent_as_coop(std::unique_ptr< A > agent)
Register single agent as a cooperation.
void install_exception_logger(event_exception_logger_unique_ptr_t logger)
Set up an exception logger.
std::unique_ptr< Agent > make_agent(Args &&... args)
Helper method for simplification of agents creation.
An interface for the exception logging.
virtual void log_exception(const std::exception &event_exception, const coop_handle_t &coop) noexcept=0
Log the exception caught.
Private part of message limit implementation.
Definition agent.cpp:33
void launch(Init_Routine &&init_routine)
Launch a SObjectizer Environment with default parameters.
Definition api.hpp:142
exception_reaction_t
A reaction of SObjectizer to an exception from agent event.
Definition agent.hpp:65
@ deregister_coop_on_exception
Definition agent.hpp:73