mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
fab95ce7b3
* OESS-98 convert plugin option to FetchContent, add tests * Fixes for pkcfg files because of plugin option * OESS-98 fix tools test for plugins * Keep doxygen comments under 100 chars long - format hint * Whitespace * HDFFV-11144 - Reclassify CMake messages * HDFFV-11099/11100 added help text * Reworked switch statement to compare string instead * Fix typo * Update CDash mode * Correct name of threadsafe * Correct option name * Undo accidental commit * Note LLVM 10 to 11 format default changes * Update format plugin * Undo clang-format version 11 changes * One more correction * Update supported platforms * Revert whitespace changes * Correct whitespace * Changes from PR#3 * HDFFV-11213 added option to control gcc10 warnings diagnostics * HDFFV-11212 Use the new references correctly in JNI utility and tests * format source * Fix typo * Add new test file * HDFFV-11212 - update test and remove unused arg * Minor non-space formatting changes * Use H5I_INVALID_ID instead of "-1" * source formatting * add missing testfile, update jni function * Undo commit of debug code * remove mislocated file * Fix h5repack test for handling of fapls and id close * Update h5diff test files usage text * HDFFV-11212 add new ref tests for JNI export dataset * src format update * Remove blank line typo * src format typo * long double requires %Lg * Another long double foramt specifer S.B. %Lg * issue with t128bit test * Windows issue with h5dump and type. * Fix review issues * refactor function nesting and fix error checks * format fixes * Remove untested functions and javadoc quiet comments * Restore TRY block. * Change string append errors to memory exception * revert to H5_JNI_FATAL_ERROR - support functions need work * Add assertion error for h5util functions * remove duplicate function * format fix * Revert HD function error handling * Update copyright comments * GH #386 java folder copyright corrections * Whitespace * GH #359 implement and fix tools 1.6 API usage * remove excessive comments * Flip inits to correct ifdef section * rework ifdef to be simpler * format issue * Reformat ifdef inits * remove static attribute * format compliance * Update names * Revert because logic relies on float not being int * Changes noticed from creating merge of #412 * Double underscore change * Correct compiler version variable used * Remove header guard underscores * Whitespace cleanup
79 lines
2.5 KiB
C
79 lines
2.5 KiB
C
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
|
* Copyright by The HDF Group. *
|
|
* Copyright by the Board of Trustees of the University of Illinois. *
|
|
* All rights reserved. *
|
|
* *
|
|
* This file is part of HDF5. The full HDF5 copyright notice, including *
|
|
* terms governing use, modification, and redistribution, is contained in *
|
|
* the COPYING file, which can be found at the root of the source code *
|
|
* distribution tree, or in https://www.hdfgroup.org/licenses. *
|
|
* If you do not have access to either file, you may request a copy from *
|
|
* help@hdfgroup.org. *
|
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
|
|
|
#ifndef SWMR_COMMON_H
|
|
#define SWMR_COMMON_H
|
|
|
|
/***********/
|
|
/* Headers */
|
|
/***********/
|
|
|
|
#include "h5test.h"
|
|
|
|
/**********/
|
|
/* Macros */
|
|
/**********/
|
|
|
|
#define NLEVELS 5 /* # of datasets in the SWMR test file */
|
|
|
|
#define NMAPPING 9
|
|
|
|
#define FILENAME "swmr_data.h5" /* SWMR test file name */
|
|
#define DTYPE_SIZE 150 /* Data size in opaque type */
|
|
|
|
/* The message sent by writer that the file open is done--releasing the file lock */
|
|
#define WRITER_MESSAGE "SWMR_WRITER_MESSAGE"
|
|
|
|
/************/
|
|
/* Typedefs */
|
|
/************/
|
|
|
|
/* Information about a symbol/dataset */
|
|
typedef struct {
|
|
char * name; /* Dataset name for symbol */
|
|
hid_t dsid; /* Dataset ID for symbol */
|
|
hsize_t nrecords; /* Number of records for the symbol */
|
|
} symbol_info_t;
|
|
|
|
/* A symbol's record */
|
|
typedef struct {
|
|
uint64_t rec_id; /* ID for this record (unique in symbol) */
|
|
uint8_t info[DTYPE_SIZE]; /* "Other" information for this record */
|
|
} symbol_t;
|
|
|
|
/********************/
|
|
/* Global Variables */
|
|
/********************/
|
|
H5TEST_DLLVAR symbol_info_t *symbol_info[NLEVELS];
|
|
H5TEST_DLLVAR unsigned symbol_count[NLEVELS];
|
|
|
|
/**************/
|
|
/* Prototypes */
|
|
/**************/
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
H5TEST_DLL symbol_info_t *choose_dataset(void);
|
|
H5TEST_DLL hid_t create_symbol_datatype(void);
|
|
H5TEST_DLL int generate_name(char *name_buf, unsigned level, unsigned count);
|
|
H5TEST_DLL int generate_symbols(void);
|
|
H5TEST_DLL int shutdown_symbols(void);
|
|
H5TEST_DLL int print_metadata_retries_info(hid_t fid);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SWMR_COMMON_H */
|