/* * 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-hdf5-logutils.h" /* counter name strings for the HDF5 module */ #define X(a) #a, char *hdf5_counter_names[] = { HDF5_COUNTERS }; char *hdf5_f_counter_names[] = { HDF5_F_COUNTERS }; #undef X static int darshan_log_get_hdf5_file(void** hdf5_buf_p, int* bytes_left, void** file_rec, darshan_record_id* rec_id, int byte_swap_flag); static void darshan_log_print_hdf5_file(void *file_rec, char *file_name, char *mnt_pt, char *fs_type); struct darshan_mod_logutil_funcs hdf5_logutils = { .log_get_record = &darshan_log_get_hdf5_file, .log_print_record = &darshan_log_print_hdf5_file, }; static int darshan_log_get_hdf5_file(void** hdf5_buf_p, int* bytes_left, void** file_rec, darshan_record_id* rec_id, int byte_swap_flag) { int i; struct darshan_hdf5_file *file = (struct darshan_hdf5_file *) (*hdf5_buf_p); if(*bytes_left < sizeof(struct darshan_hdf5_file)) return(-1); if(byte_swap_flag) { /* swap bytes if necessary */ DARSHAN_BSWAP64(&file->f_id); DARSHAN_BSWAP64(&file->rank); for(i=0; icounters[i]); for(i=0; ifcounters[i]); } /* update/set output variables */ *file_rec = (void *)file; *rec_id = file->f_id; *hdf5_buf_p = (file + 1); /* increment input buf by size of file record */ *bytes_left -= sizeof(struct darshan_hdf5_file); return(0); } static void darshan_log_print_hdf5_file(void *file_rec, char *file_name, char *mnt_pt, char *fs_type) { int i; struct darshan_hdf5_file *hdf5_file_rec = (struct darshan_hdf5_file *)file_rec; for(i=0; irank, hdf5_file_rec->f_id, hdf5_counter_names[i], hdf5_file_rec->counters[i], file_name, mnt_pt, fs_type); } for(i=0; irank, hdf5_file_rec->f_id, hdf5_f_counter_names[i], hdf5_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 */