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_client_h_
|
|
|
|
#define _ardour_surface_websockets_client_h_
|
2020-02-20 07:12:36 -05:00
|
|
|
|
2020-08-31 02:28:13 -04:00
|
|
|
#include <set>
|
2020-02-20 07:12:36 -05:00
|
|
|
#include <list>
|
|
|
|
|
|
|
|
#include "message.h"
|
2020-02-23 10:03:59 -05:00
|
|
|
#include "state.h"
|
2020-02-20 07:12:36 -05:00
|
|
|
|
2020-08-30 15:15:07 -04:00
|
|
|
typedef struct lws* Client;
|
|
|
|
|
|
|
|
namespace ArdourSurface {
|
|
|
|
|
2020-02-20 07:12:36 -05:00
|
|
|
typedef std::list<NodeStateMessage> ClientOutputBuffer;
|
|
|
|
|
|
|
|
class ClientContext
|
|
|
|
{
|
2020-02-23 10:03:59 -05:00
|
|
|
public:
|
|
|
|
ClientContext (Client wsi)
|
|
|
|
: _wsi (wsi){};
|
|
|
|
virtual ~ClientContext (){};
|
2020-02-20 07:12:36 -05:00
|
|
|
|
2020-02-23 10:03:59 -05:00
|
|
|
Client wsi () const
|
|
|
|
{
|
|
|
|
return _wsi;
|
|
|
|
}
|
2020-02-20 07:12:36 -05:00
|
|
|
|
2020-02-23 10:03:59 -05:00
|
|
|
bool has_state (const NodeState&);
|
|
|
|
void update_state (const NodeState&);
|
2020-02-20 07:12:36 -05:00
|
|
|
|
2020-02-23 10:03:59 -05:00
|
|
|
ClientOutputBuffer& output_buf ()
|
|
|
|
{
|
|
|
|
return _output_buf;
|
|
|
|
}
|
2020-02-20 07:12:36 -05:00
|
|
|
|
2020-02-23 10:03:59 -05:00
|
|
|
std::string debug_str ();
|
2020-02-20 07:12:36 -05:00
|
|
|
|
2020-02-23 10:03:59 -05:00
|
|
|
private:
|
|
|
|
Client _wsi;
|
2020-02-20 07:12:36 -05:00
|
|
|
|
2020-08-31 02:28:13 -04:00
|
|
|
typedef std::set<NodeState> ClientState;
|
|
|
|
ClientState _state;
|
2020-02-20 07:12:36 -05:00
|
|
|
|
2020-02-23 10:03:59 -05:00
|
|
|
ClientOutputBuffer _output_buf;
|
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_client_h_
|