|
@@ -3,94 +3,11 @@
|
|
|
|
|
|
#include <boost/asio.hpp>
|
|
|
#include <boost/asio/ip/basic_resolver.hpp>
|
|
|
-#include <string>
|
|
|
#include <map>
|
|
|
+#include <string>
|
|
|
|
|
|
#define MAX_BUFFER 256
|
|
|
|
|
|
-/*
|
|
|
-My ideas on how to do this.
|
|
|
- */
|
|
|
-
|
|
|
-struct Request {
|
|
|
- int x, y;
|
|
|
- std::string str;
|
|
|
-};
|
|
|
-
|
|
|
-struct Result {
|
|
|
- int x;
|
|
|
- std::string str;
|
|
|
-};
|
|
|
-
|
|
|
-typedef std::function<void (const struct Result&)> ResultCallbackFunc;
|
|
|
-typedef std::function<void (const struct Request&, ResultCallbackFunc)> CommandFunc;
|
|
|
-
|
|
|
-// Yes, this needs to be in session.cpp (not the header) Whoops!
|
|
|
-// std::map<std::string, CommandFunc> commands;
|
|
|
-
|
|
|
-// call_command("goto", Request{1, 0, ""}, my_callback );
|
|
|
-void register_command(const std::string name, CommandFunc command);
|
|
|
-bool call_command(const std::string name, const struct Request ¶m, ResultCallbackFunc callback);
|
|
|
-// look up name, if found, call it with params, callback. return true (success)
|
|
|
-// otherwise fail (false).
|
|
|
-
|
|
|
-typedef std::function<void (const std::string &)> StringFunc;
|
|
|
-
|
|
|
-class OldState {
|
|
|
- StringFunc server_line;
|
|
|
- StringFunc server_prompt;
|
|
|
- StringFunc client_input;
|
|
|
- bool server_to_client;
|
|
|
- bool client_to_server;
|
|
|
-};
|
|
|
-
|
|
|
-class Dispatcher {
|
|
|
-
|
|
|
- std::function<void (std::string)> server_line;
|
|
|
- std::function<void (std::string)> server_prompt;
|
|
|
- std::function<void (std::string)> client_input;
|
|
|
- bool server_to_client;
|
|
|
- bool client_to_server;
|
|
|
-
|
|
|
- OldState save_state(void);
|
|
|
- void restore_state(OldState);
|
|
|
-};
|
|
|
-
|
|
|
-
|
|
|
-/*
|
|
|
-Dispatch Manager:
|
|
|
-
|
|
|
-
|
|
|
-Handles:
|
|
|
- [ ] Does whatever we received from the server get sent to the client?
|
|
|
- [SHOW-CLIENT]
|
|
|
- [ ] Where does client input go? [CLIENT]
|
|
|
- [ ] Client input go directly to the server? [TALK-DIRECT]
|
|
|
- [ ] Where does server input go? [SERVER-LINE] [SERVER-PROMPT]
|
|
|
-
|
|
|
-I'm thinking a dispatcher would know how to:
|
|
|
- [ ] Save the current state (and current dispatcher/setup).
|
|
|
- [ ] Set itself up with the director.
|
|
|
- [ ] Restore the previous state (when destructing -- but only if it is the
|
|
|
- current active receiver).
|
|
|
- [ ] Take a command [goto SECTOR][trade FOE] (fuel organics equipment),
|
|
|
- and return a result. [1 SUCCESS][0 FAIL][-1 USER ABORTED]
|
|
|
- [ ] Tell director where results should go (callback).
|
|
|
- [ ] Tell director where callback messages/events should go. (dynamic)
|
|
|
-
|
|
|
-
|
|
|
-Director:
|
|
|
- [ ] Handles server lines, server prompt, client input.
|
|
|
- [ ] Has to_client, to_server.
|
|
|
- [ ] Has low-level flags for show_client, talk-direct
|
|
|
- [ ] Has a std::stack of dispatchers. Uses .top() for calls.
|
|
|
- [ ] Reset -- would pop all but the last/master dispatchers.
|
|
|
-
|
|
|
-
|
|
|
-It seems like the director wants to be the session, or at least parts of it.
|
|
|
-
|
|
|
- */
|
|
|
-
|
|
|
/*
|
|
|
The Session:
|
|
|
|
|
@@ -123,7 +40,9 @@ private:
|
|
|
void set_timer(void);
|
|
|
void reset_timer(void);
|
|
|
void on_timer(const boost::system::error_code error);
|
|
|
+ void stayin_alive(const boost::system::error_code error);
|
|
|
int time_ms;
|
|
|
+ int keepalive_secs;
|
|
|
|
|
|
// FOR NOW: These will go into the director
|
|
|
bool show_client = true;
|
|
@@ -156,7 +75,7 @@ private:
|
|
|
* not matter at all, I'm thinking milliseconds here!
|
|
|
*/
|
|
|
boost::asio::high_resolution_timer timer_;
|
|
|
-
|
|
|
+ boost::asio::high_resolution_timer keep_alive_;
|
|
|
/**
|
|
|
* What characters have been received from the server,
|
|
|
* that weren't \n terminated?
|
|
@@ -170,7 +89,7 @@ private:
|
|
|
* a hard time tracking those.
|
|
|
*
|
|
|
*/
|
|
|
- int server_sent;
|
|
|
+ // int server_sent;
|
|
|
|
|
|
/**
|
|
|
* The client read buffer.
|
|
@@ -240,11 +159,10 @@ private:
|
|
|
};
|
|
|
|
|
|
// The simple way to get the boost logging to log file and line number
|
|
|
-// information.
|
|
|
+// information. [Let the BUGZ_LOG macro do it!]
|
|
|
#include <iomanip>
|
|
|
#include <string.h>
|
|
|
|
|
|
-// I don't gain anything from this being constexpr
|
|
|
const char *trim_path(const char *filepath);
|
|
|
|
|
|
#define BUGZ_LOG(severity) \
|