|
@@ -49,8 +49,10 @@ void high_ascii(std::string &str) {
|
|
|
std::string clean_string(const std::string &source) {
|
|
|
// BOOST_LOG_NAMED_SCOPE("clean_string");
|
|
|
std::string clean = source;
|
|
|
+
|
|
|
replace(clean, "\n", "\\n");
|
|
|
replace(clean, "\r", "\\r");
|
|
|
+ replace(clean, "\b", "\\b");
|
|
|
|
|
|
// ANSI too
|
|
|
ansi_clean(clean);
|
|
@@ -88,6 +90,8 @@ void Session::start(void) {
|
|
|
|
|
|
Session::~Session() { BUGZ_LOG(info) << "~Session"; }
|
|
|
|
|
|
+const std::string &Session::get_prompt(void) { return server_prompt; }
|
|
|
+
|
|
|
void Session::parse_auth(void) {
|
|
|
// how many nulls should I be seeing?
|
|
|
// \0user\0pass\0terminal/SPEED\0
|
|
@@ -133,6 +137,17 @@ void Session::on_connect(const boost::system::error_code error) {
|
|
|
void Session::dispatch_line(std::string line) {
|
|
|
// Does this have \n\r still on it? I don't want them.
|
|
|
|
|
|
+ // cleanup backspaces
|
|
|
+ size_t pos;
|
|
|
+ while ((pos = line.find('\b')) != std::string::npos) {
|
|
|
+ // backspace? OK! (unless)
|
|
|
+ if (pos == 0) {
|
|
|
+ // first character, so there's nothing "extra" to erase.
|
|
|
+ line = line.erase(pos, 1);
|
|
|
+ } else
|
|
|
+ line = line.erase(pos - 1, 2);
|
|
|
+ }
|
|
|
+
|
|
|
std::string temp = clean_string(line);
|
|
|
BUGZ_LOG(info) << "SL: " << temp;
|
|
|
}
|
|
@@ -228,6 +243,15 @@ void Session::process_lines(std::string &received) {
|
|
|
server_prompt = server_prompt.substr(pos + 1);
|
|
|
}
|
|
|
|
|
|
+ while ((pos = server_prompt.find('\b')) != std::string::npos) {
|
|
|
+ // backspace? OK! (unless)
|
|
|
+ if (pos == 0) {
|
|
|
+ // first character, so there's nothing "extra" to erase.
|
|
|
+ server_prompt = server_prompt.erase(pos, 1);
|
|
|
+ } else
|
|
|
+ server_prompt = server_prompt.erase(pos - 1, 2);
|
|
|
+ }
|
|
|
+
|
|
|
if (!server_prompt.empty()) {
|
|
|
// We have something remaining -- start the timer!
|
|
|
set_timer();
|