Convert gmx_mtop_t to C++
[gromacs.git] / src / gromacs / selection / selectionoptionbehavior.cpp
blob5cc4a4abcd9d8ab645fff847d662c7f20d509aea
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2015,2016,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.
35 /*! \internal \file
36 * \brief
37 * Implements gmx::SelectionOptionBehavior.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \ingroup module_selection
42 #include "gmxpre.h"
44 #include "selectionoptionbehavior.h"
46 #include <cstdio>
48 #include <string>
50 #include "gromacs/options/filenameoption.h"
51 #include "gromacs/options/ioptionscontainer.h"
52 #include "gromacs/options/options.h"
53 #include "gromacs/selection/indexutil.h"
54 #include "gromacs/selection/selectioncollection.h"
55 #include "gromacs/selection/selectionfileoption.h"
56 #include "gromacs/selection/selectionoptionmanager.h"
57 #include "gromacs/topology/atoms.h"
58 #include "gromacs/topology/topology.h"
59 #include "gromacs/utility/exceptions.h"
60 #include "gromacs/utility/filestream.h"
62 namespace gmx
65 /********************************************************************
66 * ITopologyProvider
69 ITopologyProvider::~ITopologyProvider()
73 /********************************************************************
74 * SelectionOptionBehavior
77 class SelectionOptionBehavior::Impl
79 public:
80 Impl(SelectionCollection *selections,
81 ITopologyProvider *topologyProvider)
82 : selections_(*selections), topologyProvider_(*topologyProvider),
83 manager_(selections), grps_(nullptr)
86 ~Impl()
88 if (grps_ != nullptr)
90 gmx_ana_indexgrps_free(grps_);
94 void promptSelections()
96 const bool isInteractive = StandardInputStream::instance().isInteractive();
97 initIndexGroups();
98 manager_.parseRequestedFromStdin(isInteractive);
99 doneIndexGroups();
101 void initIndexGroups()
103 if (!selections_.requiresIndexGroups()
104 && !manager_.hasRequestedSelections())
106 if (!ndxfile_.empty())
108 std::fprintf(stderr, "NOTE: You provided an index file\n"
109 " %s\n(with -n), but it was not used by any selection.\n",
110 ndxfile_.c_str());
112 selections_.setIndexGroups(nullptr);
113 return;
115 if (ndxfile_.empty())
117 gmx_mtop_t *top = topologyProvider_.getTopology(false);
118 gmx_ana_indexgrps_init(&grps_, top, nullptr);
120 else
122 gmx_ana_indexgrps_init(&grps_, nullptr, ndxfile_.c_str());
124 selections_.setIndexGroups(grps_);
126 void doneIndexGroups()
128 if (grps_ != nullptr)
130 selections_.setIndexGroups(nullptr);
131 gmx_ana_indexgrps_free(grps_);
132 grps_ = nullptr;
136 void compileSelections()
138 const bool topRequired = selections_.requiredTopologyProperties().needsTopology;
139 gmx_mtop_t *top = topologyProvider_.getTopology(topRequired);
140 int natoms = -1;
141 if (top == nullptr)
143 natoms = topologyProvider_.getAtomCount();
145 getMassesIfRequired(top);
146 selections_.setTopology(top, natoms);
147 selections_.compile();
148 // Situation may have changed after compilation.
149 getMassesIfRequired(top);
152 void getMassesIfRequired(gmx_mtop_t *top)
154 const bool massRequired = selections_.requiredTopologyProperties().needsMasses;
155 if (!massRequired)
157 return;
159 // TODO: There can be some corner cases that still hit this assert
160 // when the user has not provided the topology.
161 GMX_RELEASE_ASSERT(top != nullptr,
162 "Masses are required, but no topology is loaded");
163 for (gmx_moltype_t &moltype : top->moltype)
165 if (!moltype.atoms.haveMass)
167 atomsSetMassesBasedOnNames(&moltype.atoms, TRUE);
168 if (!moltype.atoms.haveMass)
170 GMX_THROW(InconsistentInputError("Selections require mass information for evaluation, but it is not available in the input and could not be determined for all atoms based on atom names."));
176 SelectionCollection &selections_;
177 ITopologyProvider &topologyProvider_;
178 SelectionOptionManager manager_;
179 //! Name of the index file (empty if no index file provided).
180 std::string ndxfile_;
181 gmx_ana_indexgrps_t *grps_;
184 SelectionOptionBehavior::SelectionOptionBehavior(
185 SelectionCollection *selections,
186 ITopologyProvider *topologyProvider)
187 : impl_(new Impl(selections, topologyProvider))
191 SelectionOptionBehavior::~SelectionOptionBehavior()
195 void
196 SelectionOptionBehavior::initOptions(IOptionsContainer *options)
198 options->addOption(FileNameOption("n")
199 .filetype(eftIndex).inputFile()
200 .store(&impl_->ndxfile_)
201 .defaultBasename("index")
202 .description("Extra index groups"));
203 options->addOption(SelectionFileOption("sf"));
204 impl_->manager_.initOptions(options);
207 void
208 SelectionOptionBehavior::initBehavior(Options *options)
210 options->addManager(&impl_->manager_);
213 void
214 SelectionOptionBehavior::optionsFinished()
216 impl_->promptSelections();
217 impl_->compileSelections();
220 } // namespace gmx