File: signal_gate.cpp

package info (click to toggle)
sight 25.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 43,252 kB
  • sloc: cpp: 310,629; xml: 17,622; ansic: 9,960; python: 1,379; sh: 144; makefile: 33
file content (147 lines) | stat: -rw-r--r-- 4,683 bytes parent folder | download | duplicates (2)
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
/************************************************************************
 *
 * Copyright (C) 2018-2024 IRCAD France
 * Copyright (C) 2018-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/>.
 *
 ***********************************************************************/

#include "signal_gate.hpp"

#include <core/com/signal.hxx>
#include <core/com/slots.hxx>

#include <data/object.hpp>

#include <future>
#include <regex>

namespace sight::module::sync
{

// Public signal
const core::com::signals::key_t signal_gate::ALL_RECEIVED_SIG = "all_received";

//-----------------------------------------------------------------------------

signal_gate::signal_gate()
{
    new_signal<all_received_signal_t>(ALL_RECEIVED_SIG);
}

//-----------------------------------------------------------------------------

signal_gate::~signal_gate()
= default;

//-----------------------------------------------------------------------------

void signal_gate::configuring()
{
}

//------------------------------------------------------------------------------

void signal_gate::starting()
{
    service::config_t config = this->get_config();

    const std::regex re("(.*)/(.*)");
    std::smatch match;

    auto signals_cfg = config.equal_range("signal");
    for(auto it_cfg = signals_cfg.first ; it_cfg != signals_cfg.second ; ++it_cfg)
    {
        const std::string& signal = it_cfg->second.get_value<std::string>();
        if(std::regex_match(signal, match, re))
        {
            SIGHT_ASSERT("Wrong value for attribute src: " + signal, match.size() >= 3);

            std::string uid;
            std::string signal_key;
            uid.assign(match[1].first, match[1].second);
            signal_key.assign(match[2].first, match[2].second);

            if(core::id::exist(uid))
            {
                core::object::sptr obj                      = core::id::get_object(uid);
                core::com::has_signals::sptr signals_holder = std::dynamic_pointer_cast<core::com::has_signals>(obj);
                SIGHT_ASSERT("Object with id " << uid << " is not a has_slots", signals_holder);

                const std::size_t index = m_flags.size();
                m_flags.push_back(false);

                // Create a slot to our callback with a bound index to identify it
                std::function<void()> task([this, index](auto&& ...){received(index);});
                auto slot = core::com::new_slot(task);
                slot->set_worker(this->worker());

                // Connect the configured signal to this slot
                auto sig = signals_holder->signal(signal_key);
                SIGHT_ASSERT("Object with id " + uid + " does not have a signalKey '" + signal_key + "'", sig);

                sig->connect(slot);

                m_waiting_slots.push_back(slot);
            }
        }
    }
}

//-----------------------------------------------------------------------------

void signal_gate::stopping()
{
    m_waiting_slots.clear();
    m_flags.clear();
}

//-----------------------------------------------------------------------------

void signal_gate::updating()
{
}

//------------------------------------------------------------------------------

void signal_gate::received(std::size_t _index)
{
    SIGHT_DEBUG("'" << this->get_id() << "' received a signal at position : " << _index);
    SIGHT_ASSERT("Could not find a signal at index " << _index, _index < m_flags.size());

    m_flags[_index] = true;

    bool all_received = true;
    for(bool received : m_flags)
    {
        all_received &= received;
    }

    if(all_received)
    {
        // Reset all flags before sending the signal
        std::fill(m_flags.begin(), m_flags.end(), false);

        SIGHT_DEBUG("'" << this->get_id() << "' received all signals, sending 'allReceived' now.");
        auto sig = this->signal<all_received_signal_t>(ALL_RECEIVED_SIG);
        sig->async_emit();
    }
}

//-----------------------------------------------------------------------------

} // namespace sight::module::sync