summaryrefslogtreecommitdiffstats
path: root/src/libs/client/ThreadedSigClientInterface.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-24 19:26:47 +0000
committerDavid Robillard <d@drobilla.net>2007-07-24 19:26:47 +0000
commitbb1c49dfa484db080938cff6f8f70167c9026a1c (patch)
tree6f6382fcbfddfead6d5c32d19977aed8020d32e4 /src/libs/client/ThreadedSigClientInterface.h
parentf0f64e4425acfb8b8633a47faa70f87fc32a4399 (diff)
downloadingen-bb1c49dfa484db080938cff6f8f70167c9026a1c.tar.gz
ingen-bb1c49dfa484db080938cff6f8f70167c9026a1c.tar.bz2
ingen-bb1c49dfa484db080938cff6f8f70167c9026a1c.zip
Consistently rename all C++ files .cpp/.hpp.
Fix (some) inclusion guard names to not clash with other libs. git-svn-id: http://svn.drobilla.net/lad/ingen@613 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/ThreadedSigClientInterface.h')
-rw-r--r--src/libs/client/ThreadedSigClientInterface.h171
1 files changed, 0 insertions, 171 deletions
diff --git a/src/libs/client/ThreadedSigClientInterface.h b/src/libs/client/ThreadedSigClientInterface.h
deleted file mode 100644
index d0cb4e89..00000000
--- a/src/libs/client/ThreadedSigClientInterface.h
+++ /dev/null
@@ -1,171 +0,0 @@
-/* This file is part of Ingen.
- * Copyright (C) 2007 Dave Robillard <http://drobilla.net>
- *
- * Ingen is free software; you can redistribute it and/or modify it under the
- * terms of the GNU General Public License as published by the Free Software
- * Foundation; either version 2 of the License, or (at your option) any later
- * version.
- *
- * Ingen is distributed in the hope that it will be useful, but WITHOUT ANY
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
- * FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- */
-
-#ifndef THREADEDSIGCLIENTINTERFACE_H
-#define THREADEDSIGCLIENTINTERFACE_H
-
-#include <inttypes.h>
-#include <string>
-#include <sigc++/sigc++.h>
-#include "interface/ClientInterface.h"
-#include "SigClientInterface.h"
-#include <raul/SRSWQueue.h>
-#include <raul/Atom.h>
-using std::string;
-
-/** Returns nothing and takes no parameters (because they have all been bound) */
-typedef sigc::slot<void> Closure;
-
-namespace Ingen {
-namespace Client {
-
-
-/** A LibSigC++ signal emitting interface for clients to use.
- *
- * This emits signals (possibly) in a different thread than the ClientInterface
- * functions are called. It must be explicitly driven with the emit_signals()
- * function, which fires all enqueued signals up until the present. You can
- * use this in a GTK idle callback for receiving thread safe engine signals.
- */
-class ThreadedSigClientInterface : public SigClientInterface
-{
-public:
- ThreadedSigClientInterface(uint32_t queue_size)
- : _enabled(true)
- , _sigs(queue_size)
- , response_slot(response_sig.make_slot())
- , error_slot(error_sig.make_slot())
- , new_plugin_slot(new_plugin_sig.make_slot())
- , new_patch_slot(new_patch_sig.make_slot())
- , new_node_slot(new_node_sig.make_slot())
- , new_port_slot(new_port_sig.make_slot())
- , connection_slot(connection_sig.make_slot())
- , patch_enabled_slot(patch_enabled_sig.make_slot())
- , patch_disabled_slot(patch_disabled_sig.make_slot())
- , patch_cleared_slot(patch_cleared_sig.make_slot())
- , object_destroyed_slot(object_destroyed_sig.make_slot())
- , object_renamed_slot(object_renamed_sig.make_slot())
- , disconnection_slot(disconnection_sig.make_slot())
- , metadata_update_slot(metadata_update_sig.make_slot())
- , control_change_slot(control_change_sig.make_slot())
- , program_add_slot(program_add_sig.make_slot())
- , program_remove_slot(program_remove_sig.make_slot())
- {}
-
- void enable() { _enabled = true; }
- void disable() { _enabled = false ; }
-
- // FIXME: make this insert bundle-boundary-events, where the GTK thread
- // process all events between start and finish in one cycle, guaranteed
- // (no more node jumping)
- void bundle_begin() {}
- void bundle_end() {}
-
- void transfer_begin() {}
- void transfer_end() {}
-
- void num_plugins(uint32_t num) { _num_plugins = num; }
-
- void response(int32_t id, bool success, string msg)
- { push_sig(sigc::bind(response_slot, id, success, msg)); }
-
- void error(string msg)
- { push_sig(sigc::bind(error_slot, msg)); }
-
- void new_plugin(string uri, string type_uri, string name)
- { push_sig(sigc::bind(new_plugin_slot, uri, type_uri, name)); }
-
- void new_patch(string path, uint32_t poly)
- { push_sig(sigc::bind(new_patch_slot, path, poly)); }
-
- void new_node(string plugin_uri, string node_path, bool is_polyphonic, uint32_t num_ports)
- { push_sig(sigc::bind(new_node_slot, plugin_uri, node_path, is_polyphonic, num_ports)); }
-
- void new_port(string path, string data_type, bool is_output)
- { push_sig(sigc::bind(new_port_slot, path, data_type, is_output)); }
-
- void connection(string src_port_path, string dst_port_path)
- { push_sig(sigc::bind(connection_slot, src_port_path, dst_port_path)); }
-
- void object_destroyed(string path)
- { push_sig(sigc::bind(object_destroyed_slot, path)); }
-
- void patch_enabled(string path)
- { push_sig(sigc::bind(patch_enabled_slot, path)); }
-
- void patch_disabled(string path)
- { push_sig(sigc::bind(patch_disabled_slot, path)); }
-
- void patch_cleared(string path)
- { push_sig(sigc::bind(patch_cleared_slot, path)); }
-
- void object_renamed(string old_path, string new_path)
- { push_sig(sigc::bind(object_renamed_slot, old_path, new_path)); }
-
- void disconnection(string src_port_path, string dst_port_path)
- { push_sig(sigc::bind(disconnection_slot, src_port_path, dst_port_path)); }
-
- void metadata_update(string path, string key, Raul::Atom value)
- { push_sig(sigc::bind(metadata_update_slot, path, key, value)); }
-
- void control_change(string port_path, float value)
- { push_sig(sigc::bind(control_change_slot, port_path, value)); }
-
- void program_add(string path, uint32_t bank, uint32_t program, string name)
- { push_sig(sigc::bind(program_add_slot, path, bank, program, name)); }
-
- void program_remove(string path, uint32_t bank, uint32_t program)
- { push_sig(sigc::bind(program_remove_slot, path, bank, program)); }
-
- /** Process all queued events - Called from GTK thread to emit signals. */
- bool emit_signals();
-
-private:
- void push_sig(Closure ev);
-
- bool _enabled;
-
- Raul::SRSWQueue<Closure> _sigs;
- uint32_t _num_plugins;
-
- sigc::slot<void> bundle_begin_slot;
- sigc::slot<void> bundle_end_slot;
- sigc::slot<void, uint32_t> num_plugins_slot;
- sigc::slot<void, int32_t, bool, string> response_slot;
- sigc::slot<void, string> error_slot;
- sigc::slot<void, string, string, string> new_plugin_slot;
- sigc::slot<void, string, uint32_t> new_patch_slot;
- sigc::slot<void, string, string, bool, int> new_node_slot;
- sigc::slot<void, string, string, bool> new_port_slot;
- sigc::slot<void, string, string> connection_slot;
- sigc::slot<void, string> patch_enabled_slot;
- sigc::slot<void, string> patch_disabled_slot;
- sigc::slot<void, string> patch_cleared_slot;
- sigc::slot<void, string> object_destroyed_slot;
- sigc::slot<void, string, string> object_renamed_slot;
- sigc::slot<void, string, string> disconnection_slot;
- sigc::slot<void, string, string, Raul::Atom> metadata_update_slot;
- sigc::slot<void, string, float> control_change_slot;
- sigc::slot<void, string, uint32_t, uint32_t, string> program_add_slot;
- sigc::slot<void, string, uint32_t, uint32_t> program_remove_slot;
-};
-
-
-} // namespace Client
-} // namespace Ingen
-
-#endif