diff --git a/Framework/DataHandling/src/PDLoadCharacterizations.cpp b/Framework/DataHandling/src/PDLoadCharacterizations.cpp index 56ab2785176b01da5c2097965d502f9de5390303..1944e6375060a6b3af2d933640ff12e36dadc228 100644 --- a/Framework/DataHandling/src/PDLoadCharacterizations.cpp +++ b/Framework/DataHandling/src/PDLoadCharacterizations.cpp @@ -59,8 +59,9 @@ extra_columns(const std::vector<std::string> &filenames) { throw Exception::FileError("Unable to open file", filenames[F_INDEX_V1]); } - for (std::string line = Strings::getLine(file); !file.eof(); - line = Strings::getLine(file)) { + std::string line; + for (Strings::getLine(file, line); !file.eof(); + Strings::getLine(file, line)) { boost::smatch result; // all instances of table headers if (boost::regex_search(line, result, V1_TABLE_REG_EXP)) { @@ -268,8 +269,9 @@ void PDLoadCharacterizations::readFocusInfo(std::ifstream &file) { std::vector<double> polar; // parse the file - for (std::string line = Strings::getLine(file); !file.eof(); - line = Strings::getLine(file)) { + std::string line; + for (Strings::getLine(file, line); !file.eof(); + Strings::getLine(file, line)) { line = Strings::strip(line); // skip empty lines and "comments" if (line.empty()) @@ -318,10 +320,10 @@ void PDLoadCharacterizations::readCharInfo(std::ifstream &file, return; // parse the file - for (std::string line = Strings::getLine(file); !file.eof(); - line = Strings::getLine(file)) { + std::string line; + for (Strings::getLine(file, line); !file.eof(); + Strings::getLine(file, line)) { line = Strings::strip(line); - // skip empty lines and "comments" if (line.empty()) continue; @@ -453,9 +455,8 @@ void PDLoadCharacterizations::readVersion1(const std::string &filename, // store the names of the columns in order std::vector<std::string> columnNames; - - for (std::string line = Strings::getLine(file); !file.eof(); - line = Strings::getLine(file)) { + for (Strings::getLine(file, line); !file.eof(); + Strings::getLine(file, line)) { if (line.empty()) continue; if (line.substr(0, 1) == "#") @@ -539,8 +540,9 @@ void PDLoadCharacterizations::readExpIni(const std::string &filename, } // parse the file - for (std::string line = Strings::getLine(file); !file.eof(); - line = Strings::getLine(file)) { + std::string line; + for (Strings::getLine(file, line); !file.eof(); + Strings::getLine(file, line)) { line = Strings::strip(line); // skip empty lines and "comments" if (line.empty()) diff --git a/Framework/Kernel/inc/MantidKernel/Strings.h b/Framework/Kernel/inc/MantidKernel/Strings.h index e1f9f2d8738f111c7b65937538bb23ed8d3a1214..a199e97c3699207731e1ee22ec251ce148feed6a 100644 --- a/Framework/Kernel/inc/MantidKernel/Strings.h +++ b/Framework/Kernel/inc/MantidKernel/Strings.h @@ -101,7 +101,11 @@ MANTID_KERNEL_DLL int isEmpty(const std::string &A); /// Determines if a string starts with a # MANTID_KERNEL_DLL bool skipLine(const std::string &line); /// Get a line and strip comments -MANTID_KERNEL_DLL std::string getLine(std::istream &fh, const int spc = 256); +/// Use only for a single call +MANTID_KERNEL_DLL std::string getLine(std::istream &fh); +/// Get a line and strip comments +/// Use within a loop +MANTID_KERNEL_DLL void getLine(std::istream &fh, std::string &Line); /// Peek at a line without extracting it from the stream MANTID_KERNEL_DLL std::string peekLine(std::istream &fh); /// get a part of a long line diff --git a/Framework/Kernel/src/Strings.cpp b/Framework/Kernel/src/Strings.cpp index ae7dd875e87be760c4535f0b53c9cad3a3410a2f..d008c0de89a0aa392bd86d4b6f06347c161fb120 100644 --- a/Framework/Kernel/src/Strings.cpp +++ b/Framework/Kernel/src/Strings.cpp @@ -273,28 +273,33 @@ std::string removeSpace(const std::string &CLine) { return Out; } +//------------------------------------------------------------------------------------------------ +/** + * Reads a line from the stream of max length spc. + * Trailing comments are removed. (with # or ! character) + * @param fh :: already open file handle + * @return String read. + */ +std::string getLine(std::istream &fh) { + std::string line; + getLine(fh, line); + return line; +} + //------------------------------------------------------------------------------------------------ /** * Reads a line from the stream of max length spc. * Trailing comments are removed. (with # or ! character) * @param fh :: already open file handle - * @param spc :: max number of characters to read - * @return String read. + * @param Line :: string read */ -std::string getLine(std::istream &fh, const int spc) { - auto ss = new char[spc + 1]; - std::string Line; - if (fh.good()) { - fh.getline(ss, spc, '\n'); - ss[spc] = 0; // incase line failed to read completely - Line = ss; +void getLine(std::istream &fh, std::string &Line) { + if (std::getline(fh, Line, '\n')) { // remove trailing comments - std::string::size_type pos = Line.find_first_of("#!"); + auto pos = Line.find_first_of("#!"); if (pos != std::string::npos) Line.erase(pos); } - delete[] ss; - return Line; } /**