git-svn-id: svn://elaine/murooma/trunk@143 d8a302eb-03bc-478d-80e4-98257eca68ef
This commit is contained in:
(no author) 2014-08-06 06:21:09 +00:00
parent ec2fd4d930
commit 342bc79770
2 changed files with 34 additions and 4 deletions

View file

@ -14,12 +14,32 @@
#include <boost/smart_ptr.hpp>
#include <boost/asio.hpp>
#include <boost/thread/thread.hpp>
#include <chrono>
#include <ctime> // localtime
#include <sstream> // stringstream
#include <iomanip>
using boost::asio::ip::tcp;
const int max_length = 1024;
typedef boost::shared_ptr<tcp::socket> socket_ptr;
using namespace std;
using namespace std::chrono;
std::string return_current_time_and_date()
{
auto now = system_clock::now();
auto in_time_t = system_clock::to_time_t(now);
system_clock::duration ms = now.time_since_epoch();
char buff[20];
strftime(buff, 20, "%Y-%m-%d %H:%M:%S", localtime(&in_time_t));
stringstream ss;
ss << buff << "." << std::setw(3) << std::setfill('0') << ((ms / milliseconds(1)) % 1000);
return ss.str();
}
void session(socket_ptr sock)
{
@ -27,7 +47,7 @@ void session(socket_ptr sock)
{
for (;;)
{
char data[max_length];
/* char data[max_length];
boost::system::error_code error;
size_t length = sock->read_some(boost::asio::buffer(data), error);
@ -35,8 +55,17 @@ void session(socket_ptr sock)
break; // Connection closed cleanly by peer.
else if (error)
throw boost::system::system_error(error); // Some other error.
boost::asio::write(*sock, boost::asio::buffer(data, length));
*/
string response(return_current_time_and_date() + "\tHallo\n");
boost::system::error_code error;
cout << response << "\n";
boost::asio::write(*sock, boost::asio::buffer(response), boost::asio::transfer_all(), error);
if (error == boost::asio::error::eof)
break; // Connection closed cleanly by peer.
else if (error)
throw boost::system::system_error(error); // Some other error.
sleep(1);
//std::cout << return_current_time_and_date() << "\n";
}
}
catch (std::exception& e)
@ -52,6 +81,7 @@ void server(boost::asio::io_service& io_service, unsigned short port)
{
socket_ptr sock(new tcp::socket(io_service));
a.accept(*sock);
cout << "New connection: " << sock->remote_endpoint().address().to_string() << "\n";
boost::thread t(boost::bind(session, sock));
}
}