mirror of
https://github.com/nasa/trick.git
synced 2025-05-29 21:54:31 +00:00
* Incorporate Webserver into Trick, so one only has to include HttpServer.sm * Tweaks in default index.html file * Rename HTTPServer.sm to WebServer.sm * Rename http_server to WebServer * Add --retry to curl invocations in HttpServer makefile. * Fix #include in VariableServerVariable.hh * Include cleanup and curl tweaks in the hopes of making Jenkins happy. * Doh! problem in makefile masked by preinstalled mongoose in usr/local/lib * DIE Make Bug DIE * Fix include in WebServer.sm * WebServer.sm constructor name * Don't SWIG mongoose.h * Compile with -std=c++11 * Attempt to fix race condition in makefile * makefie tweek * Fix trick library name problem for Centos and Redhat
46 lines
1.4 KiB
C++
46 lines
1.4 KiB
C++
/*************************************************************************
|
|
PURPOSE: (Represent the state of a variable server websocket connection.)
|
|
**************************************************************************/
|
|
|
|
#ifndef WSSESSION_HH
|
|
#define WSSESSION_HH
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include "mongoose/mongoose.h"
|
|
#include "trick/WebSocketSession.hh"
|
|
#include "VariableServerVariable.hh"
|
|
|
|
class VariableServerSession : public WebSocketSession {
|
|
public:
|
|
VariableServerSession(struct mg_connection *nc);
|
|
~VariableServerSession();
|
|
void marshallData(); /* -- base */
|
|
void sendMessage(); /* -- base */
|
|
int handleMessage(std::string); /* -- base */
|
|
|
|
void setTimeInterval(unsigned int milliseconds);
|
|
void addVariable(char* vname);
|
|
void stageValues();
|
|
void pause();
|
|
void unpause();
|
|
void clear();
|
|
void exit();
|
|
|
|
static int bad_ref_int ;
|
|
|
|
private:
|
|
int sendErrorMessage(const char* fmt, ... );
|
|
REF2* make_error_ref(const char* in_name);
|
|
double stageTime;
|
|
bool dataStaged;
|
|
|
|
std::vector<VariableServerVariable*> sessionVariables;
|
|
bool cyclicSendEnabled;
|
|
long long nextTime;
|
|
long long intervalTimeTics;
|
|
};
|
|
|
|
WebSocketSession* makeVariableServerSession( struct mg_connection *nc );
|
|
#endif
|