|
@@ -1,44 +1,65 @@
|
|
|
|
+#include "dispatchers.h"
|
|
|
|
+
|
|
#include <boost/format.hpp>
|
|
#include <boost/format.hpp>
|
|
#include <cctype>
|
|
#include <cctype>
|
|
|
|
|
|
#include "boxes.h"
|
|
#include "boxes.h"
|
|
-#include "dispatchers.h"
|
|
|
|
#include "logging.h"
|
|
#include "logging.h"
|
|
|
|
|
|
-Dispatch::Dispatch(Session *s) : sess{s} {};
|
|
|
|
-
|
|
|
|
|
|
+Dispatch::Dispatch(Director &d) : director{d} {};
|
|
Dispatch::~Dispatch(){};
|
|
Dispatch::~Dispatch(){};
|
|
|
|
|
|
-void Dispatch::to_server(const std::string &send) { sess->to_server(send); }
|
|
|
|
-void Dispatch::to_client(const std::string &send) { sess->to_client(send); }
|
|
|
|
-const std::string &Dispatch::get_prompt(void) { return sess->get_prompt(); }
|
|
|
|
|
|
+void Dispatch::to_server(const std::string &send) { director.to_server(send); }
|
|
|
|
+void Dispatch::to_client(const std::string &send) { director.to_client(send); }
|
|
|
|
+const std::string &Dispatch::get_prompt(void) {
|
|
|
|
+ return director.current_prompt;
|
|
|
|
+}
|
|
|
|
|
|
void Dispatch::setNotify(notifyFunc nf) { notify_ = nf; }
|
|
void Dispatch::setNotify(notifyFunc nf) { notify_ = nf; }
|
|
|
|
|
|
void Dispatch::notify(void) {
|
|
void Dispatch::notify(void) {
|
|
- if (notify_) {
|
|
|
|
- sess->post(notify_);
|
|
|
|
- notify_ = nullptr;
|
|
|
|
|
|
+ if (director.post) {
|
|
|
|
+ director.post(notify_);
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void Dispatch::chain_client_input(const std::string &input) {
|
|
|
|
+ if (chain) {
|
|
|
|
+ chain->chain_client_input(input);
|
|
|
|
+ } else {
|
|
|
|
+ client_input(input);
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void Dispatch::chain_server_line(const std::string &line) {
|
|
|
|
+ if (chain) {
|
|
|
|
+ chain->chain_server_line(line);
|
|
|
|
+ } else {
|
|
|
|
+ server_line(line);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-MainDispatch::MainDispatch(Session *s) : Dispatch{s}, id{s}, md{s} {
|
|
|
|
|
|
+void Dispatch::chain_server_prompt(const std::string &prompt) {
|
|
|
|
+ if (chain) {
|
|
|
|
+ chain->chain_server_prompt(prompt);
|
|
|
|
+ } else {
|
|
|
|
+ server_prompt(prompt);
|
|
|
|
+ }
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+void Dispatch::server_line(const std::string &line) {}
|
|
|
|
+void Dispatch::server_prompt(const std::string &prompt) {}
|
|
|
|
+void Dispatch::client_input(const std::string &input) {}
|
|
|
|
+
|
|
|
|
+MainDispatch::MainDispatch(Director &d) : Dispatch{d}, id{d}, md{d} {
|
|
BUGZ_LOG(warning) << "MainDispatch()";
|
|
BUGZ_LOG(warning) << "MainDispatch()";
|
|
}
|
|
}
|
|
|
|
|
|
MainDispatch::~MainDispatch() { BUGZ_LOG(warning) << "~MainDispatch()"; }
|
|
MainDispatch::~MainDispatch() { BUGZ_LOG(warning) << "~MainDispatch()"; }
|
|
|
|
|
|
void MainDispatch::activate(void) {
|
|
void MainDispatch::activate(void) {
|
|
- // how to set this event to our method?
|
|
|
|
- sess->emit_server_line = [this](const std::string &s) { server_line(s); };
|
|
|
|
- sess->emit_server_prompt = [this](const std::string &s) { server_prompt(s); };
|
|
|
|
- sess->emit_client_input = nullptr;
|
|
|
|
- // sess->emit_client_input = [this](const std::string &s) { client_input(s);
|
|
|
|
- // };
|
|
|
|
- sess->show_client = false; // don not auto-send server to client
|
|
|
|
- sess->talk_direct = false; // do not auto-send client to server
|
|
|
|
count = 0;
|
|
count = 0;
|
|
- old_prompt = sess->get_prompt();
|
|
|
|
|
|
+ old_prompt = get_prompt();
|
|
|
|
|
|
/*
|
|
/*
|
|
╔══════════════════════════════╗
|
|
╔══════════════════════════════╗
|
|
@@ -86,10 +107,11 @@ void MainDispatch::have_input(void) {
|
|
|
|
|
|
// md.menu_prompt = "\x1b[0;31;47m\xdb\xb2\xb1\xb0\x1b[0;30;47m RED
|
|
// md.menu_prompt = "\x1b[0;31;47m\xdb\xb2\xb1\xb0\x1b[0;30;47m RED
|
|
// GREEN\x1b[37;42m\xdb\xb2\xb1\xb0\x1b[0m : ";
|
|
// GREEN\x1b[37;42m\xdb\xb2\xb1\xb0\x1b[0m : ";
|
|
- const char *CP437_GRADIENT = "\xdb\xb2\xb1\xb0 "; // 100, 75, 50, 25, 0
|
|
|
|
|
|
+ const char *CP437_GRADIENT = "\xdb\xb2\xb1\xb0 "; // 100, 75, 50, 25, 0
|
|
|
|
|
|
- md.menu_prompt = "\x1b[0;31;40m\xdb\xb2\xb1\xb0 \x1b[31;40mRED "
|
|
|
|
- "\x1b[32;40mGREEN\x1b[30;42m\xdb\xb2\xb1\xb0 \x1b[0m : ";
|
|
|
|
|
|
+ md.menu_prompt =
|
|
|
|
+ "\x1b[0;31;40m\xdb\xb2\xb1\xb0 \x1b[31;40mRED "
|
|
|
|
+ "\x1b[32;40mGREEN\x1b[30;42m\xdb\xb2\xb1\xb0 \x1b[0m : ";
|
|
md.lazy = true;
|
|
md.lazy = true;
|
|
md.menu = {{"A", "Apple"}, {"B", "Blue"}, {"R", "Rabbit"}, {"Z", "ZOOO!"}};
|
|
md.menu = {{"A", "Apple"}, {"B", "Blue"}, {"R", "Rabbit"}, {"Z", "ZOOO!"}};
|
|
md.setNotify([this]() { this->menu_choice(); });
|
|
md.setNotify([this]() { this->menu_choice(); });
|
|
@@ -138,12 +160,9 @@ void MainDispatch::menu_choice(void) {
|
|
|
|
|
|
void MainDispatch::deactivate(void) {
|
|
void MainDispatch::deactivate(void) {
|
|
// Since we're the main thing there --
|
|
// Since we're the main thing there --
|
|
- sess->emit_server_line = nullptr;
|
|
|
|
- sess->emit_server_prompt = nullptr;
|
|
|
|
- sess->emit_client_input = nullptr;
|
|
|
|
- sess->show_client = true;
|
|
|
|
- sess->talk_direct = true;
|
|
|
|
- sess->set_prompt(old_prompt);
|
|
|
|
|
|
+ // sess->show_client = true;
|
|
|
|
+ // sess->talk_direct = true;
|
|
|
|
+
|
|
notify();
|
|
notify();
|
|
}
|
|
}
|
|
|
|
|
|
@@ -161,7 +180,7 @@ void MainDispatch::server_prompt(const std::string &prompt) {
|
|
#ifdef NEVERMORE
|
|
#ifdef NEVERMORE
|
|
void MainDispatch::client_input(const std::string &input) {
|
|
void MainDispatch::client_input(const std::string &input) {
|
|
// I don't care what the old prompt looked liked at this point.
|
|
// I don't care what the old prompt looked liked at this point.
|
|
- BUGZ_LOG(warning) << "Got: " << input; // << " prompt=" << get_prompt();
|
|
|
|
|
|
+ BUGZ_LOG(warning) << "Got: " << input; // << " prompt=" << get_prompt();
|
|
|
|
|
|
// Serious problem when the input = "\x1b" ESC. The output gets gummed/locked
|
|
// Serious problem when the input = "\x1b" ESC. The output gets gummed/locked
|
|
// up.
|
|
// up.
|
|
@@ -179,34 +198,24 @@ void MainDispatch::client_input(const std::string &input) {
|
|
}
|
|
}
|
|
#endif
|
|
#endif
|
|
|
|
|
|
-InputDispatch::InputDispatch(Session *s) : Dispatch(s) {
|
|
|
|
|
|
+InputDispatch::InputDispatch(Director &d) : Dispatch(d) {
|
|
BUGZ_LOG(warning) << "InputDispatch()";
|
|
BUGZ_LOG(warning) << "InputDispatch()";
|
|
}
|
|
}
|
|
|
|
|
|
InputDispatch::~InputDispatch() { BUGZ_LOG(warning) << "~InputDispatch()"; }
|
|
InputDispatch::~InputDispatch() { BUGZ_LOG(warning) << "~InputDispatch()"; }
|
|
|
|
|
|
void InputDispatch::activate(void) {
|
|
void InputDispatch::activate(void) {
|
|
- ds = sess->save_settings();
|
|
|
|
- sess->emit_server_line = [this](const std::string &s) { server_line(s); };
|
|
|
|
- sess->emit_server_prompt =
|
|
|
|
- nullptr; // [this](const std::string &s) { server_prompt(s); };
|
|
|
|
- sess->emit_client_input = [this](const std::string &s) { client_input(s); };
|
|
|
|
- sess->show_client = false; // don not auto-send server to client
|
|
|
|
- sess->talk_direct = false; // do not auto-send client to server
|
|
|
|
-
|
|
|
|
input.clear();
|
|
input.clear();
|
|
to_client(prompt);
|
|
to_client(prompt);
|
|
}
|
|
}
|
|
|
|
|
|
-void InputDispatch::deactivate(void) {
|
|
|
|
- sess->restore_settings(ds);
|
|
|
|
- notify();
|
|
|
|
-}
|
|
|
|
|
|
+void InputDispatch::deactivate(void) { notify(); }
|
|
|
|
|
|
void InputDispatch::server_line(const std::string &line) {}
|
|
void InputDispatch::server_line(const std::string &line) {}
|
|
// 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) {
|
|
|
|
+ // BUGZ_LOG(info) << "InputDispatch::client_input(" << cinput << ")";
|
|
for (const char ch : cinput) {
|
|
for (const char ch : cinput) {
|
|
if (isprint(ch)) {
|
|
if (isprint(ch)) {
|
|
// Ok!
|
|
// Ok!
|
|
@@ -239,7 +248,7 @@ void InputDispatch::client_input(const std::string &cinput) {
|
|
*
|
|
*
|
|
*/
|
|
*/
|
|
|
|
|
|
-MenuDispatch::MenuDispatch(Session *s) : Dispatch{s} {
|
|
|
|
|
|
+MenuDispatch::MenuDispatch(Director &d) : Dispatch(d) {
|
|
BUGZ_LOG(warning) << "MenuDispatch()";
|
|
BUGZ_LOG(warning) << "MenuDispatch()";
|
|
}
|
|
}
|
|
|
|
|
|
@@ -252,11 +261,6 @@ void MenuDispatch::activate(void) {
|
|
BUGZ_LOG(warning) << "MenuDispatch::activate() " << max_width << ", "
|
|
BUGZ_LOG(warning) << "MenuDispatch::activate() " << max_width << ", "
|
|
<< max_option_width;
|
|
<< max_option_width;
|
|
|
|
|
|
- ds = sess->save_settings();
|
|
|
|
- sess->emit_server_line = [this](const std::string &s) { server_line(s); };
|
|
|
|
- sess->emit_server_prompt = nullptr;
|
|
|
|
- sess->emit_client_input = [this](const std::string &s) { client_input(s); };
|
|
|
|
-
|
|
|
|
if (lazy)
|
|
if (lazy)
|
|
menubox();
|
|
menubox();
|
|
else
|
|
else
|
|
@@ -264,10 +268,7 @@ void MenuDispatch::activate(void) {
|
|
to_client(menu_prompt);
|
|
to_client(menu_prompt);
|
|
}
|
|
}
|
|
|
|
|
|
-void MenuDispatch::deactivate(void) {
|
|
|
|
- sess->restore_settings(ds);
|
|
|
|
- notify();
|
|
|
|
-}
|
|
|
|
|
|
+void MenuDispatch::deactivate(void) { notify(); }
|
|
|
|
|
|
void MenuDispatch::help(void) {
|
|
void MenuDispatch::help(void) {
|
|
size_t max = max_width;
|
|
size_t max = max_width;
|
|
@@ -283,8 +284,7 @@ void MenuDispatch::help(void) {
|
|
text.append(menu_item.first);
|
|
text.append(menu_item.first);
|
|
text.append(" - ");
|
|
text.append(" - ");
|
|
text.append(menu_item.second);
|
|
text.append(menu_item.second);
|
|
- while (text.length() < max)
|
|
|
|
- text.append(1, ' ');
|
|
|
|
|
|
+ while (text.length() < max) text.append(1, ' ');
|
|
to_client(mbox.row(text));
|
|
to_client(mbox.row(text));
|
|
}
|
|
}
|
|
to_client(mbox.bottom());
|
|
to_client(mbox.bottom());
|
|
@@ -303,8 +303,7 @@ void MenuDispatch::help(void) {
|
|
text.append(menu_item.first);
|
|
text.append(menu_item.first);
|
|
text.append(" - ");
|
|
text.append(" - ");
|
|
text.append(menu_item.second);
|
|
text.append(menu_item.second);
|
|
- while (text.length() < max)
|
|
|
|
- text.append(1, ' ');
|
|
|
|
|
|
+ while (text.length() < max) text.append(1, ' ');
|
|
to_client(mbox.row(text));
|
|
to_client(mbox.row(text));
|
|
}
|
|
}
|
|
to_client(mbox.bottom());
|
|
to_client(mbox.bottom());
|
|
@@ -320,8 +319,7 @@ std::string MenuDispatch::centered(int length, const std::string &s) {
|
|
text.append(count, ' ');
|
|
text.append(count, ' ');
|
|
}
|
|
}
|
|
|
|
|
|
- if (leftovers % 1 == 1)
|
|
|
|
- text.append(1, ' ');
|
|
|
|
|
|
+ if (leftovers % 1 == 1) text.append(1, ' ');
|
|
return text;
|
|
return text;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -353,8 +351,7 @@ void MenuDispatch::calculate_widths(void) {
|
|
for (auto key : menu) {
|
|
for (auto key : menu) {
|
|
size_t menu_line_length =
|
|
size_t menu_line_length =
|
|
1 + key.first.length() + 3 + key.second.length() + 1;
|
|
1 + key.first.length() + 3 + key.second.length() + 1;
|
|
- if (menu_line_length > max_width)
|
|
|
|
- max_width = menu_line_length;
|
|
|
|
|
|
+ if (menu_line_length > max_width) max_width = menu_line_length;
|
|
if (key.first.length() > max_option_width)
|
|
if (key.first.length() > max_option_width)
|
|
max_option_width = key.first.length();
|
|
max_option_width = key.first.length();
|
|
}
|
|
}
|
|
@@ -370,8 +367,7 @@ void MenuDispatch::client_input(const std::string &cinput) {
|
|
|
|
|
|
if (ch == '\r') {
|
|
if (ch == '\r') {
|
|
// enter
|
|
// enter
|
|
- if (instant)
|
|
|
|
- return;
|
|
|
|
|
|
+ if (instant) return;
|
|
|
|
|
|
for (auto const mnu : menu) {
|
|
for (auto const mnu : menu) {
|
|
if (mnu.first == input) {
|
|
if (mnu.first == input) {
|
|
@@ -386,7 +382,7 @@ void MenuDispatch::client_input(const std::string &cinput) {
|
|
to_client("\b \b");
|
|
to_client("\b \b");
|
|
input.erase(input.length() - 1);
|
|
input.erase(input.length() - 1);
|
|
}
|
|
}
|
|
- return; // don't continue ...
|
|
|
|
|
|
+ return; // don't continue ...
|
|
}
|
|
}
|
|
|
|
|
|
if (ch == '\x1b') {
|
|
if (ch == '\x1b') {
|
|
@@ -409,7 +405,7 @@ void MenuDispatch::client_input(const std::string &cinput) {
|
|
}
|
|
}
|
|
|
|
|
|
if (ch == '?') {
|
|
if (ch == '?') {
|
|
- to_client(cinput); // display what they entered.
|
|
|
|
|
|
+ to_client(cinput); // display what they entered.
|
|
to_client("\x1b[0m\n\r");
|
|
to_client("\x1b[0m\n\r");
|
|
help();
|
|
help();
|
|
to_client(menu_prompt);
|
|
to_client(menu_prompt);
|
|
@@ -418,8 +414,7 @@ void MenuDispatch::client_input(const std::string &cinput) {
|
|
|
|
|
|
if (isprint(ch)) {
|
|
if (isprint(ch)) {
|
|
char c = ch;
|
|
char c = ch;
|
|
- if (!case_sensitive)
|
|
|
|
- c = toupper(ch);
|
|
|
|
|
|
+ if (!case_sensitive) c = toupper(ch);
|
|
|
|
|
|
// ok, it's a printable character
|
|
// ok, it's a printable character
|
|
if (input.length() < max_option_width) {
|
|
if (input.length() < max_option_width) {
|
|
@@ -445,7 +440,7 @@ void MenuDispatch::client_input(const std::string &cinput) {
|
|
* CoreDispatch: This is an example class that does dispatch.
|
|
* CoreDispatch: This is an example class that does dispatch.
|
|
* Copy this and make changes from there...
|
|
* Copy this and make changes from there...
|
|
*/
|
|
*/
|
|
-CoreDispatch::CoreDispatch(Session *s) : Dispatch{s} {
|
|
|
|
|
|
+CoreDispatch::CoreDispatch(Director &d) : Dispatch(d) {
|
|
BUGZ_LOG(warning) << "CoreDispatch()";
|
|
BUGZ_LOG(warning) << "CoreDispatch()";
|
|
}
|
|
}
|
|
|
|
|