Change libwebsockets APIs
[profile/ivi/automotive-message-broker.git] / plugins / websocket / websocketsink.h
1 /*
2         Copyright (C) 2012  Intel Corporation
3
4         This library is free software; you can redistribute it and/or
5         modify it under the terms of the GNU Lesser General Public
6         License as published by the Free Software Foundation; either
7         version 2.1 of the License, or (at your option) any later version.
8
9         This library is distributed in the hope that it will be useful,
10         but WITHOUT ANY WARRANTY; without even the implied warranty of
11         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12         Lesser General Public License for more details.
13
14         You should have received a copy of the GNU Lesser General Public
15         License along with this library; if not, write to the Free Software
16         Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
17 */
18
19
20 #ifndef WEBSOCKETSINK_H
21 #define WEBSOCKETSINK_H
22
23 #include <glib.h>
24 #include <abstractroutingengine.h>
25 #include "abstractsink.h"
26 #include <libwebsockets.h>
27
28 class WebSocketSink : public AbstractSink
29 {
30
31 public:
32         WebSocketSink(AbstractRoutingEngine* re, lws *wsi, string uuid, VehicleProperty::Property property, std::string ambdproperty);
33         ~WebSocketSink();
34         const string uuid() ;
35         void propertyChanged(AbstractPropertyType *value);
36         void supportedChanged(const PropertyList & supportedProperties);
37         PropertyList subscriptions();
38         lws *socket() { return m_wsi; }
39
40 private:
41         char *webSocketBuffer;
42         string m_amdbproperty;
43         AbstractRoutingEngine *m_re;
44         lws *m_wsi;
45         string m_uuid;
46         string m_property;
47 };
48
49 #endif // WEBSOCKETSINK_H