X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2748fc363dd4fe709089d1ec51c38db3fe2ca26a..b67343d6e9fc74fc159a51a48d0ea7d9a2374712:/teshsuite/s4u/listen_async/listen_async.cpp diff --git a/teshsuite/s4u/listen_async/listen_async.cpp b/teshsuite/s4u/listen_async/listen_async.cpp index 4948ed418e..c1c5e0a4b7 100644 --- a/teshsuite/s4u/listen_async/listen_async.cpp +++ b/teshsuite/s4u/listen_async/listen_async.cpp @@ -1,3 +1,8 @@ +/* Copyright (c) 2017-2019. The SimGrid Team. All rights reserved. */ + +/* This program is free software; you can redistribute it and/or modify it + * under the terms of the license (GNU LGPL) which comes with this package. */ + /* Bug report: https://github.com/simgrid/simgrid/issues/40 * * Task.listen used to be on async mailboxes as it always returned false. @@ -10,40 +15,42 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example") static void server() { - simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName("mailbox"); + simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::by_name("mailbox"); - simgrid::s4u::this_actor::isend(mailbox, xbt_strdup("Some data"), 0); + simgrid::s4u::CommPtr sendComm = mailbox->put_async(new std::string("Some data"), 0); xbt_assert(mailbox->listen()); // True (1) XBT_INFO("Task listen works on regular mailboxes"); - char* res = static_cast(simgrid::s4u::this_actor::recv(mailbox)); + std::string* res = static_cast(mailbox->get()); - xbt_assert(!strcmp("Some data", res), "Data received: %s", res); + xbt_assert(*res == "Some data", "Data received: %s", res->c_str()); XBT_INFO("Data successfully received from regular mailbox"); - xbt_free(res); + delete res; + sendComm->wait(); - simgrid::s4u::MailboxPtr mailbox2 = simgrid::s4u::Mailbox::byName("mailbox2"); - mailbox2->setReceiver(simgrid::s4u::Actor::self()); + simgrid::s4u::MailboxPtr mailbox2 = simgrid::s4u::Mailbox::by_name("mailbox2"); + mailbox2->set_receiver(simgrid::s4u::Actor::self()); - simgrid::s4u::this_actor::isend(mailbox2, xbt_strdup("More data"), 0); + mailbox2->put_init(new std::string("More data"), 0)->detach(); xbt_assert(mailbox2->listen()); // used to break. XBT_INFO("Task listen works on asynchronous mailboxes"); - res = static_cast(simgrid::s4u::this_actor::recv(mailbox2)); - xbt_assert(!strcmp("More data", res)); - xbt_free(res); + res = static_cast(mailbox2->get()); + xbt_assert(*res == "More data"); + delete res; XBT_INFO("Data successfully received from asynchronous mailbox"); } int main(int argc, char* argv[]) { - simgrid::s4u::Engine* e = new simgrid::s4u::Engine(&argc, argv); - e->loadPlatform(argv[1]); + simgrid::s4u::Engine e(&argc, argv); + e.load_platform(argv[1]); + + simgrid::s4u::Actor::create("test", simgrid::s4u::Host::by_name("Tremblay"), server); - simgrid::s4u::Actor::createActor("test", simgrid::s4u::Host::by_name("Tremblay"), server); + e.run(); - e->run(); return 0; }