123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- #ifndef IOMAN_H
- #define IOMAN_H
- #include "cmdman.h"
- #include "fileman.h"
- #include <boost/asio.hpp>
- #include <boost/asio/ssl.hpp>
- #include <condition_variable>
- #include <json/json.h>
- #include <mutex>
- #include <string>
- #include <thread>
- #include <vector>
- using boost::asio::ip::tcp;
- /**
- * @class IoMan
- *
- * Input/Output manager
- *
- * Provides the glue logic for getting user and network input
- * as well as providing user and network output
- */
- class IoMan {
- /* this is technically private and protected stuff which needs to be public
- * for the readline callback */
- public:
- /**
- * Type of message to be output
- */
- enum OutMsgType { normal, error, debug };
- /**
- * Output msg to the user, treating it as type
- */
- virtual void printMessage(std::string msg, OutMsgType type);
- /**
- * Flag wether to keep the main thread running
- * Matching mutex to provide syncthonizes access
- */
- bool runmain;
- std::mutex mainmutex;
- /**
- * Vector to hold input generated/fetched locally (e.g. from the user)
- * Matching condition variable to wake up waiting threads
- * Matching mutex to provide synchronized access
- */
- std::mutex localmutex;
- std::vector<std::string> localinput;
- std::condition_variable localcv;
- boost::system::error_code errcode;
- protected:
- /**
- * Prompt messages for readline prompt
- */
- virtual void printWelcomeMessage() = 0;
- virtual std::string getCmdPrompt() = 0;
- /**
- * The IP and port to connect to
- * Flag telling wether one is connected
- */
- std::string ipstring;
- unsigned short port;
- bool connected;
- /**
- * Thread handles for processing local and network input as well as generating
- * responses to both Matching mutexes for the flags wether the threads should
- * keep running Function prototypes for the main thread functions
- */
- std::thread tinput, tnetwork, tresponse;
- std::mutex inputmutex, networkmutex, responsemutex;
- bool runinput, runnetwork, runresponse;
- void networkMain();
- void inputMain();
- void responseMain();
- /**
- * Instances of CmdMan and FileMan to process user input and handle File I/O
- */
- CmdMan cmdman;
- FileMan fileman;
- virtual void handleInCmdResponse(CmdMan::CmdRet cmdret);
- virtual void handleOutCmdResponse(CmdMan::CmdRet cmdret, vector<string> &toput);
- tcp::socket *tcpsock;
- boost::asio::ssl::stream<tcp::socket &> *sslsock;
- bool usessl;
- private:
- /**
- * Internal state to provide class-wide asio networking functionality
- */
- boost::asio::io_service ios;
- boost::asio::streambuf recvbuf;
- boost::asio::ssl::context *sslctx;
- /**
- * Class-wide json functionality
- */
- Json::CharReader *reader;
- Json::StreamWriterBuilder wbuilder;
- string jsonerror;
- /**
- * Vector to hold preprocessed input from the network
- * Matching condition variable to wake up waiting threads
- * Matching mutex to provide synchronized access
- */
- std::vector<Json::Value> netinput;
- std::mutex netmutex;
- std::condition_variable netcv;
- /**
- * Tokenizes input based on space as seperator
- * Respects double-quoted tokens
- * Returns a vector with the tokens as elements in order
- */
- std::vector<std::string> tokenizeInput(std::string in);
- public:
- /**
- * Constructor and destructor
- */
- IoMan(bool enablessl);
- virtual ~IoMan();
- /**
- * Establish connection to server and perform vesion check
- * Return true if successful, false otherwise
- */
- virtual bool init();
- /**
- * Main loop, call init first
- */
- virtual void run();
- /**
- * Establish connection to server
- * Return true if successful, false otherwise
- */
- bool connect();
- /**
- * Disconnect from a connected server
- */
- void disconnect();
- };
- #endif
|