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.
37 * Implements gmx::TextWriter.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \ingroup module_utility
44 #include "textwriter.h"
48 #include "gromacs/utility/filestream.h"
49 #include "gromacs/utility/nodelete.h"
50 #include "gromacs/utility/stringutil.h"
51 #include "gromacs/utility/textstream.h"
56 class TextWriter::Impl
59 explicit Impl(const TextOutputStreamPointer
& stream
) :
62 currentLineLength_(0),
63 pendingNewLine_(false)
65 wrapper_
.settings().setKeepFinalSpaces(true);
68 void writeRawString(const char* str
)
70 if (pendingNewLine_
&& str
[0] != '\n')
74 pendingNewLine_
= false;
75 const char* lastNewLine
= std::strrchr(str
, '\n');
76 if (lastNewLine
== nullptr)
79 currentLineLength_
+= std::strlen(str
);
81 else if (lastNewLine
[1] != '\0')
84 currentLineLength_
+= std::strlen(lastNewLine
+ 1);
88 currentLineLength_
= 0;
90 while (lastNewLine
>= str
&& *lastNewLine
== '\n')
95 if (lastNewLine
>= str
)
99 newLineCount_
+= newLineCount
;
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
));
117 TextOutputStreamPointer stream_
;
118 TextLineWrapper wrapper_
;
120 int currentLineLength_
;
121 bool pendingNewLine_
;
125 void TextWriter::writeFileFromString(const std::string
& filename
, const std::string
& text
)
127 TextWriter
file(filename
);
128 file
.writeString(text
);
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
);
163 impl_
->writeWrappedString(str
);
167 void TextWriter::writeString(const std::string
& str
)
169 impl_
->writeWrappedString(str
);
172 void TextWriter::writeStringFormatted(const char* fmt
, ...)
177 writeString(formatStringV(fmt
, ap
));
181 void TextWriter::writeLine(const char* line
)
187 void TextWriter::writeLine(const std::string
& line
)
193 void TextWriter::writeLineFormatted(const char* fmt
, ...)
198 writeString(formatStringV(fmt
, ap
));
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()
219 if (impl_
->newLineCount_
< 2)
221 impl_
->pendingNewLine_
= true;
225 void TextWriter::close()
227 impl_
->stream_
->close();