2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2012,2013,2014,2015,2017 by the GROMACS development team.
5 * Copyright (c) 2019,2020, by the GROMACS development team, led by
6 * Mark Abraham, David van der Spoel, Berk Hess, and Erik Lindahl,
7 * and including many others, as listed in the AUTHORS file in the
8 * top-level source directory and at http://www.gromacs.org.
10 * GROMACS is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public License
12 * as published by the Free Software Foundation; either version 2.1
13 * of the License, or (at your option) any later version.
15 * GROMACS is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with GROMACS; if not, see
22 * http://www.gnu.org/licenses, or write to the Free Software Foundation,
23 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 * If you want to redistribute modifications to GROMACS, please
26 * consider that scientific software is very special. Version
27 * control is crucial - bugs must be traceable. We will be happy to
28 * consider code for inclusion in the official distribution, but
29 * derived work must not be called official GROMACS. Details are found
30 * in the README & COPYING files - if they are missing, get the
31 * official version at http://www.gromacs.org.
33 * To help us fund GROMACS development, we humbly ask that you cite
34 * the research papers on the package. Check out http://www.gromacs.org.
38 * Implements classes and functions from helptopic.h.
40 * \author Teemu Murtola <teemu.murtola@gmail.com>
41 * \ingroup module_onlinehelp
45 #include "helptopic.h"
50 #include "gromacs/onlinehelp/helpformat.h"
51 #include "gromacs/onlinehelp/helpwritercontext.h"
52 #include "gromacs/utility/exceptions.h"
53 #include "gromacs/utility/gmxassert.h"
54 #include "gromacs/utility/stringutil.h"
55 #include "gromacs/utility/textwriter.h"
60 /********************************************************************
61 * AbstractSimpleHelpTopic
64 bool AbstractSimpleHelpTopic::hasSubTopics() const
69 const IHelpTopic
* AbstractSimpleHelpTopic::findSubTopic(const char* /* name */) const
74 void AbstractSimpleHelpTopic::writeHelp(const HelpWriterContext
& context
) const
76 context
.writeTextBlock(helpText());
79 /********************************************************************
80 * AbstractCompositeHelpTopic::Impl
84 * Private implementation class for AbstractCompositeHelpTopic.
86 * \ingroup module_onlinehelp
88 class AbstractCompositeHelpTopic::Impl
91 //! Container for subtopics.
92 typedef std::vector
<HelpTopicPointer
> SubTopicList
;
93 //! Container for mapping subtopic names to help topic objects.
94 typedef std::map
<std::string
, const IHelpTopic
*> SubTopicMap
;
97 * Subtopics in the order they were added.
99 * Owns the contained subtopics.
101 SubTopicList subTopics_
;
103 * Maps subtopic names to help topic objects.
105 * Points to objects in the \a subTopics_ map.
107 SubTopicMap subTopicMap_
;
110 /********************************************************************
111 * AbstractCompositeHelpTopic
114 AbstractCompositeHelpTopic::AbstractCompositeHelpTopic() : impl_(new Impl
) {}
116 AbstractCompositeHelpTopic::~AbstractCompositeHelpTopic() {}
118 bool AbstractCompositeHelpTopic::hasSubTopics() const
120 return !impl_
->subTopics_
.empty();
123 const IHelpTopic
* AbstractCompositeHelpTopic::findSubTopic(const char* name
) const
125 Impl::SubTopicMap::const_iterator topic
= impl_
->subTopicMap_
.find(name
);
126 if (topic
== impl_
->subTopicMap_
.end())
130 return topic
->second
;
133 void AbstractCompositeHelpTopic::writeHelp(const HelpWriterContext
& context
) const
135 context
.writeTextBlock(helpText());
136 writeSubTopicList(context
, "\nAvailable subtopics:");
139 bool AbstractCompositeHelpTopic::writeSubTopicList(const HelpWriterContext
& context
,
140 const std::string
& title
) const
142 if (context
.outputFormat() != eHelpOutputFormat_Console
)
144 Impl::SubTopicList::const_iterator topic
;
145 for (topic
= impl_
->subTopics_
.begin(); topic
!= impl_
->subTopics_
.end(); ++topic
)
147 const char* const title
= (*topic
)->title();
148 if (!isNullOrEmpty(title
))
150 context
.paragraphBreak();
151 HelpWriterContext
subContext(context
);
152 subContext
.enterSubSection(title
);
153 (*topic
)->writeHelp(subContext
);
158 int maxNameLength
= 0;
159 Impl::SubTopicMap::const_iterator topic
;
160 for (topic
= impl_
->subTopicMap_
.begin(); topic
!= impl_
->subTopicMap_
.end(); ++topic
)
162 const char* const title
= topic
->second
->title();
163 if (!isNullOrEmpty(title
))
165 int nameLength
= static_cast<int>(topic
->first
.length());
166 if (nameLength
> maxNameLength
)
168 maxNameLength
= nameLength
;
172 if (maxNameLength
== 0)
176 TextWriter
& file
= context
.outputFile();
177 TextTableFormatter formatter
;
178 formatter
.addColumn(nullptr, maxNameLength
+ 1, false);
179 formatter
.addColumn(nullptr, 72 - maxNameLength
, true);
180 formatter
.setFirstColumnIndent(4);
181 file
.writeLine(title
);
182 for (topic
= impl_
->subTopicMap_
.begin(); topic
!= impl_
->subTopicMap_
.end(); ++topic
)
184 const char* const name
= topic
->first
.c_str();
185 const char* const title
= topic
->second
->title();
186 if (!isNullOrEmpty(title
))
189 formatter
.addColumnLine(0, name
);
190 formatter
.addColumnLine(1, title
);
191 file
.writeString(formatter
.formatRow());
197 void AbstractCompositeHelpTopic::addSubTopic(HelpTopicPointer topic
)
199 GMX_ASSERT(impl_
->subTopicMap_
.find(topic
->name()) == impl_
->subTopicMap_
.end(),
200 "Attempted to register a duplicate help topic name");
201 const IHelpTopic
* topicPtr
= topic
.get();
202 impl_
->subTopics_
.reserve(impl_
->subTopics_
.size() + 1);
203 impl_
->subTopicMap_
.insert(std::make_pair(std::string(topicPtr
->name()), topicPtr
));
204 impl_
->subTopics_
.push_back(std::move(topic
));