13
0
livetrax/libs/surfaces/websockets/ardour_websockets.h
2020-02-22 23:10:24 +01:00

99 lines
2.9 KiB
C++

/*
* Copyright (C) 2009-2011 Carl Hetherington <carl@carlh.net>
* Copyright (C) 2009-2017 Paul Davis <paul@linuxaudiosystems.com>
* Copyright (C) 2009 David Robillard <d@drobilla.net>
* Copyright (C) 2013-2016 Robin Gareus <robin@gareus.org>
* Copyright (C) 2015 Johannes Mueller <github@johannes-mueller.org>
* Copyright (C) 2016-2018 Len Ovens <len@ovenwerks.net>
* Copyright (C) 2016 Ben Loftis <ben@harrisonconsoles.com>
* Copyright (C) 2020 Luciano Iam <lucianito@gmail.com>
* 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.
*/
#ifndef ardour_websockets_h
#define ardour_websockets_h
#define ABSTRACT_UI_EXPORTS
#include "pbd/abstract_ui.h"
#include "ardour/plugin.h"
#include "control_protocol/control_protocol.h"
#include "component.h"
#include "strips.h"
#include "globals.h"
#include "server.h"
#include "feedback.h"
#include "dispatcher.h"
#define SURFACE_NAME "WebSockets Server (Experimental)"
#define SURFACE_ID "uri://ardour.org/surfaces/ardour_websockets:0"
namespace ArdourSurface {
struct ArdourWebsocketsUIRequest : public BaseUI::BaseRequestObject {
public:
ArdourWebsocketsUIRequest () {}
~ArdourWebsocketsUIRequest () {}
};
class ArdourWebsockets : public ARDOUR::ControlProtocol,
public AbstractUI<ArdourWebsocketsUIRequest>
{
public:
ArdourWebsockets (ARDOUR::Session&);
virtual ~ArdourWebsockets ();
static void* request_factory (uint32_t);
int set_active (bool);
ARDOUR::Session& ardour_session () { return *session; }
ArdourStrips& strips_component () { return _strips; }
ArdourGlobals& globals_component () { return _globals; }
WebsocketsServer& server_component () { return _server; }
WebsocketsDispatcher& dispatcher_component () { return _dispatcher; }
// ControlProtocol
void stripable_selection_changed () {}
protected:
// BaseUI
void thread_init ();
// AbstractUI
void do_request (ArdourWebsocketsUIRequest*);
private:
ArdourStrips _strips;
ArdourGlobals _globals;
ArdourFeedback _feedback;
WebsocketsServer _server;
WebsocketsDispatcher _dispatcher;
std::vector<SurfaceComponent *> _components;
int start ();
int stop ();
};
} // namespace
#endif // ardour_websockets_h