Update instructions in containers.rst
[gromacs.git] / src / gromacs / utility / textwriter.cpp
blob3f99ed5f9d111ba34e2f3ec2fce5493fe308a29f
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2015,2016,2017,2018,2019, by the GROMACS development team, led by
5 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
6 * and including many others, as listed in the AUTHORS file in the
7 * top-level source directory and at http://www.gromacs.org.
9 * GROMACS is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public License
11 * as published by the Free Software Foundation; either version 2.1
12 * of the License, or (at your option) any later version.
14 * GROMACS is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with GROMACS; if not, see
21 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
22 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 * If you want to redistribute modifications to GROMACS, please
25 * consider that scientific software is very special. Version
26 * control is crucial - bugs must be traceable. We will be happy to
27 * consider code for inclusion in the official distribution, but
28 * derived work must not be called official GROMACS. Details are found
29 * in the README & COPYING files - if they are missing, get the
30 * official version at http://www.gromacs.org.
32 * To help us fund GROMACS development, we humbly ask that you cite
33 * the research papers on the package. Check out http://www.gromacs.org.
35 /*! \internal \file
36 * \brief
37 * Implements gmx::TextWriter.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \ingroup module_utility
42 #include "gmxpre.h"
44 #include "textwriter.h"
46 #include <cstring>
48 #include "gromacs/utility/filestream.h"
49 #include "gromacs/utility/nodelete.h"
50 #include "gromacs/utility/stringutil.h"
51 #include "gromacs/utility/textstream.h"
53 namespace gmx
56 class TextWriter::Impl
58 public:
59 explicit Impl(const TextOutputStreamPointer& stream) :
60 stream_(stream),
61 newLineCount_(2),
62 currentLineLength_(0),
63 pendingNewLine_(false)
65 wrapper_.settings().setKeepFinalSpaces(true);
68 void writeRawString(const char* str)
70 if (pendingNewLine_ && str[0] != '\n')
72 stream_->write("\n");
74 pendingNewLine_ = false;
75 const char* lastNewLine = std::strrchr(str, '\n');
76 if (lastNewLine == nullptr)
78 newLineCount_ = 0;
79 currentLineLength_ += std::strlen(str);
81 else if (lastNewLine[1] != '\0')
83 newLineCount_ = 0;
84 currentLineLength_ += std::strlen(lastNewLine + 1);
86 else
88 currentLineLength_ = 0;
89 int newLineCount = 0;
90 while (lastNewLine >= str && *lastNewLine == '\n')
92 ++newLineCount;
93 --lastNewLine;
95 if (lastNewLine >= str)
97 newLineCount_ = 0;
99 newLineCount_ += newLineCount;
101 stream_->write(str);
103 void writeRawString(const std::string& str) { writeRawString(str.c_str()); }
105 void writeWrappedString(const std::string& str)
107 if (newLineCount_ > 0)
109 writeRawString(wrapper_.wrapToString(str));
111 else
113 writeRawString(str);
117 TextOutputStreamPointer stream_;
118 TextLineWrapper wrapper_;
119 int newLineCount_;
120 int currentLineLength_;
121 bool pendingNewLine_;
124 // static
125 void TextWriter::writeFileFromString(const std::string& filename, const std::string& text)
127 TextWriter file(filename);
128 file.writeString(text);
129 file.close();
132 TextWriter::TextWriter(const std::string& filename) :
133 impl_(new Impl(TextOutputStreamPointer(new TextOutputFile(filename))))
137 TextWriter::TextWriter(FILE* fp) : impl_(new Impl(TextOutputStreamPointer(new TextOutputFile(fp))))
141 TextWriter::TextWriter(TextOutputStream* stream) :
142 impl_(new Impl(TextOutputStreamPointer(stream, no_delete<TextOutputStream>())))
146 TextWriter::TextWriter(const TextOutputStreamPointer& stream) : impl_(new Impl(stream)) {}
148 TextWriter::~TextWriter() {}
150 TextLineWrapperSettings& TextWriter::wrapperSettings()
152 return impl_->wrapper_.settings();
155 void TextWriter::writeString(const char* str)
157 if (impl_->wrapper_.isTrivial())
159 impl_->writeRawString(str);
161 else
163 impl_->writeWrappedString(str);
167 void TextWriter::writeString(const std::string& str)
169 impl_->writeWrappedString(str);
172 void TextWriter::writeStringFormatted(const char* fmt, ...)
174 va_list ap;
176 va_start(ap, fmt);
177 writeString(formatStringV(fmt, ap));
178 va_end(ap);
181 void TextWriter::writeLine(const char* line)
183 writeString(line);
184 ensureLineBreak();
187 void TextWriter::writeLine(const std::string& line)
189 writeString(line);
190 ensureLineBreak();
193 void TextWriter::writeLineFormatted(const char* fmt, ...)
195 va_list ap;
197 va_start(ap, fmt);
198 writeString(formatStringV(fmt, ap));
199 va_end(ap);
200 ensureLineBreak();
203 void TextWriter::writeLine()
205 impl_->writeRawString("\n");
208 void TextWriter::ensureLineBreak()
210 if (impl_->newLineCount_ == 0)
212 impl_->writeRawString("\n");
216 void TextWriter::ensureEmptyLine()
218 ensureLineBreak();
219 if (impl_->newLineCount_ < 2)
221 impl_->pendingNewLine_ = true;
225 void TextWriter::close()
227 impl_->stream_->close();
230 } // namespace gmx