X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d8232f0af88b82c158f0451e3b41ef9ec85ced02..b6dde5ff6f208b83545a4b4e9e81712d0d8617a1:/src/instr/jedule/jedule_sd_binding.cpp diff --git a/src/instr/jedule/jedule_sd_binding.cpp b/src/instr/jedule/jedule_sd_binding.cpp index 5819009b9c..4ca1e45820 100644 --- a/src/instr/jedule/jedule_sd_binding.cpp +++ b/src/instr/jedule/jedule_sd_binding.cpp @@ -1,13 +1,12 @@ -/* Copyright (c) 2010-2019. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2010-2020. 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. */ #include "simgrid/jedule/jedule.hpp" -#include "src/simdag/simdag_private.hpp" - #include "simgrid/s4u/Engine.hpp" #include "simgrid/s4u/NetZone.hpp" +#include "src/simdag/simdag_private.hpp" #if SIMGRID_HAVE_JEDULE @@ -16,23 +15,22 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(jed_sd, jedule, "Logging specific to Jedule SD b jedule_t my_jedule; -void jedule_log_sd_event(SD_task_t task) +void jedule_log_sd_event(const_SD_task_t task) { xbt_assert(task != nullptr); simgrid::jedule::Event event(std::string(SD_task_get_name(task)), SD_task_get_start_time(task), SD_task_get_finish_time(task), "SD"); event.add_resources(*task->allocation); - my_jedule->event_set_.emplace_back(std::move(event)); + my_jedule->add_event(std::move(event)); } void jedule_sd_init() { - sg_netzone_t root_comp = simgrid::s4u::Engine::get_instance()->get_netzone_root(); + const_sg_netzone_t root_comp = simgrid::s4u::Engine::get_instance()->get_netzone_root(); XBT_DEBUG("root name %s\n", root_comp->get_cname()); my_jedule = new simgrid::jedule::Jedule(root_comp->get_name()); - my_jedule->root_container_.create_hierarchy(root_comp); } void jedule_sd_exit() @@ -43,19 +41,18 @@ void jedule_sd_exit() void jedule_sd_dump(const char * filename) { if (my_jedule) { - char *fname; + std::string fname; if (not filename) { - fname = bprintf("%s.jed", xbt_binary_name); + fname = simgrid::xbt::binary_name + ".jed"; } else { - fname = xbt_strdup(filename); + fname = filename; } - FILE *fh = fopen(fname, "w"); + FILE* fh = fopen(fname.c_str(), "w"); my_jedule->write_output(fh); fclose(fh); - xbt_free(fname); } } #endif