Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Finalises MSG_file_rcopy() and MSG_file_rmove()
authorPierre Veyre <pierre.veyre@cc.in2p3.fr>
Tue, 25 Mar 2014 14:21:46 +0000 (15:21 +0100)
committerPierre Veyre <pierre.veyre@cc.in2p3.fr>
Tue, 25 Mar 2014 14:21:46 +0000 (15:21 +0100)
include/msg/msg.h
src/msg/msg_io.c
src/surf/workstation_interface.cpp

index a625c26..ec4eca8 100644 (file)
@@ -98,6 +98,7 @@ XBT_PUBLIC(void) __MSG_file_priv_free(msg_file_priv_t priv);
 XBT_PUBLIC(const char *) MSG_file_get_name(msg_file_t storage);
 XBT_PUBLIC(msg_error_t) MSG_file_move(msg_file_t fd, const char* fullpath);
 XBT_PUBLIC(msg_error_t) MSG_file_rcopy(msg_file_t fd, msg_host_t host, const char* fullpath);
 XBT_PUBLIC(const char *) MSG_file_get_name(msg_file_t storage);
 XBT_PUBLIC(msg_error_t) MSG_file_move(msg_file_t fd, const char* fullpath);
 XBT_PUBLIC(msg_error_t) MSG_file_rcopy(msg_file_t fd, msg_host_t host, const char* fullpath);
+XBT_PUBLIC(msg_error_t) MSG_file_rmove(msg_file_t fd, msg_host_t host, const char* fullpath);
 /************************** Storage handling ***********************************/
 XBT_PUBLIC(msg_host_t) MSG_get_storage_by_name(const char *name);
 XBT_PUBLIC(const char *) MSG_storage_get_name(msg_storage_t storage);
 /************************** Storage handling ***********************************/
 XBT_PUBLIC(msg_host_t) MSG_get_storage_by_name(const char *name);
 XBT_PUBLIC(const char *) MSG_storage_get_name(msg_storage_t storage);
index 0b88c8a..2c2adca 100644 (file)
@@ -255,9 +255,9 @@ msg_error_t MSG_file_move (msg_file_t fd, const char* fullpath)
 
 /**
  * \ingroup msg_file_management
 
 /**
  * \ingroup msg_file_management
- * \brief Move a file to another location on a remote host.
+ * \brief Copy a file to another location on a remote host.
  * \param fd : the file to move
  * \param fd : the file to move
- * \param host : the remote host where the file has to be moved
+ * \param host : the remote host where the file has to be copied
  * \param fullpath : the complete path destination on the remote host
  * \return If successful, the function returns MSG_OK. Otherwise, it returns
  * MSG_TASK_CANCELED.
  * \param fullpath : the complete path destination on the remote host
  * \return If successful, the function returns MSG_OK. Otherwise, it returns
  * MSG_TASK_CANCELED.
@@ -268,6 +268,22 @@ msg_error_t MSG_file_rcopy (msg_file_t file, msg_host_t host, const char* fullpa
   return simcall_file_rcopy(file_priv->simdata->smx_file, host, fullpath);
 }
 
   return simcall_file_rcopy(file_priv->simdata->smx_file, host, fullpath);
 }
 
+/**
+ * \ingroup msg_file_management
+ * \brief Move a file to another location on a remote host.
+ * \param fd : the file to move
+ * \param host : the remote host where the file has to be moved
+ * \param fullpath : the complete path destination on the remote host
+ * \return If successful, the function returns MSG_OK. Otherwise, it returns
+ * MSG_TASK_CANCELED.
+ */
+msg_error_t MSG_file_rmove (msg_file_t file, msg_host_t host, const char* fullpath)
+{
+  msg_file_priv_t file_priv = MSG_file_priv(file);
+  msg_error_t res = simcall_file_rcopy(file_priv->simdata->smx_file, host, fullpath);
+  simcall_file_unlink(file_priv->simdata->smx_file);
+  return res;
+}
 
 /**
  * \brief Destroys a file (internal call only)
 
 /**
  * \brief Destroys a file (internal call only)
index 9783d2a..7149daf 100644 (file)
@@ -9,6 +9,8 @@
 #include "cpu_cas01.hpp"
 #include "simgrid/sg_config.h"
 
 #include "cpu_cas01.hpp"
 #include "simgrid/sg_config.h"
 
+#include "network_interface.hpp"
+
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_workstation, surf,
                                 "Logging specific to the SURF workstation module");
 
 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_workstation, surf,
                                 "Logging specific to the SURF workstation module");
 
@@ -369,22 +371,26 @@ int Workstation::fileMove(surf_file_t fd, const char* fullpath){
 
 int Workstation::fileRcopy(surf_file_t fd, surf_resource_t host_dest, const char* fullpath){
 
 
 int Workstation::fileRcopy(surf_file_t fd, surf_resource_t host_dest, const char* fullpath){
 
-  XBT_INFO("FILE %s WKS %s FULLPATH %s",fd->name, host_dest->key, fullpath);
+  XBT_DEBUG("Rcopy file %s on %s to %s",fd->name, host_dest->key, fullpath);
 
   /* Find the host src where the file is located */
   StoragePtr storage = findStorageOnMountList(fd->mount);
   const char* host_name_src = (const char*)storage->p_attach;
 
 
   /* Find the host src where the file is located */
   StoragePtr storage = findStorageOnMountList(fd->mount);
   const char* host_name_src = (const char*)storage->p_attach;
 
