X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0bfafcab47ae9cd7856bd8d129404c33079d6afe..b8d8b4d092246a5155f58477b408cd76eb33126d:/examples/cpp/energy-boot/s4u-energy-boot.cpp diff --git a/examples/cpp/energy-boot/s4u-energy-boot.cpp b/examples/cpp/energy-boot/s4u-energy-boot.cpp index 39f3179e3c..a791508421 100644 --- a/examples/cpp/energy-boot/s4u-energy-boot.cpp +++ b/examples/cpp/energy-boot/s4u-energy-boot.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2021. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2023. 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. */ @@ -34,10 +34,11 @@ #include "simgrid/plugins/energy.h" XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this example"); +namespace sg4 = simgrid::s4u; -static void simulate_bootup(simgrid::s4u::Host* host) +static void simulate_bootup(sg4::Host* host) { - int previous_pstate = host->get_pstate(); + unsigned long previous_pstate = host->get_pstate(); XBT_INFO("Switch to virtual pstate 3, that encodes the 'booting up' state in that platform"); host->set_pstate(3); @@ -46,66 +47,64 @@ static void simulate_bootup(simgrid::s4u::Host* host) host->turn_on(); XBT_INFO("Wait 150s to simulate the boot time."); - simgrid::s4u::this_actor::sleep_for(150); + sg4::this_actor::sleep_for(150); - XBT_INFO("The host is now up and running. Switch back to previous pstate %d", previous_pstate); + XBT_INFO("The host is now up and running. Switch back to previous pstate %lu", previous_pstate); host->set_pstate(previous_pstate); } -static void simulate_shutdown(simgrid::s4u::Host* host) +static void simulate_shutdown(sg4::Host* host) { - int previous_pstate = host->get_pstate(); + unsigned long previous_pstate = host->get_pstate(); XBT_INFO("Switch to virtual pstate 4, that encodes the 'shutting down' state in that platform"); host->set_pstate(4); XBT_INFO("Wait 7 seconds to simulate the shutdown time."); - simgrid::s4u::this_actor::sleep_for(7); + sg4::this_actor::sleep_for(7); - XBT_INFO("Switch back to previous pstate %d, that will be used on reboot.", previous_pstate); + XBT_INFO("Switch back to previous pstate %lu, that will be used on reboot.", previous_pstate); host->set_pstate(previous_pstate); XBT_INFO("Actually shutdown the host"); host->turn_off(); } -static int monitor() +static void monitor() { - simgrid::s4u::Host* host1 = simgrid::s4u::Host::by_name("MyHost1"); + sg4::Host* host1 = sg4::Host::by_name("MyHost1"); - XBT_INFO("Initial pstate: %d; Energy dissipated so far:%.0E J", host1->get_pstate(), + XBT_INFO("Initial pstate: %lu; Energy dissipated so far:%.0E J", host1->get_pstate(), sg_host_get_consumed_energy(host1)); XBT_INFO("Sleep for 10 seconds"); - simgrid::s4u::this_actor::sleep_for(10); - XBT_INFO("Done sleeping. Current pstate: %d; Energy dissipated so far: %.2f J", host1->get_pstate(), + sg4::this_actor::sleep_for(10); + XBT_INFO("Done sleeping. Current pstate: %lu; Energy dissipated so far: %.2f J", host1->get_pstate(), sg_host_get_consumed_energy(host1)); simulate_shutdown(host1); - XBT_INFO("Host1 is now OFF. Current pstate: %d; Energy dissipated so far: %.2f J", host1->get_pstate(), + XBT_INFO("Host1 is now OFF. Current pstate: %lu; Energy dissipated so far: %.2f J", host1->get_pstate(), sg_host_get_consumed_energy(host1)); XBT_INFO("Sleep for 10 seconds"); - simgrid::s4u::this_actor::sleep_for(10); - XBT_INFO("Done sleeping. Current pstate: %d; Energy dissipated so far: %.2f J", host1->get_pstate(), + sg4::this_actor::sleep_for(10); + XBT_INFO("Done sleeping. Current pstate: %lu; Energy dissipated so far: %.2f J", host1->get_pstate(), sg_host_get_consumed_energy(host1)); simulate_bootup(host1); - XBT_INFO("Host1 is now ON again. Current pstate: %d; Energy dissipated so far: %.2f J", host1->get_pstate(), + XBT_INFO("Host1 is now ON again. Current pstate: %lu; Energy dissipated so far: %.2f J", host1->get_pstate(), sg_host_get_consumed_energy(host1)); - - return 0; } int main(int argc, char* argv[]) { sg_host_energy_plugin_init(); - simgrid::s4u::Engine e(&argc, argv); + sg4::Engine e(&argc, argv); xbt_assert(argc == 2, "Usage: %s platform_file\n\tExample: %s platform.xml\n", argv[0], argv[0]); e.load_platform(argv[1]); - simgrid::s4u::Actor::create("Boot Monitor", simgrid::s4u::Host::by_name("MyHost2"), monitor); + sg4::Actor::create("Boot Monitor", e.host_by_name("MyHost2"), monitor); e.run();