Modernize syntax of enable_if and traits to use _t helpers
[gromacs.git] / src / gromacs / utility / fileredirector.h
blob2a190f0da88a5f57eb3490f39ad19c5947880810
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2015, 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 /*! \libinternal \file
36 * \brief
37 * Declares gmx::IFileOutputRedirector.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \inlibraryapi
41 * \ingroup module_utility
43 #ifndef GMX_UTILITY_FILEREDIRECTOR_H
44 #define GMX_UTILITY_FILEREDIRECTOR_H
46 #include <string>
48 #include "gromacs/utility/path.h"
49 #include "gromacs/utility/textstream.h"
51 namespace gmx
54 /*! \libinternal \brief
55 * Allows overriding file existence checks from code that supports it.
57 * The calling code should take in this interface and use the methods in it
58 * all file system operations that need to support this redirection.
60 * This allows tests to override the file existence checks without actually
61 * using the file system. See IFileOutputRedirector for notes on
62 * a typical usage pattern.
64 * With some further refactoring of the File class, this could also support
65 * redirecting input files from in-memory buffers as well, but for now the
66 * current capabilities are sufficient.
68 * \inlibraryapi
69 * \ingroup module_utility
71 class IFileInputRedirector
73 public:
74 virtual ~IFileInputRedirector();
76 /*! \brief
77 * Checks whether the provided path exists (and is a file).
79 * The \p onNotFound can be used to influence the behavior on error
80 * conditions. Functions to pass as this parameter are provided as
81 * members of gmx::File.
83 virtual bool fileExists(const char *filename,
84 File::NotFoundHandler onNotFound) const = 0;
86 //! Convenience method to check file existence using an std::string path.
87 bool fileExists(const std::string &filename,
88 File::NotFoundHandler onNotFound) const
90 return fileExists(filename.c_str(), onNotFound);
94 /*! \libinternal \brief
95 * Allows capturing `stdout` and file output from code that supports it.
97 * The calling code should take in this interface and use the stream objects
98 * it returns for all output that needs to support this redirection.
100 * Currently, the (nearly) only purpose for this interface is for unit tests to
101 * capture the file output without duplicating the knowledge of which files are
102 * actually produced. The tests can also replace actual files with in-memory
103 * streams (e.g., a StringOutputStream), and test the output without actually
104 * accessing the file system and managing actual files.
106 * As the main user for non-default implementation of this interface is tests,
107 * code using this interface generally uses a pattern where the redirector is
108 * initialized to defaultFileOutputRedirector(), and a separate setter is
109 * provided for tests to change the default. This allows code outside the
110 * tests (and outside the code actually calling the redirector) to be written
111 * as if this interface did not exist (i.e., they do not need to pass the
112 * default instance).
114 * Also, the interface only supports text files, but can be generalized if/when
115 * there is a need for binary streams (see also TextOutputStream).
117 * \inlibraryapi
118 * \ingroup module_utility
120 class IFileOutputRedirector
122 public:
123 virtual ~IFileOutputRedirector();
125 /*! \brief
126 * Returns a stream to use for `stdout` output.
128 virtual TextOutputStream &standardOutput() = 0;
129 /*! \brief
130 * Returns a stream to use for output to a file at a given path.
132 * \param[in] filename Requested file name.
134 virtual TextOutputStreamPointer openTextOutputFile(const char *filename) = 0;
136 //! Convenience method to open a stream using an std::string path.
137 TextOutputStreamPointer openTextOutputFile(const std::string &filename)
139 return openTextOutputFile(filename.c_str());
143 //! \cond libapi
144 /*! \brief
145 * Returns default implementation for IFileInputRedirector.
147 * The returned implementation does not redirect anything, but just uses the
148 * file system normally.
150 * Does not throw.
152 * \ingroup module_utility
154 IFileInputRedirector &defaultFileInputRedirector();
155 /*! \brief
156 * Returns default implementation for IFileOutputRedirector.
158 * The returned implementation does not redirect anything, but just opens the
159 * files at requested locations.
161 * Does not throw.
163 * \ingroup module_utility
165 IFileOutputRedirector &defaultFileOutputRedirector();
166 //! \endcond
168 } // namespace gmx
170 #endif