Apply clang-format to source tree
[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/mdtypes/state.h"
40 #include "gromacs/utility/keyvaluetree.h"
41
42 #include "gmxapi/gmxapi.h"
43 #include "gmxapi/md/mdmodule.h"
44
45 #include "md_impl.h"
46
47 namespace gmxapi
48 {
49
50 const char* MDHolder::api_name = MDHolder_Name;
51
52 //! \cond internal
53 class MDWorkSpec::Impl
54 {
55 public:
56     /*!
57      * \brief container of objects glued together by the client.
58      *
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.
66      */
67     std::vector<std::shared_ptr<gmxapi::MDModule>> modules;
68 };
69 //! \endcond
70
71 MDWorkSpec::MDWorkSpec() : impl_{ std::make_unique<Impl>() }
72 {
73     GMX_ASSERT(impl_, "Expected non-null implementation object.");
74 }
75
76 void MDWorkSpec::addModule(std::shared_ptr<gmxapi::MDModule> module)
77 {
78     GMX_ASSERT(impl_, "Expected non-null implementation object.");
79     impl_->modules.emplace_back(std::move(module));
80 }
81
82 std::vector<std::shared_ptr<gmxapi::MDModule>>& MDWorkSpec::getModules()
83 {
84     GMX_ASSERT(impl_, "Expected non-null implementation object.");
85     return impl_->modules;
86 }
87
88 MDWorkSpec::~MDWorkSpec() = default;
89
90 std::shared_ptr<::gmxapi::MDWorkSpec> MDHolder::getSpec()
91 {
92     GMX_ASSERT(impl_, "Expected non-null implementation object.");
93     GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
94     return impl_->spec_;
95 }
96
97 std::shared_ptr<const ::gmxapi::MDWorkSpec> MDHolder::getSpec() const
98 {
99     GMX_ASSERT(impl_, "Expected non-null implementation object.");
100     GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
101     return impl_->spec_;
102 }
103
104 MDHolder::MDHolder() : MDHolder{ std::make_shared<MDWorkSpec>() }
105 {
106     GMX_ASSERT(impl_, "Expected non-null implementation object.");
107     GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
108 }
109
110 MDHolder::MDHolder(std::shared_ptr<MDWorkSpec> spec) :
111     impl_(std::make_shared<MDHolder::Impl>(std::move(spec)))
112 {
113     GMX_ASSERT(impl_, "Expected non-null implementation object.");
114     GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
115 }
116
117 MDHolder::Impl::Impl(std::shared_ptr<MDWorkSpec>&& spec) : spec_{ spec }
118 {
119     GMX_ASSERT(spec_, "Expected non-null work specification.");
120 }
121
122 MDHolder::MDHolder(std::string name) : MDHolder{}
123 {
124     name_ = std::move(name);
125     GMX_ASSERT(impl_, "Expected non-null implementation object.");
126     GMX_ASSERT(impl_->spec_, "Expected non-null work specification.");
127 }
128
129 std::string MDHolder::name() const
130 {
131     return name_;
132 }
133
134
135 } // end namespace gmxapi