Intel(R) Threading Building Blocks Doxygen Documentation  version 4.2.3
internal::async_storage< T > Class Template Reference

#include <_flow_graph_async_msg_impl.h>

Collaboration diagram for internal::async_storage< T >:

Public Types

typedef receiver< T > async_storage_client
 

Public Member Functions

 async_storage ()
 
 ~async_storage ()
 
template<typename C >
 async_storage (C &&data)
 
template<typename C >
bool set (C &&data)
 
tasksubscribe (async_storage_client &client, graph &g)
 

Private Types

typedef std::vector< async_storage_client * > subscriber_list_type
 

Private Attributes

graph * my_graph
 
tbb::spin_mutex my_mutex
 
tbb::atomic< bool > my_data_ready
 
my_data
 
subscriber_list_type my_clients
 

Detailed Description

template<typename T>
class internal::async_storage< T >

Definition at line 27 of file _flow_graph_async_msg_impl.h.

Member Typedef Documentation

◆ async_storage_client

template<typename T >
typedef receiver<T> internal::async_storage< T >::async_storage_client

Definition at line 29 of file _flow_graph_async_msg_impl.h.

◆ subscriber_list_type

template<typename T >
typedef std::vector<async_storage_client*> internal::async_storage< T >::subscriber_list_type
private

Definition at line 114 of file _flow_graph_async_msg_impl.h.

Constructor & Destructor Documentation

◆ async_storage() [1/2]

template<typename T >
internal::async_storage< T >::async_storage ( )
inline

Definition at line 31 of file _flow_graph_async_msg_impl.h.

31  : my_graph(nullptr) {
33  }
void store(value_type value)
Definition: atomic.h:313
No ordering.
Definition: atomic.h:47

References internal::async_storage< T >::my_data_ready, tbb::relaxed, and tbb::internal::atomic_impl< T >::store().

Here is the call graph for this function:

◆ ~async_storage()

template<typename T >
internal::async_storage< T >::~async_storage ( )
inline

Definition at line 35 of file _flow_graph_async_msg_impl.h.

35  {
36  // Release reference to the graph if async_storage
37  // was destructed before set() call
38  if (my_graph) {
39  my_graph->release_wait();
40  my_graph = nullptr;
41  }
42  }

References internal::async_storage< T >::my_graph.

◆ async_storage() [2/2]

template<typename T >
template<typename C >
internal::async_storage< T >::async_storage ( C &&  data)
inline

Definition at line 45 of file _flow_graph_async_msg_impl.h.

45  : my_graph(nullptr), my_data( std::forward<C>(data) ) {
46  using namespace tbb::internal;
47  __TBB_STATIC_ASSERT( (is_same_type<typename strip<C>::type, typename strip<T>::type>::value), "incoming type must be T" );
48 
50  }
#define __TBB_STATIC_ASSERT(condition, msg)
Definition: tbb_stddef.h:532
void const char const char int ITT_FORMAT __itt_group_sync x void const char ITT_FORMAT __itt_group_sync s void ITT_FORMAT __itt_group_sync p void ITT_FORMAT p void ITT_FORMAT p no args __itt_suppress_mode_t unsigned int void size_t ITT_FORMAT d void ITT_FORMAT p void ITT_FORMAT p __itt_model_site __itt_model_site_instance ITT_FORMAT p __itt_model_task __itt_model_task_instance ITT_FORMAT p void ITT_FORMAT p void ITT_FORMAT p void size_t ITT_FORMAT d void ITT_FORMAT p const wchar_t ITT_FORMAT s const char ITT_FORMAT s const char ITT_FORMAT s const char ITT_FORMAT s no args void ITT_FORMAT p size_t ITT_FORMAT d no args const wchar_t const wchar_t ITT_FORMAT s __itt_heap_function void size_t int ITT_FORMAT d __itt_heap_function void ITT_FORMAT p __itt_heap_function void void size_t int ITT_FORMAT d no args no args unsigned int ITT_FORMAT u const __itt_domain __itt_id ITT_FORMAT lu const __itt_domain __itt_id __itt_id __itt_string_handle ITT_FORMAT p const __itt_domain __itt_id ITT_FORMAT p const __itt_domain __itt_id __itt_timestamp __itt_timestamp ITT_FORMAT lu const __itt_domain __itt_id __itt_id __itt_string_handle ITT_FORMAT p const __itt_domain ITT_FORMAT p const __itt_domain __itt_string_handle unsigned long long value
void const char const char int ITT_FORMAT __itt_group_sync x void const char ITT_FORMAT __itt_group_sync s void ITT_FORMAT __itt_group_sync p void ITT_FORMAT p void ITT_FORMAT p no args __itt_suppress_mode_t unsigned int void size_t ITT_FORMAT d void ITT_FORMAT p void ITT_FORMAT p __itt_model_site __itt_model_site_instance ITT_FORMAT p __itt_model_task __itt_model_task_instance ITT_FORMAT p void ITT_FORMAT p void ITT_FORMAT p void size_t ITT_FORMAT d void ITT_FORMAT p const wchar_t ITT_FORMAT s const char ITT_FORMAT s const char ITT_FORMAT s const char ITT_FORMAT s no args void ITT_FORMAT p size_t ITT_FORMAT d no args const wchar_t const wchar_t ITT_FORMAT s __itt_heap_function void size_t int ITT_FORMAT d __itt_heap_function void ITT_FORMAT p __itt_heap_function void void size_t int ITT_FORMAT d no args no args unsigned int ITT_FORMAT u const __itt_domain __itt_id ITT_FORMAT lu const __itt_domain __itt_id __itt_id __itt_string_handle ITT_FORMAT p const __itt_domain __itt_id ITT_FORMAT p const __itt_domain __itt_id __itt_timestamp __itt_timestamp ITT_FORMAT lu const __itt_domain __itt_id __itt_id __itt_string_handle ITT_FORMAT p const __itt_domain ITT_FORMAT p const __itt_domain __itt_string_handle unsigned long long ITT_FORMAT lu const __itt_domain __itt_id __itt_string_handle __itt_metadata_type size_t void * data
void store(value_type value)
Definition: atomic.h:313
Detects whether two given types are the same.
No ordering.
Definition: atomic.h:47
Identifiers declared inside namespace internal should never be used directly by client code.
Definition: atomic.h:51

