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
|
/* Copyright (c) 2006-2025. 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. */
#include <mutex> /* std::mutex and std::scoped_lock */
#include <simgrid/s4u.hpp> /* All of S4U */
XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "a sample log category");
namespace sg4 = simgrid::s4u;
static void worker_fun(sg4::ConditionVariablePtr cv, sg4::MutexPtr mutex, std::string& data, bool& done)
{
const std::scoped_lock lock(*mutex);
XBT_INFO("Start processing data which is '%s'.", data.c_str());
data += " after processing";
// Send data back to main()
XBT_INFO("Signal to master that the data processing is completed, and exit.");
done = true;
cv->notify_one();
}
static void master_fun()
{
auto mutex = sg4::Mutex::create();
auto cv = sg4::ConditionVariable::create();
std::string data = "Example data";
bool done = false;
auto worker =
sg4::Host::by_name("Jupiter")->add_actor("worker", worker_fun, cv, mutex, std::ref(data), std::ref(done));
// wait for the worker
cv->wait(std::unique_lock(*mutex), [&done]() { return done; });
XBT_INFO("data is now '%s'.", data.c_str());
worker->join();
}
int main(int argc, char** argv)
{
sg4::Engine e(&argc, argv);
e.load_platform("../../platforms/two_hosts.xml");
e.host_by_name("Tremblay")->add_actor("main", master_fun);
e.run();
return 0;
}
|