-  /* Find the host dest where the file will be stored */
+  /* Find the real host dest where the file will be stored */
   s_mount_t mnt;
   unsigned int cursor;
   StoragePtr storage_dest = NULL;
   const char* host_name_dest;
   s_mount_t mnt;
   unsigned int cursor;
   StoragePtr storage_dest = NULL;
   const char* host_name_dest;
-  char *file_mount_name = NULL;
+  char *file_mount_name;
   size_t longest_prefix_length = 0;
   size_t longest_prefix_length = 0;
-  xbt_dynar_foreach(((WorkstationPtr)host_dest)->p_storage,cursor,mnt)
+  WorkstationPtr dest_ws, src_ws;
+
+  dest_ws = static_cast<WorkstationPtr>(surf_workstation_resource_priv(host_dest));
+
+  xbt_dynar_foreach(dest_ws->p_storage,cursor,mnt)
   {
   {
-    file_mount_name = (char *) xbt_malloc ((strlen(mnt.name)+1));
+       file_mount_name = (char *) xbt_malloc ((strlen(mnt.name)+1));
     strncpy(file_mount_name,fullpath,strlen(mnt.name)+1);
     file_mount_name[strlen(mnt.name)] = '\0';
 
     strncpy(file_mount_name,fullpath,strlen(mnt.name)+1);
     file_mount_name[strlen(mnt.name)] = '\0';
 
@@ -396,7 +402,7 @@ int Workstation::fileRcopy(surf_file_t fd, surf_resource_t host_dest, const char
        free(file_mount_name);
   }
   if(longest_prefix_length>0)
        free(file_mount_name);
   }
   if(longest_prefix_length>0)
-  { /* Mount point found */
+  { /* Mount point found, retrieve the host the storage is attached to */
     host_name_dest = storage_dest->p_attach;
   }
   else
     host_name_dest = storage_dest->p_attach;
   }
   else
@@ -404,8 +410,50 @@ int Workstation::fileRcopy(surf_file_t fd, surf_resource_t host_dest, const char
     XBT_WARN("Can't find mount point for '%s' on destination host '%s'", fullpath, host_dest->key);
     return MSG_TASK_CANCELED;
   }
     XBT_WARN("Can't find mount point for '%s' on destination host '%s'", fullpath, host_dest->key);
     return MSG_TASK_CANCELED;
   }
+
+  /* Check that there is a route between src and dest workstations */
+  xbt_dynar_t route = NULL;
+  dest_ws = static_cast<WorkstationPtr>(surf_workstation_resource_priv(xbt_lib_get_elm_or_null(host_lib, host_name_dest)));
+  src_ws = static_cast<WorkstationPtr>(surf_workstation_resource_priv(xbt_lib_get_elm_or_null(host_lib, host_name_src)));
+
+  routing_get_route_and_latency(src_ws->p_netElm, dest_ws->p_netElm, &route, NULL);
+  if(!xbt_dynar_length (route))
+  {
+       XBT_WARN("There is no route between %s and %s. Action has been canceled", src_ws->getName(), dest_ws->getName());
+       return MSG_TASK_CANCELED;
+  }
+  else
+  {/* There is a route between src and dest, let's copy the file */
+
+    /* Read the file on the src side */
+       src_ws->read(fd, fd->size);
+
+       /* Send a message from src to dest to simulate data transfer */
+       surf_network_model->communicate(src_ws->p_netElm, dest_ws->p_netElm, fd->size, -1.0);
+
+       /* Create the file on the dest side and write data into it*/
+       char *mount_name, *path;
+       path = (char *) xbt_malloc ((strlen(fullpath)-longest_prefix_length+1));
+       mount_name = (char *) xbt_malloc ((longest_prefix_length+1));
+       /* deduce mount_name and path from fullpath */
+       strncpy(mount_name, fullpath, longest_prefix_length+1);
+       strncpy(path, fullpath+longest_prefix_length, strlen(fullpath)-longest_prefix_length+1);
+       path[strlen(fullpath)-longest_prefix_length] = '\0';
+       mount_name[longest_prefix_length] = '\0';
+    /* create the file */
+       ActionPtr open_action = storage_dest->open((const char*)mount_name, (const char*)path);
+    /* write data */
+       dest_ws->write(static_cast<StorageActionPtr>(open_action)->p_file, fd->size);
+    dest_ws->close(static_cast<StorageActionPtr>(open_action)->p_file);
+    free(path);
+    free(mount_name);
+    XBT_DEBUG("File %s has been copied on %s to %s",fd->name, host_dest->key, fullpath);
+    return MSG_OK;
+  }
+
+
   XBT_INFO("SRC %s DEST %s", host_name_src, host_name_dest);
   XBT_INFO("SRC %s DEST %s", host_name_src, host_name_dest);
-  return MSG_OK;
+
 
 
 //  /* Check that file to copy is local to the src workstation (storage is attached to src workstation) */
 
 
 //  /* Check that file to copy is local to the src workstation (storage is attached to src workstation) */