2009-08-12 09:40:16 +02:00
|
|
|
/*
|
2010-01-05 08:29:35 +01:00
|
|
|
Copyright (c) 2007-2010 iMatix Corporation
|
2009-08-12 09:40:16 +02:00
|
|
|
|
|
|
|
This file is part of 0MQ.
|
|
|
|
|
|
|
|
0MQ is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the Lesser GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
0MQ 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
|
|
|
|
Lesser GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the Lesser GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2009-12-15 09:09:19 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2009-08-12 09:40:16 +02:00
|
|
|
#include "zmq_decoder.hpp"
|
|
|
|
#include "i_inout.hpp"
|
|
|
|
#include "wire.hpp"
|
2009-09-14 13:54:30 +02:00
|
|
|
#include "err.hpp"
|
2009-08-12 09:40:16 +02:00
|
|
|
|
2010-02-12 15:57:54 +01:00
|
|
|
zmq::zmq_decoder_t::zmq_decoder_t (size_t bufsize_) :
|
2009-12-11 22:29:04 +01:00
|
|
|
decoder_t <zmq_decoder_t> (bufsize_),
|
2010-02-13 14:07:30 +01:00
|
|
|
destination (NULL)
|
2009-08-12 09:40:16 +02:00
|
|
|
{
|
|
|
|
zmq_msg_init (&in_progress);
|
|
|
|
|
|
|
|
// At the beginning, read one byte and go to one_byte_size_ready state.
|
|
|
|
next_step (tmpbuf, 1, &zmq_decoder_t::one_byte_size_ready);
|
|
|
|
}
|
|
|
|
|
|
|
|
zmq::zmq_decoder_t::~zmq_decoder_t ()
|
|
|
|
{
|
|
|
|
zmq_msg_close (&in_progress);
|
|
|
|
}
|
|
|
|
|
|
|
|
void zmq::zmq_decoder_t::set_inout (i_inout *destination_)
|
|
|
|
{
|
|
|
|
destination = destination_;
|
|
|
|
}
|
|
|
|
|
2010-02-13 14:07:30 +01:00
|
|
|
void zmq::zmq_decoder_t::add_prefix (const blob_t &prefix_)
|
2010-02-12 15:57:54 +01:00
|
|
|
{
|
2010-02-13 14:07:30 +01:00
|
|
|
prefix = prefix_;
|
2010-02-12 15:57:54 +01:00
|
|
|
}
|
|
|
|
|
2009-08-12 09:40:16 +02:00
|
|
|
bool zmq::zmq_decoder_t::one_byte_size_ready ()
|
|
|
|
{
|
|
|
|
// First byte of size is read. If it is 0xff read 8-byte size.
|
|
|
|
// Otherwise allocate the buffer for message data and read the
|
|
|
|
// message data into it.
|
|
|
|
if (*tmpbuf == 0xff)
|
|
|
|
next_step (tmpbuf, 8, &zmq_decoder_t::eight_byte_size_ready);
|
|
|
|
else {
|
2009-09-14 13:54:30 +02:00
|
|
|
|
|
|
|
// TODO: Handle over-sized message decently.
|
2009-11-26 12:01:26 +01:00
|
|
|
// in_progress is initialised at this point so in theory we should
|
|
|
|
// close it before calling zmq_msg_init_size, however, it's a 0-byte
|
|
|
|
// message and thus we can treat it as uninitialised...
|
2010-02-13 14:07:30 +01:00
|
|
|
int rc = zmq_msg_init_size (&in_progress, prefix.size () + *tmpbuf);
|
2009-09-14 13:54:30 +02:00
|
|
|
errno_assert (rc == 0);
|
|
|
|
|
2009-12-15 09:09:19 +01:00
|
|
|
// Fill in the message prefix if any.
|
2010-02-13 14:07:30 +01:00
|
|
|
if (!prefix.empty ())
|
|
|
|
memcpy (zmq_msg_data (&in_progress), prefix.data (),
|
|
|
|
prefix.size ());
|
2009-12-15 09:09:19 +01:00
|
|
|
|
2010-02-13 14:07:30 +01:00
|
|
|
next_step ((unsigned char*) zmq_msg_data (&in_progress) +
|
|
|
|
prefix.size (), *tmpbuf, &zmq_decoder_t::message_ready);
|
2009-08-12 09:40:16 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool zmq::zmq_decoder_t::eight_byte_size_ready ()
|
|
|
|
{
|
|
|
|
// 8-byte size is read. Allocate the buffer for message body and
|
|
|
|
// read the message data into it.
|
|
|
|
size_t size = (size_t) get_uint64 (tmpbuf);
|
2009-09-14 13:54:30 +02:00
|
|
|
|
|
|
|
// TODO: Handle over-sized message decently.
|
2009-11-26 12:01:26 +01:00
|
|
|
// in_progress is initialised at this point so in theory we should
|
|
|
|
// close it before calling zmq_msg_init_size, however, it's a 0-byte
|
|
|
|
// message and thus we can treat it as uninitialised...
|
2010-02-13 14:07:30 +01:00
|
|
|
int rc = zmq_msg_init_size (&in_progress, prefix.size () + size);
|
2009-09-14 13:54:30 +02:00
|
|
|
errno_assert (rc == 0);
|
|
|
|
|
2009-12-15 09:09:19 +01:00
|
|
|
// Fill in the message prefix if any.
|
2010-02-13 14:07:30 +01:00
|
|
|
if (!prefix.empty ())
|
|
|
|
memcpy (zmq_msg_data (&in_progress), prefix.data (), prefix.size ());
|
2009-12-15 09:09:19 +01:00
|
|
|
|
2010-02-13 14:07:30 +01:00
|
|
|
next_step ((unsigned char*) zmq_msg_data (&in_progress) + prefix.size (),
|
2009-12-15 09:09:19 +01:00
|
|
|
size, &zmq_decoder_t::message_ready);
|
2009-08-12 09:40:16 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool zmq::zmq_decoder_t::message_ready ()
|
|
|
|
{
|
|
|
|
// Message is completely read. Push it further and start reading
|
2009-11-26 12:01:26 +01:00
|
|
|
// new message. (in_progress is a 0-byte message after this point.)
|
2009-09-10 16:32:06 +02:00
|
|
|
if (!destination || !destination->write (&in_progress))
|
2009-08-12 09:40:16 +02:00
|
|
|
return false;
|
|
|
|
|
|
|
|
next_step (tmpbuf, 1, &zmq_decoder_t::one_byte_size_ready);
|
|
|
|
return true;
|
|
|
|
}
|