Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[no-ci] another copy/paste glitch
[simgrid.git] / examples / cpp / io-basic / s4u-io-basic.cpp
1 /* Copyright (c) 2010-2021. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/s4u.hpp"
7
8 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "Messages specific for this s4u example");
9
10 static void writer()
11 {
12   /* - Retrieve all disks from current host */
13   std::vector<simgrid::s4u::Disk*> const& disk_list = simgrid::s4u::Host::current()->get_disks();
14   /* - Write 4,000,000 bytes on Disk1 */
15   disk_list.front()->write(4000000);
16   XBT_INFO("Done.");
17 }
18
19 static void privileged_writer()
20 {
21   /* - Retrieve all disks from current host */
22   std::vector<simgrid::s4u::Disk*> const& disk_list = simgrid::s4u::Host::current()->get_disks();
23
24   /* - Write 4,000,000 bytes on Disk1 but specifies that this I/O operation gets a larger share of the resource.
25    *
26    * Since the priority is 2, it writes twice as fast as a regular one.
27    *
28    * So instead of a half/half sharing between the two, we get a 1/3 vs. 2/3 sharing. */
29   disk_list.front()->io_init(4000000, simgrid::s4u::Io::OpType::WRITE)->set_priority(2)->wait();
30   XBT_INFO("Done.");
31
32   /* Note that the timings printed when running this example are a bit misleading, because the uneven sharing only last
33    * until the privileged actor ends. After this point, the unprivileged one gets 100% of the disk and finishes quite
34    * quickly. */
35 }
36
37 int main(int argc, char* argv[])
38 {
39   simgrid::s4u::Engine e(&argc, argv);
40   xbt_assert(argc > 1, "Usage: %s platform_file\n\tExample: %s platform.xml\n", argv[0], argv[0]);
41
42   e.load_platform(argv[1]);
43
44   simgrid::s4u::Actor::create("writer", e.host_by_name("bob"), writer);
45   simgrid::s4u::Actor::create("privileged_writer", e.host_by_name("bob"), privileged_writer);
46
47   e.run();
48
49   return 0;
50 }