IAP GITLAB

Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • AirShowerPhysics/corsika-data
1 result
Show changes
Commits on Source (1)
...@@ -24,7 +24,7 @@ namespace corsika_data { ...@@ -24,7 +24,7 @@ namespace corsika_data {
// the fortran interface functions // the fortran interface functions
extern "C" { extern "C" {
void cordataopenfile_(const char*); void cordataopenfile_(const char*, const int stringlength);
void cordatafillarray_(double*, const int&); void cordatafillarray_(double*, const int&);
void cordataclosefile_(); void cordataclosefile_();
double cordatanextnumber_(); double cordatanextnumber_();
......
...@@ -29,27 +29,39 @@ namespace corsika_data { ...@@ -29,27 +29,39 @@ namespace corsika_data {
std::cout << "DataFile is still open! Closing it now..." << std::endl; std::cout << "DataFile is still open! Closing it now..." << std::endl;
file_in_.close(); file_in_.close();
} }
in_.reset();
std::string s(name); std::string s(name);
auto i1 = s.find_first_not_of(" \t\r\n"); // trimm right auto i1 = s.find_first_not_of(" \t\r\n"); // trimm right
auto i2 = s.find_first_of(" \t\r\n", i1); // trimm left auto i2 = s.find_first_of(" \t\r\n", i1); // trimm left
std::string trimmed(s.substr(i1, i2 - i1)); std::string trimmed(s.substr(i1, i2 - i1));
file_in_.open(trimmed, ios_base::in | ios_base::binary); file_in_.open(trimmed, ios_base::in | ios_base::binary);
in_.reset(); if (!file_in_ || !file_in_.good()) {
std::cerr << std::string("Cannot open file: \'") + trimmed << "\'" << std::endl;
throw std::runtime_error(std::string("Cannot open file: ") + trimmed);
}
if (trimmed.rfind(".bz2") == trimmed.length() - 4) if (trimmed.rfind(".bz2") == trimmed.length() - 4)
in_.push(boost::iostreams::bzip2_decompressor()); in_.push(boost::iostreams::bzip2_decompressor());
in_.push(file_in_); in_.push(file_in_);
} }
void Close() { file_in_.close(); } void Close() { file_in_.close(); }
void FillArray(double* data, const int& length) { void FillArray(double* data, const int& length) {
for (int i = 0; i < length; i++) in_ >> data[i]; for (int i = 0; i < length; i++) {
in_ >> data[i];
if (!in_.good()) {
throw std::runtime_error(std::string("Cannot FillArray i=") +
std::to_string(i));
}
}
} }
double ReadNextNumber() { double ReadNextNumber() {
double data; double data;
in_ >> data; in_ >> data;
if (!in_.good()) { throw std::runtime_error(std::string("Cannot ReadNextNumber")); }
return data; return data;
} }
int ReadNextText(std::string& data) { int ReadNextText(std::string& data) {
std::getline(in_, data, ' '); std::getline(in_, data, ' ');
if (!in_.good()) { throw std::runtime_error(std::string("Cannot ReadNextText")); }
return 0; return 0;
} }
}; };
...@@ -57,7 +69,6 @@ namespace corsika_data { ...@@ -57,7 +69,6 @@ namespace corsika_data {
DataFile global_DataFile; DataFile global_DataFile;
void CorDataOpenFile(const std::string& name) { global_DataFile.Open(name.c_str()); } void CorDataOpenFile(const std::string& name) { global_DataFile.Open(name.c_str()); }
// void CorDataOpenFile(const char* name) { global_DataFile.Open(name); }
void CorDataFillArray(double* data, const int& length) { void CorDataFillArray(double* data, const int& length) {
global_DataFile.FillArray(data, length); global_DataFile.FillArray(data, length);
} }
...@@ -72,7 +83,15 @@ namespace corsika_data { ...@@ -72,7 +83,15 @@ namespace corsika_data {
bool CorDataCanDeCompress() { return true; } bool CorDataCanDeCompress() { return true; }
extern "C" { extern "C" {
void cordataopenfile_(const char* name) { CorDataOpenFile(name); } void cordataopenfile_(const char* name, const int stringlength) {
// make a 'real' string out of fortran one (if \0 is missing)
char *buffer = new char[stringlength + 1];
for (int i = 0; i < stringlength; ++i) buffer[i] = name[i];
// if not already terminated by 0, add it
if (buffer[stringlength - 1] != '\0') buffer[stringlength] = '\0';
CorDataOpenFile(buffer);
delete [] buffer;
}
void cordatafillarray_(double* data, const int& length) { void cordatafillarray_(double* data, const int& length) {
global_DataFile.FillArray(data, length); global_DataFile.FillArray(data, length);
} }
......
...@@ -41,7 +41,9 @@ namespace corsika_data { ...@@ -41,7 +41,9 @@ namespace corsika_data {
// the fortran interface functions // the fortran interface functions
extern "C" { extern "C" {
void cordataopenfile_(const char* name) { CorDataOpenFile(name); } void cordataopenfile_(const char* name, const int stringlength) {
CorDataOpenFile(name);
}
void cordatafillarray_(double* data, const int& length) { void cordatafillarray_(double* data, const int& length) {
CorDataFillArray(data, length); CorDataFillArray(data, length);
} }
......
...@@ -37,7 +37,7 @@ TEST_CASE("Data", "[data]") { ...@@ -37,7 +37,7 @@ TEST_CASE("Data", "[data]") {
SECTION(std::string("c++,") + file) { SECTION(std::string("c++,") + file) {
bool b = CorDataCanDeCompress(); bool b = CorDataCanDeCompress();
CHECK(b == true); CHECK(b == true);
cout << "Reading: " << file << endl; cout << "Open/Reading: " << file << endl;
CorDataOpenFile(file); CorDataOpenFile(file);
std::string str; std::string str;
CorDataNextText(str); CorDataNextText(str);
...@@ -61,8 +61,60 @@ TEST_CASE("Data", "[data]") { ...@@ -61,8 +61,60 @@ TEST_CASE("Data", "[data]") {
int i = 0; int i = 0;
cordatacandecompress_(i); cordatacandecompress_(i);
CHECK(i == 1); CHECK(i == 1);
cout << "Reading: " << file << endl; cout << "Open/Reading: " << file << endl;
cordataopenfile_(file.c_str()); cordataopenfile_(file.c_str(), file.length());
char str[10];
cordatanexttext_(str, 10);
CHECK(std::string(str) == "sibyll20");
CHECK(cordatanextnumber_() == 0.10000E-02);
CHECK(cordatanextnumber_() == 91);
CHECK(cordatanextnumber_() == 261);
CHECK(cordatanextnumber_() == 5);
CHECK(cordatanextnumber_() == 11);
CHECK(cordatanextnumber_() == 20);
double aData[3 * 9];
const int length = 3 * 9;
cordatafillarray_(aData, length);
for (int i = 0; i < length; ++i) { CHECK(aData[i] == testData[i]); }
cordataclosefile_();
}
// now read file two times in a row
SECTION(std::string("twice, c++,") + file) {
bool b = CorDataCanDeCompress();
CHECK(b == true);
cout << "Open/Close/Open/Reading: " << file << endl;
CorDataOpenFile(file);
CorDataCloseFile();
CorDataOpenFile(file);
std::string str;
CorDataNextText(str);
CHECK(str == "sibyll20");
CHECK(CorDataNextNumber() == 0.10000E-02);
CHECK(CorDataNextNumber() == 91);
CHECK(CorDataNextNumber() == 261);
CHECK(CorDataNextNumber() == 5);
CHECK(CorDataNextNumber() == 11);
CHECK(CorDataNextNumber() == 20);
double aData[3 * 9];
const int length = 3 * 9;
CorDataFillArray(aData, length);
for (int i = 0; i < length; ++i) { CHECK(aData[i] == testData[i]); }
CorDataCloseFile();
}
SECTION(std::string("twice, fortran, ") + file) {
int i = 0;
cordatacandecompress_(i);
CHECK(i == 1);
cout << "Open/Close/Open/Reading: " << file << endl;
cordataopenfile_(file.c_str(), file.length());
cordataclosefile_();
cordataopenfile_(file.c_str(), file.length());
char str[10]; char str[10];
cordatanexttext_(str, 10); cordatanexttext_(str, 10);
CHECK(std::string(str) == "sibyll20"); CHECK(std::string(str) == "sibyll20");
...@@ -97,7 +149,7 @@ TEST_CASE("Data", "[data]") { ...@@ -97,7 +149,7 @@ TEST_CASE("Data", "[data]") {
} }
SECTION("fortran") { SECTION("fortran") {
CHECK_THROWS(cordataopenfile_("")); CHECK_THROWS(cordataopenfile_(""), 0);
double a[1]; double a[1];
const int length = 1; const int length = 1;
CHECK_THROWS(cordatafillarray_(a, length)); CHECK_THROWS(cordatafillarray_(a, length));
......