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.
37 * Implements gmx::FileNameOptionManager.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \ingroup module_options
44 #include "filenameoptionmanager.h"
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"
66 //! Extensions that are recognized as compressed files.
67 const char *const c_compressedExtensions
[] =
70 /********************************************************************
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
))
101 /********************************************************************
102 * FileNameOptionManager::Impl
106 * Private implemention class for FileNameOptionManager.
108 * \ingroup module_options
110 class FileNameOptionManager::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()
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
)
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();
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
))
174 = formatString("Directory '%s' does not exist or is not accessible.",
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
));
182 const int fileType
= fn2ftp(value
.c_str());
183 if (bInput
&& !impl_
->bInputCheckingDisabled_
)
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())))
201 return std::string();
205 // VMD plugins may be able to read the file.
206 if (option
.isInputFile() && option
.isTrajectoryOption())
211 else if (fileType
== efNR
)
213 const std::string processedValue
214 = findExistingExtension(value
, option
, impl_
->redirector_
);
215 if (!processedValue
.empty())
217 return processedValue
;
221 return value
+ option
.defaultExtension();
223 else if (option
.isLibraryFile())
225 // TODO: Treat also library files here.
226 return value
+ option
.defaultExtension();
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();
253 else // Not an input file
255 if (fileType
== efNR
)
257 return value
+ option
.defaultExtension();
259 else if (option
.isValidType(fileType
))
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())
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())
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();