1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
|
/******************************************************************************
* ____ _ _____ *
* / ___| / \ | ___| C++ *
* | | / _ \ | |_ Actor *
* | |___ / ___ \| _| Framework *
* \____/_/ \_|_| *
* *
* Copyright (C) 2011 - 2017 *
* Dominik Charousset <dominik.charousset (at) haw-hamburg.de> *
* *
* Distributed under the terms and conditions of the BSD 3-Clause License or *
* (at your option) under the terms and conditions of the Boost Software *
* License 1.0. See accompanying files LICENSE and LICENSE_ALTERNATIVE. *
* *
* If you did not receive a copy of the license files, see *
* http://opensource.org/licenses/BSD-3-Clause and *
* http://www.boost.org/LICENSE_1_0.txt. *
******************************************************************************/
// This test simulates a complex multiplexing over multiple layers of WDRR
// scheduled queues. The goal is to reduce the complex mailbox management of
// CAF to its bare bones in order to test whether the multiplexing of stream
// traffic and asynchronous messages works as intended.
//
// The setup is a fixed WDRR queue with three nestes queues. The first nested
// queue stores asynchronous messages, the second one upstream messages, and
// the last queue is a dynamic WDRR queue storing downstream messages.
#define CAF_SUITE mock_streaming_classes
#include <memory>
#include "caf/variant.hpp"
#include "caf/stream_slot.hpp"
#include "caf/test/unit_test.hpp"
#include "caf/intrusive/drr_queue.hpp"
#include "caf/intrusive/singly_linked.hpp"
#include "caf/intrusive/task_result.hpp"
#include "caf/intrusive/wdrr_dynamic_multiplexed_queue.hpp"
#include "caf/intrusive/wdrr_fixed_multiplexed_queue.hpp"
#include "caf/detail/overload.hpp"
using namespace caf;
using namespace caf::intrusive;
namespace {
// -- utility ------------------------------------------------------------------
struct print_with_comma_t {
bool first = true;
template <class T>
std::ostream& operator()(std::ostream& out, const T& x) {
if (!first)
out << ", ";
else
first = false;
return out << deep_to_string(x);
}
};
template <class T, class... Ts>
std::string collapse_args(const T& x, const Ts&... xs) {
std::ostringstream out;
print_with_comma_t f;
f(out, x);
unit(f(out, xs)...);
return out.str();
}
#define TRACE(name, type, ...) \
CAF_MESSAGE(name << " received a " << #type << ": " \
<< collapse_args(__VA_ARGS__));
// -- forward declarations -----------------------------------------------------
// Mimics an actor.
struct entity;
// Mimics a stream_manager.
struct manager;
// Mimics a message.
struct msg;
// Mimics an inbound_path.
struct in;
// Mimics an outbound_path.
struct out;
// Mimics stream_handshake_msg.
struct handshake;
// Mimics downstream_msg.
struct dmsg;
// Mimics upstream_msg.
struct umsg;
// -- message types ------------------------------------------------------------
struct handshake {
stream_slot sender_slot;
};
struct dmsg {
struct batch {
std::vector<int> xs;
};
struct close {
// nop
};
stream_slots slots;
variant<batch, close> content;
};
struct umsg {
struct ack_handshake {
int32_t credit;
};
struct ack_batch {
int32_t credit;
};
struct drop {
// nop
};
stream_slots slots;
variant<ack_batch, ack_handshake, drop> content;
};
struct msg : intrusive::singly_linked<msg> {
entity* sender;
variant<handshake, umsg, dmsg> content;
template <class T>
msg(entity* from ,T&& x) : sender(from), content(std::forward<T>(x)) {
// nop
}
};
// -- manager and path handlers ------------------------------------------------
struct manager {
entity* self;
int x;
int num_messages;
int input_paths = 0;
int output_paths = 0;
manager(entity* parent, int num = 0) : self(parent), x(0), num_messages(num) {
// nop
}
bool done() const {
return (input_paths | output_paths) == 0;
}
void push(entity* to, stream_slots slots, int num);
void operator()(entity* sender, stream_slots slots, in* path, dmsg::batch& x);
};
using manager_ptr = std::shared_ptr<manager>;
struct in {
manager_ptr mgr;
in(manager_ptr ptr) : mgr(std::move(ptr)) {
// nop
}
void operator()(msg& x);
};
struct out {
};
// -- policies and queues ------------------------------------------------------
struct policy_base {
using mapped_type = msg;
using task_size_type = size_t;
using deficit_type = size_t;
using deleter_type = std::default_delete<mapped_type>;
using unique_pointer = std::unique_ptr<msg, deleter_type>;
};
struct handshake_queue_policy : policy_base {
task_size_type task_size(const msg&) {
return 1;
}
};
using handshake_queue = drr_queue<handshake_queue_policy>;
struct umsg_queue_policy : policy_base {
manager* mgr;
umsg_queue_policy(manager* ptr) : mgr(ptr) {
// nop
}
task_size_type task_size(const msg&) {
return 1;
}
};
using umsg_queue = drr_queue<umsg_queue_policy>;
struct inner_dmsg_queue_policy : policy_base {
using key_type = stream_slot;
task_size_type task_size(const msg& x) {
return visit(*this, get<dmsg>(x.content).content);
}
task_size_type operator()(const dmsg::batch& x) const {
CAF_REQUIRE_NOT_EQUAL(x.xs.size(), 0u);
return x.xs.size();
}
task_size_type operator()(const dmsg::close&) const {
return 1;
}
inner_dmsg_queue_policy(std::unique_ptr<in> ptr) : handler(std::move(ptr)) {
// nop
}
std::unique_ptr<in> handler;
};
using inner_dmsg_queue = drr_queue<inner_dmsg_queue_policy>;
struct dmsg_queue_policy : policy_base {
using key_type = stream_slot;
using queue_map_type = std::map<stream_slot, inner_dmsg_queue>;
key_type id_of(const msg& x) {
return get<dmsg>(x.content).slots.receiver;
}
template <class Queue>
static inline bool enabled(const Queue&) {
return true;
}
template <class Queue>
deficit_type quantum(const Queue&, deficit_type x) {
return x;
}
};
using dmsg_queue = wdrr_dynamic_multiplexed_queue<dmsg_queue_policy>;
struct mbox_policy : policy_base {
template <class Queue>
deficit_type quantum(const Queue&, deficit_type x) {
return x;
}
size_t id_of(const msg& x) {
return x.content.index();
}
};
using mbox_queue = wdrr_fixed_multiplexed_queue<mbox_policy, handshake_queue,
umsg_queue, dmsg_queue>;
// -- manager and entity -------------------------------------------------------
template <class Target>
struct dispatcher {
Target& f;
entity* sender;
stream_slots slots;
template <class T>
void operator()(T&& x) {
f(sender, slots, std::forward<T>(x));
}
};
struct entity {
mbox_queue mbox;
const char* name;
entity(const char* cstr_name)
: mbox(mbox_policy{}, handshake_queue_policy{},
umsg_queue_policy{nullptr}, dmsg_queue_policy{}),
name(cstr_name) {
// nop
}
void start_streaming(entity& to, int num_messages) {
CAF_REQUIRE_NOT_EQUAL(num_messages, 0);
auto slot = next_slot++;
CAF_MESSAGE(name << " starts streaming to " << to.name
<< " on slot " << slot);
to.enqueue<handshake>(this, slot);
auto ptr = std::make_shared<manager>(this, num_messages);
ptr->output_paths += 1;
pending_managers_.emplace(slot, std::move(ptr));
}
template <class T, class... Ts>
bool enqueue(entity* sender, Ts&&... xs) {
return mbox.emplace_back(sender, T{std::forward<Ts>(xs)...});
}
void operator()(entity* sender, handshake& hs) {
TRACE(name, handshake, CAF_ARG2("sender", sender->name));
auto slot = next_slot++;
//stream_slots id{slot, hs.sender_slot};
stream_slots id{hs.sender_slot, slot};
// Create required state.
auto mgr = std::make_shared<manager>(this, 0);
managers_.emplace(id, mgr);
mgr->input_paths += 1;
// Create a new queue in the mailbox for incoming traffic.
get<2>(mbox.queues())
.queues()
.emplace(slot, inner_dmsg_queue_policy{std::unique_ptr<in>{new in(mgr)}});
// Acknowledge stream.
sender->enqueue<umsg>(this, id.invert(), umsg::ack_handshake{10});
}
void operator()(entity* sender, stream_slots slots, umsg::ack_handshake& x) {
TRACE(name, ack_handshake, CAF_ARG(slots),
CAF_ARG2("sender", sender->name));
// Get the manager for that stream.
auto i = pending_managers_.find(slots.receiver);
CAF_REQUIRE_NOT_EQUAL(i, pending_managers_.end());
// Create a new queue in the mailbox for incoming traffic.
// Swap the sender/receiver perspective to generate the ID we are using.
managers_.emplace(slots, i->second);
i->second->push(sender, slots.invert(), x.credit);
pending_managers_.erase(i);
}
void operator()(entity* sender, stream_slots input_slots,
umsg::ack_batch& x) {
TRACE(name, ack_batch, CAF_ARG(input_slots),
CAF_ARG2("sender", sender->name));
// Get the manager for that stream.
auto slots = input_slots.invert();
auto i = managers_.find(input_slots);
CAF_REQUIRE_NOT_EQUAL(i, managers_.end());
i->second->push(sender, slots, x.credit);
if (i->second->done())
managers_.erase(i);
}
void operator()(entity* sender, stream_slots slots, in*, dmsg::close&) {
TRACE(name, close, CAF_ARG(slots), CAF_ARG2("sender", sender->name));
auto i = managers_.find(slots);
CAF_REQUIRE_NOT_EQUAL(i, managers_.end());
i->second->input_paths -= 1;
get<2>(mbox.queues()).erase_later(slots.receiver);
if (i->second->done()) {
CAF_MESSAGE(name << " cleans up path " << deep_to_string(slots));
managers_.erase(i);
}
}
stream_slot next_slot = 1;
std::map<stream_slot, int> generators;
std::map<stream_slot, std::vector<int>> caches;
struct source {
stream_slot slot;
entity* ptr;
};
std::map<stream_slot, manager_ptr> pending_managers_;
std::map<stream_slots, manager_ptr> managers_;
};
void manager::push(entity* to, stream_slots slots, int num) {
CAF_REQUIRE_NOT_EQUAL(num, 0);
std::vector<int> xs;
if (x + num > num_messages)
num = num_messages - x;
if (num == 0) {
CAF_MESSAGE(self->name << " is done sending batches");
to->enqueue<dmsg>(self, slots, dmsg::close{});
output_paths -= 1;
return;
}
CAF_MESSAGE(self->name << " pushes "
<< num << " new items to " << to->name
<< " slots = " << deep_to_string(slots));
for (int i = 0; i < num; ++i)
xs.emplace_back(x++);
CAF_REQUIRE_NOT_EQUAL(xs.size(), 0u);
auto emplace_res = to->enqueue<dmsg>(self, slots,
dmsg::batch{std::move(xs)});
CAF_CHECK_EQUAL(emplace_res, true);
}
void manager::operator()(entity* sender, stream_slots slots, in*,
dmsg::batch& batch) {
TRACE(self->name, batch, CAF_ARG(slots), CAF_ARG2("sender", sender->name),
CAF_ARG(batch.xs));
sender->enqueue<umsg>(self, slots.invert(), umsg::ack_batch{10});
}
struct msg_visitor {
entity* self;
using is_handshake = std::integral_constant<size_t, 0>;
using is_umsg = std::integral_constant<size_t, 1>;
using is_dmsg = std::integral_constant<size_t, 2>;
using result_type = intrusive::task_result;
result_type operator()(is_handshake, handshake_queue&, msg& x) {
(*self)(x.sender, get<handshake>(x.content));
return intrusive::task_result::resume;
}
result_type operator()(is_umsg, umsg_queue&, msg& x) {
auto sender = x.sender;
auto& um = get<umsg>(x.content);
auto f = detail::make_overload(
[&](umsg::ack_handshake& y) {
(*self)(sender, um.slots, y);
},
[&](umsg::ack_batch& y) {
(*self)(sender, um.slots, y);
},
[&](umsg::drop&) {
//(*self)(sender, um.slots, y);
}
);
visit(f, um.content);
return intrusive::task_result::resume;
}
result_type operator()(is_dmsg, dmsg_queue&, stream_slot, inner_dmsg_queue& q,
msg& x) {
auto inptr = q.policy().handler.get();
auto dm = get<dmsg>(x.content);
auto f = detail::make_overload(
[&](dmsg::batch& y) {
(*inptr->mgr)(x.sender, dm.slots, inptr, y);
},
[&](dmsg::close& y) {
(*self)(x.sender, dm.slots, inptr, y);
});
visit(f, dm.content);
return intrusive::task_result::resume;
}
};
// -- fixture ------------------------------------------------------------------
struct fixture {
entity alice{"alice"};
entity bob{"bob"};
fixture() {
/// Make sure to test whether the slot IDs are properly handled.
alice.next_slot = 123;
bob.next_slot = 321;
}
};
} // namespace
// -- unit tests ---------------------------------------------------------------
CAF_TEST_FIXTURE_SCOPE(mock_streaming_classes_tests, fixture)
CAF_TEST(depth_2_pipeline) {
alice.start_streaming(bob, 30);
msg_visitor f{&bob};
msg_visitor g{&alice};
while (!bob.mbox.empty() || !alice.mbox.empty()) {
bob.mbox.new_round(1, f);
alice.mbox.new_round(1, g);
}
// Check whether bob and alice cleaned up their state properly.
CAF_CHECK(get<2>(bob.mbox.queues()).queues().empty());
CAF_CHECK(get<2>(alice.mbox.queues()).queues().empty());
CAF_CHECK(bob.pending_managers_.empty());
CAF_CHECK(alice.pending_managers_.empty());
CAF_CHECK(bob.managers_.empty());
CAF_CHECK(alice.managers_.empty());
}
CAF_TEST_FIXTURE_SCOPE_END()
|