/** * @file kernel/sss/GraphManager.hpp * @author The PARADEVS Development Team * See the AUTHORS or Authors.txt file */ /* * PARADEVS - the multimodeling and simulation environment * This file is a part of the PARADEVS environment * * Copyright (C) 2013-2015 ULCO http://www.univ-litoral.fr * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #ifndef SSS_GRAPH_MANANGER #define SSS_GRAPH_MANANGER 1 #include #include #include #include #include namespace paradevs { namespace sss { template < class Time, class SchedulerHandle = paradevs::common::scheduler::NoSchedulerHandle, class GraphParameters = common::NoParameters > class GraphManager { public: GraphManager(common::Coordinator < Time, SchedulerHandle >* coordinator, const GraphParameters& /* parameters */) : _coordinator(coordinator) { } virtual ~GraphManager() { } void add_child(sss::Model < Time, SchedulerHandle >* child) { _child_list.push_back(child); child->set_parent(_coordinator); } void add_link(common::Model < Time, SchedulerHandle >* src_model, const std::string& src_port_name, common::Model < Time, SchedulerHandle >* dst_model, const std::string& dst_port_name) { assert((src_model != _coordinator and dst_model != _coordinator and src_model->exist_out_port(src_port_name) and dst_model->exist_in_port(dst_port_name)) or (src_model == _coordinator and dst_model != _coordinator and src_model->exist_in_port(src_port_name) and dst_model->exist_in_port(dst_port_name)) or (src_model != _coordinator and dst_model == _coordinator and src_model->exist_out_port(src_port_name) and dst_model->exist_out_port(dst_port_name))); _link_list.add(src_model, src_port_name, dst_model, dst_port_name); } const sss::Models < Time, SchedulerHandle >& children() const { return _child_list; } void dispatch_events(common::Bag < Time, SchedulerHandle > bag, typename Time::type t) { for (auto & ymsg : bag) { typename common::Links < Time, SchedulerHandle >::Result result_model = _link_list.find(ymsg.get_model(), ymsg.get_port_name()); for (typename common::Links < Time, SchedulerHandle >::const_iterator it = result_model.first; it != result_model.second; ++it) { // event on output port of coupled model if (it->second.get_model() == _coordinator) { common::Bag < Time, SchedulerHandle > ymessages; ymessages.push_back( common::ExternalEvent < Time, SchedulerHandle >( it->second, ymsg.get_content())); dynamic_cast < common::Coordinator < Time, SchedulerHandle >* >(_coordinator->get_parent()) ->dispatch_events(ymessages, t); } else { // event on input port of internal model it->second.get_model()->post_event( t, common::ExternalEvent < Time, SchedulerHandle >( it->second, ymsg.get_content())); } } } } void post_event(typename Time::type t, const common::ExternalEvent < Time, SchedulerHandle >& event) { typename common::Links < Time, SchedulerHandle >::Result result = _link_list.find(_coordinator, event.get_port_name()); for (typename common::Links < Time, SchedulerHandle >::const_iterator it_r = result.first; it_r != result.second; ++it_r) { it_r->second.get_model()->post_event( t, common::ExternalEvent < Time, SchedulerHandle >(it_r->second, event.get_content())); } } private: common::Links < Time, SchedulerHandle > _link_list; sss::Models < Time, SchedulerHandle > _child_list; common::Coordinator < Time, SchedulerHandle >* _coordinator; }; } } // namespace paradevs sss #endif