1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/************************************************************************
*
* Copyright (C) 2009-2025 IRCAD France
* Copyright (C) 2012-2019 IHU Strasbourg
*
* This file is part of Sight.
*
* Sight is free software: you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Sight is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with Sight. If not, see <https://www.gnu.org/licenses/>.
*
***********************************************************************/
#include "app/config_launcher.hpp"
#include <core/com/proxy.hpp>
#include <core/com/signal.hxx>
#include <core/com/slots.hxx>
namespace sight::app
{
static const std::string S_CLOSE_CONFIG_ID = "CLOSE_CONFIG";
//------------------------------------------------------------------------------
config_launcher::config_launcher() noexcept :
m_config_launcher(std::make_unique<app::helper::config_launcher>())
{
new_signal<signals::launched_t>(signals::LAUNCHED);
}
//------------------------------------------------------------------------------
service::connections_t config_launcher::auto_connections() const
{
return {
{m_config_id, sight::data::object::MODIFIED_SIG, slots::UPDATE}
};
}
//------------------------------------------------------------------------------
void config_launcher::configuring(const config_t& _config)
{
m_config_launcher->parse_config(_config, this->get_sptr());
m_proxy_channel = this->get_id() + "_stop_config";
}
//------------------------------------------------------------------------------
void config_launcher::starting()
{
const auto config = *m_config_id;
if(not config.empty())
{
m_config_launcher->set_config(config);
}
if(not m_config_launcher->config().empty())
{
this->start_config();
}
}
//------------------------------------------------------------------------------
void config_launcher::stopping()
{
this->stop_config();
}
//------------------------------------------------------------------------------
void config_launcher::updating()
{
bool start = !m_config_launcher->config_is_running();
const auto new_config = *m_config_id;
// If the configuration is different from the current one
if(m_config_launcher->config() != new_config)
{
// Set the new configuration to start
m_config_launcher->set_config(new_config);
// Stop the current configuration and force restart
if(!start)
{
start = true;
this->stop_config();
}
}
if(start)
{
this->start_config();
}
}
//------------------------------------------------------------------------------
void config_launcher::start_config()
{
if(!m_config_launcher->config_is_running())
{
core::com::proxy::sptr proxies = core::com::proxy::get();
proxies->connect(m_proxy_channel, this->slot(service::base::slots::STOP));
app::field_adaptor_t replace_map;
replace_map[S_CLOSE_CONFIG_ID] = m_proxy_channel;
try
{
m_config_launcher->start_config(this->get_sptr(), replace_map);
this->async_emit(signals::LAUNCHED);
}
catch(const std::exception& /*e*/)
{
// Disconnect to avoid inconsistent state
proxies->disconnect(m_proxy_channel, this->slot(service::base::slots::STOP));
// Rethrow the same exception
throw;
}
}
}
//------------------------------------------------------------------------------
void config_launcher::stop_config()
{
if(m_config_launcher->config_is_running())
{
m_config_launcher->stop_config();
core::com::proxy::sptr proxies = core::com::proxy::get();
proxies->disconnect(m_proxy_channel, this->slot(service::base::slots::STOP));
}
}
//------------------------------------------------------------------------------
} // namespace sight::app
|