/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation \\/ M anipulation | Copyright (C) 2016-2017 OpenCFD Ltd. ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM 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 General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . \*---------------------------------------------------------------------------*/ #include "CSV.H" #include "DynamicList.H" //#include "IFstream.H" // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // template<> Foam::label Foam::Function1Types::CSV::readValue ( const List& splitted ) { if (componentColumns_[0] >= splitted.size()) { FatalErrorInFunction << "No column " << componentColumns_[0] << " in " << splitted << endl << exit(FatalError); } return readLabel(splitted[componentColumns_[0]]); } template<> Foam::scalar Foam::Function1Types::CSV::readValue ( const List& splitted ) { if (componentColumns_[0] >= splitted.size()) { FatalErrorInFunction << "No column " << componentColumns_[0] << " in " << splitted << endl << exit(FatalError); } return readScalar(splitted[componentColumns_[0]]); } template Type Foam::Function1Types::CSV::readValue(const List& splitted) { Type result; for (label i = 0; i < pTraits::nComponents; ++i) { if (componentColumns_[i] >= splitted.size()) { FatalErrorInFunction << "No column " << componentColumns_[i] << " in " << splitted << endl << exit(FatalError); } result[i] = readScalar(splitted[componentColumns_[i]]); } return result; } template void Foam::Function1Types::CSV::read() { fileName expandedFile(fName_); //IFstream is(expandedFile.expand()); autoPtr isPtr(fileHandler().NewIFstream(expandedFile.expand())); ISstream& is = isPtr(); if (!is.good()) { FatalIOErrorInFunction(is) << "Cannot open CSV file for reading." << exit(FatalIOError); } DynamicList> values; // skip header for (label i = 0; i < nHeaderLine_; i++) { string line; is.getLine(line); } label nEntries = max(componentColumns_); // read data while (is.good()) { string line; is.getLine(line); label n = 0; std::size_t pos = 0; DynamicList splitted; if (mergeSeparators_) { std::size_t nPos = 0; while ((pos != std::string::npos) && (n <= nEntries)) { bool found = false; while (!found) { nPos = line.find(separator_, pos); if ((nPos != std::string::npos) && (nPos - pos == 0)) { pos = nPos + 1; } else { found = true; } } nPos = line.find(separator_, pos); if (nPos == std::string::npos) { splitted.append(line.substr(pos)); pos = nPos; n++; } else { splitted.append(line.substr(pos, nPos - pos)); pos = nPos + 1; n++; } } } else { while ((pos != std::string::npos) && (n <= nEntries)) { std::size_t nPos = line.find(separator_, pos); if (nPos == std::string::npos) { splitted.append(line.substr(pos)); pos = nPos; n++; } else { splitted.append(line.substr(pos, nPos - pos)); pos = nPos + 1; n++; } } } if (splitted.size() <= 1) { break; } scalar x = readScalar(splitted[refColumn_]); Type value = readValue(splitted); values.append(Tuple2(x, value)); } this->table_.transfer(values); } // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template Foam::Function1Types::CSV::CSV ( const word& entryName, const dictionary& dict, const fileName& fName ) : TableBase(entryName, dict), nHeaderLine_(readLabel(dict.lookup("nHeaderLine"))), refColumn_(readLabel(dict.lookup("refColumn"))), componentColumns_(dict.lookup("componentColumns")), separator_(dict.lookupOrDefault("separator", string(","))[0]), mergeSeparators_(readBool(dict.lookup("mergeSeparators"))), fName_(fName != fileName::null ? fName : dict.lookup("file")) { if (componentColumns_.size() != pTraits::nComponents) { FatalErrorInFunction << componentColumns_ << " does not have the expected length of " << pTraits::nComponents << endl << exit(FatalError); } read(); TableBase::check(); } template Foam::Function1Types::CSV::CSV(const CSV& csv) : TableBase(csv), nHeaderLine_(csv.nHeaderLine_), refColumn_(csv.refColumn_), componentColumns_(csv.componentColumns_), separator_(csv.separator_), mergeSeparators_(csv.mergeSeparators_), fName_(csv.fName_) {} // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // template Foam::Function1Types::CSV::~CSV() {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template const Foam::fileName& Foam::Function1Types::CSV::fName() const { return fName_; } template void Foam::Function1Types::CSV::writeData(Ostream& os) const { Function1::writeData(os); os.endEntry(); os.beginBlock(word(this->name() + "Coeffs")); // Note: for TableBase write the dictionary entries it needs but not // the values themselves TableBase::writeEntries(os); os.writeEntry("nHeaderLine", nHeaderLine_); os.writeEntry("refColumn", refColumn_); // Force writing labelList in ascii const enum IOstream::streamFormat fmt = os.format(); os.format(IOstream::ASCII); os.writeEntry("componentColumns", componentColumns_); os.format(fmt); os.writeEntry("separator", string(separator_)); os.writeEntry("mergeSeparators", mergeSeparators_); os.writeEntry("file", fName_); os.endBlock() << flush; } // ************************************************************************* //