Rename H5FormatUtils namespace

This commit is contained in:
2018-01-31 15:48:08 +01:00
parent 44a6125bec
commit 3054328a40
4 changed files with 38 additions and 37 deletions
+30 -30
View File
@@ -7,7 +7,7 @@
using namespace std;
hsize_t H5Format::expand_dataset(H5::DataSet& dataset, hsize_t frame_index, hsize_t dataset_increase_step)
hsize_t H5FormatUtils::expand_dataset(H5::DataSet& dataset, hsize_t frame_index, hsize_t dataset_increase_step)
{
hsize_t dataset_rank = 3;
hsize_t dataset_dimension[dataset_rank];
@@ -16,7 +16,7 @@ hsize_t H5Format::expand_dataset(H5::DataSet& dataset, hsize_t frame_index, hsiz
dataset_dimension[0] = frame_index + dataset_increase_step;
#ifdef DEBUG_OUTPUT
cout << "[H5Format::expand_dataset] Expanding dataspace to size (";
cout << "[H5FormatUtils::expand_dataset] Expanding dataspace to size (";
for (hsize_t i=0; i<dataset_rank; ++i) {
cout << dataset_dimension[i] << ",";
}
@@ -28,7 +28,7 @@ hsize_t H5Format::expand_dataset(H5::DataSet& dataset, hsize_t frame_index, hsiz
return dataset_dimension[0];
}
void H5Format::compact_dataset(H5::DataSet& dataset, hsize_t max_frame_index)
void H5FormatUtils::compact_dataset(H5::DataSet& dataset, hsize_t max_frame_index)
{
hsize_t dataset_rank = 3;
hsize_t dataset_dimension[dataset_rank];
@@ -37,7 +37,7 @@ void H5Format::compact_dataset(H5::DataSet& dataset, hsize_t max_frame_index)
dataset_dimension[0] = max_frame_index + 1;
#ifdef DEBUG_OUTPUT
cout << "[H5Format::compact_dataset] Compacting dataspace to size (";
cout << "[H5FormatUtils::compact_dataset] Compacting dataspace to size (";
for (hsize_t i=0; i<dataset_rank; ++i) {
cout << dataset_dimension[i] << ",";
}
@@ -47,12 +47,12 @@ void H5Format::compact_dataset(H5::DataSet& dataset, hsize_t max_frame_index)
dataset.extend(dataset_dimension);
}
H5::Group H5Format::create_group(H5::Group& target, const string& name)
H5::Group H5FormatUtils::create_group(H5::Group& target, const string& name)
{
return target.createGroup(name.c_str());
}
const boost::any& H5Format::get_value_from_reference(const string& dataset_name, const boost::any& value_reference, const map<string, boost::any>& values)
const boost::any& H5FormatUtils::get_value_from_reference(const string& dataset_name, const boost::any& value_reference, const map<string, boost::any>& values)
{
try {
auto reference_string = boost::any_cast<string>(value_reference);
@@ -72,10 +72,10 @@ const boost::any& H5Format::get_value_from_reference(const string& dataset_name,
}
}
H5::PredType H5Format::get_dataset_data_type(const string& type){
H5::PredType H5FormatUtils::get_dataset_data_type(const string& type){
#ifdef DEBUG_OUTPUT
cout << "[H5Format::get_dataset_data_type] Getting dataset type for received frame type " << type << endl;
cout << "[H5FormatUtils::get_dataset_data_type] Getting dataset type for received frame type " << type << endl;
#endif
if (type == "uint8") {
@@ -105,7 +105,7 @@ H5::PredType H5Format::get_dataset_data_type(const string& type){
}
}
H5::DataSet H5Format::write_dataset(H5::Group& target, const h5_dataset& dataset, const map<string, boost::any>& values){
H5::DataSet H5FormatUtils::write_dataset(H5::Group& target, const h5_dataset& dataset, const map<string, boost::any>& values){
string name = dataset.name;
boost::any value;
@@ -114,18 +114,18 @@ H5::DataSet H5Format::write_dataset(H5::Group& target, const h5_dataset& dataset
value = dataset.value;
// Value in struct is just a string reference to into the values map.
} else {
value = H5Format::get_value_from_reference(name, dataset.value, values);
value = H5FormatUtils::get_value_from_reference(name, dataset.value, values);
}
if (dataset.data_type == NX_CHAR || dataset.data_type == NX_DATE_TIME || dataset.data_type == NXnote) {
// Attempt to convert to const char * (string "literals" cause that).
try {
return H5Format::write_dataset(target, name, string(boost::any_cast<const char*>(value)));
return H5FormatUtils::write_dataset(target, name, string(boost::any_cast<const char*>(value)));
} catch (const boost::bad_any_cast& exception) {}
// Atempt to convert to string.
try {
return H5Format::write_dataset(target, name, boost::any_cast<string>(value));
return H5FormatUtils::write_dataset(target, name, boost::any_cast<string>(value));
} catch (const boost::bad_any_cast& exception) {}
// We cannot really convert this attribute.
@@ -136,7 +136,7 @@ H5::DataSet H5Format::write_dataset(H5::Group& target, const h5_dataset& dataset
} else if (dataset.data_type == NX_INT) {
try {
return H5Format::write_dataset(target, name, boost::any_cast<int>(value));
return H5FormatUtils::write_dataset(target, name, boost::any_cast<int>(value));
} catch (const boost::bad_any_cast& exception) {}
// We cannot really convert this attribute.
@@ -146,7 +146,7 @@ H5::DataSet H5Format::write_dataset(H5::Group& target, const h5_dataset& dataset
throw runtime_error(error_message.str());
} else if (dataset.data_type == NX_FLOAT || dataset.data_type == NX_NUMBER) {
try {
return H5Format::write_dataset(target, name, boost::any_cast<double>(value));
return H5FormatUtils::write_dataset(target, name, boost::any_cast<double>(value));
} catch (const boost::bad_any_cast& exception) {}
// We cannot really convert this attribute.
@@ -162,7 +162,7 @@ H5::DataSet H5Format::write_dataset(H5::Group& target, const h5_dataset& dataset
}
}
H5::DataSet H5Format::write_dataset(H5::Group& target, const string& name, double value)
H5::DataSet H5FormatUtils::write_dataset(H5::Group& target, const string& name, double value)
{
H5::DataSpace att_space(H5S_SCALAR);
auto data_type = H5::PredType::NATIVE_DOUBLE;
@@ -173,7 +173,7 @@ H5::DataSet H5Format::write_dataset(H5::Group& target, const string& name, doubl
return dataset;
}
H5::DataSet H5Format::write_dataset(H5::Group& target, const string& name, int value)
H5::DataSet H5FormatUtils::write_dataset(H5::Group& target, const string& name, int value)
{
H5::DataSpace att_space(H5S_SCALAR);
auto data_type = H5::PredType::NATIVE_INT;
@@ -184,7 +184,7 @@ H5::DataSet H5Format::write_dataset(H5::Group& target, const string& name, int v
return dataset;
}
H5::DataSet H5Format::write_dataset(H5::Group& target, const string& name, const string& value)
H5::DataSet H5FormatUtils::write_dataset(H5::Group& target, const string& name, const string& value)
{
H5::DataSpace att_space(H5S_SCALAR);
H5::DataType data_type = H5::StrType(0, H5T_VARIABLE);
@@ -195,7 +195,7 @@ H5::DataSet H5Format::write_dataset(H5::Group& target, const string& name, const
return dataset;
}
void H5Format::write_attribute(H5::H5Object& target, const string& name, const string& value)
void H5FormatUtils::write_attribute(H5::H5Object& target, const string& name, const string& value)
{
H5::DataSpace att_space(H5S_SCALAR);
H5::DataType data_type = H5::StrType(H5::PredType::C_S1, H5T_VARIABLE);
@@ -204,7 +204,7 @@ void H5Format::write_attribute(H5::H5Object& target, const string& name, const s
h5_attribute.write(data_type, &value);
}
void H5Format::write_attribute(H5::H5Object& target, const string& name, int value)
void H5FormatUtils::write_attribute(H5::H5Object& target, const string& name, int value)
{
H5::DataSpace att_space(H5S_SCALAR);
auto data_type = H5::PredType::NATIVE_INT;
@@ -213,7 +213,7 @@ void H5Format::write_attribute(H5::H5Object& target, const string& name, int val
h5_attribute.write(data_type, &value);
}
void H5Format::write_attribute(H5::H5Object& target, const h5_attr& attribute, const map<string, boost::any>& values)
void H5FormatUtils::write_attribute(H5::H5Object& target, const h5_attr& attribute, const map<string, boost::any>& values)
{
string name = attribute.name;
boost::any value;
@@ -223,19 +223,19 @@ void H5Format::write_attribute(H5::H5Object& target, const h5_attr& attribute, c
value = attribute.value;
// Value in struct is just a string reference to into the values map.
} else {
value = H5Format::get_value_from_reference(name, attribute.value, values);
value = H5FormatUtils::get_value_from_reference(name, attribute.value, values);
}
if (attribute.data_type == NX_CHAR) {
// Attempt to convert to const char * (string "literals" cause that).
try {
H5Format::write_attribute(target, name, string(boost::any_cast<const char*>(value)));
H5FormatUtils::write_attribute(target, name, string(boost::any_cast<const char*>(value)));
return;
} catch (const boost::bad_any_cast& exception) {}
// Atempt to convert to string.
try {
H5Format::write_attribute(target, name, boost::any_cast<string>(value));
H5FormatUtils::write_attribute(target, name, boost::any_cast<string>(value));
return;
} catch (const boost::bad_any_cast& exception) {}
@@ -247,7 +247,7 @@ void H5Format::write_attribute(H5::H5Object& target, const h5_attr& attribute, c
} else if (attribute.data_type == NX_INT) {
try {
H5Format::write_attribute(target, name, boost::any_cast<int>(value));
H5FormatUtils::write_attribute(target, name, boost::any_cast<int>(value));
return;
} catch (const boost::bad_any_cast& exception) {}
@@ -259,8 +259,8 @@ void H5Format::write_attribute(H5::H5Object& target, const h5_attr& attribute, c
}
}
void H5Format::write_format_data(H5::Group& file_node, const h5_parent& format_node, const std::map<std::string, h5_value>& values) {
auto node_group = H5Format::create_group(file_node, format_node.name);
void H5FormatUtils::write_format_data(H5::Group& file_node, const h5_parent& format_node, const std::map<std::string, h5_value>& values) {
auto node_group = H5FormatUtils::create_group(file_node, format_node.name);
for (const auto item : format_node.items) {
@@ -271,10 +271,10 @@ void H5Format::write_format_data(H5::Group& file_node, const h5_parent& format_n
} else if (item->node_type == ATTRIBUTE) {
auto sub_attribute = dynamic_cast<h5_attr*>(item);
H5Format::write_attribute(node_group, *sub_attribute, values);
H5FormatUtils::write_attribute(node_group, *sub_attribute, values);
} else if (item->node_type == DATASET) {
auto sub_dataset = dynamic_cast<h5_dataset*>(item);
auto current_dataset = H5Format::write_dataset(node_group, *sub_dataset, values);
auto current_dataset = H5FormatUtils::write_dataset(node_group, *sub_dataset, values);
for (const auto dataset_attr : sub_dataset->items) {
@@ -288,13 +288,13 @@ void H5Format::write_format_data(H5::Group& file_node, const h5_parent& format_n
auto sub_attribute = dynamic_cast<h5_attr*>(dataset_attr);
H5Format::write_attribute(current_dataset, *sub_attribute, values);
H5FormatUtils::write_attribute(current_dataset, *sub_attribute, values);
}
}
}
}
void H5Format::write_format(H5::H5File& file, const std::map<std::string, h5_value>& input_values, const string& raw_frames_dataset_name, const string& frames_dataset_name){
void H5FormatUtils::write_format(H5::H5File& file, const std::map<std::string, h5_value>& input_values, const string& raw_frames_dataset_name, const string& frames_dataset_name){
auto format = get_format_definition();
auto values = get_default_values();