Introduce SimulatorBuilder
[gromacs.git] / src / api / cpp / md.cpp
blob6ac41b7be2a5a60bfa68147179adf6d8ac7f4d53
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 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 #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() :
72 impl_ {std::make_unique<Impl>()}
74 GMX_ASSERT(impl_, "Expected non-null implementation object.");
77 void MDWorkSpec::addModule(std::shared_ptr<gmxapi::MDModule> module)
79 GMX_ASSERT(impl_, "Expected non-null implementation object.");
80 impl_->modules.emplace_back(std::move(module));
83 std::vector < std::shared_ptr < gmxapi::MDModule>> &MDWorkSpec::getModules()
85 GMX_ASSERT(impl_, "Expected non-null implementation object.");
86 return impl_->modules;
89 MDWorkSpec::~MDWorkSpec() = default;
91 std::shared_ptr<::gmxapi::MDWorkSpec> MDHolder::getSpec()
93 GMX_ASSERT(impl_, "Expected non-null implementation object.");
94 GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
95 return impl_->spec_;
98 std::shared_ptr<const ::gmxapi::MDWorkSpec> MDHolder::getSpec() const
100 GMX_ASSERT(impl_, "Expected non-null implementation object.");
101 GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
102 return impl_->spec_;
105 MDHolder::MDHolder() :
106 MDHolder {std::make_shared<MDWorkSpec>()}
108 GMX_ASSERT(impl_, "Expected non-null implementation object.");
109 GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
112 MDHolder::MDHolder(std::shared_ptr<MDWorkSpec> spec) :
113 name_(),
114 impl_(std::make_shared<MDHolder::Impl>(std::move(spec)))
116 GMX_ASSERT(impl_, "Expected non-null implementation object.");
117 GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
120 MDHolder::Impl::Impl(std::shared_ptr<MDWorkSpec> &&spec) :
121 spec_ {spec}
123 GMX_ASSERT(spec_, "Expected non-null work specification.");
126 MDHolder::MDHolder(std::string name) :
127 MDHolder {}
129 name_ = std::move(name);
130 GMX_ASSERT(impl_, "Expected non-null implementation object.");
131 GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
134 std::string MDHolder::name() const
136 return name_;
140 } //end namespace gmxapi