cyphesis/server/CommAsioClient_impl.h

343 lines
11 KiB
C
Raw Permalink Normal View History

2014-01-25 20:29:45 +01:00
/*
Copyright (C) 2014 Erik Ogenvik
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
2014-01-27 22:00:11 +01:00
#ifndef COMMASIOCLIENT_IMPL_H_
#define COMMASIOCLIENT_IMPL_H_
2014-01-25 20:29:45 +01:00
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "common/log.h"
#include "common/compose.hpp"
2014-01-27 22:00:11 +01:00
#include "CommAsioClient.h"
2014-01-25 20:29:45 +01:00
#include <Atlas/Objects/Encoder.h>
#include <Atlas/Objects/RootOperation.h>
#include <Atlas/Objects/SmartPtr.h>
#include <Atlas/Net/Stream.h>
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
CommAsioClient<ProtocolT>::CommAsioClient(const std::string & name,
2014-01-27 22:00:11 +01:00
boost::asio::io_service& io_service) :
CommSocket(io_service), mSocket(io_service), mWriteBuffer(
new boost::asio::streambuf()), mStream(mWriteBuffer), mNegotiateTimer(
io_service, boost::posix_time::seconds(1)), m_codec(nullptr), m_encoder(
2014-01-29 09:05:07 +01:00
nullptr), m_negotiate(nullptr), m_link(nullptr), mName(name)
2014-01-25 20:29:45 +01:00
{
}
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
CommAsioClient<ProtocolT>::~CommAsioClient()
2014-01-25 20:29:45 +01:00
{
delete m_link;
delete m_negotiate;
delete m_encoder;
delete m_codec;
delete mWriteBuffer;
try {
mSocket.shutdown(ProtocolT::socket::shutdown_both);
} catch (const std::exception& e) {
}
try {
mSocket.close();
} catch (const std::exception& e) {
}
2014-01-25 20:29:45 +01:00
}
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
typename ProtocolT::socket& CommAsioClient<ProtocolT>::getSocket()
2014-01-25 20:29:45 +01:00
{
2014-01-27 22:00:11 +01:00
return mSocket;
}
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
void CommAsioClient<ProtocolT>::do_read()
2014-01-27 22:00:11 +01:00
{
auto self(this->shared_from_this());
mSocket.async_read_some(mReadBuffer.prepare(read_buffer_size),
2014-01-25 20:29:45 +01:00
[this, self](boost::system::error_code ec, std::size_t length)
{
if (!ec)
{
mReadBuffer.commit(length);
mStream.rdbuf(&mReadBuffer);
m_codec->poll();
mStream.rdbuf(mWriteBuffer);
2014-01-27 22:00:11 +01:00
this->dispatch();
//By calling do_read again we make sure that the instance
//doesn't go out of scope ("shared_from this"). As soon as that
//doesn't happen, and there's no write in progress, the instance
//will be deleted since there's no more references to it.
2014-01-27 22:00:11 +01:00
this->do_read();
2014-01-25 20:29:45 +01:00
}
});
}
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
void CommAsioClient<ProtocolT>::write()
2014-01-25 20:29:45 +01:00
{
2014-01-27 22:00:11 +01:00
auto self(this->shared_from_this());
2014-01-25 20:29:45 +01:00
//When sending data we need to make sure that nothing else writes to the streambuf (mWriteBuffer).
//We do this by creating a new streambuf instance. The one containing the data to be sent is
//then contained in a shared_ptr. When the async write operation is done the shared_ptr will
//be deleted. However, in order to make this a bit more efficient we'll use a custom deletor
//in which we'll check if the new buffer has had anything written to it. If not, we'll reuse
//the buffer just used for writing, as this will already have had memory allocated.
std::function<void(boost::asio::streambuf*)> bufferDeleter =
2014-02-17 20:34:20 +01:00
[&, self](boost::asio::streambuf* p) {
//Check if the existing writebuffer has had anything written to it.
if (this->mWriteBuffer->size() > 0) {
delete p;
} else {
//If the existing writebuffer hasn't had anything written to it we'll reuse the previous
//one instead since it already have had memory allocated. This prevents unnecessary release
//and re-allocation of memory.
delete this->mWriteBuffer;
this->mWriteBuffer = p;
this->mStream.rdbuf(this->mWriteBuffer);
}
};
std::shared_ptr<boost::asio::streambuf> buffer(mWriteBuffer, bufferDeleter);
mWriteBuffer = new boost::asio::streambuf();
mStream.rdbuf(mWriteBuffer);
if (buffer->size() != 0) {
boost::asio::async_write(mSocket, buffer->data(),
[this, self, buffer](boost::system::error_code ec, std::size_t length)
2014-01-25 20:29:45 +01:00
{
if (!ec)
{
buffer->consume(length);
}
});
}
}
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
void CommAsioClient<ProtocolT>::negotiate_read()
{
2014-01-27 22:00:11 +01:00
auto self(this->shared_from_this());
mSocket.async_read_some(mWriteBuffer->prepare(read_buffer_size),
[this, self](boost::system::error_code ec, std::size_t length)
{
if (!ec)
{
mWriteBuffer->commit(length);
2014-02-04 12:54:13 +01:00
if (length > 0) {
int negotiateResult = this->negotiate();
if (negotiateResult < 0) {
//this should remove any shared references and delete this instance
return;
}
}
//If the m_negotiate instance is removed we're done with negotiation and should start the main loop.
if (m_negotiate == nullptr) {
this->write();
2014-01-27 22:00:11 +01:00
this->do_read();
} else {
2014-01-27 22:00:11 +01:00
this->negotiate_write();
this->negotiate_read();
}
}
});
}
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
void CommAsioClient<ProtocolT>::negotiate_write()
{
2014-01-27 22:00:11 +01:00
auto self(this->shared_from_this());
if (mWriteBuffer->size() != 0) {
boost::asio::async_write(mSocket, mWriteBuffer->data(),
[this, self](boost::system::error_code ec, std::size_t length)
{
if (!ec)
{
mWriteBuffer->consume(length);
2014-01-25 20:29:45 +01:00
}
});
}
}
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
void CommAsioClient<ProtocolT>::startAccept(Link * connection)
2014-01-25 20:29:45 +01:00
{
// Create the server side negotiator
2014-01-27 22:00:11 +01:00
m_negotiate = new Atlas::Net::StreamAccept("cyphesis " + mName, mStream);
m_link = connection;
startNegotiation();
}
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
void CommAsioClient<ProtocolT>::startConnect(Link * connection)
2014-01-27 22:00:11 +01:00
{
// Create the client side negotiator
m_negotiate = new Atlas::Net::StreamConnect("cyphesis " + mName, mStream);
2014-01-25 20:29:45 +01:00
m_link = connection;
2014-01-27 22:00:11 +01:00
startNegotiation();
}
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
void CommAsioClient<ProtocolT>::startNegotiation()
2014-01-27 22:00:11 +01:00
{
auto self(this->shared_from_this());
2014-02-04 12:56:23 +01:00
mNegotiateTimer.expires_from_now(boost::posix_time::seconds(10));
mNegotiateTimer.async_wait([this, self](const boost::system::error_code& ec)
{
//If the negotiator still exists after the deadline it means that the negotation hasn't
//completed yet; we'll consider that a "timeout".
2014-01-27 22:00:11 +01:00
if (m_negotiate != nullptr) {
2014-02-04 12:54:13 +01:00
log(NOTICE, "Client disconnected because of negotiation timeout.");
2014-01-27 22:00:11 +01:00
mSocket.close();
}
});
2014-01-25 20:29:45 +01:00
m_negotiate->poll(false);
negotiate_write();
negotiate_read();
2014-01-25 20:29:45 +01:00
}
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
int CommAsioClient<ProtocolT>::negotiate()
2014-01-25 20:29:45 +01:00
{
// poll and check if negotiation is complete
m_negotiate->poll();
if (m_negotiate->getState() == Atlas::Negotiate::IN_PROGRESS) {
return 0;
}
// Check if negotiation failed
if (m_negotiate->getState() == Atlas::Negotiate::FAILED) {
log(NOTICE, "Failed to negotiate");
return -1;
}
// Negotiation was successful
// Get the codec that negotiation established
m_codec = m_negotiate->getCodec(*this);
// Acceptor is now finished with
delete m_negotiate;
m_negotiate = 0;
if (m_codec == nullptr) {
log(NOTICE, "Could not create codec during negotiation.");
return -1;
}
2014-01-25 20:29:45 +01:00
// Create a new encoder to send high level objects to the codec
m_encoder = new Atlas::Objects::ObjectsEncoder(*m_codec);
assert(m_link != 0);
m_link->setEncoder(m_encoder);
// This should always be sent at the beginning of a session
m_codec->streamBegin();
return 0;
}
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
int CommAsioClient<ProtocolT>::operation(
2014-01-25 20:29:45 +01:00
const Atlas::Objects::Operation::RootOperation & op)
{
assert(m_link != 0);
m_link->externalOperation(op, *m_link);
return 0;
}
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
void CommAsioClient<ProtocolT>::dispatch()
2014-01-25 20:29:45 +01:00
{
DispatchQueue::const_iterator Iend = m_opQueue.end();
for (DispatchQueue::const_iterator I = m_opQueue.begin(); I != Iend; ++I) {
if (operation(*I) != 0) {
return;
}
}
m_opQueue.clear();
}
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
void CommAsioClient<ProtocolT>::objectArrived(const Atlas::Objects::Root & obj)
2014-01-25 20:29:45 +01:00
{
Atlas::Objects::Operation::RootOperation op =
Atlas::Objects::smart_dynamic_cast<
Atlas::Objects::Operation::RootOperation>(obj);
if (!op.isValid()) {
const std::list<std::string> & parents = obj->getParents();
if (parents.empty()) {
log(ERROR, String::compose("Object of type \"%1\" with no parent "
"arrived from client", obj->getObjtype()));
} else {
log(ERROR,
String::compose("Object of type \"%1\" with parent "
"\"%2\" arrived from client", obj->getObjtype(),
obj->getParents().front()));
}
return;
}
m_opQueue.push_back(op);
}
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
int CommAsioClient<ProtocolT>::send(
2014-01-25 20:29:45 +01:00
const Atlas::Objects::Operation::RootOperation & op)
{
2014-02-01 22:17:03 +01:00
if (!mSocket.is_open()) {
log(ERROR, "Writing to closed client");
return -1;
}
assert(m_encoder);
2014-01-25 20:29:45 +01:00
// if (m_clientIos.fail()) {
// return -1;
// }
// if (m_encoder == 0) {
// log(ERROR, "Encoder not initialized");
// return -1;
// }
m_encoder->streamObjectsMessage(op);
return flush();
}
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
void CommAsioClient<ProtocolT>::disconnect()
2014-01-25 20:29:45 +01:00
{
mSocket.close();
}
2014-01-29 09:05:07 +01:00
template<class ProtocolT>
int CommAsioClient<ProtocolT>::flush()
2014-01-25 20:29:45 +01:00
{
write();
2014-01-25 20:29:45 +01:00
return 0;
}
2014-01-27 22:00:11 +01:00
#endif /* COMMASIOCLIENT_IMPL_H_ */