OSSIA
Open Scenario System for Interactive Application
Loading...
Searching...
No Matches
merged_policy.hpp
1#pragma once
2#include <ossia/detail/config.hpp>
3
4#include <ossia/dataflow/execution/local_state_execution_policy.hpp>
5#include <ossia/editor/state/flat_vec_state.hpp>
6
7#if !defined(OSSIA_FREESTANDING)
8#include <blockingconcurrentqueue.h>
9#endif
10
11namespace ossia
12{
13struct OSSIA_TEST_EXPORT merged_execution_state_policy : local_state_execution_policy
14{
15 void commit() override;
16 ossia::mono_state m_monoState;
17};
18
19#if !defined(OSSIA_FREESTANDING)
20struct threaded_merged_execution_state_policy : local_state_execution_policy
21{
22 threaded_merged_execution_state_policy();
23 ~threaded_merged_execution_state_policy();
24
25 void commit() override;
26 ossia::mono_state m_monoState;
27
28 std::thread m_valuesOutputThread;
29
30 // FIXME make sure that the sequencing is preserved so
31 // that we always get all the messages for commit N before all the messages for commit N+1
32 // FIXME in single thread mode we only need SPSC
33 moodycamel::BlockingConcurrentQueue<std::vector<ossia::state_element>>
34 m_messagesToApply;
35
36 std::atomic_bool m_stopFlag{};
37
38 std::vector<ossia::state_element> m_states;
39
40 int current_commit{};
41};
42#endif
43}
Definition git_info.h:7