Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
(hopefully) finalize pluginifaction of pseudo file system
[simgrid.git] / teshsuite / s4u / storage_client_server / storage_client_server.cpp
1 /* Copyright (c) 2013-2017. 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 #include "src/plugins/file_system/FileSystem.hpp"
8 #include <string>
9 #include <xbt/string.hpp>
10
11 XBT_LOG_NEW_DEFAULT_CATEGORY(storage, "Messages specific for this simulation");
12
13 static void display_storage_properties(simgrid::s4u::Storage* storage)
14 {
15   std::map<std::string, std::string>* props = storage->getProperties();
16   if (not props->empty()) {
17     XBT_INFO("\tProperties of mounted storage: %s", storage->getCname());
18
19     for (auto const& elm : *props) {
20       XBT_INFO("    %s->%s", elm.first.c_str(), elm.second.c_str());
21     }
22   } else {
23     XBT_INFO("\tNo property attached.");
24   }
25 }
26
27 static sg_size_t write_local_file(const std::string& dest, sg_size_t file_size)
28 {
29   simgrid::s4u::File file(dest, nullptr);
30   sg_size_t written = file.write(file_size);
31   XBT_INFO("%llu bytes on %llu bytes have been written by %s on /sd1", written, file_size,
32            simgrid::s4u::Actor::self()->getCname());
33   return written;
34 }
35
36 static sg_size_t read_local_file(const std::string& src)
37 {
38   simgrid::s4u::File file(src, nullptr);
39   sg_size_t file_size = file.size();
40   sg_size_t read      = file.read(file_size);
41   XBT_INFO("%s has read %llu on %s", simgrid::s4u::Actor::self()->getCname(), read, src.c_str());
42   return read;
43 }
44
45 // Read src file on local disk and send a put message to remote host (size of message = size of src file)
46 static void hsm_put(const std::string& remote_host, const std::string& src, const std::string& dest)
47 {
48   // Read local src file, and return the size that was actually read
49   sg_size_t read_size = read_local_file(src);
50
51   // Send file
52   XBT_INFO("%s sends %llu to %s", simgrid::s4u::this_actor::getCname(), read_size, remote_host.c_str());
53   std::string* payload             = new std::string(simgrid::xbt::string_printf("%s %llu", dest.c_str(), read_size));
54   simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName(remote_host);
55   mailbox->put(payload, static_cast<double>(read_size));
56   simgrid::s4u::this_actor::sleep_for(.4);
57 }
58
59 static void display_storage_content(simgrid::s4u::Storage* storage)
60 {
61   XBT_INFO("Print the content of the storage element: %s", storage->getCname());
62   std::map<std::string, sg_size_t>* content = storage->extension<simgrid::s4u::FileSystemStorageExt>()->getContent();
63   if (not content->empty()) {
64     for (auto const& entry : *content)
65       XBT_INFO("\t%s size: %llu bytes", entry.first.c_str(), entry.second);
66   } else {
67     XBT_INFO("\tNo content.");
68   }
69 }
70
71 static void dump_storage_by_name(const std::string& name)
72 {
73   XBT_INFO("*** Dump a storage element ***");
74   simgrid::s4u::Storage* storage = simgrid::s4u::Storage::byName(name);
75   display_storage_content(storage);
76 }
77
78 static void get_set_storage_data(const std::string& storage_name)
79 {
80   XBT_INFO("*** GET/SET DATA for storage element: %s ***", storage_name.c_str());
81   simgrid::s4u::Storage* storage = simgrid::s4u::Storage::byName(storage_name);
82
83   char* data = static_cast<char*>(storage->getUserdata());
84   XBT_INFO("Get data: '%s'", data);
85   storage->setUserdata(xbt_strdup("Some data"));
86   data = static_cast<char*>(storage->getUserdata());
87   XBT_INFO("\tSet and get data: '%s'", data);
88   xbt_free(data);
89 }
90
91 static void dump_platform_storages()
92 {
93   std::map<std::string, simgrid::s4u::Storage*>* storages = simgrid::s4u::allStorages();
94
95   for (auto const& storage : *storages) {
96     XBT_INFO("Storage %s is attached to %s", storage.first.c_str(), storage.second->getHost()->getCname());
97     storage.second->setProperty("other usage", "gpfs");
98   }
99   delete storages;
100 }
101
102 static void storage_info(simgrid::s4u::Host* host)
103 {
104   XBT_INFO("*** Storage info on %s ***", host->getCname());
105
106   for (auto const& elm : host->getMountedStorages()) {
107     const std::string& mount_name  = elm.first;
108     simgrid::s4u::Storage* storage = elm.second;
109     XBT_INFO("\tStorage name: %s, mount name: %s", storage->getCname(), mount_name.c_str());
110
111     XBT_INFO("\t\tFree size: %llu bytes", sg_storage_get_size_free(storage));
112     XBT_INFO("\t\tUsed size: %llu bytes", sg_storage_get_size_used(storage));
113
114     display_storage_properties(storage);
115     dump_storage_by_name(storage->getCname());
116   }
117 }
118
119 static void client()
120 {
121   hsm_put("alice", "/home/doc/simgrid/examples/msg/icomms/small_platform.xml", "c:\\Windows\\toto.cxx");
122   hsm_put("alice", "/home/doc/simgrid/examples/msg/parallel_task/test_ptask_deployment.xml", "c:\\Windows\\titi.xml");
123   hsm_put("alice", "/home/doc/simgrid/examples/msg/alias/masterslave_forwarder_with_alias.c", "c:\\Windows\\tata.c");
124
125   simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName("alice");
126   mailbox->put(new std::string("finalize"), 0);
127
128   get_set_storage_data("Disk1");
129 }
130
131 static void server()
132 {
133   storage_info(simgrid::s4u::this_actor::getHost());
134   simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName(simgrid::s4u::this_actor::getHost()->getCname());
135
136   XBT_INFO("Server waiting for transfers ...");
137   while (1) {
138     std::string* msg = static_cast<std::string*>(mailbox->get());
139     if (*msg == "finalize") { // Shutdown ...
140       delete msg;
141       break;
142     } else { // Receive file to save
143       size_t pos              = msg->find(' ');
144       std::string dest        = msg->substr(0, pos);
145       sg_size_t size_to_write = std::stoull(msg->substr(pos + 1));
146       write_local_file(dest, size_to_write);
147       delete msg;
148     }
149   }
150
151   storage_info(simgrid::s4u::this_actor::getHost());
152   dump_platform_storages();
153 }
154
155 int main(int argc, char* argv[])
156 {
157   simgrid::s4u::Engine e(&argc, argv);
158   sg_storage_file_system_init();
159   xbt_assert(argc == 2, "Usage: %s platform_file\n", argv[0]);
160   e.loadPlatform(argv[1]);
161
162   simgrid::s4u::Actor::createActor("server", simgrid::s4u::Host::by_name("alice"), server);
163   simgrid::s4u::Actor::createActor("client", simgrid::s4u::Host::by_name("bob"), client);
164
165   e.run();
166
167   XBT_INFO("Simulated time: %g", e.getClock());
168   return 0;
169 }