Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
I think I just killed a simcall
[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_cursor_t cursor = NULL;
15   char* key;
16   char* data;
17   xbt_dict_t props = storage->properties();
18   if (xbt_dict_length(props) > 0) {
19     XBT_INFO("\tProperties of mounted storage: %s", storage->name());
20     xbt_dict_foreach (props, cursor, key, data)
21       XBT_INFO("\t\t'%s' -> '%s'", key, data);
22   } else {
23     XBT_INFO("\tNo property attached.");
24   }
25 }
26
27 static sg_size_t write_local_file(const char* dest, sg_size_t file_size)
28 {
29   simgrid::s4u::File* file = new simgrid::s4u::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()->name().c_str());
33   delete file;
34   return written;
35 }
36
37 static sg_size_t read_local_file(const char* src)
38 {
39   simgrid::s4u::File* file = new simgrid::s4u::File(src, nullptr);
40   sg_size_t file_size      = file->size();
41   sg_size_t read           = file->read(file_size);
42
43   XBT_INFO("%s has read %llu on %s", simgrid::s4u::Actor::self()->name().c_str(), read, src);
44   delete file;
45
46   return read;
47 }
48
49 // Read src file on local disk and send a put message to remote host (size of message = size of src file)
50 static void hsm_put(const char* remote_host, const char* src, const char* dest)
51 {
52   // Read local src file, and return the size that was actually read
53   sg_size_t read_size = read_local_file(src);
54
55   // Send file
56   XBT_INFO("%s sends %llu to %s", simgrid::s4u::this_actor::name().c_str(), read_size, remote_host);
57   char* payload                    = bprintf("%s %llu", dest, read_size);
58   simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName(remote_host);
59   simgrid::s4u::this_actor::send(mailbox, payload, static_cast<double>(read_size));
60   simgrid::s4u::this_actor::sleep_for(.4);
61 }
62
63 static void display_storage_content(simgrid::s4u::Storage* storage)
64 {
65   XBT_INFO("Print the content of the storage element: %s", storage->name());
66   xbt_dict_cursor_t cursor = NULL;
67   char* file;
68   sg_size_t* psize;
69   std::map<std::string, sg_size_t*>* content = storage->content();
70   if (!content->empty()) {
71     for (auto entry : *content)
72       XBT_INFO("\t%s size: %llu bytes", entry.first.c_str(), *entry.second);
73   } else {
74     XBT_INFO("\tNo content.");
75   }
76 }
77
78 static void dump_storage_by_name(char* name)
79 {
80   XBT_INFO("*** Dump a storage element ***");
81   simgrid::s4u::Storage& storage = simgrid::s4u::Storage::byName(name);
82   display_storage_content(&storage);
83 }
84
85 static void get_set_storage_data(const char* storage_name)
86 {
87   XBT_INFO("*** GET/SET DATA for storage element: %s ***", storage_name);
88   simgrid::s4u::Storage& storage = simgrid::s4u::Storage::byName(storage_name);
89
90   char* data = (char*)storage.userdata();
91   XBT_INFO("Get data: '%s'", data);
92   storage.setUserdata(xbt_strdup("Some data"));
93   data = (char*)storage.userdata();
94   XBT_INFO("\tSet and get data: '%s'", data);
95   xbt_free(data);
96 }
97
98 // static void dump_platform_storages(void){
99 //  unsigned int cursor;
100 //  xbt_dynar_t storages = MSG_storages_as_dynar();
101 //  msg_storage_t storage;
102 //  xbt_dynar_foreach(storages, cursor, storage){
103 //    XBT_INFO("Storage %s is attached to %s", MSG_storage_get_name(storage), MSG_storage_get_host(storage));
104 //    MSG_storage_set_property_value(storage, "other usage", xbt_strdup("gpfs"));
105 //  }
106 //  xbt_dynar_free(&storages);
107 // Expected output in tesh file
108 //> [  1.207952] (server@alice) Storage Disk1 is attached to bob
109 //> [  1.207952] (server@alice) Storage Disk2 is attached to alice
110 //> [  1.207952] (server@alice) Storage Disk3 is attached to carl
111 //> [  1.207952] (server@alice) Storage Disk4 is attached to denise
112 //}
113
114 static void storage_info(simgrid::s4u::Host* host)
115 {
116   XBT_INFO("*** Storage info on %s ***", host->cname());
117   xbt_dict_cursor_t cursor = NULL;
118   char* mount_name;
119   char* storage_name;
120
121   xbt_dict_t storage_list = host->mountedStoragesAsDict();
122   xbt_dict_foreach (storage_list, cursor, mount_name, storage_name) {
123     XBT_INFO("\tStorage name: %s, mount name: %s", storage_name, mount_name);
124     simgrid::s4u::Storage& storage = simgrid::s4u::Storage::byName(storage_name);
125
126     sg_size_t free_size = storage.sizeFree();
127     sg_size_t used_size = storage.sizeUsed();
128
129     XBT_INFO("\t\tFree size: %llu bytes", free_size);
130     XBT_INFO("\t\tUsed size: %llu bytes", used_size);
131
132     display_storage_properties(&storage);
133     dump_storage_by_name(storage_name);
134   }
135   xbt_dict_free(&storage_list);
136 }
137
138 static void client()
139 {
140   hsm_put("alice", "/home/doc/simgrid/examples/msg/icomms/small_platform.xml", "c:\\Windows\\toto.cxx");
141   hsm_put("alice", "/home/doc/simgrid/examples/msg/parallel_task/test_ptask_deployment.xml", "c:\\Windows\\titi.xml");
142   hsm_put("alice", "/home/doc/simgrid/examples/msg/alias/masterslave_forwarder_with_alias.c", "c:\\Windows\\tata.c");
143
144   simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName("alice");
145   simgrid::s4u::this_actor::send(mailbox, xbt_strdup("finalize"), 0);
146
147   get_set_storage_data("Disk1");
148 }
149
150 static void server()
151 {
152   storage_info(simgrid::s4u::this_actor::host());
153   simgrid::s4u::MailboxPtr mailbox = simgrid::s4u::Mailbox::byName(simgrid::s4u::this_actor::host()->cname());
154
155   XBT_INFO("Server waiting for transfers ...");
156   while (1) {
157     char* msg = static_cast<char*>(simgrid::s4u::this_actor::recv(mailbox));
158     if (!strcmp(msg, "finalize")) { // Shutdown ...
159       xbt_free(msg);
160       break;
161     } else { // Receive file to save
162       char* saveptr;
163       char* dest              = strtok_r(msg, " ", &saveptr);
164       sg_size_t size_to_write = std::stoull(strtok_r(nullptr, " ", &saveptr));
165       write_local_file(dest, size_to_write);
166       xbt_free(dest);
167     }
168   }
169
170   storage_info(simgrid::s4u::this_actor::host());
171   //  dump_platform_storages();
172 }
173
174 int main(int argc, char* argv[])
175 {
176   simgrid::s4u::Engine* e = new simgrid::s4u::Engine(&argc, argv);
177   xbt_assert(argc == 2, "Usage: %s platform_file\n", argv[0]);
178   e->loadPlatform(argv[1]);
179
180   simgrid::s4u::Actor::createActor("server", simgrid::s4u::Host::by_name("alice"), server);
181   simgrid::s4u::Actor::createActor("client", simgrid::s4u::Host::by_name("bob"), client);
182
183   e->run();
184
185   XBT_INFO("Simulated time: %g", e->getClock());
186
187   return 0;
188 }