FlightGear next
PropertyChangeWebsocket.hxx
Go to the documentation of this file.
1// PropertyChangeWebsocket.hxx -- A websocket for propertychangelisteners
2//
3// Written by Torsten Dreyer, started April 2014.
4//
5// Copyright (C) 2014 Torsten Dreyer
6//
7// This program is free software; you can redistribute it and/or
8// modify it under the terms of the GNU General Public License as
9// published by the Free Software Foundation; either version 2 of the
10// License, or (at your option) any later version.
11//
12// This program is distributed in the hope that it will be useful, but
13// WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15// General Public License for more details.
16//
17// You should have received a copy of the GNU General Public License
18// along with this program; if not, write to the Free Software
19// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20
21#ifndef PROPERTYCHANGEWEBSOCKET_HXX_
22#define PROPERTYCHANGEWEBSOCKET_HXX_
23
24#include "Websocket.hxx"
25#include <simgear/props/props.hxx>
26
27#include <vector>
28
29namespace flightgear {
30namespace http {
31
33
35public:
36 PropertyChangeWebsocket(PropertyChangeObserver * propertyChangeObserver);
38 virtual void close();
39 virtual void handleRequest(const HTTPRequest & request, WebsocketWriter & writer);
40 virtual void poll(WebsocketWriter & writer);
41
42private:
43 unsigned id;
44 PropertyChangeObserver * _propertyChangeObserver;
45
46 void handleGetCommand(const string_list& nodes, WebsocketWriter &writer);
47
48 class WatchedNodesList: public std::vector<SGPropertyNode_ptr> {
49 public:
50 void handleCommand(const std::string & command, const std::string & node, PropertyChangeObserver * propertyChangeObserver);
51 };
52
53 WatchedNodesList _watchedNodes;
54 double _minTriggerInterval;
55 double _lastTrigger;
56};
57
58}
59}
60
61#endif /* PROPERTYCHANGEWEBSOCKET_HXX_ */
virtual void handleRequest(const HTTPRequest &request, WebsocketWriter &writer)
PropertyChangeWebsocket(PropertyChangeObserver *propertyChangeObserver)
virtual void poll(WebsocketWriter &writer)
std::vector< std::string > string_list
Definition globals.hxx:36
FlightPlan.hxx - defines a full flight-plan object, including departure, cruise, arrival information ...
Definition Addon.cxx:53
SGCommandMgr::command_t command