Files
scylladb/tests/tcp_test.cc
Gleb Natapov 73f6d943e1 net: separate device initialization from queues initialization
This patch adds new class distributed_device which is responsible for
initializing HW device and it is shared between all cpus. Old device
class responsibility becomes managing rx/tx queue pair and it is local
per cpu. Each cpu have to call distributed_device::init_local_queue() to
create its own device. The logic to distribute cpus between available
queues (in case there is no enough queues for each cpu) is in the
distributed_device currently and not really implemented yet, so only one
queue or queues == cpus scenarios are supported currently, but this can
be fixed later.

The plan is to rename "distributed_device" to "device" and "device"
to "queue_pair" in later patches.
2014-12-09 18:55:14 +02:00

54 lines
1.5 KiB
C++

/*
* Copyright (C) 2014 Cloudius Systems, Ltd.
*/
#include "net/ip.hh"
#include "net/virtio.hh"
#include "net/tcp.hh"
using namespace net;
struct tcp_test {
ipv4& inet;
using tcp = net::tcp<ipv4_traits>;
tcp::listener _listener;
struct connection {
tcp::connection tcp_conn;
explicit connection(tcp::connection tc) : tcp_conn(std::move(tc)) {}
void run() {
tcp_conn.wait_for_data().then([this] {
auto p = tcp_conn.read();
if (!p.len()) {
tcp_conn.close_write();
return;
}
print("read %d bytes\n", p.len());
tcp_conn.send(std::move(p));
run();
});
}
};
tcp_test(ipv4& inet) : inet(inet), _listener(inet.get_tcp().listen(10000)) {}
void run() {
_listener.accept().then([this] (tcp::connection conn) {
(new connection(std::move(conn)))->run();
run();
});
}
};
int main(int ac, char** av) {
boost::program_options::variables_map opts;
opts.insert(std::make_pair("tap-device", boost::program_options::variable_value(std::string("tap0"), false)));
auto vnet = create_virtio_net_device(opts);
interface netif(std::move(vnet));
ipv4 inet(&netif);
inet.set_host_address(ipv4_address("192.168.122.2"));
tcp_test tt(inet);
engine.when_started().then([&tt] { tt.run(); });
engine.run();
}