X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/364eee0fc6ab77fddc5437ac273527bd27711724..debe4e5871c0c3d1c714bbb1bd28ba7147454aa5:/src/mc/mc_record.cpp diff --git a/src/mc/mc_record.cpp b/src/mc/mc_record.cpp index 5939b8401d..8183746d34 100644 --- a/src/mc/mc_record.cpp +++ b/src/mc/mc_record.cpp @@ -1,30 +1,15 @@ -/* Copyright (c) 2014-2017. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2014-2019. 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 -#include -#include - -#include -#include -#include - -#include "xbt/log.h" -#include "xbt/sysdep.h" - -#include "simgrid/simix.h" - -#include "src/kernel/context/Context.hpp" #include "src/mc/mc_record.hpp" -#include "src/mc/mc_replay.h" -#include "src/simix/ActorImpl.hpp" -#include "src/simix/smx_private.hpp" - -#include "src/mc/mc_base.h" +#include "src/kernel/activity/CommImpl.hpp" +#include "src/kernel/context/Context.hpp" #include "src/mc/Transition.hpp" +#include "src/mc/mc_base.h" +#include "src/mc/mc_replay.hpp" +#include "src/simix/ActorImpl.hpp" #if SIMGRID_HAVE_MC #include "src/mc/checker/Checker.hpp" @@ -37,10 +22,6 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_record, mc, " Logging specific to MC record/replay facility"); -extern "C" { -char* MC_record_path = nullptr; -} - namespace simgrid { namespace mc { @@ -67,10 +48,10 @@ void replay(RecordTrace const& trace) } } -void replay(const char* path_string) +void replay(std::string path_string) { simgrid::mc::processes_time.resize(SIMIX_process_get_maxpid()); - simgrid::mc::RecordTrace trace = simgrid::mc::parseRecordTrace(path_string); + simgrid::mc::RecordTrace trace = simgrid::mc::parseRecordTrace(path_string.c_str()); simgrid::mc::replay(trace); simgrid::mc::processes_time.clear(); } @@ -80,7 +61,7 @@ RecordTrace parseRecordTrace(const char* data) RecordTrace res; XBT_INFO("path=%s", data); if (data == nullptr || data[0] == '\0') - throw std::runtime_error("Could not parse record path"); + throw std::invalid_argument("Could not parse record path"); const char* current = data; while (*current) { @@ -88,7 +69,7 @@ RecordTrace parseRecordTrace(const char* data) simgrid::mc::Transition item; int count = sscanf(current, "%d/%d", &item.pid, &item.argument); if(count != 2 && count != 1) - throw std::runtime_error("Could not parse record path"); + throw std::invalid_argument("Could not parse record path"); res.push_back(item); // Find next chunk: