OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
pull_visitors.hpp
1#pragma once
2#include <ossia/audio/audio_parameter.hpp>
3#include <ossia/dataflow/audio_lock.hpp>
4#include <ossia/dataflow/data_copy.hpp>
5#include <ossia/dataflow/execution/local_state_execution_policy.hpp>
6#include <ossia/dataflow/execution_state.hpp>
7#include <ossia/protocols/midi/detail/midi_impl.hpp>
8#include <ossia/protocols/midi/midi_node.hpp>
9namespace ossia
10{
11
12struct local_pull_visitor
13{
14 local_state_execution_policy& st;
16 bool operator()(value_port& val) const
17 {
18 OSSIA_EXEC_STATE_LOCK_READ(st);
19 auto it = st.m_valueState.find(addr);
20 if(it != st.m_valueState.end() && !it->second.empty())
21 {
22 copy_data{}(it->second, val);
23 return true;
24 }
25 return false;
26 }
27
28 bool operator()(audio_port& val) const
29 {
30#if defined(OSSIA_PROTOCOL_AUDIO)
31 OSSIA_EXEC_STATE_LOCK_READ(st);
32 auto it = st.m_audioState.find(static_cast<ossia::audio_parameter*>(addr));
33 if(it != st.m_audioState.end() && !it->second.empty())
34 {
35 copy_data{}(it->second, val);
36 return true;
37 }
38#endif
39 return false;
40 }
41
42 bool operator()(midi_port& val) const
43 {
44#if defined(OSSIA_PROTOCOL_MIDI)
45 OSSIA_EXEC_STATE_LOCK_READ(st);
46 auto it = st.m_midiState.find(addr);
47 if(it != st.m_midiState.end() && !it->second.empty())
48 {
49 copy_data{}(it->second, val);
50 return true;
51 }
52#endif
53 return false;
54 }
55
56 [[noreturn]] bool operator()(geometry_port& val) const
57 {
58 assert(false);
59 return false;
60 }
61
62 bool operator()() const { return false; }
63};
64
65struct global_pull_visitor
66{
67 ossia::execution_state& state;
68 const net::parameter_base& out;
69 void operator()(value_port& val) const
70 {
71 if(!val.is_event)
72 {
73 copy_data{}(out, val);
74 }
75 else
76 {
77 auto it = state.m_receivedValues.find(const_cast<net::parameter_base*>(&out));
78 if(it != state.m_receivedValues.end())
79 {
80 copy_data{}(*it->first, it->second, val);
81 }
82 }
83 }
84
85 void operator()(audio_port& val) const
86 {
87#if defined(OSSIA_PROTOCOL_AUDIO)
88#if !defined(NDEBUG)
89 auto aa = dynamic_cast<const audio_parameter*>(&out);
90 assert(aa);
91#else
92 auto aa = static_cast<const audio_parameter*>(&out);
93#endif
94 aa->clone_value(val.get());
95#endif
96 }
97
98 void operator()(midi_port& val) const
99 {
100#if defined(OSSIA_PROTOCOL_MIDI)
101 auto& node = out.get_node();
102 auto& dev = node.get_device();
103 auto& proto = dev.get_protocol();
104
105#if !defined(NDEBUG)
106 // TODO how to do without that dynamic_cast ?
107 // Can we *ensure* that the address of the midi_port is a midi one ?
108 auto midi = dynamic_cast<ossia::net::midi::midi_protocol*>(&proto);
109 assert(midi);
110#else
111 auto midi = static_cast<ossia::net::midi::midi_protocol*>(&proto);
112#endif
113
114 auto it = state.m_receivedMidi.find(midi);
115 if(it != state.m_receivedMidi.end())
116 {
117 for(const libremidi::ump& v : it->second.messages)
118 {
119 val.messages.push_back(v);
120 }
121 }
122#endif
123 }
124
125 [[noreturn]] void operator()(geometry_port& val) const { assert(false); }
126
127 void operator()() const { }
128};
129
130struct global_pull_node_visitor
131{
132 ossia::execution_state& state;
133 const net::node_base& out;
134 void operator()(value_port& val) const { val.write_value(ossia::net::to_map(out), 0); }
135
136 void operator()(audio_port& val) const
137 {
138 // TODO Nothing to do ?
139 }
140
141 void operator()(midi_port& val) const
142 {
143#if defined(OSSIA_PROTOCOL_MIDI)
144 auto& node = out;
145 auto& dev = node.get_device();
146 auto& proto = dev.get_protocol();
147
148#if !defined(NDEBUG)
149 // TODO how to do without that dynamic_cast ?
150 // Can we *ensure* that the address of the midi_port is a midi one ?
151 auto midi = dynamic_cast<ossia::net::midi::midi_protocol*>(&proto);
152 assert(midi);
153#else
154 auto midi = static_cast<ossia::net::midi::midi_protocol*>(&proto);
155#endif
156
157 int channel = -1;
158 if(node.get_parent() == &dev.get_root_node())
159 {
160 // the node is a MIDI channel node
161 channel = static_cast<const ossia::net::midi::channel_node&>(node).channel;
162 }
163
164 auto it = state.m_receivedMidi.find(midi);
165 if(it != state.m_receivedMidi.end())
166 {
167 if(channel == -1)
168 {
169 for(const libremidi::ump& v : it->second.messages)
170 {
171 val.messages.push_back(v);
172 }
173 }
174 else
175 {
176 for(const libremidi::ump& v : it->second.messages)
177 {
178 if(v.get_channel() == channel)
179 val.messages.push_back(v);
180 }
181 }
182 }
183#endif
184 }
185
186 [[noreturn]] void operator()(geometry_port& val) const { assert(false); }
187
188 void operator()() const { }
189};
190
191}
The parameter_base class.
Definition ossia/network/base/parameter.hpp:48
Definition git_info.h:7