Remove old help formatting code
[alexxy/gromacs.git] / src / gromacs / options / filenameoption.h
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2012,2013,2014, 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.
8  *
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.
13  *
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.
18  *
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.
23  *
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.
31  *
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.
34  */
35 /*! \file
36  * \brief
37  * Declares gmx::FileNameOption and gmx::FileNameOptionInfo.
38  *
39  * \author Teemu Murtola <teemu.murtola@gmail.com>
40  * \inpublicapi
41  * \ingroup module_options
42  */
43 #ifndef GMX_OPTIONS_FILENAMEOPTION_H
44 #define GMX_OPTIONS_FILENAMEOPTION_H
45
46 #include <string>
47
48 #include "abstractoption.h"
49 #include "optionfiletype.h"
50
51 namespace gmx
52 {
53
54 class FileNameOptionInfo;
55 class FileNameOptionStorage;
56
57 /*! \brief
58  * Specifies an option that provides file names.
59  *
60  * Public methods in this class do not throw.
61  *
62  * \inpublicapi
63  * \ingroup module_options
64  */
65 class FileNameOption : public OptionTemplate<std::string, FileNameOption>
66 {
67     public:
68         //! OptionInfo subclass corresponding to this option type.
69         typedef FileNameOptionInfo InfoType;
70
71         //! Initializes an option with the given name.
72         explicit FileNameOption(const char *name)
73             : MyBase(name), filetype_(eftUnknown), legacyType_(-1),
74               defaultBasename_(NULL),
75               bRead_(false), bWrite_(false), bLibrary_(false)
76         {
77         }
78
79         /*! \brief
80          * Sets the type of the file this option accepts.
81          *
82          * Either this attribute or legacyType() must be provided.
83          */
84         MyClass &filetype(OptionFileType type)
85         { filetype_ = type; return me(); }
86         /*! \brief
87          * Sets the type of the file from an enum in filenm.h.
88          *
89          * New code should prefer filetype(), extending the enumeration if
90          * necessary.
91          */
92         MyClass &legacyType(int type)
93         { legacyType_ = type; return me(); }
94         //! Tells that the file provided by this option is used for input only.
95         MyClass &inputFile()
96         { bRead_ = true; bWrite_ = false; return me(); }
97         //! Tells that the file provided by this option is used for output only.
98         MyClass &outputFile()
99         { bRead_ = false; bWrite_ = true; return me(); }
100         /*! \brief
101          * Tells that the file provided by this option is used for input and
102          * output both.
103          */
104         MyClass &inputOutputFile()
105         { bRead_ = bWrite_ = true; return me(); }
106         /*! \brief
107          * Sets the read/write usage for this file from boolean flags.
108          */
109         MyClass &readWriteFlags(bool bRead, bool bWrite)
110         { bRead_ = bRead; bWrite_ = bWrite; return me(); }
111         /*! \brief
112          * Tells that the file will be looked up in library directories in
113          * addition to working directory.
114          *
115          * \todo
116          * Currently, this flag only affects the help output.  Callers must
117          * take care themselves to actually search the file in the library
118          * directories.  It would be nicer to do this searching within the
119          * file name option implementation.
120          */
121         MyClass &libraryFile(bool bLibrary = true)
122         { bLibrary_ = bLibrary; return me(); }
123         /*! \brief
124          * Sets a default basename for the file option.
125          *
126          * Use this method instead of defaultValue() or defaultValueIfSet() to
127          * set a default value for a file name option.  No extension needs to
128          * be provided; it is automatically added based on filetype().
129          * The behavior is also adjusted based on required(): if the option is
130          * required, the value given to defaultBasename() is treated as for
131          * both defaultValue() and defaultValueIfSet(), otherwise it is treated
132          * as for defaultValueIfSet().
133          */
134         MyClass &defaultBasename(const char *basename)
135         { defaultBasename_ = basename; return me(); }
136
137     private:
138         // Use defaultBasename() instead.
139         using MyBase::defaultValue;
140         using MyBase::defaultValueIfSet;
141
142         //! Creates a FileNameOptionStorage object.
143         virtual AbstractOptionStoragePointer createStorage() const;
144
145         OptionFileType          filetype_;
146         int                     legacyType_;
147         const char             *defaultBasename_;
148         bool                    bRead_;
149         bool                    bWrite_;
150         bool                    bLibrary_;
151
152         /*! \brief
153          * Needed to initialize FileNameOptionStorage from this class without
154          * otherwise unnecessary accessors.
155          */
156         friend class FileNameOptionStorage;
157 };
158
159 /*! \brief
160  * Wrapper class for accessing file name option information.
161  *
162  * \inpublicapi
163  * \ingroup module_options
164  */
165 class FileNameOptionInfo : public OptionInfo
166 {
167     public:
168         //! Creates an option info object for the given option.
169         explicit FileNameOptionInfo(FileNameOptionStorage *option);
170
171         //! Whether the option specifies an input file.
172         bool isInputFile() const;
173         //! Whether the option specifies an output file.
174         bool isOutputFile() const;
175         //! Whether the option specifies a file used for both input and output.
176         bool isInputOutputFile() const;
177         /*! \brief
178          * Whether the option specifies a library file.
179          *
180          * \see FileNameOption::libraryFile()
181          */
182         bool isLibraryFile() const;
183
184     private:
185         const FileNameOptionStorage &option() const;
186 };
187
188 } // namespace gmx
189
190 #endif