|
@@ -53,7 +53,7 @@ std::string clean_string(const std::string &source) {
|
|
|
|
|
|
// ANSI too
|
|
// ANSI too
|
|
ansi_clean(clean);
|
|
ansi_clean(clean);
|
|
- // BOOST_LOG_TRIVIAL(error) << "cleaned: " << clean;
|
|
|
|
|
|
+ // BUGZ_LOG(error) << "cleaned: " << clean;
|
|
high_ascii(clean);
|
|
high_ascii(clean);
|
|
|
|
|
|
replace(clean, "\x1b", "^");
|
|
replace(clean, "\x1b", "^");
|
|
@@ -68,7 +68,6 @@ session::session(boost::asio::ip::tcp::socket socket,
|
|
io_service_{io_service}, resolver_{io_service}, server_{io_service},
|
|
io_service_{io_service}, resolver_{io_service}, server_{io_service},
|
|
timer_{io_service}, host{hostname}, port{port} {
|
|
timer_{io_service}, host{hostname}, port{port} {
|
|
server_sent = 0;
|
|
server_sent = 0;
|
|
- // BOOST_LOG_NAMED_SCOPE("session");
|
|
|
|
}
|
|
}
|
|
|
|
|
|
void session::start(void) {
|
|
void session::start(void) {
|
|
@@ -76,17 +75,16 @@ void session::start(void) {
|
|
|
|
|
|
// If I want the file and line number information, here's how to do it:
|
|
// If I want the file and line number information, here's how to do it:
|
|
// BUGZ_LOG(info) << boost::format("(%1%:%2%) ") % __FILE__ % __LINE__
|
|
// BUGZ_LOG(info) << boost::format("(%1%:%2%) ") % __FILE__ % __LINE__
|
|
- BOOST_LOG_TRIVIAL(info) << "session()";
|
|
|
|
|
|
+
|
|
BUGZ_LOG(info) << "session::start()";
|
|
BUGZ_LOG(info) << "session::start()";
|
|
auto self(shared_from_this());
|
|
auto self(shared_from_this());
|
|
// read_buffer.reserve(1024);
|
|
// read_buffer.reserve(1024);
|
|
// do_write("Welcome!\n");
|
|
// do_write("Welcome!\n");
|
|
- do_read();
|
|
|
|
|
|
+ client_read();
|
|
}
|
|
}
|
|
|
|
|
|
session::~session() {
|
|
session::~session() {
|
|
- BOOST_LOG_TRIVIAL(info) << "~session";
|
|
|
|
- BUGZ_LOG(info) << "~session destructed";
|
|
|
|
|
|
+ BUGZ_LOG(info) << "~session";
|
|
}
|
|
}
|
|
|
|
|
|
void session::parse_auth(void) {
|
|
void session::parse_auth(void) {
|
|
@@ -106,7 +104,7 @@ void session::on_connect(const boost::system::error_code error) {
|
|
// BOOST_LOG_NAMED_SCOPE("session");
|
|
// BOOST_LOG_NAMED_SCOPE("session");
|
|
|
|
|
|
if (!error) {
|
|
if (!error) {
|
|
- BOOST_LOG_TRIVIAL(info) << "Connected to " << host;
|
|
|
|
|
|
+ BUGZ_LOG(info) << "Connected to " << host;
|
|
to_client("Connected...\n\r");
|
|
to_client("Connected...\n\r");
|
|
connected = true;
|
|
connected = true;
|
|
if (rlogin_auth[0] != 0) {
|
|
if (rlogin_auth[0] != 0) {
|
|
@@ -125,8 +123,8 @@ void session::on_connect(const boost::system::error_code error) {
|
|
std::string output =
|
|
std::string output =
|
|
str(boost::format("Failed to connect: %1%:%2%\n\r") % host % port);
|
|
str(boost::format("Failed to connect: %1%:%2%\n\r") % host % port);
|
|
to_client(output);
|
|
to_client(output);
|
|
- BOOST_LOG_TRIVIAL(error) << "Failed to connect to " << host << ":" << port;
|
|
|
|
- BOOST_LOG_TRIVIAL(warning) << "socket.shutdown()";
|
|
|
|
|
|
+ BUGZ_LOG(error) << "Failed to connect to " << host << ":" << port;
|
|
|
|
+ BUGZ_LOG(warning) << "socket.shutdown()";
|
|
socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
|
|
socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -135,7 +133,7 @@ void session::dispatch_line(std::string line) {
|
|
// Does this have \n\r still on it? I don't want them.
|
|
// Does this have \n\r still on it? I don't want them.
|
|
|
|
|
|
std::string temp = clean_string(line);
|
|
std::string temp = clean_string(line);
|
|
- BOOST_LOG_TRIVIAL(info) << "SL: " << temp;
|
|
|
|
|
|
+ BUGZ_LOG(info) << "SL: " << temp;
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
/*
|
|
@@ -168,7 +166,7 @@ void session::process_lines(std::string &received) {
|
|
line = received.substr(0, rpos + 1);
|
|
line = received.substr(0, rpos + 1);
|
|
/*
|
|
/*
|
|
std::string clean = clean_string(line);
|
|
std::string clean = clean_string(line);
|
|
- BOOST_LOG_TRIVIAL(error) << "rpos/show_client:" << clean;
|
|
|
|
|
|
+ BUGZ_LOG(error) << "rpos/show_client:" << clean;
|
|
*/
|
|
*/
|
|
to_client(line);
|
|
to_client(line);
|
|
}
|
|
}
|
|
@@ -201,7 +199,7 @@ void session::process_lines(std::string &received) {
|
|
// How should I handle \r in lines? For now, remove it
|
|
// How should I handle \r in lines? For now, remove it
|
|
// but LOG that we did.
|
|
// but LOG that we did.
|
|
if (replace(part, "\r", "")) {
|
|
if (replace(part, "\r", "")) {
|
|
- BOOST_LOG_TRIVIAL(warning) << "\\r removed from line";
|
|
|
|
|
|
+ BUGZ_LOG(warning) << "\\r removed from line";
|
|
}
|
|
}
|
|
|
|
|
|
dispatch_line(part);
|
|
dispatch_line(part);
|
|
@@ -212,8 +210,8 @@ void session::process_lines(std::string &received) {
|
|
if (!received.empty())
|
|
if (!received.empty())
|
|
if (show_client) {
|
|
if (show_client) {
|
|
to_client(received);
|
|
to_client(received);
|
|
- std::string clean = clean_string(received);
|
|
|
|
- BOOST_LOG_TRIVIAL(error) << "show_client/leftovers:" << clean;
|
|
|
|
|
|
+ // std::string clean = clean_string(received);
|
|
|
|
+ // BUGZ_LOG(error) << "show_client/leftovers:" << clean;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -246,7 +244,7 @@ void session::server_read(void) {
|
|
|
|
|
|
server_read();
|
|
server_read();
|
|
} else {
|
|
} else {
|
|
- BOOST_LOG_TRIVIAL(warning) << "S: read_failed: socket.shutdown()";
|
|
|
|
|
|
+ BUGZ_LOG(warning) << "S: read_failed: socket.shutdown()";
|
|
socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
|
|
socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
@@ -269,16 +267,16 @@ void session::on_resolve(
|
|
} else {
|
|
} else {
|
|
// TO DO:
|
|
// TO DO:
|
|
// BOOST_LOG_NAMED_SCOPE("session");
|
|
// BOOST_LOG_NAMED_SCOPE("session");
|
|
- BOOST_LOG_TRIVIAL(error) << "Unable to resolve: " << host;
|
|
|
|
|
|
+ BUGZ_LOG(error) << "Unable to resolve: " << host;
|
|
std::string output =
|
|
std::string output =
|
|
str(boost::format("Unable to resolve: %1%\n\r") % host);
|
|
str(boost::format("Unable to resolve: %1%\n\r") % host);
|
|
to_client(output);
|
|
to_client(output);
|
|
- BOOST_LOG_TRIVIAL(warning) << "socket.shutdown()";
|
|
|
|
|
|
+ BUGZ_LOG(warning) << "socket.shutdown()";
|
|
socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
|
|
socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
-void session::do_read(void) {
|
|
|
|
|
|
+void session::client_read(void) {
|
|
auto self(shared_from_this());
|
|
auto self(shared_from_this());
|
|
|
|
|
|
boost::asio::async_read( // why can't I async_read_some here?
|
|
boost::asio::async_read( // why can't I async_read_some here?
|
|
@@ -319,15 +317,15 @@ void session::do_read(void) {
|
|
|
|
|
|
if (talk_direct)
|
|
if (talk_direct)
|
|
to_server(read_buffer);
|
|
to_server(read_buffer);
|
|
- BOOST_LOG_TRIVIAL(info) << "C: " << read_buffer;
|
|
|
|
|
|
+ BUGZ_LOG(info) << "C: " << read_buffer;
|
|
|
|
|
|
// do_write(output);
|
|
// do_write(output);
|
|
}
|
|
}
|
|
- do_read();
|
|
|
|
|
|
+ client_read();
|
|
} else {
|
|
} else {
|
|
- BOOST_LOG_TRIVIAL(warning) << "C: read_failed";
|
|
|
|
|
|
+ BUGZ_LOG(warning) << "C: read_failed";
|
|
if (connected) {
|
|
if (connected) {
|
|
- BOOST_LOG_TRIVIAL(warning) << "server.shutdown()";
|
|
|
|
|
|
+ BUGZ_LOG(warning) << "server.shutdown()";
|
|
server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
|
|
server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -340,7 +338,7 @@ void session::to_client(std::string message) {
|
|
// logs)
|
|
// logs)
|
|
|
|
|
|
std::string clean = clean_string(message);
|
|
std::string clean = clean_string(message);
|
|
- BOOST_LOG_TRIVIAL(trace) << "C: >>" << clean;
|
|
|
|
|
|
+ BUGZ_LOG(trace) << "2C: " << clean;
|
|
|
|
|
|
boost::asio::async_write(
|
|
boost::asio::async_write(
|
|
socket_, boost::asio::buffer(message),
|
|
socket_, boost::asio::buffer(message),
|
|
@@ -348,10 +346,10 @@ void session::to_client(std::string message) {
|
|
if (!ec) {
|
|
if (!ec) {
|
|
|
|
|
|
} else {
|
|
} else {
|
|
- BOOST_LOG_TRIVIAL(warning)
|
|
|
|
|
|
+ BUGZ_LOG(warning)
|
|
<< "C: write failed? closed? server.shutdown()";
|
|
<< "C: write failed? closed? server.shutdown()";
|
|
if (connected) {
|
|
if (connected) {
|
|
- BOOST_LOG_TRIVIAL(warning) << "server.shutdown()";
|
|
|
|
|
|
+ BUGZ_LOG(warning) << "server.shutdown()";
|
|
server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
|
|
server_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -366,19 +364,13 @@ void session::to_server(std::string message) {
|
|
if (!ec) {
|
|
if (!ec) {
|
|
|
|
|
|
} else {
|
|
} else {
|
|
- BOOST_LOG_TRIVIAL(warning)
|
|
|
|
|
|
+ BUGZ_LOG(warning)
|
|
<< "S: write failed? closed? socket.shutdown()";
|
|
<< "S: write failed? closed? socket.shutdown()";
|
|
socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
|
|
socket_.shutdown(boost::asio::ip::tcp::socket::shutdown_both);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
-/*
|
|
|
|
-void session::on_shutdown(boost::system::error_code ec) {
|
|
|
|
- std::cout << "shutdown." << std::endl;
|
|
|
|
-}
|
|
|
|
-*/
|
|
|
|
-
|
|
|
|
server::server(boost::asio::io_service &io_service,
|
|
server::server(boost::asio::io_service &io_service,
|
|
const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
|
|
const boost::asio::ip::tcp::endpoint &endpoint, std::string host,
|
|
std::string port)
|
|
std::string port)
|
|
@@ -398,7 +390,7 @@ void server::do_accept(void) {
|
|
acceptor_.async_accept([this](boost::system::error_code ec,
|
|
acceptor_.async_accept([this](boost::system::error_code ec,
|
|
boost::asio::ip::tcp::socket socket) {
|
|
boost::asio::ip::tcp::socket socket) {
|
|
if (!ec) {
|
|
if (!ec) {
|
|
- BOOST_LOG_TRIVIAL(info) << "server::do_accept()";
|
|
|
|
|
|
+ BUGZ_LOG(info) << "server::do_accept()";
|
|
std::make_shared<session>(std::move(socket), io_service_, host_, port_)
|
|
std::make_shared<session>(std::move(socket), io_service_, host_, port_)
|
|
->start();
|
|
->start();
|
|
}
|
|
}
|
|
@@ -406,3 +398,18 @@ void server::do_accept(void) {
|
|
do_accept();
|
|
do_accept();
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+/**
|
|
|
|
+ * Clean up the trailing ../ in __FILE__
|
|
|
|
+ *
|
|
|
|
+ * This is used by the logging macro.
|
|
|
|
+ *
|
|
|
|
+ * @param filepath
|
|
|
|
+ * @return const char*
|
|
|
|
+ */
|
|
|
|
+const char * trim_path( const char * filepath ) {
|
|
|
|
+ if (strncmp(filepath, "../", 3) == 0) {
|
|
|
|
+ filepath += 3;
|
|
|
|
+ }
|
|
|
|
+ return filepath;
|
|
|
|
+}
|