92 lines
2.9 KiB
C++
92 lines
2.9 KiB
C++
#include <cassert>
|
|
#include <chrono>
|
|
#include <iostream>
|
|
#include <memory>
|
|
#include <uvw.hpp>
|
|
|
|
void listen(uvw::Loop &loop) {
|
|
std::shared_ptr<uvw::TCPHandle> tcp = loop.resource<uvw::TCPHandle>();
|
|
tcp->on<uvw::ErrorEvent>([](const uvw::ErrorEvent &, uvw::TCPHandle &) { assert(false); });
|
|
|
|
tcp->once<uvw::ListenEvent>([](const uvw::ListenEvent &, uvw::TCPHandle &srv) {
|
|
std::cout << "listen" << std::endl;
|
|
|
|
std::shared_ptr<uvw::TCPHandle> client = srv.loop().resource<uvw::TCPHandle>();
|
|
client->on<uvw::ErrorEvent>([](const uvw::ErrorEvent &, uvw::TCPHandle &) { assert(false); });
|
|
|
|
client->on<uvw::CloseEvent>([ptr = srv.shared_from_this()](const uvw::CloseEvent &, uvw::TCPHandle &) {
|
|
std::cout << "close" << std::endl;
|
|
ptr->close();
|
|
});
|
|
|
|
srv.accept(*client);
|
|
|
|
uvw::Addr local = srv.sock();
|
|
std::cout << "local: " << local.ip << " " << local.port << std::endl;
|
|
|
|
uvw::Addr remote = client->peer();
|
|
std::cout << "remote: " << remote.ip << " " << remote.port << std::endl;
|
|
|
|
client->on<uvw::DataEvent>([](const uvw::DataEvent &event, uvw::TCPHandle &) {
|
|
std::cout.write(event.data.get(), event.length) << std::endl;
|
|
std::cout << "data length: " << event.length << std::endl;
|
|
});
|
|
|
|
client->on<uvw::EndEvent>([](const uvw::EndEvent &, uvw::TCPHandle &handle) {
|
|
std::cout << "end" << std::endl;
|
|
int count = 0;
|
|
handle.loop().walk([&count](auto &) { ++count; });
|
|
std::cout << "still alive: " << count << " handles" << std::endl;
|
|
handle.close();
|
|
});
|
|
|
|
client->read();
|
|
});
|
|
|
|
tcp->once<uvw::CloseEvent>([](const uvw::CloseEvent &, uvw::TCPHandle &) {
|
|
std::cout << "close" << std::endl;
|
|
});
|
|
|
|
tcp->bind("127.0.0.1", 4242);
|
|
tcp->listen();
|
|
}
|
|
|
|
void conn(uvw::Loop &loop) {
|
|
auto tcp = loop.resource<uvw::TCPHandle>();
|
|
tcp->on<uvw::ErrorEvent>([](const uvw::ErrorEvent &, uvw::TCPHandle &) { assert(false); });
|
|
|
|
tcp->once<uvw::WriteEvent>([](const uvw::WriteEvent &, uvw::TCPHandle &handle) {
|
|
std::cout << "write" << std::endl;
|
|
handle.close();
|
|
});
|
|
|
|
tcp->once<uvw::ConnectEvent>([](const uvw::ConnectEvent &, uvw::TCPHandle &handle) {
|
|
std::cout << "connect" << std::endl;
|
|
|
|
auto dataTryWrite = std::unique_ptr<char[]>(new char[1]{'a'});
|
|
int bw = handle.tryWrite(std::move(dataTryWrite), 1);
|
|
std::cout << "written: " << ((int)bw) << std::endl;
|
|
|
|
auto dataWrite = std::unique_ptr<char[]>(new char[2]{'b', 'c'});
|
|
handle.write(std::move(dataWrite), 2);
|
|
});
|
|
|
|
tcp->once<uvw::CloseEvent>([](const uvw::CloseEvent &, uvw::TCPHandle &) {
|
|
std::cout << "close" << std::endl;
|
|
});
|
|
|
|
tcp->connect("127.0.0.1", 4242);
|
|
}
|
|
|
|
void g() {
|
|
auto loop = uvw::Loop::getDefault();
|
|
listen(*loop);
|
|
conn(*loop);
|
|
loop->run();
|
|
loop = nullptr;
|
|
}
|
|
|
|
int main() {
|
|
g();
|
|
}
|