forked from openturns/openturns
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
af06250
commit e7e62af
Showing
4 changed files
with
322 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,226 @@ | ||
// -*- C++ -*- | ||
/** | ||
* @brief CSV parser | ||
* | ||
* Copyright 2005-2025 Airbus-EDF-IMACS-ONERA-Phimeca | ||
* | ||
* This library is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This library is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with this library. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
#include "openturns/CSVParser.hxx" | ||
#include "openturns/PersistentObjectFactory.hxx" | ||
#include "rapidcsv.h" | ||
|
||
BEGIN_NAMESPACE_OPENTURNS | ||
|
||
/** | ||
* @class CSVParser | ||
*/ | ||
|
||
CLASSNAMEINIT(CSVParser) | ||
|
||
static const Factory<CSVParser> Factory_CSVParser; | ||
|
||
/* Constructor without parameters */ | ||
CSVParser::CSVParser() | ||
: PersistentObject() | ||
{ | ||
// Nothing to do | ||
} | ||
|
||
CSVParser::CSVParser(const String & fileName) | ||
: PersistentObject() | ||
, fileName_(fileName) {} | ||
|
||
|
||
/* Virtual constructor */ | ||
CSVParser * CSVParser::clone() const | ||
{ | ||
return new CSVParser(*this); | ||
} | ||
|
||
/* String converter */ | ||
String CSVParser::__repr__() const | ||
{ | ||
OSS oss(true); | ||
oss << "class= " << CSVParser::GetClassName(); | ||
return oss; | ||
} | ||
|
||
/* String converter */ | ||
String CSVParser::__str__(const String & ) const | ||
{ | ||
OSS oss(false); | ||
oss << CSVParser::GetClassName() << "(separator = " << fieldSeparator_ << ")"; | ||
return oss; | ||
} | ||
|
||
/* Method save() stores the object through the StorageManager */ | ||
void CSVParser::save(Advocate & adv) const | ||
{ | ||
PersistentObject::save(adv); | ||
adv.saveAttribute( "fileName_", fileName_); | ||
adv.saveAttribute( "fieldSeparator_", static_cast<UnsignedInteger>(fieldSeparator_)); | ||
adv.saveAttribute( "allowComments_", allowComments_); | ||
adv.saveAttribute( "allowEmptyLines_", allowEmptyLines_); | ||
adv.saveAttribute( "skippedLinesNumber_", skippedLinesNumber_); | ||
adv.saveAttribute( "decimalSeparator_", static_cast<UnsignedInteger>(decimalSeparator_)); | ||
} | ||
|
||
/* Method load() reloads the object from the StorageManager */ | ||
void CSVParser::load(Advocate & adv) | ||
{ | ||
PersistentObject::load(adv); | ||
adv.loadAttribute( "fileName_", fileName_); | ||
UnsignedInteger fieldSeparator = 0; | ||
adv.loadAttribute( "fieldSeparator_", fieldSeparator); | ||
fieldSeparator_ = fieldSeparator; | ||
adv.loadAttribute( "allowComments_", allowComments_); | ||
adv.loadAttribute( "allowEmptyLines_", allowEmptyLines_); | ||
adv.loadAttribute( "skippedLinesNumber_", skippedLinesNumber_); | ||
UnsignedInteger decimalSeparator = 0; | ||
adv.loadAttribute( "decimalSeparator_", decimalSeparator); | ||
decimalSeparator_ = decimalSeparator; | ||
} | ||
|
||
void CSVParser::setFieldSeparator(const char fieldSeparator) | ||
{ | ||
fieldSeparator_ = fieldSeparator; | ||
} | ||
|
||
void CSVParser::setAllowComments(const Bool allowComments) | ||
{ | ||
allowComments_ = allowComments; | ||
} | ||
|
||
void CSVParser::setAllowEmptyLines(const Bool allowEmptyLines) | ||
{ | ||
allowEmptyLines_ = allowEmptyLines; | ||
} | ||
|
||
void CSVParser::setSkippedLinesNumber(const UnsignedInteger skippedLinesNumber) | ||
{ | ||
skippedLinesNumber_ = skippedLinesNumber; | ||
} | ||
|
||
void CSVParser::setNumericalSeparator(const char decimalSeparator) | ||
{ | ||
decimalSeparator_ = decimalSeparator; | ||
} | ||
|
||
SampleImplementation CSVParser::load() const | ||
{ | ||
std::ifstream theFile(fileName_); | ||
if (!theFile.is_open()) | ||
throw FileNotFoundException(HERE) << "Cannot open file '" << fileName_ << "'. Reason: " << std::strerror(errno); | ||
if (fieldSeparator_ == decimalSeparator_) | ||
throw InvalidArgumentException(HERE) << "The field separator must be different from the decimal separator"; | ||
rapidcsv::LabelParams pLabelParams(-1, -1); | ||
rapidcsv::SeparatorParams pSeparatorParams(fieldSeparator_, true); | ||
rapidcsv::ConverterParams pConverterParams; | ||
rapidcsv::LineReaderParams pLineReaderParams; | ||
pLineReaderParams.mSkipCommentLines = allowComments_; | ||
const String commentMarkers(ResourceMap::GetAsString("Sample-CommentMarker")); | ||
if (commentMarkers.size() != 1) | ||
throw InvalidArgumentException(HERE) << "The entry Sample-CommentMarker must be a string of size 1"; | ||
if (allowEmptyLines_ && (commentMarkers[0] == fieldSeparator_ || commentMarkers[0] == decimalSeparator_)) | ||
throw InvalidArgumentException(HERE) << "The comment marker must be different from the field and decimal separators"; | ||
pLineReaderParams.mCommentPrefix = commentMarkers[0]; | ||
pLineReaderParams.mSkipEmptyLines = allowEmptyLines_; | ||
pLineReaderParams.mSkippedLinesCount = skippedLinesNumber_; | ||
Description description; | ||
rapidcsv::Document doc(fileName_, pLabelParams, pSeparatorParams, pConverterParams, pLineReaderParams); | ||
SampleImplementation result(doc.GetRowCount(), doc.GetColumnCount()); | ||
Bool haveHeaders = false; | ||
std::map<String, Scalar> infMap; | ||
infMap["inf"] = SpecFunc::Infinity; | ||
infMap["+inf"] = SpecFunc::Infinity; | ||
infMap["-inf"] = -SpecFunc::Infinity; | ||
infMap["Inf"] = SpecFunc::Infinity; | ||
infMap["+Inf"] = SpecFunc::Infinity; | ||
infMap["-Inf"] = -SpecFunc::Infinity; | ||
infMap["INF"] = SpecFunc::Infinity; | ||
infMap["+INF"] = SpecFunc::Infinity; | ||
infMap["-INF"] = -SpecFunc::Infinity; | ||
for (UnsignedInteger i = 0; i < doc.GetRowCount(); ++ i) | ||
{ | ||
for (UnsignedInteger j = 0; j < doc.GetColumnCount(); ++ j) | ||
{ | ||
try | ||
{ | ||
const String pStr = doc.GetCell<std::string>(j, i); | ||
std::istringstream iss(pStr); | ||
iss.imbue(std::locale(std::locale::classic(), new CSVParserFormat(decimalSeparator_))); | ||
Scalar pVal = 0.0; | ||
iss >> pVal; | ||
if (iss.fail() || iss.bad() || !iss.eof()) | ||
{ | ||
// handle inf values | ||
try | ||
{ | ||
pVal = infMap.at(pStr); | ||
} | ||
catch (std::out_of_range &) | ||
{ | ||
// invalid values are set to nan | ||
pVal = std::numeric_limits<Scalar>::quiet_NaN(); | ||
} | ||
|
||
// headers if unparsable values on the first row | ||
if (i == 0) | ||
haveHeaders = true; | ||
} | ||
result(i, j) = pVal; | ||
} | ||
catch (...) | ||
{ | ||
// GetCell fails when line is incomplete | ||
result(i, j) = std::numeric_limits<Scalar>::quiet_NaN(); | ||
} | ||
} | ||
} | ||
|
||
if (haveHeaders) | ||
{ | ||
description.resize(doc.GetColumnCount()); | ||
for (UnsignedInteger j = 0; j < doc.GetColumnCount(); ++ j) | ||
{ | ||
try | ||
{ | ||
description[j] = doc.GetCell<std::string>(j, 0); | ||
} | ||
catch (...) | ||
{ | ||
// line may be incomplete | ||
} | ||
} | ||
// reject empty components | ||
for (UnsignedInteger j = 0; j < description.getSize(); ++ j) | ||
if (description[j].empty()) | ||
{ | ||
description = Description::BuildDefault(result.getDimension(), "data_"); | ||
break; | ||
} | ||
result.setDescription(description); | ||
result.erase(0, 1); | ||
} | ||
else | ||
result.setDescription(Description::BuildDefault(result.getDimension(), "data_")); | ||
result.setName(fileName_); | ||
return result; | ||
} | ||
|
||
|
||
END_NAMESPACE_OPENTURNS |
Oops, something went wrong.