X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/18bee871381a6ce670d9da211f43ab9b55fdc350..7ef49c428ab0209965a09a36ab28b59789aaa4b5:/examples/s4u/io/s4u_io.cpp?ds=sidebyside diff --git a/examples/s4u/io/s4u_io.cpp b/examples/s4u/io/s4u_io.cpp index 28f0b4e38d..378f271419 100644 --- a/examples/s4u/io/s4u_io.cpp +++ b/examples/s4u/io/s4u_io.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2006-2015. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2006-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -11,33 +11,33 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(s4u_test, "a sample log category"); class MyHost { public: - - void show_info(boost::unordered_map const&mounts) { - XBT_INFO("Storage info on %s:", simgrid::s4u::Host::current()->cname()); + void show_info(std::unordered_map const& mounts) + { + XBT_INFO("Storage info on %s:", simgrid::s4u::Host::current()->getCname()); for (const auto&kv : mounts) { const char* mountpoint = kv.first.c_str(); - simgrid::s4u::Storage &storage = *kv.second; + simgrid::s4u::Storage* storage = kv.second; // Retrieve disk's information - sg_size_t free_size = storage.sizeFree(); - sg_size_t used_size = storage.sizeUsed(); - sg_size_t size = storage.size(); + sg_size_t free_size = storage->getSizeFree(); + sg_size_t used_size = storage->getSizeUsed(); + sg_size_t size = storage->getSize(); - XBT_INFO(" %s (%s) Used: %llu; Free: %llu; Total: %llu.", - storage.name(), mountpoint, used_size, free_size, size); + XBT_INFO(" %s (%s) Used: %llu; Free: %llu; Total: %llu.", storage->getName(), mountpoint, used_size, free_size, + size); } } void operator()() { - boost::unordered_map const& mounts = - simgrid::s4u::Host::current()->mountedStorages(); + std::unordered_map const& mounts = + simgrid::s4u::Host::current()->getMountedStorages(); show_info(mounts); // Open an non-existing file to create it - const char *filename = "/home/tmp/data.txt"; - simgrid::s4u::File *file = new simgrid::s4u::File(filename, NULL); + const char* filename = "/home/tmp/data.txt"; + simgrid::s4u::File* file = new simgrid::s4u::File(filename, nullptr); sg_size_t write = file->write(200000); // Write 200,000 bytes XBT_INFO("Create a %llu bytes file named '%s' on /sd1", write, filename); @@ -55,27 +55,29 @@ public: write = file->write(100000); // Write 100,000 bytes XBT_INFO("Write %llu bytes on %s", write, filename); - simgrid::s4u::Storage &storage = simgrid::s4u::Storage::byName("Disk4"); + simgrid::s4u::Storage* storage = simgrid::s4u::Storage::byName("Disk4"); // Now rename file from ./tmp/data.txt to ./tmp/simgrid.readme const char *newpath = "/home/tmp/simgrid.readme"; - XBT_INFO("Move '%s' to '%s'", file->path(), newpath); + XBT_INFO("Move '%s' to '%s'", file->getPath(), newpath); file->move(newpath); // Test attaching some user data to the file file->setUserdata(xbt_strdup("777")); - XBT_INFO("User data attached to the file: %s", (char*)file->userdata()); - xbt_free(file->userdata()); + XBT_INFO("User data attached to the file: %s", (char*)file->getUserdata()); + xbt_free(file->getUserdata()); // Close the file delete file; // Now attach some user data to disk1 - XBT_INFO("Get/set data for storage element: %s",storage.name()); - XBT_INFO(" Uninitialized storage data: '%s'", (char*)storage.userdata()); + XBT_INFO("Get/set data for storage element: %s", storage->getName()); + XBT_INFO(" Uninitialized storage data: '%s'", (char*)storage->getUserdata()); + + storage->setUserdata(xbt_strdup("Some user data")); + XBT_INFO(" Set and get data: '%s'", (char*)storage->getUserdata()); - storage.setUserdata(xbt_strdup("Some user data")); - XBT_INFO(" Set and get data: '%s'", (char*)storage.userdata()); + xbt_free(storage->getUserdata()); } }; @@ -85,5 +87,6 @@ int main(int argc, char **argv) e->loadPlatform("../../platforms/storage/storage.xml"); simgrid::s4u::Actor::createActor("host", simgrid::s4u::Host::by_name("denise"), MyHost()); e->run(); + delete e; return 0; }