Skip to content

Commit 310fd37

Browse files
authored
Feature mdtest dir rename #306 (#311)
* MDTest: Support for directory renaming. * Refactored some MDTest variables from hardcoded numbers to ENUM symbols.
1 parent 4ba0eda commit 310fd37

File tree

6 files changed

+255
-133
lines changed

6 files changed

+255
-133
lines changed

src/aiori-DUMMY.c

+6
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,11 @@ static int DUMMY_stat (const char *path, struct stat *buf, aiori_mod_opt_t * opt
156156
return 0;
157157
}
158158

159+
static int DUMMY_rename (const char *path, const char *path2, aiori_mod_opt_t * options){
160+
return 0;
161+
}
162+
163+
159164
static int DUMMY_check_params(aiori_mod_opt_t * options){
160165
return 0;
161166
}
@@ -188,6 +193,7 @@ ior_aiori_t dummy_aiori = {
188193
.statfs = DUMMY_statfs,
189194
.mkdir = DUMMY_mkdir,
190195
.rmdir = DUMMY_rmdir,
196+
.rename = DUMMY_rename,
191197
.access = DUMMY_access,
192198
.stat = DUMMY_stat,
193199
.initialize = DUMMY_init,

src/aiori-POSIX.c

+12
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ ior_aiori_t posix_aiori = {
133133
.statfs = aiori_posix_statfs,
134134
.mkdir = aiori_posix_mkdir,
135135
.rmdir = aiori_posix_rmdir,
136+
.rename = POSIX_Rename,
136137
.access = aiori_posix_access,
137138
.stat = aiori_posix_stat,
138139
.get_options = POSIX_options,
@@ -636,6 +637,17 @@ void POSIX_Delete(char *testFileName, aiori_mod_opt_t * param)
636637
}
637638
}
638639

640+
int POSIX_Rename(const char * oldfile, const char * newfile, aiori_mod_opt_t * module_options){
641+
if(hints->dryRun)
642+
return 0;
643+
644+
if(rename(oldfile, newfile) != 0){
645+
EWARNF("[RANK %03d]: rename() of file \"%s\" to \"%s\" failed", rank, oldfile, newfile);
646+
return -1;
647+
}
648+
return 0;
649+
}
650+
639651
/*
640652
* Use POSIX stat() to return aggregate file size.
641653
*/

src/aiori-POSIX.h

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ int POSIX_Mknod(char *testFileName);
3434
aiori_fd_t *POSIX_Open(char *testFileName, int flags, aiori_mod_opt_t * module_options);
3535
IOR_offset_t POSIX_GetFileSize(aiori_mod_opt_t * test, char *testFileName);
3636
void POSIX_Delete(char *testFileName, aiori_mod_opt_t * module_options);
37+
int POSIX_Rename(const char *oldfile, const char *newfile, aiori_mod_opt_t * module_options);
3738
void POSIX_Close(aiori_fd_t *fd, aiori_mod_opt_t * module_options);
3839
option_help * POSIX_options(aiori_mod_opt_t ** init_backend_options, aiori_mod_opt_t * init_values);
3940
void POSIX_xfer_hints(aiori_xfer_hint_t * params);

src/aiori.h

+1
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ typedef struct ior_aiori {
108108
int (*stat) (const char *path, struct stat *buf, aiori_mod_opt_t * module_options);
109109
void (*initialize)(aiori_mod_opt_t * options); /* called once per program before MPI is started */
110110
void (*finalize)(aiori_mod_opt_t * options); /* called once per program after MPI is shutdown */
111+
int (*rename) (const char *oldpath, const char *newpath, aiori_mod_opt_t * module_options);
111112
option_help * (*get_options)(aiori_mod_opt_t ** init_backend_options, aiori_mod_opt_t* init_values); /* initializes the backend options as well and returns the pointer to the option help structure */
112113
int (*check_params)(aiori_mod_opt_t *); /* check if the provided module_optionseters for the given test and the module options are correct, if they aren't print a message and exit(1) or return 1*/
113114
void (*sync)(aiori_mod_opt_t * ); /* synchronize every pending operation for this storage */

0 commit comments

Comments
 (0)