Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
4ebaea7bf566852695f4ac019be6600890fff95a
[simgrid.git] / examples / s4u / io / s4u_io.cpp
1 /* Copyright (c) 2006-2015. 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 <unordered_map>
7 #include <vector>
8
9 #include "simgrid/s4u.h"
10
11 XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "a sample log category");
12
13 class MyHost {
14 public:
15
16   void show_info(boost::unordered_map <std::string, simgrid::s4u::Storage*> const&mounts) {
17     XBT_INFO("Storage info on %s:",
18       simgrid::s4u::Host::current()->name().c_str());
19
20     for (const auto&kv : mounts) {
21       const char* mountpoint = kv.first.c_str();
22       simgrid::s4u::Storage &storage = *kv.second;
23
24       // Retrieve disk's information
25       sg_size_t free_size = storage.sizeFree();
26       sg_size_t used_size = storage.sizeUsed();
27       sg_size_t size = storage.size();
28
29       XBT_INFO("    %s (%s) Used: %llu; Free: %llu; Total: %llu.",
30           storage.name(), mountpoint, used_size, free_size, size);
31     }
32   }
33
34   void operator()() {
35     boost::unordered_map <std::string, simgrid::s4u::Storage *> const& mounts =
36       simgrid::s4u::Host::current()->mountedStorages();
37
38     show_info(mounts);
39
40     // Open an non-existing file to create it
41     const char *filename = "/home/tmp/data.txt";
42     simgrid::s4u::File *file = new simgrid::s4u::File(filename, NULL);
43     sg_size_t write, read, file_size;
44
45     write = file->write(200000);  // Write 200,000 bytes
46     XBT_INFO("Create a %llu bytes file named '%s' on /sd1", write, filename);
47
48     // check that sizes have changed
49     show_info(mounts);
50
51     // Now retrieve the size of created file and read it completely
52     file_size = file->size();
53     file->seek(0);
54     read = file->read(file_size);
55     XBT_INFO("Read %llu bytes on %s", read, filename);
56
57     // Now write 100,000 bytes in tmp/data.txt
58     write = file->write(100000);  // Write 100,000 bytes
59     XBT_INFO("Write %llu bytes on %s", write, filename);
60
61     simgrid::s4u::Storage &storage = simgrid::s4u::Storage::byName("Disk4");
62
63     // Now rename file from ./tmp/data.txt to ./tmp/simgrid.readme
64     const char *newpath = "/home/tmp/simgrid.readme";
65     XBT_INFO("Move '%s' to '%s'", file->path(), newpath);
66     file->move(newpath);
67
68     // Test attaching some user data to the file
69     file->setUserdata(xbt_strdup("777"));
70     XBT_INFO("User data attached to the file: %s", (char*)file->userdata());
71
72     // Close the file
73     delete file;
74
75     // Now attach some user data to disk1
76     XBT_INFO("Get/set data for storage element: %s",storage.name());
77     XBT_INFO("    Uninitialized storage data: '%s'", (char*)storage.userdata());
78
79     storage.setUserdata(xbt_strdup("Some user data"));
80     XBT_INFO("    Set and get data: '%s'", (char*)storage.userdata());
81
82     /*
83       // Dump disks contents
84       XBT_INFO("*** Dump content of %s ***",Host::current()->name());
85       xbt_dict_t contents = NULL;
86       contents = MSG_host_get_storage_content(MSG_host_self()); // contents is a dict of dicts
87       xbt_dict_cursor_t curs, curs2 = NULL;
88       char* mountname;
89       xbt_dict_t content;
90       char* path;
91       sg_size_t *size;
92       xbt_dict_foreach(contents, curs, mountname, content){
93         XBT_INFO("Print the content of mount point: %s",mountname);
94         xbt_dict_foreach(content,curs2,path,size){
95            XBT_INFO("%s size: %llu bytes", path,*((sg_size_t*)size));
96         }
97       xbt_dict_free(&content);
98       }
99       xbt_dict_free(&contents);
100      */
101   }
102 };
103
104 int main(int argc, char **argv)
105 {
106   simgrid::s4u::Engine *e = new simgrid::s4u::Engine(&argc,argv);
107   e->loadPlatform("../../platforms/storage/storage.xml");
108   new simgrid::s4u::Actor("host", simgrid::s4u::Host::by_name("denise"), MyHost());
109   e->run();
110   return 0;
111 }