2018-04-22 09:23:08 +00:00
|
|
|
#include "ReliableStream.h"
|
|
|
|
#include <iostream>
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <stdint.h>
|
2018-04-22 22:32:43 +00:00
|
|
|
#include <iomanip>
|
2018-04-22 09:23:08 +00:00
|
|
|
|
|
|
|
class Forwarder : public Stream
|
|
|
|
{
|
|
|
|
public:
|
2018-04-22 22:32:43 +00:00
|
|
|
std::string prefix;
|
2018-04-22 09:23:08 +00:00
|
|
|
Forwarder *other;
|
|
|
|
std::vector<std::vector<uint8_t>> packets;
|
|
|
|
|
|
|
|
virtual void write(const void* p, size_t n)
|
|
|
|
{
|
2018-04-22 22:32:43 +00:00
|
|
|
std::cout << prefix << ": ";
|
2019-01-04 02:35:32 +00:00
|
|
|
for(size_t i = 0; i < n; i++)
|
2018-04-22 22:32:43 +00:00
|
|
|
std::cout << std::hex << std::setfill('0') << std::setw(2) << (int) ((uint8_t*)p)[i] << " ";
|
|
|
|
std::cout << std::endl;
|
2018-04-22 09:23:08 +00:00
|
|
|
other->enqueueReceive(p,n);
|
|
|
|
}
|
|
|
|
|
|
|
|
void enqueueReceive(const void* p, size_t n)
|
|
|
|
{
|
|
|
|
packets.emplace_back((const uint8_t*)p, ((const uint8_t*)p)+n);
|
|
|
|
}
|
|
|
|
|
|
|
|
void idle()
|
|
|
|
{
|
|
|
|
std::vector<std::vector<uint8_t>> packets2;
|
|
|
|
packets2.swap(packets);
|
|
|
|
for(auto& p : packets2)
|
|
|
|
notifyReceive(p.data(), p.size());
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
class DumpToConsole : public StreamListener
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
std::string prefix;
|
|
|
|
|
|
|
|
DumpToConsole(std::string prefix) : prefix(prefix) {}
|
|
|
|
|
|
|
|
size_t onReceive(const uint8_t* p, size_t n)
|
|
|
|
{
|
|
|
|
std::cout << prefix;
|
2019-01-04 02:35:32 +00:00
|
|
|
for(size_t i = 0; i < n; i++)
|
2018-04-22 09:23:08 +00:00
|
|
|
{
|
|
|
|
if(p[i] >= 128 || p[i] < 32)
|
|
|
|
std::cout << "\\x" << std::hex << (unsigned)p[i];
|
|
|
|
else
|
|
|
|
std::cout << p[i];
|
|
|
|
}
|
|
|
|
std::cout << std::endl;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
Forwarder fwd1, fwd2;
|
|
|
|
fwd1.other = &fwd2;
|
|
|
|
fwd2.other = &fwd1;
|
2018-04-22 22:32:43 +00:00
|
|
|
fwd1.prefix = "1->2";
|
|
|
|
fwd2.prefix = "2->1";
|
2018-04-22 09:23:08 +00:00
|
|
|
|
2018-04-23 23:42:36 +00:00
|
|
|
ReliableStream rel1(&fwd1), rel2(&fwd2);
|
2018-04-22 09:23:08 +00:00
|
|
|
|
|
|
|
DumpToConsole dump1("one:");
|
|
|
|
DumpToConsole dump2("two:");
|
|
|
|
|
|
|
|
rel1.setListener(&dump1);
|
|
|
|
rel2.setListener(&dump2);
|
|
|
|
|
|
|
|
rel1.write("Hello, world.", 13);
|
|
|
|
rel1.flushWrite();
|
|
|
|
|
2018-04-22 22:32:43 +00:00
|
|
|
for(int i = 0; i < 10; i++)
|
2018-04-22 09:23:08 +00:00
|
|
|
{
|
2018-04-22 22:32:43 +00:00
|
|
|
std::cout << "handle 1:\n";
|
2018-04-22 09:23:08 +00:00
|
|
|
fwd1.idle();
|
2018-04-22 22:32:43 +00:00
|
|
|
std::cout << "handle 2:\n";
|
2018-04-22 09:23:08 +00:00
|
|
|
fwd2.idle();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|