* Migrate the project from C++14 to C++11. All tests passed. * Remove CONSTEXPR_SPECIFIER macro cause fall back to const in c++11. * Remove C++14 code in test/main.cpp Change sample code from C++14 to C++11 in README.md * Fixed warnings in old-version gcc since C++11 doesn't support empty braced initialization well. * Fixed warnings in old-version gcc since C++11 doesn't support empty braced initialization well. * renaming * fixed conan cpp * fixed appveyor configuration * skip tests from libuv * Add line-feed to tcp.hpp:21
104 lines
3.1 KiB
C++
104 lines
3.1 KiB
C++
#include <uvw.hpp>
|
|
#include <cassert>
|
|
#include <iostream>
|
|
#include <memory>
|
|
#include <chrono>
|
|
|
|
|
|
void listen(uvw::Loop &loop) {
|
|
std::shared_ptr<uvw::TCPHandle> tcp = loop.resource<uvw::TCPHandle>();
|
|
|
|
tcp->on<uvw::ErrorEvent>([](const uvw::ErrorEvent &, uvw::TCPHandle &) {
|
|
std::cout << "error " << std::endl;
|
|
});
|
|
|
|
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 &) {
|
|
std::cout << "error " << std::endl;
|
|
});
|
|
|
|
auto ptr = srv.shared_from_this();
|
|
client->on<uvw::CloseEvent>([ptr](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](uvw::BaseHandle &) { ++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 &) {
|
|
std::cout << "error " << std::endl;
|
|
});
|
|
|
|
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();
|
|
}
|