2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2013,2014,2015,2017,2018, 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::CommandLineHelpContext.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \ingroup module_commandline
44 #include "cmdlinehelpcontext.h"
46 #include "gromacs/utility/gmxassert.h"
48 #include "shellcompletions.h"
57 * Stores the global context set with GlobalCommandLineHelpContext.
59 * This is not protected by a mutex, since it is only used in command-line
60 * start-up (i.e., single-threaded context), and is inherently not thread-safe.
62 * \ingroup module_commandline
64 const CommandLineHelpContext
*g_globalContext
= nullptr;
69 * Private implementation class for CommandLineHelpContext.
71 * \ingroup module_commandline
73 class CommandLineHelpContext::Impl
76 //! Creates the implementation class and the low-level context.
77 Impl(TextWriter
*writer
, HelpOutputFormat format
,
78 const HelpLinks
*links
)
79 : writerContext_(writer
, format
, links
), moduleDisplayName_("gmx"),
80 completionWriter_(nullptr), bHidden_(false)
83 //! Creates an implementation class from a low-level context.
84 explicit Impl(const HelpWriterContext
&writerContext
)
85 : writerContext_(writerContext
),
86 completionWriter_(nullptr), bHidden_(false)
90 //! Wrapped lower-level context.
91 HelpWriterContext writerContext_
;
92 //! Display name for the module for which help is written.
93 std::string moduleDisplayName_
;
94 //! Shell completion writer (`NULL` if not doing completions).
95 ShellCompletionWriter
*completionWriter_
;
96 //! Whether hidden options should be shown in help output.
100 CommandLineHelpContext::CommandLineHelpContext(
101 TextWriter
*writer
, HelpOutputFormat format
,
102 const HelpLinks
*links
, const std::string
&programName
)
103 : impl_(new Impl(writer
, format
, links
))
105 impl_
->writerContext_
.setReplacement("[PROGRAM]", programName
);
108 CommandLineHelpContext::CommandLineHelpContext(
109 const HelpWriterContext
&writerContext
)
110 : impl_(new Impl(writerContext
))
114 CommandLineHelpContext::CommandLineHelpContext(
115 ShellCompletionWriter
*writer
)
116 : impl_(new Impl(&writer
->outputWriter(), eHelpOutputFormat_Other
, nullptr))
118 impl_
->completionWriter_
= writer
;
121 CommandLineHelpContext::CommandLineHelpContext(
122 const CommandLineHelpContext
&other
)
123 : impl_(new Impl(*other
.impl_
))
127 CommandLineHelpContext::CommandLineHelpContext(CommandLineHelpContext
&&other
) noexcept
128 : impl_(std::move(other
.impl_
))
132 CommandLineHelpContext
&CommandLineHelpContext::operator=(
133 CommandLineHelpContext
&&other
) noexcept
135 impl_
= std::move(other
.impl_
);
139 CommandLineHelpContext::~CommandLineHelpContext()
143 void CommandLineHelpContext::setModuleDisplayName(const std::string
&name
)
145 impl_
->writerContext_
.setReplacement("[THISMODULE]", "[TT]" + name
+ "[tt]");
146 impl_
->moduleDisplayName_
= name
;
149 void CommandLineHelpContext::setShowHidden(bool bHidden
)
151 impl_
->bHidden_
= bHidden
;
154 void CommandLineHelpContext::enterSubSection(const std::string
&title
)
156 impl_
->writerContext_
.enterSubSection(title
);
159 const HelpWriterContext
&CommandLineHelpContext::writerContext() const
161 return impl_
->writerContext_
;
164 const char *CommandLineHelpContext::moduleDisplayName() const
166 return impl_
->moduleDisplayName_
.c_str();
169 bool CommandLineHelpContext::showHidden() const
171 return impl_
->bHidden_
;
174 bool CommandLineHelpContext::isCompletionExport() const
176 return impl_
->completionWriter_
!= nullptr;
179 ShellCompletionWriter
&CommandLineHelpContext::shellCompletionWriter() const
181 GMX_RELEASE_ASSERT(isCompletionExport(),
182 "Invalid call when not writing shell completions");
183 return *impl_
->completionWriter_
;
186 /********************************************************************
187 * GlobalCommandLineHelpContext
191 const CommandLineHelpContext
*GlobalCommandLineHelpContext::get()
193 return g_globalContext
;
196 GlobalCommandLineHelpContext::GlobalCommandLineHelpContext(
197 const CommandLineHelpContext
&context
)
199 GMX_RELEASE_ASSERT(g_globalContext
== nullptr,
200 "Global context set more than once");
201 g_globalContext
= &context
;
204 GlobalCommandLineHelpContext::~GlobalCommandLineHelpContext()
206 g_globalContext
= nullptr;