References __TBB_STATIC_ASSERT, internal::async_storage< T >::my_data_ready, tbb::relaxed, tbb::internal::atomic_impl< T >::store(), and value.

Here is the call graph for this function:

Member Function Documentation

◆ set()

template<typename T >
template<typename C >
bool internal::async_storage< T >::set ( C &&  data)
inline

Definition at line 53 of file _flow_graph_async_msg_impl.h.

53  {
54  using namespace tbb::internal;
55  __TBB_STATIC_ASSERT( (is_same_type<typename strip<C>::type, typename strip<T>::type>::value), "incoming type must be T" );
56 
57  {
59 
61  __TBB_ASSERT(false, "double set() call");
62  return false;
63  }
64 
65  my_data = std::forward<C>(data);
67  }
68 
69  // Thread sync is on my_data_ready flag
70  for (typename subscriber_list_type::iterator it = my_clients.begin(); it != my_clients.end(); ++it) {
71  (*it)->try_put(my_data);
72  }
73 
74  // Data was sent, release reference to the graph
75  if (my_graph) {
76  my_graph->release_wait();
77  my_graph = nullptr;
78  }
79 
80  return true;
81  }
value_type load() const
Definition: atomic.h:302
#define __TBB_STATIC_ASSERT(condition, msg)
Definition: tbb_stddef.h:532
Release.
Definition: atomic.h:45
void const char const char int ITT_FORMAT __itt_group_sync x void const char ITT_FORMAT __itt_group_sync s void ITT_FORMAT __itt_group_sync p void ITT_FORMAT p void ITT_FORMAT p no args __itt_suppress_mode_t unsigned int void size_t ITT_FORMAT d void ITT_FORMAT p void ITT_FORMAT p __itt_model_site __itt_model_site_instance ITT_FORMAT p __itt_model_task __itt_model_task_instance ITT_FORMAT p void ITT_FORMAT p void ITT_FORMAT p void size_t ITT_FORMAT d void ITT_FORMAT p const wchar_t ITT_FORMAT s const char ITT_FORMAT s const char ITT_FORMAT s const char ITT_FORMAT s no args void ITT_FORMAT p size_t ITT_FORMAT d no args const wchar_t const wchar_t ITT_FORMAT s __itt_heap_function void size_t int ITT_FORMAT d __itt_heap_function void ITT_FORMAT p __itt_heap_function void void size_t int ITT_FORMAT d no args no args unsigned int ITT_FORMAT u const __itt_domain __itt_id ITT_FORMAT lu const __itt_domain __itt_id __itt_id __itt_string_handle ITT_FORMAT p const __itt_domain __itt_id ITT_FORMAT p const __itt_domain __itt_id __itt_timestamp __itt_timestamp ITT_FORMAT lu const __itt_domain __itt_id __itt_id __itt_string_handle ITT_FORMAT p const __itt_domain ITT_FORMAT p const __itt_domain __itt_string_handle unsigned long long value
void const char const char int ITT_FORMAT __itt_group_sync x void const char ITT_FORMAT __itt_group_sync s void ITT_FORMAT __itt_group_sync p void ITT_FORMAT p void ITT_FORMAT p no args __itt_suppress_mode_t unsigned int void size_t ITT_FORMAT d void ITT_FORMAT p void ITT_FORMAT p __itt_model_site __itt_model_site_instance ITT_FORMAT p __itt_model_task __itt_model_task_instance ITT_FORMAT p void ITT_FORMAT p void ITT_FORMAT p void size_t ITT_FORMAT d void ITT_FORMAT p const wchar_t ITT_FORMAT s const char ITT_FORMAT s const char ITT_FORMAT s const char ITT_FORMAT s no args void ITT_FORMAT p size_t ITT_FORMAT d no args const wchar_t const wchar_t ITT_FORMAT s __itt_heap_function void size_t int ITT_FORMAT d __itt_heap_function void ITT_FORMAT p __itt_heap_function void void size_t int ITT_FORMAT d no args no args unsigned int ITT_FORMAT u const __itt_domain __itt_id ITT_FORMAT lu const __itt_domain __itt_id __itt_id __itt_string_handle ITT_FORMAT p const __itt_domain __itt_id ITT_FORMAT p const __itt_domain __itt_id __itt_timestamp __itt_timestamp ITT_FORMAT lu const __itt_domain __itt_id __itt_id __itt_string_handle ITT_FORMAT p const __itt_domain ITT_FORMAT p const __itt_domain __itt_string_handle unsigned long long ITT_FORMAT lu const __itt_domain __itt_id __itt_string_handle __itt_metadata_type size_t void * data
#define __TBB_ASSERT(predicate, comment)
No-op version of __TBB_ASSERT.
Definition: tbb_stddef.h:165
void store(value_type value)
Definition: atomic.h:313
Detects whether two given types are the same.
No ordering.
Definition: atomic.h:47
Identifiers declared inside namespace internal should never be used directly by client code.
Definition: atomic.h:51
Represents acquisition of a mutex.
Definition: spin_mutex.h:50

