More clang tidy (#908)
* Pacify clang-analyzer-unix.cstring.NullArg * Apply some bugprone-suspicious-string-compare * Apply some readability-simplify-boolean-expr * Apply some readability-make-member-function-const * Apple some bugprone-macro-parentheses * Changed an f suffix to L for `long double` * Applied some readability-uppercase-literal-suffix automatically * Committing clang-format changes Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
@@ -62,12 +62,9 @@ PacketTable::~PacketTable()
|
||||
* any trouble making or opening the packet table.
|
||||
*/
|
||||
bool
|
||||
PacketTable::IsValid()
|
||||
PacketTable::IsValid() const
|
||||
{
|
||||
if (H5PTis_valid(table_id) == 0)
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
return H5PTis_valid(table_id) == 0;
|
||||
}
|
||||
|
||||
/* IsVariableLength
|
||||
@@ -75,7 +72,7 @@ PacketTable::IsValid()
|
||||
* and 0, otherwise. Returns -1 if the table is invalid (not open).
|
||||
*/
|
||||
int
|
||||
PacketTable::IsVariableLength()
|
||||
PacketTable::IsVariableLength() const
|
||||
{
|
||||
return H5PTis_varlen(table_id);
|
||||
}
|
||||
@@ -84,7 +81,7 @@ PacketTable::IsVariableLength()
|
||||
* Sets the index to point to the first packet in the packet table
|
||||
*/
|
||||
void
|
||||
PacketTable::ResetIndex()
|
||||
PacketTable::ResetIndex() const
|
||||
{
|
||||
H5PTcreate_index(table_id);
|
||||
}
|
||||
@@ -94,7 +91,7 @@ PacketTable::ResetIndex()
|
||||
* Returns 0 on success, negative on failure (if index is out of bounds)
|
||||
*/
|
||||
int
|
||||
PacketTable::SetIndex(hsize_t index)
|
||||
PacketTable::SetIndex(hsize_t index) const
|
||||
{
|
||||
return H5PTset_index(table_id, index);
|
||||
}
|
||||
@@ -104,7 +101,7 @@ PacketTable::SetIndex(hsize_t index)
|
||||
* Returns 0 on success, negative on failure (if index is out of bounds)
|
||||
*/
|
||||
hsize_t
|
||||
PacketTable::GetIndex(int &error)
|
||||
PacketTable::GetIndex(int &error) const
|
||||
{
|
||||
hsize_t index;
|
||||
|
||||
@@ -121,7 +118,7 @@ PacketTable::GetIndex(int &error)
|
||||
* error is set to negative.
|
||||
*/
|
||||
hsize_t
|
||||
PacketTable::GetPacketCount(int &error)
|
||||
PacketTable::GetPacketCount(int &error) const
|
||||
{
|
||||
hsize_t npackets;
|
||||
|
||||
@@ -133,7 +130,7 @@ PacketTable::GetPacketCount(int &error)
|
||||
* Returns the identifier of the packet table
|
||||
*/
|
||||
hid_t
|
||||
PacketTable::GetTableId()
|
||||
PacketTable::GetTableId() const
|
||||
{
|
||||
return table_id;
|
||||
}
|
||||
@@ -145,7 +142,7 @@ PacketTable::GetTableId()
|
||||
* the desired functionality cannot be performed via the packet table ID.
|
||||
*/
|
||||
hid_t
|
||||
PacketTable::GetDatatype()
|
||||
PacketTable::GetDatatype() const
|
||||
{
|
||||
return H5PTget_type(table_id);
|
||||
}
|
||||
@@ -157,7 +154,7 @@ PacketTable::GetDatatype()
|
||||
* the desired functionality cannot be performed via the packet table ID.
|
||||
*/
|
||||
hid_t
|
||||
PacketTable::GetDataset()
|
||||
PacketTable::GetDataset() const
|
||||
{
|
||||
return H5PTget_dataset(table_id);
|
||||
}
|
||||
@@ -169,7 +166,7 @@ PacketTable::GetDataset()
|
||||
* Returns 0 on success, negative on error.
|
||||
*/
|
||||
int
|
||||
PacketTable::FreeBuff(size_t numStructs, hvl_t *buffer)
|
||||
PacketTable::FreeBuff(size_t numStructs, hvl_t *buffer) const
|
||||
{
|
||||
return H5PTfree_vlen_buff(table_id, numStructs, buffer);
|
||||
}
|
||||
|
||||
@@ -54,39 +54,39 @@ class H5_HLCPPDLL PacketTable {
|
||||
* Use this after the constructor to ensure HDF did not have
|
||||
* any trouble making or opening the packet table.
|
||||
*/
|
||||
bool IsValid();
|
||||
bool IsValid() const;
|
||||
|
||||
/* IsVariableLength
|
||||
* Return 1 if this packet table uses variable-length datatype,
|
||||
* return 0 if it is Fixed Length. Returns -1 if the table is
|
||||
* invalid (not open).
|
||||
*/
|
||||
int IsVariableLength();
|
||||
int IsVariableLength() const;
|
||||
|
||||
/* ResetIndex
|
||||
* Sets the "current packet" index to point to the first packet in the
|
||||
* packet table
|
||||
*/
|
||||
void ResetIndex();
|
||||
void ResetIndex() const;
|
||||
|
||||
/* SetIndex
|
||||
* Sets the current packet to point to the packet specified by index.
|
||||
* Returns 0 on success, negative on failure (if index is out of bounds)
|
||||
*/
|
||||
int SetIndex(hsize_t index);
|
||||
int SetIndex(hsize_t index) const;
|
||||
|
||||
/* GetIndex
|
||||
* Returns the position of the current packet.
|
||||
* On failure, returns 0 and error is set to negative.
|
||||
*/
|
||||
hsize_t GetIndex(int &error);
|
||||
hsize_t GetIndex(int &error) const;
|
||||
|
||||
/* GetPacketCount
|
||||
* Returns the number of packets in the packet table. Error
|
||||
* is set to 0 on success. On failure, returns 0 and
|
||||
* error is set to negative.
|
||||
*/
|
||||
hsize_t GetPacketCount(int &error);
|
||||
hsize_t GetPacketCount(int &error) const;
|
||||
|
||||
hsize_t
|
||||
GetPacketCount()
|
||||
@@ -98,7 +98,7 @@ class H5_HLCPPDLL PacketTable {
|
||||
/* GetTableId
|
||||
* Returns the identifier of the packet table.
|
||||
*/
|
||||
hid_t GetTableId();
|
||||
hid_t GetTableId() const;
|
||||
|
||||
/* GetDatatype
|
||||
* Returns the datatype identifier used by the packet table, on success,
|
||||
@@ -106,7 +106,7 @@ class H5_HLCPPDLL PacketTable {
|
||||
* Note: it is best to avoid using this identifier in applications, unless
|
||||
* the desired functionality cannot be performed via the packet table ID.
|
||||
*/
|
||||
hid_t GetDatatype();
|
||||
hid_t GetDatatype() const;
|
||||
|
||||
/* GetDataset
|
||||
* Returns the dataset identifier associated with the packet table, on
|
||||
@@ -114,7 +114,7 @@ class H5_HLCPPDLL PacketTable {
|
||||
* Note: it is best to avoid using this identifier in applications, unless
|
||||
* the desired functionality cannot be performed via the packet table ID.
|
||||
*/
|
||||
hid_t GetDataset();
|
||||
hid_t GetDataset() const;
|
||||
|
||||
/* FreeBuff
|
||||
* Frees the buffers created when variable-length packets are read.
|
||||
@@ -122,7 +122,7 @@ class H5_HLCPPDLL PacketTable {
|
||||
* location in memory.
|
||||
* Returns 0 on success, negative on error.
|
||||
*/
|
||||
int FreeBuff(size_t numStructs, hvl_t *buffer);
|
||||
int FreeBuff(size_t numStructs, hvl_t *buffer) const;
|
||||
|
||||
protected:
|
||||
hid_t table_id;
|
||||
|
||||
@@ -620,7 +620,7 @@ TestHDFFV_9758()
|
||||
|
||||
for (hsize_t i = 0; i < NUM_PACKETS; i++) {
|
||||
s1[i].a = static_cast<int>(i);
|
||||
s1[i].b = 1.0f * static_cast<float>(i * i);
|
||||
s1[i].b = 1.0F * static_cast<float>(i * i);
|
||||
s1[i].c = 1.0 / static_cast<double>(i + 1);
|
||||
HDsprintf(s1[i].d, "string%" PRIuHSIZE "", i);
|
||||
s1[i].e = static_cast<int>(100 + i);
|
||||
|
||||
@@ -50,10 +50,10 @@ main(void)
|
||||
sizeof(dst_buf[0].pressure), sizeof(dst_buf[0].temperature)};
|
||||
|
||||
/* Define an array of Particles */
|
||||
Particle p_data[NRECORDS] = {{"zero", 0, 0, 0.0f, 0.0}, {"one", 10, 10, 1.0f, 10.0},
|
||||
{"two", 20, 20, 2.0f, 20.0}, {"three", 30, 30, 3.0f, 30.0},
|
||||
{"four", 40, 40, 4.0f, 40.0}, {"five", 50, 50, 5.0f, 50.0},
|
||||
{"six", 60, 60, 6.0f, 60.0}, {"seven", 70, 70, 7.0f, 70.0}};
|
||||
Particle p_data[NRECORDS] = {{"zero", 0, 0, 0.0F, 0.0}, {"one", 10, 10, 1.0F, 10.0},
|
||||
{"two", 20, 20, 2.0F, 20.0}, {"three", 30, 30, 3.0F, 30.0},
|
||||
{"four", 40, 40, 4.0F, 40.0}, {"five", 50, 50, 5.0F, 50.0},
|
||||
{"six", 60, 60, 6.0F, 60.0}, {"seven", 70, 70, 7.0F, 70.0}};
|
||||
|
||||
/* Define field information */
|
||||
const char *field_names[NFIELDS] = {"Name", "Latitude", "Longitude", "Pressure", "Temperature"};
|
||||
|
||||
@@ -42,10 +42,10 @@ main(void)
|
||||
Particle dst_buf[NRECORDS + NRECORDS_ADD];
|
||||
|
||||
/* Define an array of Particles */
|
||||
Particle p_data[NRECORDS] = {{"zero", 0, 0, 0.0f, 0.0}, {"one", 10, 10, 1.0f, 10.0},
|
||||
{"two", 20, 20, 2.0f, 20.0}, {"three", 30, 30, 3.0f, 30.0},
|
||||
{"four", 40, 40, 4.0f, 40.0}, {"five", 50, 50, 5.0f, 50.0},
|
||||
{"six", 60, 60, 6.0f, 60.0}, {"seven", 70, 70, 7.0f, 70.0}};
|
||||
Particle p_data[NRECORDS] = {{"zero", 0, 0, 0.0F, 0.0}, {"one", 10, 10, 1.0F, 10.0},
|
||||
{"two", 20, 20, 2.0F, 20.0}, {"three", 30, 30, 3.0F, 30.0},
|
||||
{"four", 40, 40, 4.0F, 40.0}, {"five", 50, 50, 5.0F, 50.0},
|
||||
{"six", 60, 60, 6.0F, 60.0}, {"seven", 70, 70, 7.0F, 70.0}};
|
||||
|
||||
/* Calculate the size and the offsets of our struct members in memory */
|
||||
size_t dst_size = sizeof(Particle);
|
||||
@@ -66,7 +66,7 @@ main(void)
|
||||
int i;
|
||||
|
||||
/* Append particles */
|
||||
Particle particle_in[NRECORDS_ADD] = {{"eight", 80, 80, 8.0f, 80.0}, {"nine", 90, 90, 9.0f, 90.0}};
|
||||
Particle particle_in[NRECORDS_ADD] = {{"eight", 80, 80, 8.0F, 80.0}, {"nine", 90, 90, 9.0F, 90.0}};
|
||||
|
||||
/* Initialize the field field_type */
|
||||
string_type = H5Tcopy(H5T_C_S1);
|
||||
|
||||
@@ -46,14 +46,14 @@ main(void)
|
||||
size_t dst_offset[NFIELDS] = {HOFFSET(Particle, name), HOFFSET(Particle, lati), HOFFSET(Particle, longi),
|
||||
HOFFSET(Particle, pressure), HOFFSET(Particle, temperature)};
|
||||
|
||||
Particle p = {"zero", 0, 0, 0.0f, 0.0};
|
||||
Particle p = {"zero", 0, 0, 0.0F, 0.0};
|
||||
size_t dst_sizes[NFIELDS] = {sizeof(p.name), sizeof(p.lati), sizeof(p.longi), sizeof(p.pressure),
|
||||
sizeof(p.temperature)};
|
||||
|
||||
/* Define field information */
|
||||
const char *field_names[NFIELDS] = {"Name", "Latitude", "Longitude", "Pressure", "Temperature"};
|
||||
/* Fill value particle */
|
||||
Particle fill_data[1] = {{"no data", -1, -1, -99.0f, -99.0}};
|
||||
Particle fill_data[1] = {{"no data", -1, -1, -99.0F, -99.0}};
|
||||
hid_t field_type[NFIELDS];
|
||||
hid_t string_type;
|
||||
hid_t file_id;
|
||||
@@ -63,7 +63,7 @@ main(void)
|
||||
int i;
|
||||
|
||||
/* Define 2 new particles to write */
|
||||
Particle particle_in[NRECORDS_WRITE] = {{"zero", 0, 0, 0.0f, 0.0}, {"one", 10, 10, 1.0f, 10.0}};
|
||||
Particle particle_in[NRECORDS_WRITE] = {{"zero", 0, 0, 0.0F, 0.0}, {"one", 10, 10, 1.0F, 10.0}};
|
||||
|
||||
/* Initialize the field field_type */
|
||||
string_type = H5Tcopy(H5T_C_S1);
|
||||
|
||||
@@ -65,23 +65,23 @@ main(void)
|
||||
hid_t string_type;
|
||||
hid_t file_id;
|
||||
hsize_t chunk_size = 10;
|
||||
Particle fill_data[1] = {{"no data", -1, -1, -99.0f, -99.0}}; /* Fill value particle */
|
||||
Particle fill_data[1] = {{"no data", -1, -1, -99.0F, -99.0}}; /* Fill value particle */
|
||||
hsize_t start; /* Record to start reading/writing */
|
||||
hsize_t nrecords; /* Number of records to read/write */
|
||||
int compress = 0;
|
||||
int i;
|
||||
Particle *p_data = NULL; /* Initially no data */
|
||||
float pressure_in[NRECORDS_ADD] = /* Define new values for the field "Pressure" */
|
||||
{0.0f, 1.0f, 2.0f};
|
||||
{0.0F, 1.0F, 2.0F};
|
||||
Position position_in[NRECORDS_ADD] = {/* Define new values for "Latitude,Longitude" */
|
||||
{0, 0},
|
||||
{10, 10},
|
||||
{20, 20}};
|
||||
NamePressure namepre_in[NRECORDS_ADD] = /* Define new values for "Name,Pressure" */
|
||||
{
|
||||
{"zero", 0.0f},
|
||||
{"one", 1.0f},
|
||||
{"two", 2.0f},
|
||||
{"zero", 0.0F},
|
||||
{"one", 1.0F},
|
||||
{"two", 2.0F},
|
||||
};
|
||||
size_t field_sizes_pos[2] = {sizeof(position_in[0].longi), sizeof(position_in[0].lati)};
|
||||
size_t field_sizes_pre[1] = {sizeof(namepre_in[0].pressure)};
|
||||
|
||||
@@ -64,7 +64,7 @@ main(void)
|
||||
hid_t string_type;
|
||||
hid_t file_id;
|
||||
hsize_t chunk_size = 10;
|
||||
Particle fill_data[1] = {{"no data", -1, -1, -99.0f, -99.0}}; /* Fill value particle */
|
||||
Particle fill_data[1] = {{"no data", -1, -1, -99.0F, -99.0}}; /* Fill value particle */
|
||||
int compress = 0;
|
||||
hsize_t nfields;
|
||||
hsize_t start; /* Record to start reading/writing */
|
||||
@@ -72,7 +72,7 @@ main(void)
|
||||
int i;
|
||||
|
||||
/* Define new values for the field "Pressure" */
|
||||
float pressure_in[NRECORDS_ADD] = {0.0f, 1.0f, 2.0f};
|
||||
float pressure_in[NRECORDS_ADD] = {0.0F, 1.0F, 2.0F};
|
||||
int field_index_pre[1] = {3};
|
||||
int field_index_pos[2] = {1, 2};
|
||||
|
||||
|
||||
@@ -49,7 +49,7 @@ main(void)
|
||||
hid_t string_type;
|
||||
hid_t file_id;
|
||||
hsize_t chunk_size = 10;
|
||||
Particle fill_data[1] = {{"no data", -1, -1, -99.0f, -99.0}}; /* Fill value particle */
|
||||
Particle fill_data[1] = {{"no data", -1, -1, -99.0F, -99.0}}; /* Fill value particle */
|
||||
int compress = 0;
|
||||
hsize_t nfields_out;
|
||||
hsize_t nrecords_out;
|
||||
|
||||
@@ -44,10 +44,10 @@ main(void)
|
||||
HOFFSET(Particle, pressure), HOFFSET(Particle, temperature)};
|
||||
|
||||
/* Define an array of Particles */
|
||||
Particle p_data[NRECORDS] = {{"zero", 0, 0, 0.0f, 0.0}, {"one", 10, 10, 1.0f, 10.0},
|
||||
{"two", 20, 20, 2.0f, 20.0}, {"three", 30, 30, 3.0f, 30.0},
|
||||
{"four", 40, 40, 4.0f, 40.0}, {"five", 50, 50, 5.0f, 50.0},
|
||||
{"six", 60, 60, 6.0f, 60.0}, {"seven", 70, 70, 7.0f, 70.0}};
|
||||
Particle p_data[NRECORDS] = {{"zero", 0, 0, 0.0F, 0.0}, {"one", 10, 10, 1.0F, 10.0},
|
||||
{"two", 20, 20, 2.0F, 20.0}, {"three", 30, 30, 3.0F, 30.0},
|
||||
{"four", 40, 40, 4.0F, 40.0}, {"five", 50, 50, 5.0F, 50.0},
|
||||
{"six", 60, 60, 6.0F, 60.0}, {"seven", 70, 70, 7.0F, 70.0}};
|
||||
|
||||
const char *field_names[NFIELDS] = /* Define field information */
|
||||
{"Name", "Latitude", "Longitude", "Pressure", "Temperature"};
|
||||
@@ -56,7 +56,7 @@ main(void)
|
||||
hid_t file_id;
|
||||
hsize_t chunk_size = 10;
|
||||
int compress = 0;
|
||||
Particle fill_data[1] = {{"no data", -1, -1, -99.0f, -99.0}};
|
||||
Particle fill_data[1] = {{"no data", -1, -1, -99.0F, -99.0}};
|
||||
hsize_t start; /* Record to start reading */
|
||||
hsize_t nrecords; /* Number of records to insert/delete */
|
||||
hsize_t nfields_out;
|
||||
|
||||
@@ -41,10 +41,10 @@ main(void)
|
||||
Particle dst_buf[NRECORDS + NRECORDS_INS];
|
||||
|
||||
/* Define an array of Particles */
|
||||
Particle p_data[NRECORDS] = {{"zero", 0, 0, 0.0f, 0.0}, {"one", 10, 10, 1.0f, 10.0},
|
||||
{"two", 20, 20, 2.0f, 20.0}, {"three", 30, 30, 3.0f, 30.0},
|
||||
{"four", 40, 40, 4.0f, 40.0}, {"five", 50, 50, 5.0f, 50.0},
|
||||
{"six", 60, 60, 6.0f, 60.0}, {"seven", 70, 70, 7.0f, 70.0}};
|
||||
Particle p_data[NRECORDS] = {{"zero", 0, 0, 0.0F, 0.0}, {"one", 10, 10, 1.0F, 10.0},
|
||||
{"two", 20, 20, 2.0F, 20.0}, {"three", 30, 30, 3.0F, 30.0},
|
||||
{"four", 40, 40, 4.0F, 40.0}, {"five", 50, 50, 5.0F, 50.0},
|
||||
{"six", 60, 60, 6.0F, 60.0}, {"seven", 70, 70, 7.0F, 70.0}};
|
||||
|
||||
/* Calculate the size and the offsets of our struct members in memory */
|
||||
size_t dst_size = sizeof(Particle);
|
||||
@@ -54,7 +54,7 @@ main(void)
|
||||
sizeof(p_data[0].pressure), sizeof(p_data[0].temperature)};
|
||||
|
||||
/* Define an array of Particles to insert */
|
||||
Particle p_data_insert[NRECORDS_INS] = {{"new", 30, 30, 3.0f, 30.0}, {"new", 40, 40, 4.0f, 40.0}};
|
||||
Particle p_data_insert[NRECORDS_INS] = {{"new", 30, 30, 3.0F, 30.0}, {"new", 40, 40, 4.0F, 40.0}};
|
||||
|
||||
/* Define field information */
|
||||
const char *field_names[NFIELDS] = {"Name", "Latitude", "Longitude", "Pressure", "Temperature"};
|
||||
|
||||
@@ -49,10 +49,10 @@ main(void)
|
||||
sizeof(dst_buf[0].pressure), sizeof(dst_buf[0].temperature)};
|
||||
|
||||
/* Define an array of Particles */
|
||||
Particle p_data[NRECORDS] = {{"zero", 0, 0, 0.0f, 0.0}, {"one", 10, 10, 1.0f, 10.0},
|
||||
{"two", 20, 20, 2.0f, 20.0}, {"three", 30, 30, 3.0f, 30.0},
|
||||
{"four", 40, 40, 4.0f, 40.0}, {"five", 50, 50, 5.0f, 50.0},
|
||||
{"six", 60, 60, 6.0f, 60.0}, {"seven", 70, 70, 7.0f, 70.0}};
|
||||
Particle p_data[NRECORDS] = {{"zero", 0, 0, 0.0F, 0.0}, {"one", 10, 10, 1.0F, 10.0},
|
||||
{"two", 20, 20, 2.0F, 20.0}, {"three", 30, 30, 3.0F, 30.0},
|
||||
{"four", 40, 40, 4.0F, 40.0}, {"five", 50, 50, 5.0F, 50.0},
|
||||
{"six", 60, 60, 6.0F, 60.0}, {"seven", 70, 70, 7.0F, 70.0}};
|
||||
|
||||
/* Define field information */
|
||||
const char *field_names[NFIELDS] = {"Name", "Latitude", "Longitude", "Pressure", "Temperature"};
|
||||
@@ -61,7 +61,7 @@ main(void)
|
||||
hid_t file_id;
|
||||
hsize_t chunk_size = 10;
|
||||
int compress = 0;
|
||||
Particle fill_data[1] = {{"no data", -1, -1, -99.0f, -99.0}}; /* Fill value particle */
|
||||
Particle fill_data[1] = {{"no data", -1, -1, -99.0F, -99.0}}; /* Fill value particle */
|
||||
hsize_t start1; /* Record to start reading from 1st table */
|
||||
hsize_t nrecords; /* Number of records to insert */
|
||||
hsize_t start2; /* Record to start writing in 2nd table */
|
||||
|
||||
@@ -40,10 +40,10 @@ main(void)
|
||||
} Particle;
|
||||
|
||||
/* Define an array of Particles */
|
||||
Particle p_data[NRECORDS] = {{"zero", 0, 0, 0.0f, 0.0}, {"one", 10, 10, 1.0f, 10.0},
|
||||
{"two", 20, 20, 2.0f, 20.0}, {"three", 30, 30, 3.0f, 30.0},
|
||||
{"four", 40, 40, 4.0f, 40.0}, {"five", 50, 50, 5.0f, 50.0},
|
||||
{"six", 60, 60, 6.0f, 60.0}, {"seven", 70, 70, 7.0f, 70.0}};
|
||||
Particle p_data[NRECORDS] = {{"zero", 0, 0, 0.0F, 0.0}, {"one", 10, 10, 1.0F, 10.0},
|
||||
{"two", 20, 20, 2.0F, 20.0}, {"three", 30, 30, 3.0F, 30.0},
|
||||
{"four", 40, 40, 4.0F, 40.0}, {"five", 50, 50, 5.0F, 50.0},
|
||||
{"six", 60, 60, 6.0F, 60.0}, {"seven", 70, 70, 7.0F, 70.0}};
|
||||
|
||||
Particle dst_buf[2 * NRECORDS];
|
||||
/* Calculate the size and the offsets of our struct members in memory */
|
||||
|
||||
@@ -38,10 +38,10 @@ main(void)
|
||||
} Particle1;
|
||||
|
||||
/* Define an array of Particles */
|
||||
Particle1 p_data[NRECORDS] = {{"zero", 0, 0, 0.0f, 0.0}, {"one", 10, 10, 1.0f, 10.0},
|
||||
{"two", 20, 20, 2.0f, 20.0}, {"three", 30, 30, 3.0f, 30.0},
|
||||
{"four", 40, 40, 4.0f, 40.0}, {"five", 50, 50, 5.0f, 50.0},
|
||||
{"six", 60, 60, 6.0f, 60.0}, {"seven", 70, 70, 7.0f, 70.0}};
|
||||
Particle1 p_data[NRECORDS] = {{"zero", 0, 0, 0.0F, 0.0}, {"one", 10, 10, 1.0F, 10.0},
|
||||
{"two", 20, 20, 2.0F, 20.0}, {"three", 30, 30, 3.0F, 30.0},
|
||||
{"four", 40, 40, 4.0F, 40.0}, {"five", 50, 50, 5.0F, 50.0},
|
||||
{"six", 60, 60, 6.0F, 60.0}, {"seven", 70, 70, 7.0F, 70.0}};
|
||||
|
||||
/* Calculate the size and the offsets of our struct members in memory */
|
||||
size_t dst_size1 = sizeof(Particle1);
|
||||
@@ -56,7 +56,7 @@ main(void)
|
||||
hid_t file_id;
|
||||
hsize_t chunk_size = 10;
|
||||
int compress = 0;
|
||||
Particle1 fill_data[1] = {{"no data", -1, -1, -99.0f, -99.0}};
|
||||
Particle1 fill_data[1] = {{"no data", -1, -1, -99.0F, -99.0}};
|
||||
int fill_data_new[1] = {-100};
|
||||
hsize_t position;
|
||||
hsize_t nfields_out;
|
||||
|
||||
@@ -44,10 +44,10 @@ main(void)
|
||||
HOFFSET(Particle, pressure), HOFFSET(Particle, temperature)};
|
||||
|
||||
/* Define an array of Particles */
|
||||
Particle p_data[NRECORDS] = {{"zero", 0, 0, 0.0f, 0.0}, {"one", 10, 10, 1.0f, 10.0},
|
||||
{"two", 20, 20, 2.0f, 20.0}, {"three", 30, 30, 3.0f, 30.0},
|
||||
{"four", 40, 40, 4.0f, 40.0}, {"five", 50, 50, 5.0f, 50.0},
|
||||
{"six", 60, 60, 6.0f, 60.0}, {"seven", 70, 70, 7.0f, 70.0}};
|
||||
Particle p_data[NRECORDS] = {{"zero", 0, 0, 0.0F, 0.0}, {"one", 10, 10, 1.0F, 10.0},
|
||||
{"two", 20, 20, 2.0F, 20.0}, {"three", 30, 30, 3.0F, 30.0},
|
||||
{"four", 40, 40, 4.0F, 40.0}, {"five", 50, 50, 5.0F, 50.0},
|
||||
{"six", 60, 60, 6.0F, 60.0}, {"seven", 70, 70, 7.0F, 70.0}};
|
||||
|
||||
/* Define field information */
|
||||
const char *field_names[NFIELDS] = {"Name", "Latitude", "Longitude", "Pressure", "Temperature"};
|
||||
@@ -56,7 +56,7 @@ main(void)
|
||||
hid_t file_id;
|
||||
hsize_t chunk_size = 10;
|
||||
int compress = 0;
|
||||
Particle fill_data[1] = {{"no data", -1, -1, -99.0f, -99.0}};
|
||||
Particle fill_data[1] = {{"no data", -1, -1, -99.0F, -99.0}};
|
||||
hsize_t nfields_out;
|
||||
hsize_t nrecords_out;
|
||||
|
||||
|
||||
@@ -75,7 +75,7 @@ main(int argc, char **argv)
|
||||
int nerrors = 0;
|
||||
char filename[65];
|
||||
|
||||
if (argc < 2) {
|
||||
if (argc < 2 || !argv[0] || !argv[1]) {
|
||||
HDprintf("Usage: gen_test [le | be]\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
@@ -45,10 +45,10 @@ typedef struct particle_t {
|
||||
* a static array of particles for writing and checking reads
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
static particle_t testPart[NRECORDS] = {{"zero", 0, 0, 0.0f, 0.0}, {"one", 10, 10, 1.0f, 10.0},
|
||||
{"two", 20, 20, 2.0f, 20.0}, {"three", 30, 30, 3.0f, 30.0},
|
||||
{"four", 40, 40, 4.0f, 40.0}, {"five", 50, 50, 5.0f, 50.0},
|
||||
{"six", 60, 60, 6.0f, 60.0}, {"seven", 70, 70, 7.0f, 70.0}};
|
||||
static particle_t testPart[NRECORDS] = {{"zero", 0, 0, 0.0F, 0.0}, {"one", 10, 10, 1.0F, 10.0},
|
||||
{"two", 20, 20, 2.0F, 20.0}, {"three", 30, 30, 3.0F, 30.0},
|
||||
{"Four", 40, 40, 4.0F, 40.0}, {"Five", 50, 50, 5.0F, 50.0},
|
||||
{"six", 60, 60, 6.0F, 60.0}, {"seven", 70, 70, 7.0F, 70.0}};
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
* function that compares one particle
|
||||
|
||||
@@ -245,7 +245,7 @@ test_table(hid_t fid, int do_write)
|
||||
{"six", 60, 6.0, 60.0, 60},
|
||||
{"seven", 70, 7.0, 70.0, 70}};
|
||||
/* buffers for the field "Pressure" and "New_field" */
|
||||
float pressure_in[NRECORDS] = {0.0f, 1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f};
|
||||
float pressure_in[NRECORDS] = {0.0F, 1.0F, 2.0F, 3.0F, 4.0F, 5.0F, 6.0F, 7.0F};
|
||||
float pressure_out[NRECORDS];
|
||||
int buf_new[NRECORDS] = {0, 1, 2, 3, 4, 5, 6, 7};
|
||||
/* buffers for the fields "Latitude,Longitude" */
|
||||
@@ -254,8 +254,8 @@ test_table(hid_t fid, int do_write)
|
||||
/* buffers for the fields "Name,Pressure" */
|
||||
namepressure_t namepre_out[NRECORDS];
|
||||
namepressure_t namepre_in[NRECORDS] = {
|
||||
{"zero", 0.0f}, {"one", 1.0f}, {"two", 2.0f}, {"three", 3.0f},
|
||||
{"four", 4.0f}, {"five", 5.0f}, {"six", 6.0f}, {"seven", 7.0f},
|
||||
{"zero", 0.0F}, {"one", 1.0F}, {"two", 2.0F}, {"three", 3.0F},
|
||||
{"four", 4.0F}, {"five", 5.0F}, {"six", 6.0F}, {"seven", 7.0F},
|
||||
};
|
||||
|
||||
/*-------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user