/* Copyright (c) 2005-2020 Intel Corporation Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ #ifndef __TBB__flow_graph_async_msg_impl_H #define __TBB__flow_graph_async_msg_impl_H #ifndef __TBB_flow_graph_H #error Do not #include this internal file directly; use public TBB headers instead. #endif namespace internal { template class async_storage { public: typedef receiver async_storage_client; async_storage() : my_graph(nullptr) { my_data_ready.store(false); } ~async_storage() { // Release reference to the graph if async_storage // was destructed before set() call if (my_graph) { my_graph->release_wait(); my_graph = nullptr; } } template async_storage(C&& data) : my_graph(nullptr), my_data( std::forward(data) ) { using namespace tbb::internal; __TBB_STATIC_ASSERT( (is_same_type::type, typename strip::type>::value), "incoming type must be T" ); my_data_ready.store(true); } template bool set(C&& data) { using namespace tbb::internal; __TBB_STATIC_ASSERT( (is_same_type::type, typename strip::type>::value), "incoming type must be T" ); { tbb::spin_mutex::scoped_lock locker(my_mutex); if (my_data_ready.load()) { __TBB_ASSERT(false, "double set() call"); return false; } my_data = std::forward(data); my_data_ready.store(true); } // Thread sync is on my_data_ready flag for (typename subscriber_list_type::iterator it = my_clients.begin(); it != my_clients.end(); ++it) { (*it)->try_put(my_data); } // Data was sent, release reference to the graph if (my_graph) { my_graph->release_wait(); my_graph = nullptr; } return true; } task* subscribe(async_storage_client& client, graph& g) { if (! my_data_ready.load()) { tbb::spin_mutex::scoped_lock locker(my_mutex); if (! my_data_ready.load()) { #if TBB_USE_ASSERT for (typename subscriber_list_type::iterator it = my_clients.begin(); it != my_clients.end(); ++it) { __TBB_ASSERT(*it != &client, "unexpected double subscription"); } #endif // TBB_USE_ASSERT // Increase graph lifetime my_graph = &g; my_graph->reserve_wait(); // Subscribe my_clients.push_back(&client); return SUCCESSFULLY_ENQUEUED; } } __TBB_ASSERT(my_data_ready.load(), "data is NOT ready"); return client.try_put_task(my_data); } private: graph* my_graph; tbb::spin_mutex my_mutex; tbb::atomic my_data_ready; T my_data; typedef std::vector subscriber_list_type; subscriber_list_type my_clients; }; } // namespace internal template class __TBB_DEPRECATED async_msg { template< typename > friend class receiver; template< typename, typename > friend struct internal::async_helpers; public: typedef T async_msg_data_type; async_msg() : my_storage(std::make_shared< internal::async_storage >()) {} async_msg(const T& t) : my_storage(std::make_shared< internal::async_storage >(t)) {} async_msg(T&& t) : my_storage(std::make_shared< internal::async_storage >( std::move(t) )) {} virtual ~async_msg() {} void set(const T& t) { my_storage->set(t); } void set(T&& t) { my_storage->set( std::move(t) ); } protected: // Can be overridden in derived class to inform that // async calculation chain is over virtual void finalize() const {} private: typedef std::shared_ptr< internal::async_storage > async_storage_ptr; async_storage_ptr my_storage; }; #endif // __TBB__flow_graph_async_msg_impl_H