References __TBB_ASSERT, __TBB_STATIC_ASSERT, data, tbb::internal::atomic_impl< T >::load(), internal::async_storage< T >::my_clients, internal::async_storage< T >::my_data, internal::async_storage< T >::my_data_ready, internal::async_storage< T >::my_graph, internal::async_storage< T >::my_mutex, tbb::relaxed, tbb::release, tbb::internal::atomic_impl< T >::store(), and value.

Here is the call graph for this function:

◆ subscribe()

template<typename T >
task* internal::async_storage< T >::subscribe ( async_storage_client client,
graph &  g 
)
inline

Definition at line 83 of file _flow_graph_async_msg_impl.h.

83  {
85  {
87 
88  if (! my_data_ready.load<tbb::relaxed>()) {
89 #if TBB_USE_ASSERT
90  for (typename subscriber_list_type::iterator it = my_clients.begin(); it != my_clients.end(); ++it) {
91  __TBB_ASSERT(*it != &client, "unexpected double subscription");
92  }
93 #endif // TBB_USE_ASSERT
94 
95  // Increase graph lifetime
96  my_graph = &g;
97  my_graph->reserve_wait();
98 
99  // Subscribe
100  my_clients.push_back(&client);
101  return SUCCESSFULLY_ENQUEUED;
102  }
103  }
104 
105  __TBB_ASSERT(my_data_ready.load<tbb::relaxed>(), "data is NOT ready");
106  return client.try_put_task(my_data);
107  }
value_type load() const
Definition: atomic.h:302
static tbb::task *const SUCCESSFULLY_ENQUEUED
#define __TBB_ASSERT(predicate, comment)
No-op version of __TBB_ASSERT.
Definition: tbb_stddef.h:165
No ordering.
Definition: atomic.h:47
Acquire.
Definition: atomic.h:43
Represents acquisition of a mutex.
Definition: spin_mutex.h:50

References __TBB_ASSERT, tbb::acquire, tbb::internal::atomic_impl< T >::load(), internal::async_storage< T >::my_clients, internal::async_storage< T >::my_data, internal::async_storage< T >::my_data_ready, internal::async_storage< T >::my_graph, internal::async_storage< T >::my_mutex, tbb::relaxed, and tbb::flow::internal::SUCCESSFULLY_ENQUEUED.

Here is the call graph for this function:

Member Data Documentation

◆ my_clients

template<typename T >
subscriber_list_type internal::async_storage< T >::my_clients
private

◆ my_data

template<typename T >
T internal::async_storage< T >::my_data
private

◆ my_data_ready

◆ my_graph

◆ my_mutex

template<typename T >
tbb::spin_mutex internal::async_storage< T >::my_mutex
private

The documentation for this class was generated from the following file:

Copyright © 2005-2019 Intel Corporation. All Rights Reserved.

Intel, Pentium, Intel Xeon, Itanium, Intel XScale and VTune are registered trademarks or trademarks of Intel Corporation or its subsidiaries in the United States and other countries.

* Other names and brands may be claimed as the property of others.