2020-02-20 07:12:36 -05:00
|
|
|
/*
|
2021-06-13 10:32:18 -04:00
|
|
|
* Copyright (C) 2020 Luciano Iam <oss@lucianoiam.com>
|
2020-02-20 07:12:36 -05:00
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 more 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 Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
2020-02-23 10:13:22 -05:00
|
|
|
#ifndef _ardour_surface_websockets_dispatcher_h_
|
|
|
|
#define _ardour_surface_websockets_dispatcher_h_
|
2020-02-20 07:12:36 -05:00
|
|
|
|
2020-02-20 17:16:02 -05:00
|
|
|
#include <boost/unordered_map.hpp>
|
2020-02-20 07:12:36 -05:00
|
|
|
|
|
|
|
#include "client.h"
|
2020-02-23 10:03:59 -05:00
|
|
|
#include "component.h"
|
2020-02-20 07:12:36 -05:00
|
|
|
#include "message.h"
|
|
|
|
|
2020-08-30 15:15:07 -04:00
|
|
|
namespace ArdourSurface {
|
|
|
|
|
2020-02-20 07:12:36 -05:00
|
|
|
class WebsocketsDispatcher : public SurfaceComponent
|
|
|
|
{
|
2020-02-23 10:03:59 -05:00
|
|
|
public:
|
|
|
|
WebsocketsDispatcher (ArdourSurface::ArdourWebsockets& surface)
|
|
|
|
: SurfaceComponent (surface){};
|
|
|
|
virtual ~WebsocketsDispatcher (){};
|
|
|
|
|
|
|
|
void dispatch (Client, const NodeStateMessage&);
|
|
|
|
void update_all_nodes (Client);
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef void (WebsocketsDispatcher::*DispatcherMethod) (Client, const NodeStateMessage&);
|
|
|
|
typedef boost::unordered_map<std::string, DispatcherMethod> NodeMethodMap;
|
|
|
|
|
|
|
|
static NodeMethodMap _node_to_method;
|
|
|
|
|
2020-05-30 13:08:27 -04:00
|
|
|
void transport_tempo_handler (Client, const NodeStateMessage&);
|
2020-04-18 08:56:46 -04:00
|
|
|
void transport_roll_handler (Client client, const NodeStateMessage&);
|
2020-05-30 13:08:27 -04:00
|
|
|
void transport_record_handler (Client client, const NodeStateMessage&);
|
2020-02-23 10:03:59 -05:00
|
|
|
void strip_gain_handler (Client, const NodeStateMessage&);
|
|
|
|
void strip_pan_handler (Client, const NodeStateMessage&);
|
|
|
|
void strip_mute_handler (Client, const NodeStateMessage&);
|
|
|
|
void strip_plugin_enable_handler (Client, const NodeStateMessage&);
|
|
|
|
void strip_plugin_param_value_handler (Client, const NodeStateMessage&);
|
|
|
|
|
|
|
|
void update (Client, std::string, TypedValue);
|
|
|
|
void update (Client, std::string, uint32_t, TypedValue);
|
|
|
|
void update (Client, std::string, uint32_t, uint32_t, TypedValue);
|
|
|
|
void update (Client, std::string, uint32_t, uint32_t, uint32_t, TypedValue);
|
|
|
|
void update (Client, std::string, const AddressVector&, const ValueVector&);
|
2020-02-20 07:12:36 -05:00
|
|
|
};
|
|
|
|
|
2020-08-30 15:15:07 -04:00
|
|
|
} // namespace ArdourSurface
|
|
|
|
|
2020-04-09 09:49:06 -04:00
|
|
|
#endif // _ardour_surface_websockets_dispatcher_h_
|