2#include <ossia/dataflow/graph/graph_interface.hpp>
3#include <ossia/dataflow/graph/graph_utils.hpp>
8class OSSIA_EXPORT graph final
13 template <
typename Comp_T>
15 graph& g, execution_state& e, std::vector<graph_node*>& active_nodes,
18 std::size_t executed = 0;
19 while(executed != active_nodes.size())
24 auto end = active_nodes.end();
26 for(
auto it = active_nodes.begin(); it != end - executed; ++it)
31 if(!comp(*cur_it, node) && can_execute(*node, e))
36 if(can_execute(*node, e))
45 g.exec_node(**cur_it, e);
47 std::iter_swap(end - executed - 1, cur_it);
57 template <
typename Comp_T>
59 graph& g, execution_state& e, std::vector<graph_node*>& active_nodes,
60 Comp_T&& comp, ossia::logger_type& log)
62 std::size_t executed = 0;
63 while(executed != active_nodes.size())
68 auto end = active_nodes.end();
70 for(
auto it = active_nodes.begin(); it != end - executed; ++it)
75 if(!comp(*cur_it, node) && can_execute(*node, e))
80 if(can_execute(*node, e))
89 ossia::graph_node& node = **cur_it;
93 g.exec_node(node, e, log);
95 std::iter_swap(end - executed - 1, cur_it);
219 struct simple_topo_sort
221 simple_topo_sort(
const graph_t& g)
226 std::vector<graph_vertex_t> m_topo_order_cache;
227 std::vector<graph_node*> m_node_cache;
228 void operator()(
const graph_t& gr, std::vector<graph_node*>& nodes)
230 const auto N = boost::num_vertices(impl);
231 m_topo_order_cache.clear();
232 m_topo_order_cache.reserve(N);
233 boost::topological_sort(gr, std::back_inserter(m_topo_order_cache));
237 for(
auto vtx : m_topo_order_cache)
239 nodes.push_back(gr[vtx].get());
247 assert(m_nodes.size() == boost::num_vertices(m_graph));
249 sort_fun(m_graph, m_node_static_sort);
252 void get_enabled_nodes(
const graph_t& gr)
254 m_active_nodes.clear();
255 m_active_nodes.reserve(m_nodes.size());
257 assert(m_node_static_sort.size() == boost::num_vertices(gr));
258 for(
auto node : m_node_static_sort)
261 m_active_nodes.push_back(node);
268 void state(execution_state& e)
override
281 m_enabled_cache.clear();
282 m_enabled_cache.reserve(m_nodes.size());
284 for(
auto it = boost::vertices(m_graph).first;
285 it != boost::vertices(m_graph).second; ++it)
287 ossia::graph_node& ptr = *m_graph[*it];
290 m_enabled_cache.insert(&ptr);
294 disable_strict_nodes_rec(m_enabled_cache, m_disabled_cache);
297 get_enabled_nodes(m_graph);
299 tick(*
this, e, m_active_nodes, node_sorter{m_node_static_sort, e});
301 tick(*
this, e, m_active_nodes, node_sorter{m_node_static_sort, e}, *
logger);
303 finish_nodes(m_nodes);
305 catch(
const boost::not_a_dag&)
312 [[nodiscard]]
const graph_t& impl()
const {
return m_graph; }
313 std::function<void(
const graph_t& gr, std::vector<graph_node*>& nodes)> sort_fun{
314 simple_topo_sort{m_graph}};
316 std::shared_ptr<ossia::logger_type>
logger;
319 void print(std::ostream& stream)
override { print_graph(m_graph, stream); }
321 node_flat_set m_enabled_cache;
322 node_flat_set m_disabled_cache;
323 std::vector<graph_node*> m_active_nodes;
324 std::vector<graph_node*> m_node_static_sort;
327 friend struct outlet;
328 friend class ::DataflowTest;
spdlog::logger & logger() noexcept
Where the errors will be logged. Default is stderr.
Definition context.cpp:118
std::ostream & print(std::ostream &out, const state_element &e)
print Print a state_element
Definition state_element.cpp:23