version 3.01

This commit is contained in:
Bramfeld Team 2016-02-19 14:27:00 +01:00
parent 5ab09e78b2
commit 7adaaf99be
9 changed files with 214 additions and 112 deletions

View file

@ -35,6 +35,7 @@ enum StreamMode
StreamModeAccept, StreamModeAccept,
StreamModeRead, StreamModeRead,
StreamModeWrite, StreamModeWrite,
StreamModeWait,
StreamModeEnd StreamModeEnd
}; };

View file

@ -19,7 +19,7 @@
IoService::IoService () : Thread ("IoService"), log_ ("/io/thread") IoService::IoService () : Thread ("IoService"), log_ ("/io/thread")
{ {
handle_ = rfd_ = wfd_ = -1; timeout_ = handle_ = rfd_ = wfd_ = -1;
int fd[2]; int fd[2];
if (::pipe (fd) == 0) if (::pipe (fd) == 0)
@ -54,7 +54,10 @@ void IoService::main ()
cancel (msg.action); cancel (msg.action);
} }
poll (-1); poll (timeout_);
if (timeout_ > 0)
wakeup_readers ();
} }
set_fd (rfd_, -1, 0); set_fd (rfd_, -1, 0);
@ -81,32 +84,40 @@ void IoService::handle_request (EventAction* act)
schedule (act); schedule (act);
else else
track (act); track (act);
return; break;
case StreamModeAccept: case StreamModeAccept:
track (act); track (act);
return; break;
case StreamModeRead: case StreamModeRead:
if (read_channel (act->fd_, (act->callback_ ? act->callback_->param () : ev), 1)) if (read_channel (act->fd_, (act->callback_ ? act->callback_->param () : ev), 1))
schedule (act); schedule (act);
else else
track (act); track (act);
return; break;
case StreamModeWrite: case StreamModeWrite:
if (write_channel (act->fd_, (act->callback_ ? act->callback_->param () : ev))) if (write_channel (act->fd_, (act->callback_ ? act->callback_->param () : ev)))
schedule (act); schedule (act);
else else
track (act); track (act);
return; break;
case StreamModeWait:
{
WaitNode node = {current_time () + act->fd_, act};
wait_list_.insert (wait_list_.end (), node);
timeout_ = IO_POLL_TIMEOUT;
}
break;
case StreamModeEnd: case StreamModeEnd:
if (close_channel (act->fd_, (act->callback_ ? act->callback_->param () : ev))) if (close_channel (act->fd_, (act->callback_ ? act->callback_->param () : ev)))
schedule (act); schedule (act);
else else
track (act); track (act);
return; break;
} }
} }
} }
@ -125,6 +136,7 @@ bool IoService::connect_channel (int fd, Event& ev)
case 0: case 0:
ev.type_ = Event::Done; ev.type_ = Event::Done;
break; break;
case -1: case -1:
switch (errno) switch (errno)
{ {
@ -279,43 +291,65 @@ void IoService::track (EventAction* act)
void IoService::cancel (EventAction* act) void IoService::cancel (EventAction* act)
{ {
std::map<int, IoNode>::iterator it; std::map<int, IoNode>::iterator it;
int fd; std::deque<WaitNode>::iterator w;
if (act) if (act)
{ {
fd = act->fd_;
it = fd_map_.find (fd);
switch (act->mode_) switch (act->mode_)
{ {
case StreamModeAccept: case StreamModeAccept:
case StreamModeRead: case StreamModeRead:
it = fd_map_.find (act->fd_);
if (it != fd_map_.end () && it->second.read_action == act) if (it != fd_map_.end () && it->second.read_action == act)
{ {
it->second.reading = false, it->second.read_action = 0; it->second.reading = false, it->second.read_action = 0;
if (it->second.write_action == 0) if (it->second.write_action == 0)
fd_map_.erase (it); fd_map_.erase (it);
set_fd (fd, -1, (it->second.writing ? 2 : 0), &it->second); set_fd (act->fd_, -1, (it->second.writing ? 2 : 0), &it->second);
} }
break; break;
case StreamModeConnect: case StreamModeConnect:
case StreamModeWrite: case StreamModeWrite:
case StreamModeEnd: case StreamModeEnd:
it = fd_map_.find (act->fd_);
if (it != fd_map_.end () && it->second.write_action == act) if (it != fd_map_.end () && it->second.write_action == act)
{ {
it->second.writing = false, it->second.write_action = 0; it->second.writing = false, it->second.write_action = 0;
if (it->second.read_action == 0) if (it->second.read_action == 0)
fd_map_.erase (it); fd_map_.erase (it);
set_fd (fd, (it->second.reading ? 2 : 0), -1, &it->second); set_fd (act->fd_, (it->second.reading ? 2 : 0), -1, &it->second);
} }
break; break;
case StreamModeWait:
for (w = wait_list_.begin (); w != wait_list_.end (); ++w)
{
if (w->action == act)
{
wait_list_.erase (w);
break;
}
}
if (wait_list_.empty ())
timeout_ = -1;
break;
} }
terminate (act); terminate (act);
} }
} }
void IoService::wakeup_readers ()
{
std::deque<WaitNode>::iterator w;
long t = current_time ();
for (w = wait_list_.begin (); w != wait_list_.end (); ++w)
if (w->limit > 0 && w->limit <= t)
schedule (w->action), w->limit = 0;
}
void IoService::schedule (EventAction* act) void IoService::schedule (EventAction* act)
{ {
EventMessage msg = {1, act}; EventMessage msg = {1, act};

View file

@ -12,7 +12,9 @@
#define EVENT_IO_SERVICE_H #define EVENT_IO_SERVICE_H
#include <unistd.h> #include <unistd.h>
#include <sys/time.h>
#include <map> #include <map>
#include <deque>
#include <common/buffer.h> #include <common/buffer.h>
#include <common/ring_buffer.h> #include <common/ring_buffer.h>
#include <common/thread/thread.h> #include <common/thread/thread.h>
@ -22,6 +24,7 @@
#define IO_READ_BUFFER_SIZE 0x10000 #define IO_READ_BUFFER_SIZE 0x10000
#define IO_POLL_EVENT_COUNT 512 #define IO_POLL_EVENT_COUNT 512
#define IO_POLL_TIMEOUT 150
struct IoNode struct IoNode
{ {
@ -32,6 +35,12 @@ struct IoNode
EventAction* write_action; EventAction* write_action;
}; };
struct WaitNode
{
long limit;
EventAction* action;
};
class IoService : public Thread class IoService : public Thread
{ {
private: private:
@ -39,7 +48,10 @@ private:
RingBuffer<EventMessage> gateway_; RingBuffer<EventMessage> gateway_;
uint8_t read_pool_[IO_READ_BUFFER_SIZE]; uint8_t read_pool_[IO_READ_BUFFER_SIZE];
std::map<int, IoNode> fd_map_; std::map<int, IoNode> fd_map_;
int handle_, rfd_, wfd_; std::deque<WaitNode> wait_list_;
int timeout_;
int handle_;
int rfd_, wfd_;
public: public:
IoService (); IoService ();
@ -56,6 +68,7 @@ private:
bool close_channel (int fd, Event& ev); bool close_channel (int fd, Event& ev);
void track (EventAction* act); void track (EventAction* act);
void cancel (EventAction* act); void cancel (EventAction* act);
void wakeup_readers ();
void schedule (EventAction* act); void schedule (EventAction* act);
void terminate (EventAction* act); void terminate (EventAction* act);
@ -68,6 +81,8 @@ public:
bool idle () const { return fd_map_.empty (); } bool idle () const { return fd_map_.empty (); }
void wakeup () { ::write (wfd_, "*", 1); } void wakeup () { ::write (wfd_, "*", 1); }
void take_message (const EventMessage& msg) { gateway_.write (msg); wakeup (); } void take_message (const EventMessage& msg) { gateway_.write (msg); wakeup (); }
long current_time () { struct timeval tv; gettimeofday (&tv, 0);
return ((tv.tv_sec & 0xFF) * 1000 + tv.tv_usec / 1000); }
}; };
#endif /* !EVENT_IO_SERVICE_H */ #endif /* !EVENT_IO_SERVICE_H */

View file

@ -48,7 +48,7 @@ ProxyConnector::ProxyConnector (const std::string& name,
SocketAddressFamily family, SocketAddressFamily family,
const std::string& remote_name, const std::string& remote_name,
bool cln, bool ssh) bool cln, bool ssh)
: log_("/wanproxy/proxy/" + name + "/connector"), : log_("/wanproxy/" + name + "/connector"),
interface_codec_(interface_codec), interface_codec_(interface_codec),
remote_codec_(remote_codec), remote_codec_(remote_codec),
local_socket_(local_socket), local_socket_(local_socket),
@ -151,7 +151,7 @@ bool ProxyConnector::build_chains (WANProxyCodec* cdc1, WANProxyCodec* cdc2, Soc
{ {
EncodeFilter* enc; DecodeFilter* dec; EncodeFilter* enc; DecodeFilter* dec;
request_chain_.append ((dec = new DecodeFilter ("/wanproxy/" + cdc1->name_ + "/dec", cdc1->xcache_))); request_chain_.append ((dec = new DecodeFilter ("/wanproxy/" + cdc1->name_ + "/dec", cdc1->xcache_)));
response_chain_.prepend ((enc = new EncodeFilter ("/wanproxy/" + cdc1->name_ + "/enc", cdc1->xcache_))); response_chain_.prepend ((enc = new EncodeFilter ("/wanproxy/" + cdc1->name_ + "/enc", cdc1->xcache_, 1)));
dec->set_upstream (enc); dec->set_upstream (enc);
} }

View file

@ -72,8 +72,8 @@ XCodecDecoder::~XCodecDecoder()
* instance UUID in the HELLO message and can tell which streams * instance UUID in the HELLO message and can tell which streams
* share an originator. * share an originator.
*/ */
bool
XCodecDecoder::decode (Buffer& output, Buffer& input, std::set<uint64_t>& unknown_hashes) bool XCodecDecoder::decode (Buffer& output, Buffer& input, std::set<uint64_t>& unknown_hashes)
{ {
uint8_t data[XCODEC_SEGMENT_LENGTH]; uint8_t data[XCODEC_SEGMENT_LENGTH];
Buffer old; Buffer old;

View file

@ -29,7 +29,6 @@
#include <xcodec/xcodec.h> #include <xcodec/xcodec.h>
#include <xcodec/xcodec_cache.h> #include <xcodec/xcodec_cache.h>
#include <xcodec/xcodec_encoder.h> #include <xcodec/xcodec_encoder.h>
#include <xcodec/xcodec_hash.h>
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// // // //
@ -41,17 +40,13 @@
// // // //
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
struct candidate_symbol
{
bool set_;
unsigned offset_;
uint64_t symbol_;
};
XCodecEncoder::XCodecEncoder(XCodecCache *cache) XCodecEncoder::XCodecEncoder(XCodecCache *cache)
: log_("/xcodec/encoder"), : log_("/xcodec/encoder"),
cache_(cache) cache_(cache)
{ } {
candidate_start_ = -1;
candidate_symbol_ = 0;
}
XCodecEncoder::~XCodecEncoder() XCodecEncoder::~XCodecEncoder()
{ } { }
@ -61,15 +56,14 @@ XCodecEncoder::~XCodecEncoder()
* to other data, declarations of data to be referenced, and data that needs * to other data, declarations of data to be referenced, and data that needs
* escaped. * escaped.
*/ */
void
XCodecEncoder::encode (Buffer& output, Buffer& input) void XCodecEncoder::encode (Buffer& output, Buffer& input, bool wait)
{ {
XCodecHash xcodec_hash; int off = source_.length ();
candidate_symbol candidate = {0, 0, 0};
unsigned offset = 0;
unsigned o = 0;
Buffer old; Buffer old;
source_.append (input);
for (Buffer::SegmentIterator it = input.segments (); ! it.end (); it.next ()) for (Buffer::SegmentIterator it = input.segments (); ! it.end (); it.next ())
{ {
const BufferSegment* seg = *it; const BufferSegment* seg = *it;
@ -80,14 +74,14 @@ XCodecEncoder::encode (Buffer& output, Buffer& input)
/* /*
* Add bytes to the hash until we have a complete hash. * Add bytes to the hash until we have a complete hash.
*/ */
if (++o < XCODEC_SEGMENT_LENGTH) if (++off < XCODEC_SEGMENT_LENGTH)
xcodec_hash.add (*p); xcodec_hash_.add (*p);
else else
{ {
if (o == XCODEC_SEGMENT_LENGTH) if (off == XCODEC_SEGMENT_LENGTH)
xcodec_hash.add (*p); xcodec_hash_.add (*p);
else else
xcodec_hash.roll (*p); xcodec_hash_.roll (*p);
/* /*
* And then mix the hash's internal state into a * And then mix the hash's internal state into a
@ -95,19 +89,18 @@ XCodecEncoder::encode (Buffer& output, Buffer& input)
* and to look up possible past occurances of that * and to look up possible past occurances of that
* data in the XCodecCache. * data in the XCodecCache.
*/ */
uint64_t hash = xcodec_hash.mix (); uint64_t hash = xcodec_hash_.mix ();
/* /*
* If there is a pending candidate hash that wouldn't * If there is a pending candidate hash that wouldn't
* overlap with the data that the rolling hash presently * overlap with the data that the rolling hash presently
* covers, declare it now. * covers, declare it now.
*/ */
if (candidate.set_ && candidate.offset_ + (XCODEC_SEGMENT_LENGTH * 2) <= offset + o) if (candidate_start_ >= 0 && candidate_start_ + (XCODEC_SEGMENT_LENGTH * 2) <= off)
{ {
encode_declaration (output, input, offset, candidate.offset_, candidate.symbol_); encode_declaration (output, source_, candidate_start_, candidate_symbol_);
o -= (candidate.offset_ + XCODEC_SEGMENT_LENGTH - offset); off -= (candidate_start_ + XCODEC_SEGMENT_LENGTH);
offset = (candidate.offset_ + XCODEC_SEGMENT_LENGTH); candidate_start_ = -1;
candidate.set_ = false;
} }
/* /*
@ -122,17 +115,16 @@ XCodecEncoder::encode (Buffer& output, Buffer& input)
* identical to this chunk of data, then that's * identical to this chunk of data, then that's
* positively fantastic. * positively fantastic.
*/ */
if (encode_reference (output, input, offset, offset + o - XCODEC_SEGMENT_LENGTH, hash, old)) if (encode_reference (output, source_, off - XCODEC_SEGMENT_LENGTH, hash, old))
{ {
/* /*
* We have output any data before this hash * We have output any data before this hash
* in escaped form, so any candidate hash * in escaped form, so any candidate hash
* before it is invalid now. * before it is invalid now.
*/ */
offset += o; off = 0;
o = 0; xcodec_hash_.reset();
xcodec_hash.reset(); candidate_start_ = -1;
candidate.set_ = false;
} }
else else
{ {
@ -152,7 +144,7 @@ XCodecEncoder::encode (Buffer& output, Buffer& input)
* Not defined before, it's a candidate for declaration * Not defined before, it's a candidate for declaration
* if we don't already have one. * if we don't already have one.
*/ */
if (candidate.set_) if (candidate_start_ >= 0)
{ {
/* /*
* We already have a hash that occurs earlier, * We already have a hash that occurs earlier,
@ -160,7 +152,7 @@ XCodecEncoder::encode (Buffer& output, Buffer& input)
* covered by this hash, so don't remember it * covered by this hash, so don't remember it
* and keep going. * and keep going.
*/ */
ASSERT(log_, candidate.offset_ + (XCODEC_SEGMENT_LENGTH * 2) > offset + o); ASSERT(log_, candidate_start_ + (XCODEC_SEGMENT_LENGTH * 2) > off);
} }
else else
{ {
@ -171,80 +163,99 @@ XCodecEncoder::encode (Buffer& output, Buffer& input)
* find something to reference we can declare this one * find something to reference we can declare this one
* for future use. * for future use.
*/ */
candidate.offset_ = offset + o - XCODEC_SEGMENT_LENGTH; candidate_start_ = off - XCODEC_SEGMENT_LENGTH;
candidate.symbol_ = hash; candidate_symbol_ = hash;
candidate.set_ = true;
} }
} }
} }
} }
} }
if (! wait)
flush (output);
}
bool XCodecEncoder::flush (Buffer& output)
{
bool vld = false;
/* /*
* There's a hash we can declare, do it. * There's a hash we can declare, do it.
*/ */
if (candidate.set_) if (candidate_start_ >= 0)
{ {
encode_declaration (output, input, offset, candidate.offset_, candidate.symbol_); encode_declaration (output, source_, candidate_start_, candidate_symbol_);
o -= (candidate.offset_ + XCODEC_SEGMENT_LENGTH - offset); candidate_start_ = -1;
offset = (candidate.offset_ + XCODEC_SEGMENT_LENGTH); vld = true;
candidate.set_ = false;
} }
/* /*
* There's data after that hash or no candidate hash, so * There's data after that hash or no candidate hash, so just escape it.
* just escape it.
*/ */
if (offset < input.length ()) if (source_.length () > 0)
encode_escape (output, input, offset, input.length ()); {
encode_escape (output, source_, source_.length ());
vld = true;
} }
void xcodec_hash_.reset();
XCodecEncoder::encode_declaration (Buffer& output, Buffer& input, unsigned offset, unsigned start, uint64_t hash)
{
if (offset < start)
encode_escape (output, input, offset, start);
cache_->enter (hash, input, start); return vld;
}
void XCodecEncoder::encode_declaration (Buffer& output, Buffer& input, unsigned start, uint64_t hash)
{
if (start > 0)
encode_escape (output, input, start);
cache_->enter (hash, input, 0);
output.append (XCODEC_MAGIC); output.append (XCODEC_MAGIC);
output.append (XCODEC_OP_EXTRACT); output.append (XCODEC_OP_EXTRACT);
output.append (input, start, XCODEC_SEGMENT_LENGTH); output.append (input, XCODEC_SEGMENT_LENGTH);
input.skip (XCODEC_SEGMENT_LENGTH);
} }
void void XCodecEncoder::encode_escape (Buffer& output, Buffer& input, unsigned length)
XCodecEncoder::encode_escape (Buffer& output, Buffer& input, unsigned offset, unsigned limit)
{ {
unsigned pos; unsigned pos;
while (offset < limit && input.find (XCODEC_MAGIC, offset, limit - offset, &pos)) while (length > 0)
{ {
if (offset < pos) if (input.find (XCODEC_MAGIC, 0, length, &pos))
output.append (input, offset, pos - offset); {
if (pos > 0)
output.append (input, 0, pos);
output.append (XCODEC_MAGIC); output.append (XCODEC_MAGIC);
output.append (XCODEC_OP_ESCAPE); output.append (XCODEC_OP_ESCAPE);
offset = pos + 1; input.skip (pos + 1);
length -= pos + 1;
}
else
{
output.append (input, length);
input.skip (length);
break;
}
}
} }
if (offset < limit) bool XCodecEncoder::encode_reference (Buffer& output, Buffer& input, unsigned start, uint64_t hash, Buffer& old)
output.append (input, offset, limit - offset);
}
bool
XCodecEncoder::encode_reference (Buffer& output, Buffer& input, unsigned offset, unsigned start, uint64_t hash, Buffer& old)
{ {
uint8_t data[XCODEC_SEGMENT_LENGTH]; uint8_t data[XCODEC_SEGMENT_LENGTH];
input.copyout (data, start, XCODEC_SEGMENT_LENGTH); input.copyout (data, start, XCODEC_SEGMENT_LENGTH);
if (old.equal (data, sizeof data)) if (old.equal (data, sizeof data))
{ {
if (offset < start) if (start > 0)
encode_escape (output, input, offset, start); encode_escape (output, input, start);
output.append (XCODEC_MAGIC); output.append (XCODEC_MAGIC);
output.append (XCODEC_OP_REF); output.append (XCODEC_OP_REF);
uint64_t behash = BigEndian::encode (hash); uint64_t behash = BigEndian::encode (hash);
output.append (&behash); output.append (&behash);
input.skip (XCODEC_SEGMENT_LENGTH);
return true; return true;
} }

View file

@ -26,6 +26,8 @@
#ifndef XCODEC_XCODEC_ENCODER_H #ifndef XCODEC_XCODEC_ENCODER_H
#define XCODEC_XCODEC_ENCODER_H #define XCODEC_XCODEC_ENCODER_H
#include <xcodec/xcodec_hash.h>
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
// // // //
// File: xcodec_encoder.h // // File: xcodec_encoder.h //
@ -42,16 +44,22 @@ class XCodecEncoder
{ {
LogHandle log_; LogHandle log_;
XCodecCache* cache_; XCodecCache* cache_;
Buffer source_;
XCodecHash xcodec_hash_;
int candidate_start_;
uint64_t candidate_symbol_;
public: public:
XCodecEncoder(XCodecCache*); XCodecEncoder(XCodecCache*);
~XCodecEncoder(); ~XCodecEncoder();
void encode (Buffer&, Buffer&); void encode (Buffer&, Buffer&, bool);
bool flush (Buffer&);
private: private:
void encode_declaration (Buffer&, Buffer&, unsigned, unsigned, uint64_t); void encode_declaration (Buffer&, Buffer&, unsigned, uint64_t);
void encode_escape (Buffer&, Buffer&, unsigned, unsigned); void encode_escape (Buffer&, Buffer&, unsigned);
bool encode_reference (Buffer&, Buffer&, unsigned, unsigned, uint64_t, Buffer&); bool encode_reference (Buffer&, Buffer&, unsigned, uint64_t, Buffer&);
}; };
#endif /* !XCODEC_XCODEC_ENCODER_H */ #endif /* !XCODEC_XCODEC_ENCODER_H */

View file

@ -25,6 +25,7 @@
#include <common/buffer.h> #include <common/buffer.h>
#include <common/endian.h> #include <common/endian.h>
#include <event/event_system.h>
#include <programs/wanproxy/wanproxy.h> #include <programs/wanproxy/wanproxy.h>
#include "xcodec_filter.h" #include "xcodec_filter.h"
@ -120,8 +121,7 @@
bool EncodeFilter::consume (Buffer& buf) bool EncodeFilter::consume (Buffer& buf)
{ {
Buffer output; Buffer enc, output;
Buffer enc;
ASSERT(log_, ! flushing_); ASSERT(log_, ! flushing_);
@ -143,26 +143,18 @@ bool EncodeFilter::consume (Buffer& buf)
return false; return false;
} }
encoder_->encode (enc, buf); encoder_->encode (enc, buf, waiting_);
while (! enc.empty ()) while (! enc.empty ())
encode_frame (enc, output);
if (waiting_)
{ {
int n = enc.length (); if (wait_action_)
if (n > XCODEC_PIPE_MAX_FRAME) wait_action_->cancel ();
n = XCODEC_PIPE_MAX_FRAME; wait_action_ = event_system.track (150, StreamModeWait, callback (this, &EncodeFilter::on_read_timeout));
Buffer frame;
enc.moveout (&frame, n);
uint16_t len = n;
len = BigEndian::encode (len);
output.append (XCODEC_PIPE_OP_FRAME);
output.append (&len);
output.append (frame);
} }
return produce (output); return (! output.empty () ? produce (output) : true);
} }
void EncodeFilter::flush (int flg) void EncodeFilter::flush (int flg)
@ -175,7 +167,9 @@ void EncodeFilter::flush (int flg)
flush_flags_ |= flg; flush_flags_ |= flg;
if (! sent_eos_) if (! sent_eos_)
{ {
Buffer output; Buffer enc, output;
if (waiting_ && encoder_ && encoder_->flush (enc))
encode_frame (enc, output);
output.append (XCODEC_PIPE_OP_EOS); output.append (XCODEC_PIPE_OP_EOS);
sent_eos_ = produce (output); sent_eos_ = produce (output);
} }
@ -184,6 +178,35 @@ void EncodeFilter::flush (int flg)
Filter::flush (flush_flags_); Filter::flush (flush_flags_);
} }
void EncodeFilter::encode_frame (Buffer& src, Buffer& trg)
{
int n = src.length ();
if (n > XCODEC_PIPE_MAX_FRAME)
n = XCODEC_PIPE_MAX_FRAME;
uint16_t len = n;
len = BigEndian::encode (len);
trg.append (XCODEC_PIPE_OP_FRAME);
trg.append (&len);
trg.append (src, n);
src.skip (n);
}
void EncodeFilter::on_read_timeout (Event e)
{
if (wait_action_)
wait_action_->cancel (), wait_action_ = 0;
Buffer enc, output;
if (encoder_ && encoder_->flush (enc))
{
encode_frame (enc, output);
produce (output);
}
}
// Decoding // Decoding
bool DecodeFilter::consume (Buffer& buf) bool DecodeFilter::consume (Buffer& buf)

View file

@ -13,6 +13,8 @@
#include <set> #include <set>
#include <common/filter.h> #include <common/filter.h>
#include <event/event.h>
#include <event/action.h>
#include <xcodec/xcodec.h> #include <xcodec/xcodec.h>
#include <xcodec/xcodec_cache.h> #include <xcodec/xcodec_cache.h>
#include <xcodec/xcodec_hash.h> #include <xcodec/xcodec_hash.h>
@ -24,22 +26,30 @@ class EncodeFilter : public BufferedFilter
private: private:
XCodecCache* cache_; XCodecCache* cache_;
XCodecEncoder* encoder_; XCodecEncoder* encoder_;
Action* wait_action_;
bool waiting_;
bool sent_eos_; bool sent_eos_;
bool eos_ack_; bool eos_ack_;
public: public:
EncodeFilter (const LogHandle& log, XCodecCache* cc) : BufferedFilter (log) EncodeFilter (const LogHandle& log, XCodecCache* cc, int flg = 0) : BufferedFilter (log)
{ {
cache_ = cc; encoder_ = 0; sent_eos_ = eos_ack_ = false; cache_ = cc; encoder_ = 0; wait_action_ = 0; waiting_ = (flg & 1); sent_eos_ = eos_ack_ = false;
} }
virtual ~EncodeFilter () virtual ~EncodeFilter ()
{ {
if (wait_action_)
wait_action_->cancel ();
delete encoder_; delete encoder_;
} }
virtual bool consume (Buffer& buf); virtual bool consume (Buffer& buf);
virtual void flush (int flg); virtual void flush (int flg);
private:
void encode_frame (Buffer& src, Buffer& trg);
void on_read_timeout (Event e);
}; };
class DecodeFilter : public LogisticFilter class DecodeFilter : public LogisticFilter