Basic support for transforming KeyValueTrees
[gromacs.git] / src / gromacs / onlinehelp / helptopic.cpp
blob167e8214fa2c2c43e98503d5c298562130c169bc
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2012,2013,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 classes and functions from helptopic.h.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \ingroup module_onlinehelp
42 #include "gmxpre.h"
44 #include "helptopic.h"
46 #include <map>
47 #include <utility>
49 #include "gromacs/onlinehelp/helpformat.h"
50 #include "gromacs/onlinehelp/helpwritercontext.h"
51 #include "gromacs/utility/exceptions.h"
52 #include "gromacs/utility/gmxassert.h"
53 #include "gromacs/utility/stringutil.h"
54 #include "gromacs/utility/textwriter.h"
56 namespace gmx
59 /********************************************************************
60 * AbstractSimpleHelpTopic
63 bool AbstractSimpleHelpTopic::hasSubTopics() const
65 return false;
68 const IHelpTopic *
69 AbstractSimpleHelpTopic::findSubTopic(const char * /* name */) const
71 return NULL;
74 void AbstractSimpleHelpTopic::writeHelp(const HelpWriterContext &context) const
76 context.writeTextBlock(helpText());
79 /********************************************************************
80 * AbstractCompositeHelpTopic::Impl
83 /*! \internal \brief
84 * Private implementation class for AbstractCompositeHelpTopic.
86 * \ingroup module_onlinehelp
88 class AbstractCompositeHelpTopic::Impl
90 public:
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;
96 /*! \brief
97 * Subtopics in the order they were added.
99 * Owns the contained subtopics.
101 SubTopicList subTopics_;
102 /*! \brief
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()
115 : impl_(new Impl)
119 AbstractCompositeHelpTopic::~AbstractCompositeHelpTopic()
123 bool AbstractCompositeHelpTopic::hasSubTopics() const
125 return !impl_->subTopics_.empty();
128 const IHelpTopic *
129 AbstractCompositeHelpTopic::findSubTopic(const char *name) const
131 Impl::SubTopicMap::const_iterator topic = impl_->subTopicMap_.find(name);
132 if (topic == impl_->subTopicMap_.end())
134 return NULL;
136 return topic->second;
139 void AbstractCompositeHelpTopic::writeHelp(const HelpWriterContext &context) const
141 context.writeTextBlock(helpText());
142 writeSubTopicList(context, "\nAvailable subtopics:");
145 bool
146 AbstractCompositeHelpTopic::writeSubTopicList(const HelpWriterContext &context,
147 const std::string &title) const
149 if (context.outputFormat() != eHelpOutputFormat_Console)
151 Impl::SubTopicList::const_iterator topic;
152 for (topic = impl_->subTopics_.begin(); topic != impl_->subTopics_.end(); ++topic)
154 const char *const title = (*topic)->title();
155 if (!isNullOrEmpty(title))
157 context.paragraphBreak();
158 HelpWriterContext subContext(context);
159 subContext.enterSubSection(title);
160 (*topic)->writeHelp(subContext);
163 return true;
165 int maxNameLength = 0;
166 Impl::SubTopicMap::const_iterator topic;
167 for (topic = impl_->subTopicMap_.begin(); topic != impl_->subTopicMap_.end(); ++topic)
169 const char *const title = topic->second->title();
170 if (!isNullOrEmpty(title))
172 int nameLength = static_cast<int>(topic->first.length());
173 if (nameLength > maxNameLength)
175 maxNameLength = nameLength;
179 if (maxNameLength == 0)
181 return false;
183 TextWriter &file = context.outputFile();
184 TextTableFormatter formatter;
185 formatter.addColumn(NULL, maxNameLength + 1, false);
186 formatter.addColumn(NULL, 72 - maxNameLength, true);
187 formatter.setFirstColumnIndent(4);
188 file.writeLine(title);
189 for (topic = impl_->subTopicMap_.begin(); topic != impl_->subTopicMap_.end(); ++topic)
191 const char *const name = topic->first.c_str();
192 const char *const title = topic->second->title();
193 if (!isNullOrEmpty(title))
195 formatter.clear();
196 formatter.addColumnLine(0, name);
197 formatter.addColumnLine(1, title);
198 file.writeString(formatter.formatRow());
201 return true;
204 void AbstractCompositeHelpTopic::addSubTopic(HelpTopicPointer topic)
206 GMX_ASSERT(impl_->subTopicMap_.find(topic->name()) == impl_->subTopicMap_.end(),
207 "Attempted to register a duplicate help topic name");
208 const IHelpTopic *topicPtr = topic.get();
209 impl_->subTopics_.reserve(impl_->subTopics_.size() + 1);
210 impl_->subTopicMap_.insert(std::make_pair(std::string(topicPtr->name()), topicPtr));
211 impl_->subTopics_.push_back(std::move(topic));
214 } // namespace gmx