mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-09 01:24:14 +00:00
stream recieve queue
This commit is contained in:
parent
54f2955e2f
commit
41ef22cf09
23
Queue.h
23
Queue.h
@ -45,6 +45,18 @@ namespace util
|
|||||||
}
|
}
|
||||||
return el;
|
return el;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Wait (int sec, int usec)
|
||||||
|
{
|
||||||
|
std::unique_lock<std::mutex> l(m_QueueMutex);
|
||||||
|
return m_NonEmpty.wait_for (l, std::chrono::seconds (sec) + std::chrono::milliseconds (usec)) != std::cv_status::timeout;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool IsEmpty ()
|
||||||
|
{
|
||||||
|
std::unique_lock<std::mutex> l(m_QueueMutex);
|
||||||
|
return m_Queue.empty ();
|
||||||
|
}
|
||||||
|
|
||||||
void WakeUp () { m_NonEmpty.notify_one (); };
|
void WakeUp () { m_NonEmpty.notify_one (); };
|
||||||
|
|
||||||
@ -54,14 +66,21 @@ namespace util
|
|||||||
return GetNonThreadSafe ();
|
return GetNonThreadSafe ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Element * Peek ()
|
||||||
|
{
|
||||||
|
std::unique_lock<std::mutex> l(m_QueueMutex);
|
||||||
|
return GetNonThreadSafe (true);
|
||||||
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
Element * GetNonThreadSafe ()
|
Element * GetNonThreadSafe (bool peek = false)
|
||||||
{
|
{
|
||||||
if (!m_Queue.empty ())
|
if (!m_Queue.empty ())
|
||||||
{
|
{
|
||||||
Element * el = m_Queue.front ();
|
Element * el = m_Queue.front ();
|
||||||
m_Queue.pop ();
|
if (!peek)
|
||||||
|
m_Queue.pop ();
|
||||||
return el;
|
return el;
|
||||||
}
|
}
|
||||||
return nullptr;
|
return nullptr;
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#include "I2PEndian.h"
|
#include "I2PEndian.h"
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <algorithm>
|
||||||
#include <cryptopp/gzip.h>
|
#include <cryptopp/gzip.h>
|
||||||
#include "Log.h"
|
#include "Log.h"
|
||||||
#include "RouterInfo.h"
|
#include "RouterInfo.h"
|
||||||
@ -20,9 +21,15 @@ namespace stream
|
|||||||
m_RecvStreamID = i2p::context.GetRandomNumberGenerator ().GenerateWord32 ();
|
m_RecvStreamID = i2p::context.GetRandomNumberGenerator ().GenerateWord32 ();
|
||||||
}
|
}
|
||||||
|
|
||||||
void Stream::HandleNextPacket (const uint8_t * buf, size_t len)
|
Stream::~Stream ()
|
||||||
{
|
{
|
||||||
const uint8_t * end = buf + len;
|
while (auto packet = m_ReceiveQueue.Get ())
|
||||||
|
delete packet;
|
||||||
|
}
|
||||||
|
|
||||||
|
void Stream::HandleNextPacket (Packet * packet)
|
||||||
|
{
|
||||||
|
const uint8_t * end = packet->buf + packet->len, * buf = packet->buf;
|
||||||
buf += 4; // sendStreamID
|
buf += 4; // sendStreamID
|
||||||
if (!m_SendStreamID)
|
if (!m_SendStreamID)
|
||||||
m_SendStreamID = be32toh (*(uint32_t *)buf);
|
m_SendStreamID = be32toh (*(uint32_t *)buf);
|
||||||
@ -61,6 +68,9 @@ namespace stream
|
|||||||
// we have reached payload section
|
// we have reached payload section
|
||||||
std::string str((const char *)buf, end-buf);
|
std::string str((const char *)buf, end-buf);
|
||||||
LogPrint ("Payload: ", str);
|
LogPrint ("Payload: ", str);
|
||||||
|
|
||||||
|
packet->offset = buf - packet->buf;
|
||||||
|
m_ReceiveQueue.Put (packet);
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t Stream::Send (uint8_t * buf, size_t len, int timeout)
|
size_t Stream::Send (uint8_t * buf, size_t len, int timeout)
|
||||||
@ -105,6 +115,37 @@ namespace stream
|
|||||||
DeleteI2NPMessage (msg);
|
DeleteI2NPMessage (msg);
|
||||||
return len;
|
return len;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
size_t Stream::Receive (uint8_t * buf, size_t len, int timeout)
|
||||||
|
{
|
||||||
|
if (m_ReceiveQueue.IsEmpty ())
|
||||||
|
{
|
||||||
|
if (!m_ReceiveQueue.Wait (timeout, 0))
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// either non-empty or we have received empty
|
||||||
|
size_t pos = 0;
|
||||||
|
while (pos < len)
|
||||||
|
{
|
||||||
|
Packet * packet = m_ReceiveQueue.Peek ();
|
||||||
|
if (packet)
|
||||||
|
{
|
||||||
|
size_t l = std::min (packet->GetLength (), len - pos);
|
||||||
|
memcpy (buf + pos, packet->GetBuffer (), l);
|
||||||
|
pos += l;
|
||||||
|
packet->offset += l;
|
||||||
|
if (!packet->GetLength ())
|
||||||
|
{
|
||||||
|
m_ReceiveQueue.Get ();
|
||||||
|
delete packet;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else // no more data available
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return pos;
|
||||||
|
}
|
||||||
|
|
||||||
StreamingDestination * sharedLocalDestination = nullptr;
|
StreamingDestination * sharedLocalDestination = nullptr;
|
||||||
|
|
||||||
@ -124,14 +165,17 @@ namespace stream
|
|||||||
DeleteI2NPMessage (m_LeaseSet);
|
DeleteI2NPMessage (m_LeaseSet);
|
||||||
}
|
}
|
||||||
|
|
||||||
void StreamingDestination::HandleNextPacket (const uint8_t * buf, size_t len)
|
void StreamingDestination::HandleNextPacket (Packet * packet)
|
||||||
{
|
{
|
||||||
uint32_t sendStreamID = be32toh (*(uint32_t *)(buf));
|
uint32_t sendStreamID = be32toh (*(uint32_t *)(packet->buf));
|
||||||
auto it = m_Streams.find (sendStreamID);
|
auto it = m_Streams.find (sendStreamID);
|
||||||
if (it != m_Streams.end ())
|
if (it != m_Streams.end ())
|
||||||
it->second->HandleNextPacket (buf, len);
|
it->second->HandleNextPacket (packet);
|
||||||
else
|
else
|
||||||
|
{
|
||||||
LogPrint ("Unknown stream ", sendStreamID);
|
LogPrint ("Unknown stream ", sendStreamID);
|
||||||
|
delete packet;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Stream * StreamingDestination::CreateNewStream (const i2p::data::LeaseSet * remote)
|
Stream * StreamingDestination::CreateNewStream (const i2p::data::LeaseSet * remote)
|
||||||
@ -232,13 +276,14 @@ namespace stream
|
|||||||
CryptoPP::Gunzip decompressor;
|
CryptoPP::Gunzip decompressor;
|
||||||
decompressor.Put (buf, length);
|
decompressor.Put (buf, length);
|
||||||
decompressor.MessageEnd();
|
decompressor.MessageEnd();
|
||||||
uint8_t uncompressed[2048];
|
Packet * uncompressed = new Packet;
|
||||||
int uncompressedSize = decompressor.MaxRetrievable ();
|
uncompressed->offset = 0;
|
||||||
decompressor.Get (uncompressed, uncompressedSize);
|
uncompressed->len = decompressor.MaxRetrievable ();
|
||||||
|
decompressor.Get (uncompressed->buf, uncompressed->len);
|
||||||
// then forward to streaming engine
|
// then forward to streaming engine
|
||||||
// TODO: we have onle one destination, might be more
|
// TODO: we have onle one destination, might be more
|
||||||
if (sharedLocalDestination)
|
if (sharedLocalDestination)
|
||||||
sharedLocalDestination->HandleNextPacket (uncompressed, uncompressedSize);
|
sharedLocalDestination->HandleNextPacket (uncompressed);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
LogPrint ("Data: protocol ", buf[9], " is not supported");
|
LogPrint ("Data: protocol ", buf[9], " is not supported");
|
||||||
|
20
Streaming.h
20
Streaming.h
@ -4,6 +4,7 @@
|
|||||||
#include <inttypes.h>
|
#include <inttypes.h>
|
||||||
#include <map>
|
#include <map>
|
||||||
#include <cryptopp/dsa.h>
|
#include <cryptopp/dsa.h>
|
||||||
|
#include "Queue.h"
|
||||||
#include "Identity.h"
|
#include "Identity.h"
|
||||||
#include "LeaseSet.h"
|
#include "LeaseSet.h"
|
||||||
#include "I2NPProtocol.h"
|
#include "I2NPProtocol.h"
|
||||||
@ -25,26 +26,39 @@ namespace stream
|
|||||||
const uint16_t PACKET_FLAG_NO_ACK = 0x0400;
|
const uint16_t PACKET_FLAG_NO_ACK = 0x0400;
|
||||||
|
|
||||||
const size_t STREAMING_MTU = 1730;
|
const size_t STREAMING_MTU = 1730;
|
||||||
|
|
||||||
|
struct Packet
|
||||||
|
{
|
||||||
|
uint8_t buf[STREAMING_MTU];
|
||||||
|
size_t len, offset;
|
||||||
|
|
||||||
|
Packet (): len (0), offset (0) {};
|
||||||
|
uint8_t * GetBuffer () { return buf + offset; };
|
||||||
|
size_t GetLength () const { return len - offset; };
|
||||||
|
};
|
||||||
|
|
||||||
class StreamingDestination;
|
class StreamingDestination;
|
||||||
class Stream
|
class Stream
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
Stream (StreamingDestination * local, const i2p::data::LeaseSet * remote);
|
Stream (StreamingDestination * local, const i2p::data::LeaseSet * remote);
|
||||||
|
~Stream ();
|
||||||
uint32_t GetSendStreamID () const { return m_SendStreamID; };
|
uint32_t GetSendStreamID () const { return m_SendStreamID; };
|
||||||
uint32_t GetRecvStreamID () const { return m_RecvStreamID; };
|
uint32_t GetRecvStreamID () const { return m_RecvStreamID; };
|
||||||
const i2p::data::LeaseSet * GetRemoteLeaseSet () const { return m_RemoteLeaseSet; };
|
const i2p::data::LeaseSet * GetRemoteLeaseSet () const { return m_RemoteLeaseSet; };
|
||||||
bool IsEstablished () const { return m_SendStreamID; };
|
bool IsEstablished () const { return m_SendStreamID; };
|
||||||
|
|
||||||
void HandleNextPacket (const uint8_t * buf, size_t len);
|
void HandleNextPacket (Packet * packet);
|
||||||
size_t Send (uint8_t * buf, size_t len, int timeout); // timeout in seconds
|
size_t Send (uint8_t * buf, size_t len, int timeout); // timeout in seconds
|
||||||
|
size_t Receive (uint8_t * buf, size_t len, int timeout); // returns 0 if timeout expired
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
uint32_t m_SendStreamID, m_RecvStreamID, m_SequenceNumber;
|
uint32_t m_SendStreamID, m_RecvStreamID, m_SequenceNumber;
|
||||||
StreamingDestination * m_LocalDestination;
|
StreamingDestination * m_LocalDestination;
|
||||||
const i2p::data::LeaseSet * m_RemoteLeaseSet;
|
const i2p::data::LeaseSet * m_RemoteLeaseSet;
|
||||||
|
i2p::util::Queue<Packet> m_ReceiveQueue;
|
||||||
};
|
};
|
||||||
|
|
||||||
class StreamingDestination
|
class StreamingDestination
|
||||||
@ -61,7 +75,7 @@ namespace stream
|
|||||||
|
|
||||||
Stream * CreateNewStream (const i2p::data::LeaseSet * remote);
|
Stream * CreateNewStream (const i2p::data::LeaseSet * remote);
|
||||||
void DeleteStream (Stream * stream);
|
void DeleteStream (Stream * stream);
|
||||||
void HandleNextPacket (const uint8_t * buf, size_t len);
|
void HandleNextPacket (Packet * packet);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user