diff options
Diffstat (limited to 'src/libs/engine')
-rw-r--r-- | src/libs/engine/AudioDriver.h | 2 | ||||
-rw-r--r-- | src/libs/engine/ClientBroadcaster.h | 2 | ||||
-rw-r--r-- | src/libs/engine/Driver.h | 4 | ||||
-rw-r--r-- | src/libs/engine/Event.h | 3 | ||||
-rw-r--r-- | src/libs/engine/GraphObject.h | 3 | ||||
-rw-r--r-- | src/libs/engine/JackAudioDriver.h | 6 | ||||
-rw-r--r-- | src/libs/engine/JackMidiDriver.h | 2 | ||||
-rw-r--r-- | src/libs/engine/Maid.h | 2 | ||||
-rw-r--r-- | src/libs/engine/MidiDriver.h | 2 | ||||
-rw-r--r-- | src/libs/engine/OSCClientSender.cpp | 2 | ||||
-rw-r--r-- | src/libs/engine/OSCClientSender.h | 6 | ||||
-rw-r--r-- | src/libs/engine/OSCEngineReceiver.cpp | 2 | ||||
-rw-r--r-- | src/libs/engine/ObjectStore.h | 2 | ||||
-rw-r--r-- | src/libs/engine/Plugin.h | 2 | ||||
-rw-r--r-- | src/libs/engine/PostProcessor.h | 8 | ||||
-rw-r--r-- | src/libs/engine/QueuedEngineInterface.h | 6 | ||||
-rw-r--r-- | src/libs/engine/QueuedEventSource.h | 16 | ||||
-rw-r--r-- | src/libs/engine/ThreadManager.h | 2 | ||||
-rw-r--r-- | src/libs/engine/events/ConnectionEvent.h | 12 | ||||
-rw-r--r-- | src/libs/engine/events/RequestMetadataEvent.h | 8 | ||||
-rw-r--r-- | src/libs/engine/events/SetMetadataEvent.h | 4 |
21 files changed, 52 insertions, 44 deletions
diff --git a/src/libs/engine/AudioDriver.h b/src/libs/engine/AudioDriver.h index a2f4ac50..448163eb 100644 --- a/src/libs/engine/AudioDriver.h +++ b/src/libs/engine/AudioDriver.h @@ -41,7 +41,7 @@ public: virtual Patch* root_patch() = 0; virtual void add_port(DriverPort* port) = 0; - virtual DriverPort* remove_port(const Path& path) = 0; + virtual DriverPort* remove_port(const Raul::Path& path) = 0; virtual SampleCount buffer_size() const = 0; virtual SampleCount sample_rate() const = 0; diff --git a/src/libs/engine/ClientBroadcaster.h b/src/libs/engine/ClientBroadcaster.h index 529dffdb..577eedd3 100644 --- a/src/libs/engine/ClientBroadcaster.h +++ b/src/libs/engine/ClientBroadcaster.h @@ -83,7 +83,7 @@ public: void send_all_objects(); void send_patch_enable(const string& patch_path); void send_patch_disable(const string& patch_path); - void send_metadata_update(const string& node_path, const string& key, const Atom& value); + void send_metadata_update(const string& node_path, const string& key, const Raul::Atom& value); void send_control_change(const string& port_path, float value); void send_program_add(const string& node_path, int bank, int program, const string& name); void send_program_remove(const string& node_path, int bank, int program); diff --git a/src/libs/engine/Driver.h b/src/libs/engine/Driver.h index e611eff8..c404ac12 100644 --- a/src/libs/engine/Driver.h +++ b/src/libs/engine/Driver.h @@ -79,8 +79,8 @@ public: */ virtual DriverPort* create_port(DuplexPort<T>* patch_port) = 0; - virtual void add_port(DriverPort* port) = 0; - virtual DriverPort* remove_port(const Path& path) = 0; + virtual void add_port(DriverPort* port) = 0; + virtual DriverPort* remove_port(const Raul::Path& path) = 0; }; diff --git a/src/libs/engine/Event.h b/src/libs/engine/Event.h index c2e18949..c740dccd 100644 --- a/src/libs/engine/Event.h +++ b/src/libs/engine/Event.h @@ -24,6 +24,9 @@ #include "Responder.h" #include "ThreadManager.h" +namespace Raul { class Path; } +using Raul::Path; + namespace Ingen { class Engine; diff --git a/src/libs/engine/GraphObject.h b/src/libs/engine/GraphObject.h index b43ddf88..fe3699fd 100644 --- a/src/libs/engine/GraphObject.h +++ b/src/libs/engine/GraphObject.h @@ -25,7 +25,10 @@ #include "raul/Path.h" #include "raul/Atom.h" #include "types.h" + using std::string; +using Raul::Atom; +using Raul::Path; namespace Ingen { diff --git a/src/libs/engine/JackAudioDriver.h b/src/libs/engine/JackAudioDriver.h index 38c908a6..9bcaf856 100644 --- a/src/libs/engine/JackAudioDriver.h +++ b/src/libs/engine/JackAudioDriver.h @@ -83,11 +83,11 @@ public: void enable(); void disable(); - DriverPort* port(const Path& path); + DriverPort* port(const Raul::Path& path); DriverPort* create_port(DuplexPort<Sample>* patch_port); void add_port(DriverPort* port); - DriverPort* remove_port(const Path& path); + DriverPort* remove_port(const Raul::Path& path); Patch* root_patch() { return _root_patch; } void set_root_patch(Patch* patch) { _root_patch = patch; } @@ -125,7 +125,7 @@ private: int _sample_rate_cb(jack_nframes_t nframes); Engine& _engine; - Thread* _jack_thread; + Raul::Thread* _jack_thread; jack_client_t* _client; jack_nframes_t _buffer_size; jack_nframes_t _sample_rate; diff --git a/src/libs/engine/JackMidiDriver.h b/src/libs/engine/JackMidiDriver.h index d61498e5..bb118a06 100644 --- a/src/libs/engine/JackMidiDriver.h +++ b/src/libs/engine/JackMidiDriver.h @@ -81,7 +81,7 @@ public: { return new JackMidiPort(this, patch_port); } void add_port(DriverPort* port); - DriverPort* remove_port(const Path& path); + DriverPort* remove_port(const Raul::Path& path); jack_client_t* jack_client() { return _client; } diff --git a/src/libs/engine/Maid.h b/src/libs/engine/Maid.h index d8dbfc7e..717cc428 100644 --- a/src/libs/engine/Maid.h +++ b/src/libs/engine/Maid.h @@ -44,7 +44,7 @@ public: void cleanup(); private: - SRSWQueue<MaidObject*> _objects; + Raul::SRSWQueue<MaidObject*> _objects; }; diff --git a/src/libs/engine/MidiDriver.h b/src/libs/engine/MidiDriver.h index dba3056d..9f33cf95 100644 --- a/src/libs/engine/MidiDriver.h +++ b/src/libs/engine/MidiDriver.h @@ -69,7 +69,7 @@ public: DriverPort* create_port(DuplexPort<MidiMessage>* patch_port) { return NULL; } void add_port(DriverPort* port) {} - DriverPort* remove_port(const Path& path) { return NULL; } + DriverPort* remove_port(const Raul::Path& path) { return NULL; } void prepare_block(const SampleCount block_start, const SampleCount block_end) {} }; diff --git a/src/libs/engine/OSCClientSender.cpp b/src/libs/engine/OSCClientSender.cpp index e858e572..e4f7fa2f 100644 --- a/src/libs/engine/OSCClientSender.cpp +++ b/src/libs/engine/OSCClientSender.cpp @@ -463,7 +463,7 @@ OSCClientSender::metadata_update(string path, string key, Atom value) lo_message m = lo_message_new(); lo_message_add_string(m, path.c_str()); lo_message_add_string(m, key.c_str()); - AtomLiblo::lo_message_add_atom(m, value); + Raul::AtomLiblo::lo_message_add_atom(m, value); lo_send_message(_address, "/om/metadata/update", m); } diff --git a/src/libs/engine/OSCClientSender.h b/src/libs/engine/OSCClientSender.h index 12ae8bdf..3f6eb8e7 100644 --- a/src/libs/engine/OSCClientSender.h +++ b/src/libs/engine/OSCClientSender.h @@ -108,9 +108,9 @@ public: virtual void disconnection(string src_port_path, string dst_port_path); - virtual void metadata_update(string subject_path, - string predicate, - Atom value); + virtual void metadata_update(string subject_path, + string predicate, + Raul::Atom value); virtual void control_change(string port_path, float value); diff --git a/src/libs/engine/OSCEngineReceiver.cpp b/src/libs/engine/OSCEngineReceiver.cpp index 5e1590e7..73711ab4 100644 --- a/src/libs/engine/OSCEngineReceiver.cpp +++ b/src/libs/engine/OSCEngineReceiver.cpp @@ -771,7 +771,7 @@ OSCEngineReceiver::m_metadata_set_cb(const char* path, const char* types, lo_arg const char* node_path = &argv[1]->s; const char* key = &argv[2]->s; - Atom value = AtomLiblo::lo_arg_to_atom(types[3], argv[3]); + Raul::Atom value = Raul::AtomLiblo::lo_arg_to_atom(types[3], argv[3]); set_metadata(node_path, key, value); diff --git a/src/libs/engine/ObjectStore.h b/src/libs/engine/ObjectStore.h index 3f2fcfc3..014d156c 100644 --- a/src/libs/engine/ObjectStore.h +++ b/src/libs/engine/ObjectStore.h @@ -21,7 +21,9 @@ #include <string> #include "raul/Path.h" #include "Tree.h" + using std::string; +using Raul::Path; namespace Ingen { diff --git a/src/libs/engine/Plugin.h b/src/libs/engine/Plugin.h index 0b573cb1..692c4662 100644 --- a/src/libs/engine/Plugin.h +++ b/src/libs/engine/Plugin.h @@ -31,8 +31,6 @@ using std::string; using std::cerr; using std::endl; -class Path; - namespace Ingen { class PluginLibrary; diff --git a/src/libs/engine/PostProcessor.h b/src/libs/engine/PostProcessor.h index 48d0792d..9cd4d29d 100644 --- a/src/libs/engine/PostProcessor.h +++ b/src/libs/engine/PostProcessor.h @@ -37,7 +37,7 @@ class Event; * * \ingroup engine */ -class PostProcessor : public Slave +class PostProcessor : public Raul::Slave { public: PostProcessor(Maid& maid, size_t queue_size); @@ -46,9 +46,9 @@ public: inline void push(Event* const ev) { _events.push(ev); } private: - Maid& _maid; - SRSWQueue<Event*> _events; - virtual void _whipped(); + Maid& _maid; + Raul::SRSWQueue<Event*> _events; + virtual void _whipped(); }; diff --git a/src/libs/engine/QueuedEngineInterface.h b/src/libs/engine/QueuedEngineInterface.h index d40cd1a8..d71c50b1 100644 --- a/src/libs/engine/QueuedEngineInterface.h +++ b/src/libs/engine/QueuedEngineInterface.h @@ -134,9 +134,9 @@ public: virtual void midi_learn(const string& node_path); - virtual void set_metadata(const string& path, - const string& predicate, - const Atom& value); + virtual void set_metadata(const string& path, + const string& predicate, + const Raul::Atom& value); // Requests // diff --git a/src/libs/engine/QueuedEventSource.h b/src/libs/engine/QueuedEventSource.h index 077cf7f2..9d50554d 100644 --- a/src/libs/engine/QueuedEventSource.h +++ b/src/libs/engine/QueuedEventSource.h @@ -42,7 +42,7 @@ class PostProcessor; * * This class is it's own slave. :) */ -class QueuedEventSource : public EventSource, protected Slave +class QueuedEventSource : public EventSource, protected Raul::Slave { public: QueuedEventSource(size_t queued_size, size_t stamped_size); @@ -72,15 +72,15 @@ private: //(FIXME: make this a separate class?) // 2-part queue for events that require pre-processing: - size_t _front; ///< Front of queue - size_t _back; ///< Back of entire queue (1 past index of back element) - size_t _prepared_back; ///< Back of prepared section (1 past index of back prepared element) - const size_t _size; - QueuedEvent** _events; - Semaphore _blocking_semaphore; + size_t _front; ///< Front of queue + size_t _back; ///< Back of entire queue (1 past index of back element) + size_t _prepared_back; ///< Back of prepared section (1 past index of back prepared element) + const size_t _size; + QueuedEvent** _events; + Raul::Semaphore _blocking_semaphore; /** Queue for timestamped events (no pre-processing). */ - SRSWQueue<Event*> _stamped_queue; + Raul::SRSWQueue<Event*> _stamped_queue; }; diff --git a/src/libs/engine/ThreadManager.h b/src/libs/engine/ThreadManager.h index 24ca414c..0325ae19 100644 --- a/src/libs/engine/ThreadManager.h +++ b/src/libs/engine/ThreadManager.h @@ -19,6 +19,8 @@ #include "raul/Thread.h" +using Raul::Thread; + namespace Ingen { diff --git a/src/libs/engine/events/ConnectionEvent.h b/src/libs/engine/events/ConnectionEvent.h index 7328ca91..6e4f11b4 100644 --- a/src/libs/engine/events/ConnectionEvent.h +++ b/src/libs/engine/events/ConnectionEvent.h @@ -57,14 +57,14 @@ private: enum ErrorType { NO_ERROR, PARENT_PATCH_DIFFERENT, PORT_NOT_FOUND, TYPE_MISMATCH }; - Path m_src_port_path; - Path m_dst_port_path; + Raul::Path m_src_port_path; + Raul::Path m_dst_port_path; - Patch* m_patch; - Port* m_src_port; - Port* m_dst_port; + Patch* m_patch; + Port* m_src_port; + Port* m_dst_port; - QueuedEvent* m_typed_event; + QueuedEvent* m_typed_event; ErrorType m_error; }; diff --git a/src/libs/engine/events/RequestMetadataEvent.h b/src/libs/engine/events/RequestMetadataEvent.h index 23db4faf..6b782ed2 100644 --- a/src/libs/engine/events/RequestMetadataEvent.h +++ b/src/libs/engine/events/RequestMetadataEvent.h @@ -43,10 +43,10 @@ public: void post_process(); private: - string m_path; - string m_key; - Atom m_value; - GraphObject* m_object; + string m_path; + string m_key; + Raul::Atom m_value; + GraphObject* m_object; SharedPtr<ClientInterface> m_client; }; diff --git a/src/libs/engine/events/SetMetadataEvent.h b/src/libs/engine/events/SetMetadataEvent.h index a795a115..adf73878 100644 --- a/src/libs/engine/events/SetMetadataEvent.h +++ b/src/libs/engine/events/SetMetadataEvent.h @@ -35,7 +35,7 @@ class GraphObject; class SetMetadataEvent : public QueuedEvent { public: - SetMetadataEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, const string& path, const string& key, const Atom& value); + SetMetadataEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, const string& path, const string& key, const Raul::Atom& value); void pre_process(); void execute(SampleCount nframes, FrameTime start, FrameTime end); @@ -44,7 +44,7 @@ public: private: string m_path; string m_key; - Atom m_value; + Raul::Atom m_value; GraphObject* m_object; }; |