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
|
/************************************************************************
*
* Copyright (C) 2016-2023 IRCAD France
* Copyright (C) 2016-2020 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/>.
*
***********************************************************************/
// cspell:ignore NOLINTNEXTLINE
#include "series_signal.hpp"
#include <core/com/signal.hpp>
#include <core/com/signal.hxx>
#include <core/com/slot.hpp>
#include <core/com/slots.hpp>
#include <core/com/slots.hxx>
#include <data/activity.hpp>
#include <service/macros.hpp>
#include <boost/foreach.hpp>
namespace sight::module::data
{
//------------------------------------------------------------------------------
const core::com::slots::key_t series_signal::REPORT_SERIES_SLOT = "reportSeries";
const core::com::signals::key_t series_signal::SERIES_ADDED_SIG = "seriesAdded";
//------------------------------------------------------------------------------
series_signal::series_signal() noexcept :
m_sig_series_added(new_signal<series_added_signal_t>(SERIES_ADDED_SIG))
{
new_slot(REPORT_SERIES_SLOT, &series_signal::report_series_slot, this);
}
//------------------------------------------------------------------------------
series_signal::~series_signal() noexcept =
default;
//------------------------------------------------------------------------------
void series_signal::starting()
{
}
//------------------------------------------------------------------------------
void series_signal::stopping()
{
}
//------------------------------------------------------------------------------
void series_signal::configuring()
{
const service::config_t srvconfig = this->get_config();
if(srvconfig.count("filter") == 1)
{
const service::config_t& config_filter = srvconfig.get_child("filter");
SIGHT_ASSERT("A maximum of 1 <mode> tag is allowed", config_filter.count("mode") < 2);
const auto mode = config_filter.get<std::string>("mode");
SIGHT_ASSERT(
"'" + mode + "' value for <mode> tag isn't valid. Allowed values are : 'include', 'exclude'.",
mode == "include" || mode == "exclude"
);
m_filter_mode = mode;
// NOLINTNEXTLINE(bugprone-branch-clone)
BOOST_FOREACH(const config_t::value_type& v, config_filter.equal_range("type"))
{
m_types.push_back(v.second.get<std::string>(""));
}
}
SIGHT_ASSERT("A maximum of 1 <filter> tag is allowed", srvconfig.count("filter") < 2);
}
//------------------------------------------------------------------------------
template<typename T>
void series_signal::report_series(const T& _added_series)
{
const bool is_include_mode = m_filter_mode == "include";
for(const auto& series : _added_series)
{
const auto key_it = std::find(m_types.cbegin(), m_types.cend(), series->get_classname());
if(key_it != m_types.end() && is_include_mode)
{
m_sig_series_added->async_emit(series);
}
}
}
//------------------------------------------------------------------------------
void series_signal::report_series_slot(sight::data::series_set::container_t _added_series)
{
report_series(_added_series);
}
//------------------------------------------------------------------------------
void series_signal::updating()
{
const auto series_set = m_series_set.lock();
SIGHT_ASSERT("input '" << SERIES_SET_INPUT << "' does not exist.", series_set);
report_series(*series_set);
}
//------------------------------------------------------------------------------
service::connections_t series_signal::auto_connections() const
{
return {
{SERIES_SET_INPUT, sight::data::series_set::ADDED_OBJECTS_SIG, REPORT_SERIES_SLOT},
{SERIES_SET_INPUT, sight::data::series_set::MODIFIED_SIG, service::slots::UPDATE}
};
}
//------------------------------------------------------------------------------
} // namespace sight::module::data
|