mirror of
https://github.com/nasa/trick.git
synced 2025-01-09 14:32:53 +00:00
14a75508a3
Changed all header file once include variables to follow the same naming convention and not start with any underscores. Also deleted old incorrect copyright notices. Also removed $Id: tags from all files. Fixes #14. Fixes #22.
71 lines
2.0 KiB
C++
71 lines
2.0 KiB
C++
/*
|
|
PURPOSE:
|
|
(JSONVariableServerThread)
|
|
*/
|
|
|
|
#ifndef JSONVARIABLESERVERTHREAD_HH
|
|
#define JSONVARIABLESERVERTHREAD_HH
|
|
|
|
#include <pthread.h>
|
|
#include "trick_utils/comm/include/tc.h"
|
|
#include "sim_services/ThreadBase/include/ThreadBase.hh"
|
|
|
|
namespace Trick {
|
|
|
|
/**
|
|
This class provides variable server command processing on a separate thread for each client.
|
|
@author Alex Lin
|
|
*/
|
|
class JSONVariableServerThread : public Trick::ThreadBase {
|
|
|
|
public:
|
|
/**
|
|
@brief Constructor.
|
|
@param listen_dev - the TCDevice set up in listen()
|
|
*/
|
|
JSONVariableServerThread(TCDevice * in_listen_dev ) ;
|
|
|
|
virtual ~JSONVariableServerThread() ;
|
|
|
|
/**
|
|
@brief The main loop of the variable server thread that reads and processes client commands.
|
|
@return always 0
|
|
*/
|
|
virtual void * thread_body() ;
|
|
|
|
/**
|
|
@brief parses the incoming request and returns the result.
|
|
*/
|
|
void parse_request() ;
|
|
|
|
protected:
|
|
|
|
/** The trickcomm device used for the connection to the client.\n */
|
|
TCDevice connection ; /**< trick_io(**) */
|
|
|
|
/** Maximum size of incoming message\n */
|
|
static const unsigned int MAX_CMD_LEN = 200000 ;
|
|
|
|
/** hostname for connection from listen device\n */
|
|
std::string hostname ; /**< trick_io(**) */
|
|
|
|
/** port for connection from listen device\n */
|
|
unsigned short port ; /**< trick_io(**) */
|
|
|
|
/** The command area\n */
|
|
char * incoming_msg ; /**< trick_io(**) */
|
|
|
|
/** Return the top page */
|
|
int get_top_page(std::stringstream & body) ;
|
|
|
|
/** Process all pages starting with /commands */
|
|
int get_commands(std::stringstream & body, char * path ) ;
|
|
|
|
/** Process all pages starting with /vars */
|
|
int get_vars(std::stringstream & body, char * path ) ;
|
|
} ;
|
|
}
|
|
|
|
#endif
|
|
|