Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename the replay example as such
[simgrid.git] / examples / s4u / actions-comm / s4u-actions-comm.cpp
diff --git a/examples/s4u/actions-comm/s4u-actions-comm.cpp b/examples/s4u/actions-comm/s4u-actions-comm.cpp
deleted file mode 100644 (file)
index 5a1faac..0000000
+++ /dev/null
@@ -1,122 +0,0 @@
-/* Copyright (c) 2009-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. */
-
-#include "simgrid/s4u.hpp"
-#include "xbt/replay.hpp"
-#include "xbt/str.h"
-#include <string>
-
-XBT_LOG_NEW_DEFAULT_CATEGORY(actions, "Messages specific for this msg example");
-
-#define ACT_DEBUG(...) \
-  if (XBT_LOG_ISENABLED(actions, xbt_log_priority_verbose)) {  \
-    char *NAME = xbt_str_join_array(action, " ");              \
-    XBT_DEBUG(__VA_ARGS__);                                    \
-    xbt_free(NAME);                                            \
-  } else ((void)0)
-
-static void log_action(const char *const *action, double date)
-{
-  if (XBT_LOG_ISENABLED(actions, xbt_log_priority_verbose)) {
-    char *name = xbt_str_join_array(action, " ");
-    XBT_VERB("%s %f", name, date);
-    xbt_free(name);
-  }
-}
-
-class Replayer {
-public:
-  explicit Replayer(std::vector<std::string> args)
-  {
-    int argc;
-    char* argv[2];
-    argv[0] = &args.at(0)[0];
-    if (args.size() == 1) {
-      argc = 1;
-    } else {
-      argc    = 2;
-      argv[1] = &args.at(1)[0];
-    }
-    simgrid::xbt::replay_runner(argc, argv);
-  }
-
-  void operator()()
-  {
-    // Nothing to do here
-  }
-
-  /* My actions */
-  static void compute(const char* const* action)
-  {
-    double amount = std::stod(action[2]);
-    double clock  = simgrid::s4u::Engine::getClock();
-    ACT_DEBUG("Entering %s", NAME);
-    simgrid::s4u::this_actor::execute(amount);
-    log_action(action, simgrid::s4u::Engine::getClock() - clock);
-  }
-
-  static void send(const char* const* action)
-  {
-    double size                 = std::stod(action[3]);
-    std::string* payload        = new std::string(action[3]);
-    double clock                = simgrid::s4u::Engine::getClock();
-    simgrid::s4u::MailboxPtr to = simgrid::s4u::Mailbox::byName(simgrid::s4u::this_actor::getName() + "_" + action[2]);
-    ACT_DEBUG("Entering Send: %s (size: %g) -- Actor %s on mailbox %s", NAME, size,
-              simgrid::s4u::this_actor::getCname(), to->getCname());
-    to->put(payload, size);
-    delete payload;
-
-    log_action(action, simgrid::s4u::Engine::getClock() - clock);
-  }
-
-  static void recv(const char* const* action)
-  {
-    double clock = simgrid::s4u::Engine::getClock();
-    simgrid::s4u::MailboxPtr from =
-        simgrid::s4u::Mailbox::byName(std::string(action[2]) + "_" + simgrid::s4u::this_actor::getName());
-
-    ACT_DEBUG("Receiving: %s -- Actor %s on mailbox %s", NAME, simgrid::s4u::this_actor::getCname(), from->getCname());
-    from->get();
-    log_action(action, simgrid::s4u::Engine::getClock() - clock);
-  }
-};
-
-int main(int argc, char *argv[])
-{
-  simgrid::s4u::Engine e(&argc, argv);
-
-  xbt_assert(argc > 2, "Usage: %s platform_file deployment_file [action_files]\n"
-                       "\t# if all actions are in the same file\n"
-                       "\tExample: %s msg_platform.xml msg_deployment.xml actions\n"
-                       "\t# if actions are in separate files, specified in deployment\n"
-                       "\tExample: %s msg_platform.xml msg_deployment.xml ",
-             argv[0], argv[0], argv[0]);
-
-  e.loadPlatform(argv[1]);
-  e.registerDefault(&simgrid::xbt::replay_runner);
-  e.registerFunction<Replayer>("p0");
-  e.registerFunction<Replayer>("p1");
-  e.loadDeployment(argv[2]);
-
-  /*   Action registration */
-  xbt_replay_action_register("compute", Replayer::compute);
-  xbt_replay_action_register("send", Replayer::send);
-  xbt_replay_action_register("recv", Replayer::recv);
-
-  if (argv[3]) {
-    simgrid::xbt::action_fs = new std::ifstream(argv[3], std::ifstream::in);
-  }
-
-  e.run();
-
-  if (argv[3]) {
-    delete simgrid::xbt::action_fs;
-    simgrid::xbt::action_fs = nullptr;
-  }
-
-  XBT_INFO("Simulation time %g", e.getClock());
-
-  return 0;
-}