Use proper doxygen tags in modular simulator
[gromacs.git] / api / cpp / gmxapi / md.cpp
blobd238c938e8a1251be85691abaa22d6f984e0cd24
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2018,2020, 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 #include "gmxapi/md.h"
37 #include <memory>
39 #include "gromacs/mdtypes/state.h"
40 #include "gromacs/utility/keyvaluetree.h"
42 #include "gmxapi/gmxapi.h"
43 #include "gmxapi/md/mdmodule.h"
45 #include "md_impl.h"
47 namespace gmxapi
50 const char* MDHolder::api_name = MDHolder_Name;
52 //! \cond internal
53 class MDWorkSpec::Impl
55 public:
56 /*!
57 * \brief container of objects glued together by the client.
59 * Note that the client can't be trusted to keep alive or destroy these,
60 * and we do not yet have sufficient abstraction layers to allow the
61 * client to interact asynchronously with code supporting MD simulation
62 * through truly separate handles to the underlying objects, so ownership
63 * is amongst the collaborators of the gmxapi::MDModule.
64 * \todo Pass factory function objects instead of shared handles.
65 * \todo Consolidate MDWorkSpec and gmxapi::Workflow under new Context umbrella.
67 std::vector<std::shared_ptr<gmxapi::MDModule>> modules;
69 //! \endcond
71 MDWorkSpec::MDWorkSpec() : impl_{ std::make_unique<Impl>() }
73 GMX_ASSERT(impl_, "Expected non-null implementation object.");
76 void MDWorkSpec::addModule(std::shared_ptr<gmxapi::MDModule> module)
78 GMX_ASSERT(impl_, "Expected non-null implementation object.");
79 impl_->modules.emplace_back(std::move(module));
82 std::vector<std::shared_ptr<gmxapi::MDModule>>& MDWorkSpec::getModules()
84 GMX_ASSERT(impl_, "Expected non-null implementation object.");
85 return impl_->modules;
88 MDWorkSpec::~MDWorkSpec() = default;
90 std::shared_ptr<::gmxapi::MDWorkSpec> MDHolder::getSpec()
92 GMX_ASSERT(impl_, "Expected non-null implementation object.");
93 GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
94 return impl_->spec_;
97 std::shared_ptr<const ::gmxapi::MDWorkSpec> MDHolder::getSpec() const
99 GMX_ASSERT(impl_, "Expected non-null implementation object.");
100 GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
101 return impl_->spec_;
104 MDHolder::MDHolder() : MDHolder{ std::make_shared<MDWorkSpec>() }
106 GMX_ASSERT(impl_, "Expected non-null implementation object.");
107 GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
110 MDHolder::MDHolder(std::shared_ptr<MDWorkSpec> spec) :
111 impl_(std::make_shared<MDHolder::Impl>(std::move(spec)))
113 GMX_ASSERT(impl_, "Expected non-null implementation object.");
114 GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
117 MDHolder::Impl::Impl(std::shared_ptr<MDWorkSpec>&& spec) : spec_{ spec }
119 GMX_ASSERT(spec_, "Expected non-null work specification.");
122 MDHolder::MDHolder(std::string name) : MDHolder{}
124 name_ = std::move(name);
125 GMX_ASSERT(impl_, "Expected non-null implementation object.");
126 GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
129 std::string MDHolder::name() const
131 return name_;
135 } // end namespace gmxapi