b978c67f2345a2cb745fc157c3743c35a019e4b2
[alexxy/gromacs.git] / src / api / cpp / md.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
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.
8  *
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.
13  *
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.
18  *
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.
23  *
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.
31  *
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.
34  */
35 #include "gmxapi/md.h"
36
37 #include <memory>
38
39 #include "gromacs/compat/make_unique.h"
40 #include "gromacs/mdtypes/state.h"
41 #include "gromacs/utility/keyvaluetree.h"
42
43 #include "gmxapi/gmxapi.h"
44 #include "gmxapi/md/mdmodule.h"
45
46 #include "md-impl.h"
47
48 namespace gmxapi
49 {
50
51 const char* MDHolder::api_name  = MDHolder_Name;
52
53 //! \cond internal
54 class MDWorkSpec::Impl
55 {
56     public:
57         /*!
58          * \brief container of objects glued together by the client.
59          *
60          * Note that the client can't be trusted to keep alive or destroy these,
61          * and we do not yet have sufficient abstraction layers to allow the
62          * client to interact asynchronously with code supporting MD simulation
63          * through truly separate handles to the underlying objects, so ownership
64          * is amongst the collaborators of the gmxapi::MDModule.
65          * \todo Pass factory function objects instead of shared handles.
66          * \todo Consolidate MDWorkSpec and gmxapi::Workflow under new Context umbrella.
67          */
68         std::vector< std::shared_ptr<gmxapi::MDModule> > modules;
69 };
70 //! \endcond
71
72 MDWorkSpec::MDWorkSpec() :
73     impl_ {gmx::compat::make_unique<Impl>()}
74 {
75     GMX_ASSERT(impl_, "Expected non-null implementation object.");
76 }
77
78 void MDWorkSpec::addModule(std::shared_ptr<gmxapi::MDModule> module)
79 {
80     GMX_ASSERT(impl_, "Expected non-null implementation object.");
81     impl_->modules.emplace_back(std::move(module));
82 }
83
84 std::vector < std::shared_ptr < gmxapi::MDModule>> &MDWorkSpec::getModules()
85 {
86     GMX_ASSERT(impl_, "Expected non-null implementation object.");
87     return impl_->modules;
88 }
89
90 MDWorkSpec::~MDWorkSpec() = default;
91
92 std::shared_ptr<::gmxapi::MDWorkSpec> MDHolder::getSpec()
93 {
94     GMX_ASSERT(impl_, "Expected non-null implementation object.");
95     GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
96     return impl_->spec_;
97 }
98
99 std::shared_ptr<const ::gmxapi::MDWorkSpec> MDHolder::getSpec() const
100 {
101     GMX_ASSERT(impl_, "Expected non-null implementation object.");
102     GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
103     return impl_->spec_;
104 }
105
106 MDHolder::MDHolder() :
107     MDHolder {std::make_shared<MDWorkSpec>()}
108 {
109     GMX_ASSERT(impl_, "Expected non-null implementation object.");
110     GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
111 }
112
113 MDHolder::MDHolder(std::shared_ptr<MDWorkSpec> spec) :
114     name_(),
115     impl_(std::make_shared<MDHolder::Impl>(std::move(spec)))
116 {
117     GMX_ASSERT(impl_, "Expected non-null implementation object.");
118     GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
119 }
120
121 MDHolder::Impl::Impl(std::shared_ptr<MDWorkSpec> &&spec) :
122     spec_ {spec}
123 {
124     GMX_ASSERT(spec_, "Expected non-null work specification.");
125 }
126
127 MDHolder::MDHolder(std::string name) :
128     MDHolder {}
129 {
130     name_ = std::move(name);
131     GMX_ASSERT(impl_, "Expected non-null implementation object.");
132     GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
133 }
134
135 std::string MDHolder::name() const
136 {
137     return name_;
138 }
139
140
141 } //end namespace gmxapi