Clean up cmake build host detection
[gromacs.git] / src / gromacs / options / filenameoptionmanager.cpp
blob3c746b01fd2f825ecca725871ef0604ab6a68ea4
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2014,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 /*! \internal \file
36 * \brief
37 * Implements gmx::FileNameOptionManager.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \ingroup module_options
42 #include "gmxpre.h"
44 #include "filenameoptionmanager.h"
46 #include <cstring>
48 #include <string>
50 #include "gromacs/fileio/filetypes.h"
51 #include "gromacs/options/basicoptions.h"
52 #include "gromacs/options/filenameoption.h"
53 #include "gromacs/options/ioptionscontainer.h"
54 #include "gromacs/utility/arrayref.h"
55 #include "gromacs/utility/exceptions.h"
56 #include "gromacs/utility/fileredirector.h"
57 #include "gromacs/utility/path.h"
58 #include "gromacs/utility/stringutil.h"
60 namespace gmx
63 namespace
66 //! Extensions that are recognized as compressed files.
67 const char *const c_compressedExtensions[] =
68 { ".gz", ".Z" };
70 /********************************************************************
71 * Helper functions
74 /*! \brief
75 * Adds an extension to \p prefix if it results in an existing file.
77 * Tries to add each extension for this file type to \p prefix and
78 * checks whether this results in an existing file.
79 * The first match is returned.
80 * Returns an empty string if no existing file is found.
82 std::string findExistingExtension(const std::string &prefix,
83 const FileNameOptionInfo &option,
84 const IFileInputRedirector *redirector)
86 ConstArrayRef<int> types = option.fileTypes();
87 ConstArrayRef<int>::const_iterator i;
88 for (i = types.begin(); i != types.end(); ++i)
90 std::string testFilename(prefix + ftp2ext_with_dot(*i));
91 if (redirector->fileExists(testFilename, File::throwOnError))
93 return testFilename;
96 return std::string();
99 } // namespace
101 /********************************************************************
102 * FileNameOptionManager::Impl
105 /*! \internal \brief
106 * Private implemention class for FileNameOptionManager.
108 * \ingroup module_options
110 class FileNameOptionManager::Impl
112 public:
113 Impl()
114 : redirector_(&defaultFileInputRedirector()),
115 bInputCheckingDisabled_(false)
119 //! Redirector for file existence checks.
120 const IFileInputRedirector *redirector_;
121 //! Global default file name, if set.
122 std::string defaultFileName_;
123 //! Whether input option processing has been disabled.
124 bool bInputCheckingDisabled_;
127 /********************************************************************
128 * FileNameOptionManager
131 FileNameOptionManager::FileNameOptionManager()
132 : impl_(new Impl())
136 FileNameOptionManager::~FileNameOptionManager()
140 void FileNameOptionManager::setInputRedirector(
141 const IFileInputRedirector *redirector)
143 impl_->redirector_ = redirector;
146 void FileNameOptionManager::disableInputOptionChecking(bool bDisable)
148 impl_->bInputCheckingDisabled_ = bDisable;
151 void FileNameOptionManager::addDefaultFileNameOption(
152 IOptionsContainer *options, const char *name)
154 options->addOption(
155 StringOption(name).store(&impl_->defaultFileName_)
156 .description("Set the default filename for all file options"));
159 std::string FileNameOptionManager::completeFileName(
160 const std::string &value, const FileNameOptionInfo &option)
162 const bool bAllowMissing = option.allowMissing();
163 const bool bInput
164 = option.isInputFile() || option.isInputOutputFile();
165 // Currently, directory options are simple, and don't need any
166 // special processing.
167 // TODO: Consider splitting them into a separate DirectoryOption.
168 if (option.isDirectoryOption())
170 if (!impl_->bInputCheckingDisabled_ && bInput && !bAllowMissing
171 && !Directory::exists(value))
173 std::string message
174 = formatString("Directory '%s' does not exist or is not accessible.",
175 value.c_str());
176 // TODO: Get actual errno value from the attempt to open the file
177 // to provide better feedback to the user.
178 GMX_THROW(InvalidInputError(message));
180 return value;
182 const int fileType = fn2ftp(value.c_str());
183 if (bInput && !impl_->bInputCheckingDisabled_)
185 if (fileType == efNR
186 && impl_->redirector_->fileExists(value, File::throwOnError))
188 ConstArrayRef<const char *> compressedExtensions(c_compressedExtensions);
189 ConstArrayRef<const char *>::const_iterator ext;
190 for (ext = compressedExtensions.begin(); ext != compressedExtensions.end(); ++ext)
192 if (endsWith(value, *ext))
194 std::string newValue = value.substr(0, value.length() - std::strlen(*ext));
195 if (option.isValidType(fn2ftp(newValue.c_str())))
197 return newValue;
199 else
201 return std::string();
205 // VMD plugins may be able to read the file.
206 if (option.isInputFile() && option.isTrajectoryOption())
208 return value;
211 else if (fileType == efNR)
213 const std::string processedValue
214 = findExistingExtension(value, option, impl_->redirector_);
215 if (!processedValue.empty())
217 return processedValue;
219 if (bAllowMissing)
221 return value + option.defaultExtension();
223 else if (option.isLibraryFile())
225 // TODO: Treat also library files here.
226 return value + option.defaultExtension();
228 else
230 std::string message
231 = formatString("File '%s' does not exist or is not accessible.\n"
232 "The following extensions were tried to complete the file name:\n %s",
233 value.c_str(), joinStrings(option.extensions(), ", ").c_str());
234 GMX_THROW(InvalidInputError(message));
237 else if (option.isValidType(fileType))
239 if (option.isLibraryFile())
241 // TODO: Treat also library files.
243 else if (!bAllowMissing)
245 if (!impl_->redirector_->fileExists(value, File::throwOnNotFound))
247 return std::string();
250 return value;
253 else // Not an input file
255 if (fileType == efNR)
257 return value + option.defaultExtension();
259 else if (option.isValidType(fileType))
261 return value;
264 return std::string();
267 std::string FileNameOptionManager::completeDefaultFileName(
268 const std::string &prefix, const FileNameOptionInfo &option)
270 if (option.isDirectoryOption())
272 return std::string();
274 const bool bInput = option.isInputFile() || option.isInputOutputFile();
275 const std::string realPrefix
276 = !impl_->defaultFileName_.empty() ? impl_->defaultFileName_ : prefix;
277 if (bInput && !impl_->bInputCheckingDisabled_)
279 const std::string completedName
280 = findExistingExtension(realPrefix, option, impl_->redirector_);
281 if (!completedName.empty())
283 return completedName;
285 if (option.allowMissing())
287 return realPrefix + option.defaultExtension();
289 else if (option.isLibraryFile())
291 // TODO: Treat also library files here.
292 return realPrefix + option.defaultExtension();
294 else if (option.isSet())
296 std::string message
297 = formatString("No file name was provided, and the default file "
298 "'%s' does not exist or is not accessible.\n"
299 "The following extensions were tried to complete the file name:\n %s",
300 prefix.c_str(), joinStrings(option.extensions(), ", ").c_str());
301 GMX_THROW(InvalidInputError(message));
303 else if (option.isRequired())
305 std::string message
306 = formatString("Required option was not provided, and the default file "
307 "'%s' does not exist or is not accessible.\n"
308 "The following extensions were tried to complete the file name:\n %s",
309 prefix.c_str(), joinStrings(option.extensions(), ", ").c_str());
310 GMX_THROW(InvalidInputError(message));
312 // We get here with the legacy optional behavior.
314 return realPrefix + option.defaultExtension();
317 } // namespace gmx