X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7b02515baed02f4f6b8808eb16b0e0175eb53395..5e3e50f757f70251b3fdf0b6610fe65071dd0d5b:/src/surf/workstation_interface.cpp diff --git a/src/surf/workstation_interface.cpp b/src/surf/workstation_interface.cpp index 9d93ab5296..8ff047a8d5 100644 --- a/src/surf/workstation_interface.cpp +++ b/src/surf/workstation_interface.cpp @@ -184,28 +184,59 @@ xbt_dict_t Workstation::getMountedStorageList() return storage_list; } -xbt_dict_t Workstation::getAttachedStorageList() +xbt_dynar_t Workstation::getAttachedStorageList() { xbt_lib_cursor_t cursor; char *key; void **data; - xbt_dict_t res = xbt_dict_new_homogeneous(NULL); + xbt_dynar_t result = xbt_dynar_new(sizeof(void*), NULL); xbt_lib_foreach(storage_lib, cursor, key, data) { - if(routing_get_network_element_type(key) == SURF_STORAGE_LEVEL) { - xbt_dictelm_t elm = xbt_dict_cursor_get_elm(cursor); - if ( (static_cast(surf_storage_resource_priv(surf_storage_resource_by_name((const char*)elm))))->p_attach == this->getName()) - xbt_dict_set(res,(const char*)elm,xbt_lib_get_level(elm,MSG_STORAGE_LEVEL),NULL); - } + if(xbt_lib_get_level(xbt_lib_get_elm_or_null(storage_lib, key), SURF_STORAGE_LEVEL) != NULL) { + StoragePtr storage = static_cast(xbt_lib_get_level(xbt_lib_get_elm_or_null(storage_lib, key), SURF_STORAGE_LEVEL)); + if(!strcmp((const char*)storage->p_attach,this->getName())){ + xbt_dynar_push_as(result, void *,(void *)static_cast(storage)->getName()); + } + } } - return res; - + return result; } +ActionPtr Workstation::open(const char* fullpath) { -ActionPtr Workstation::open(const char* mount, const char* path) { - StoragePtr st = findStorageOnMountList(mount); - XBT_DEBUG("OPEN on disk '%s'", st->getName()); - return st->open(mount, path); + StoragePtr st = NULL; + s_mount_t mnt; + unsigned int cursor; + size_t pos = 0; + char *path, *mount_name, *file_mount_name; + + + XBT_DEBUG("Search for storage name for '%s' on '%s'", fullpath, getName()); + xbt_dynar_foreach(p_storage,cursor,mnt) + { + XBT_DEBUG("See '%s'",mnt.name); + + file_mount_name = (char *) xbt_malloc ((strlen(mnt.name)+1) * sizeof (char)); + strncpy(file_mount_name,fullpath,strlen(mnt.name)); + file_mount_name[strlen(mnt.name)] = '\0'; + + if(!strcmp(file_mount_name,mnt.name) && strlen(mnt.name)>pos) + {/* The current mount name is found in the full path and is bigger than the previous*/ + pos = strlen(mnt.name); + mount_name = mnt.name; + st = static_cast(mnt.storage); + } + } + if(pos>0) + { /* Mount point found, deduce path + file name from full path (full path = mount name + path + file name)*/ + path = (char *) xbt_malloc ((strlen(fullpath)-strlen(mount_name)+1) * sizeof (char)); + strncpy(path, fullpath+pos, strlen(fullpath)-strlen(mount_name)); + path[strlen(fullpath)-strlen(mount_name)] = '\0'; + } + else + xbt_die("Can't find mount point for '%s' on '%s'", fullpath, getName()); + + free(file_mount_name); + return st->open(mount_name, path); } ActionPtr Workstation::close(surf_file_t fd) {