Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
first prototype of storage action replay
authorFrederic Suter <frederic.suter@cc.in2p3.fr>
Thu, 7 May 2015 08:30:53 +0000 (10:30 +0200)
committerFrederic Suter <frederic.suter@cc.in2p3.fr>
Thu, 25 Jun 2015 13:56:22 +0000 (15:56 +0200)
examples/msg/actions/actions_io.txt [new file with mode: 0644]
examples/msg/actions/storage_actions.c [new file with mode: 0644]
examples/msg/actions/storage_deployment.xml [new file with mode: 0644]

diff --git a/examples/msg/actions/actions_io.txt b/examples/msg/actions/actions_io.txt
new file mode 100644 (file)
index 0000000..cc9142a
--- /dev/null
@@ -0,0 +1,3 @@
+p0 open /home/lib/libsimgrid.so.3.6.2  
+p0 read /home/lib/libsimgrid.so.3.6.2 12710497
+p0 close /home/lib/libsimgrid.so.3.6.2
diff --git a/examples/msg/actions/storage_actions.c b/examples/msg/actions/storage_actions.c
new file mode 100644 (file)
index 0000000..981b11c
--- /dev/null
@@ -0,0 +1,145 @@
+/* Copyright (c) 2015. 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 <stdio.h>
+#include <stdlib.h>
+#include "simgrid/msg.h"
+#include "xbt.h"                /* calloc, printf */
+#include <xbt/replay.h>
+
+XBT_LOG_NEW_DEFAULT_CATEGORY(storage_actions, "Messages specific for this example");
+
+static xbt_dict_t opened_files = NULL;
+
+#define ACT_DEBUG(...) \
+  if (XBT_LOG_ISENABLED(storage_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(storage_actions, xbt_log_priority_verbose)) {
+    char *name = xbt_str_join_array(action, " ");
+    XBT_VERB("%s %f", name, date);
+    xbt_free(name);
+  }
+}
+
+msg_file_t get_file_descriptor(const char *file_name){
+  char full_name[1024];
+  msg_file_t file = NULL;
+
+  sprintf(full_name, "%s:%s", MSG_process_get_name(MSG_process_self()), file_name);
+
+  file = (msg_file_t) xbt_dict_get_or_null(opened_files, full_name);
+  return file;
+}
+
+static sg_size_t parse_size(const char *string){
+  sg_size_t size;
+  char *endptr;
+  
+  size = strtoul(string, &endptr, 10);
+  if (*endptr != '\0')
+    THROWF(unknown_error, 0, "%s is not a long unsigned int (a.k.a. sg_size_t)", string);
+  return size;
+}
+
+
+static void action_open(const char *const *action) {
+  const char *file_name = action[2];
+  char full_name[1024];
+  msg_file_t file = NULL;
+  double clock = MSG_get_clock();       /* this "call" is free thanks to inlining */
+
+  sprintf(full_name, "%s:%s", MSG_process_get_name(MSG_process_self()), 
+         file_name);
+
+  ACT_DEBUG("Entering Open: %s (filename: %s)", NAME, file_name);
+  file = MSG_file_open(file_name, NULL);
+  xbt_dict_set(opened_files, full_name, file, NULL);
+  
+  log_action(action, MSG_get_clock() - clock);
+}
+
+static void action_read(const char *const *action) {
+  const char *file_name = action[2];
+  const char *size_str = action[3];
+  msg_file_t file = NULL;
+  sg_size_t size = parse_size(size_str);
+  
+  double clock = MSG_get_clock();       /* this "call" is free thanks to inlining */
+
+  file = get_file_descriptor(file_name);
+  
+  ACT_DEBUG("Entering Read: %s (size: %llu)", NAME, size);
+  MSG_file_read(file, size);
+
+  log_action(action, MSG_get_clock() - clock);
+}
+
+static void action_close(const char *const *action) {
+  const char *file_name = action[2];
+  char full_name[1024];
+  msg_file_t file;
+  double clock = MSG_get_clock();       /* this "call" is free thanks to inlining */
+
+  file = get_file_descriptor(file_name);
+
+  ACT_DEBUG("Entering Close: %s (filename: %s)", NAME, file_name);
+  MSG_file_close(file);
+
+  log_action(action, MSG_get_clock() - clock);
+}
+
+int main(int argc, char *argv[]) {
+  msg_error_t res = MSG_OK;
+
+  /* Check the given arguments */
+  MSG_init(&argc, argv);
+  /* Explicit initialization of the action module is required now*/
+  MSG_action_init();
+
+  if (argc < 3) {
+    printf("Usage: %s platform_file deployment_file [action_files]\n", argv[0]);
+    printf
+        ("example: %s msg_platform.xml msg_deployment.xml actions # if all actions are in the same file\n",
+         argv[0]);
+    printf
+        ("example: %s msg_platform.xml msg_deployment.xml # if actions are in separate files, specified in deployment\n",
+         argv[0]);
+    exit(1);
+  }
+
+  /*  Simulation setting */
+  MSG_create_environment(argv[1]);
+
+  /* No need to register functions as in classical MSG programs: the actions get started anyway */
+  MSG_launch_application(argv[2]);
+
+  /*   Action registration */
+  xbt_replay_action_register("open", action_open);
+  xbt_replay_action_register("read", action_read);
+  xbt_replay_action_register("close", action_close);
+  
+  if (!opened_files)
+    opened_files = xbt_dict_new_homogeneous(NULL);
+  /* Actually do the simulation using MSG_action_trace_run */
+  res = MSG_action_trace_run(argv[3]);  // it's ok to pass a NULL argument here
+
+  XBT_INFO("Simulation time %g", MSG_get_clock());
+
+  if (opened_files)
+    xbt_dict_free(&opened_files);
+
+  /* Explicit finalization of the action module is required now*/
+  MSG_action_exit();
+
+  return !!MSG_OK;
+}                               /* end_of_main */
diff --git a/examples/msg/actions/storage_deployment.xml b/examples/msg/actions/storage_deployment.xml
new file mode 100644 (file)
index 0000000..96d3d5f
--- /dev/null
@@ -0,0 +1,5 @@
+<?xml version='1.0'?>
+<!DOCTYPE platform SYSTEM "http://simgrid.gforge.inria.fr/simgrid.dtd">
+<platform version="3">
+  <process host="denise" function="p0"/>
+</platform>