|
@@ -31,11 +31,11 @@ void Dispatch::chain_client_input(const std::string &input) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-void Dispatch::chain_server_line(const std::string &line) {
|
|
|
|
|
|
+void Dispatch::chain_server_line(const std::string &line, const std::string &raw_line) {
|
|
if (chain) {
|
|
if (chain) {
|
|
- chain->chain_server_line(line);
|
|
|
|
|
|
+ chain->chain_server_line(line, raw_line);
|
|
} else {
|
|
} else {
|
|
- server_line(line);
|
|
|
|
|
|
+ server_line(line, raw_line);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -47,7 +47,7 @@ void Dispatch::chain_server_prompt(const std::string &prompt) {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-void Dispatch::server_line(const std::string &line) {}
|
|
|
|
|
|
+void Dispatch::server_line(const std::string &line, const std::string &raw_line) {}
|
|
void Dispatch::server_prompt(const std::string &prompt) {}
|
|
void Dispatch::server_prompt(const std::string &prompt) {}
|
|
void Dispatch::client_input(const std::string &input) {}
|
|
void Dispatch::client_input(const std::string &input) {}
|
|
|
|
|
|
@@ -166,7 +166,7 @@ void MainDispatch::deactivate(void) {
|
|
notify();
|
|
notify();
|
|
}
|
|
}
|
|
|
|
|
|
-void MainDispatch::server_line(const std::string &line) {
|
|
|
|
|
|
+void MainDispatch::server_line(const std::string &line, const std::string &raw_line) {
|
|
BUGZ_LOG(info) << "MDSL: " << line;
|
|
BUGZ_LOG(info) << "MDSL: " << line;
|
|
to_client("SL: ");
|
|
to_client("SL: ");
|
|
to_client(line);
|
|
to_client(line);
|
|
@@ -211,7 +211,11 @@ void InputDispatch::activate(void) {
|
|
|
|
|
|
void InputDispatch::deactivate(void) { notify(); }
|
|
void InputDispatch::deactivate(void) { notify(); }
|
|
|
|
|
|
-void InputDispatch::server_line(const std::string &line) {}
|
|
|
|
|
|
+void InputDispatch::server_line(const std::string &line, const std::string &raw_line) {
|
|
|
|
+ // TO FIX:
|
|
|
|
+ // clear user input and input prompt, display server_line,
|
|
|
|
+ // and re-display prompt.
|
|
|
|
+}
|
|
// void InputDispatch::server_prompt(const std::string &prompt) {}
|
|
// void InputDispatch::server_prompt(const std::string &prompt) {}
|
|
|
|
|
|
void InputDispatch::client_input(const std::string &cinput) {
|
|
void InputDispatch::client_input(const std::string &cinput) {
|
|
@@ -358,7 +362,10 @@ void MenuDispatch::calculate_widths(void) {
|
|
instant = max_option_width == 1;
|
|
instant = max_option_width == 1;
|
|
}
|
|
}
|
|
|
|
|
|
-void MenuDispatch::server_line(const std::string &line) {}
|
|
|
|
|
|
+void MenuDispatch::server_line(const std::string &line, const std::string &raw_line) {
|
|
|
|
+ // TODO:
|
|
|
|
+ // Clear prompt, display raw server line, restore prompt.
|
|
|
|
+}
|
|
|
|
|
|
void MenuDispatch::client_input(const std::string &cinput) {
|
|
void MenuDispatch::client_input(const std::string &cinput) {
|
|
for (auto const ch : cinput) {
|
|
for (auto const ch : cinput) {
|
|
@@ -453,7 +460,7 @@ void CoreDispatch::deactivate(void) {
|
|
notify();
|
|
notify();
|
|
}
|
|
}
|
|
|
|
|
|
-void CoreDispatch::server_line(const std::string &line) {}
|
|
|
|
|
|
+void CoreDispatch::server_line(const std::string &line, const std::string &raw_line) {}
|
|
void CoreDispatch::server_prompt(const std::string &prompt) {}
|
|
void CoreDispatch::server_prompt(const std::string &prompt) {}
|
|
void CoreDispatch::client_input(const std::string &input) {
|
|
void CoreDispatch::client_input(const std::string &input) {
|
|
BUGZ_LOG(warning) << "Got: " << input << " prompt=" << get_prompt();
|
|
BUGZ_LOG(warning) << "Got: " << input << " prompt=" << get_prompt();
|