/* * Copyright (C) 2015 University of Chicago. * See COPYRIGHT notice in top-level directory. * */ #define _GNU_SOURCE #include "darshan-util-config.h" #include #include #include #include #include #include #include #include #include #include #include "darshan-posix-logutils.h" /* counter name strings for the POSIX module */ #define X(a) #a, char *posix_counter_names[] = { POSIX_COUNTERS }; char *posix_f_counter_names[] = { POSIX_F_COUNTERS }; #undef X static int darshan_log_get_posix_file(darshan_fd fd, void* posix_buf); static int darshan_log_put_posix_file(darshan_fd fd, void* posix_buf); static void darshan_log_print_posix_file(void *file_rec, char *file_name, char *mnt_pt, char *fs_type); struct darshan_mod_logutil_funcs posix_logutils = { .log_get_record = &darshan_log_get_posix_file, .log_put_record = &darshan_log_put_posix_file, .log_print_record = &darshan_log_print_posix_file, }; static int darshan_log_get_posix_file(darshan_fd fd, void* posix_buf) { struct darshan_posix_file *file; int i; int ret; ret = darshan_log_getmod(fd, DARSHAN_POSIX_MOD, posix_buf, sizeof(struct darshan_posix_file)); if(ret < 0) return(-1); else if(ret < sizeof(struct darshan_posix_file)) return(0); else { file = (struct darshan_posix_file *)posix_buf; if(fd->swap_flag) { /* swap bytes if necessary */ DARSHAN_BSWAP64(&file->base_rec.id); DARSHAN_BSWAP64(&file->base_rec.rank); for(i=0; icounters[i]); for(i=0; ifcounters[i]); } return(1); } } static int darshan_log_put_posix_file(darshan_fd fd, void* posix_buf) { struct darshan_posix_file *file = (struct darshan_posix_file *)posix_buf; int ret; ret = darshan_log_putmod(fd, DARSHAN_POSIX_MOD, file, sizeof(struct darshan_posix_file)); if(ret < 0) return(-1); return(0); } static void darshan_log_print_posix_file(void *file_rec, char *file_name, char *mnt_pt, char *fs_type) { int i; struct darshan_posix_file *posix_file_rec = (struct darshan_posix_file *)file_rec; for(i=0; ibase_rec.rank, posix_file_rec->base_rec.id, posix_counter_names[i], posix_file_rec->counters[i], file_name, mnt_pt, fs_type); } for(i=0; ibase_rec.rank, posix_file_rec->base_rec.id, posix_f_counter_names[i], posix_file_rec->fcounters[i], file_name, mnt_pt, fs_type); } return; } /* * Local variables: * c-indent-level: 4 * c-basic-offset: 4 * End: * * vim: ts=8 sts=4 sw=4 expandtab */