Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #184 from Takishipp/signals
[simgrid.git] / teshsuite / s4u / storage_client_server / storage_client_server.cpp
1 /* Copyright (c) 2013-2015, 2017. The    SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "simgrid/s4u.hpp"
8 #include <string>
9
10 XBT_LOG_NEW_DEFAULT_CATEGORY(storage, "Messages specific for this simulation");
11
12 static void display_storage_properties(simgrid::s4u::Storage* storage)
13 {
14   xbt_dict_t props = storage->properties();
15   if (xbt_dict_length(props) > 0) {
16     XBT_INFO("\tProperties of mounted storage: %s", storage->name());
17
18     xbt_dict_cursor_t cursor = NULL;
19     char* key;
20     char* data;
21     xbt_dict_foreach (props, cursor, key, data)
22       XBT_INFO("\t\t'%s' -> '%s'", key, data);
23   } else {
24     XBT_INFO("\tNo property attached.");
25   }
26 }
27
28 static sg_size_t write_local_file(const char* dest, sg_size_t file_size)
29 {
30   simgrid::s4u::File* file = new simgrid::s4u::File(dest, nullptr);
31   sg_size_t written        = file->write(file_size);
32   XBT_INFO("%llu bytes on %llu bytes have been written by %s on /sd1", written, file_size,
33            simgrid::s4u::Actor::self()->name().c_str());
34   delete file;
35   return written;
36 }
37
38 static sg_size_t read_local_file(const char* src)
39 {
40   simgrid::s4u::File* file = new simgrid::s4u::File(src, nullptr);
41   sg_size_t file_size      = file->size();
42   sg_size_t read           = file->read(file_size);
43
44   XBT_INFO("%s has read %llu on %s", simgrid::s4u::Actor::self()->name().c_str(), read, src);
45   delete file;
46
47   return read;
48 }
49
50 // Read src file on local disk and send a put message to remote host (size of message = size of src file)
51 static void hsm_put(const char* remote_host, const char* src, const char* dest)
52 {
53   // Read local src file, and return the size that was actually read
54   sg_size_t read_size = read_local_file(src);
55
56   // Send file
57   XBT_INFO("%s sends %llu to %s", simgrid::s4u::this_actor::name().c_str(), read_size, remote_host);
58   char* payload                    = bprintf("%s %llu", dest, read_size);
59   simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName(remote_host);
60   simgrid::s4u::this_actor::send(mailbox, payload, static_cast<double>(read_size));
61   simgrid::s4u::this_actor::sleep_for(.4);
62 }
63
64 static void display_storage_content(simgrid::s4u::Storage* storage)
65 {
66   XBT_INFO("Print the content of the storage element: %s", storage->name());
67   std::map<std::string, sg_size_t*>* content = storage->content();
68   if (not content->empty()) {
69     for (auto entry : *content)
70       XBT_INFO("\t%s size: %llu bytes", entry.first.c_str(), *entry.second);
71   } else {
72     XBT_INFO("\tNo content.");
73   }
74 }
75
76 static void dump_storage_by_name(char* name)
77 {
78   XBT_INFO("*** Dump a storage element ***");
79   simgrid::s4u::Storage* storage = simgrid::s4u::Storage::byName(name);
80   display_storage_content(storage);
81 }
82
83 static void get_set_storage_data(const char* storage_name)
84 {
85   XBT_INFO("*** GET/SET DATA for storage element: %s ***", storage_name);
86   simgrid::s4u::Storage* storage = simgrid::s4u::Storage::byName(storage_name);
87
88   char* data = static_cast<char*>(storage->userdata());
89   XBT_INFO("Get data: '%s'", data);
90   storage->setUserdata(xbt_strdup("Some data"));
91   data = static_cast<char*>(storage->userdata());
92   XBT_INFO("\tSet and get data: '%s'", data);
93   xbt_free(data);
94 }
95
96 static void dump_platform_storages()
97 {
98   std::map<std::string, simgrid::s4u::Storage*>* storages = simgrid::s4u::allStorages();
99
100   for (auto storage : *storages) {
101     XBT_INFO("Storage %s is attached to %s", storage.first.c_str(), storage.second->host());
102     storage.second->setProperty("other usage", xbt_strdup("gpfs"));
103   }
104   delete storages;
105 }
106
107 static void storage_info(simgrid::s4u::Host* host)
108 {
109   XBT_INFO("*** Storage info on %s ***", host->cname());
110   xbt_dict_cursor_t cursor = NULL;
111   char* mount_name;
112   char* storage_name;
113
114   xbt_dict_t storage_list = host->mountedStoragesAsDict();
115   xbt_dict_foreach (storage_list, cursor, mount_name, storage_name) {
116     XBT_INFO("\tStorage name: %s, mount name: %s", storage_name, mount_name);
117     simgrid::s4u::Storage* storage = simgrid::s4u::Storage::byName(storage_name);
118
119     sg_size_t free_size = storage->sizeFree();
120     sg_size_t used_size = storage->sizeUsed();
121
122     XBT_INFO("\t\tFree size: %llu bytes", free_size);
123     XBT_INFO("\t\tUsed size: %llu bytes", used_size);
124
125     display_storage_properties(storage);
126     dump_storage_by_name(storage_name);
127   }
128   xbt_dict_free(&storage_list);
129 }
130
131 static void client()
132 {
133   hsm_put("alice", "/home/doc/simgrid/examples/msg/icomms/small_platform.xml", "c:\\Windows\\toto.cxx");
134   hsm_put("alice", "/home/doc/simgrid/examples/msg/parallel_task/test_ptask_deployment.xml", "c:\\Windows\\titi.xml");
135   hsm_put("alice", "/home/doc/simgrid/examples/msg/alias/masterslave_forwarder_with_alias.c", "c:\\Windows\\tata.c");
136
137   simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName("alice");
138   simgrid::s4u::this_actor::send(mailbox, xbt_strdup("finalize"), 0);
139
140   get_set_storage_data("Disk1");
141 }
142
143 static void server()
144 {
145   storage_info(simgrid::s4u::this_actor::host());
146   simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName(simgrid::s4u::this_actor::host()->cname());
147
148   XBT_INFO("Server waiting for transfers ...");
149   while (1) {
150     char* msg = static_cast<char*>(simgrid::s4u::this_actor::recv(mailbox));
151     if (not strcmp(msg, "finalize")) { // Shutdown ...
152       xbt_free(msg);
153       break;
154     } else { // Receive file to save
155       char* saveptr;
156       char* dest              = strtok_r(msg, " ", &saveptr);
157       sg_size_t size_to_write = std::stoull(strtok_r(nullptr, " ", &saveptr));
158       write_local_file(dest, size_to_write);
159       xbt_free(dest);
160     }
161   }
162
163   storage_info(simgrid::s4u::this_actor::host());
164   dump_platform_storages();
165 }
166
167 int main(int argc, char* argv[])
168 {
169   simgrid::s4u::Engine* e = new simgrid::s4u::Engine(&argc, argv);
170   xbt_assert(argc == 2, "Usage: %s platform_file\n", argv[0]);
171   e->loadPlatform(argv[1]);
172
173   simgrid::s4u::Actor::createActor("server", simgrid::s4u::Host::by_name("alice"), server);
174   simgrid::s4u::Actor::createActor("client", simgrid::s4u::Host::by_name("bob"), client);
175
176   e->run();
177
178   XBT_INFO("Simulated time: %g", e->getClock());
179
180   return 0;
181 }