bea12dbf0f65ea0b57fcee99840275f772d3b693
[alexxy/gromacs.git] / src / api / cpp / context.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 /*! \file
36  * \brief Implementation details of gmxapi::Context
37  *
38  * \todo Share mdrun input handling implementation via modernized modular options framework.
39  * Initial implementation of `launch` relies on borrowed code from the mdrun command
40  * line input processing.
41  *
42  * \author M. Eric Irrgang <ericirrgang@gmail.com>
43  * \ingroup gmxapi
44  */
45
46 #include "gmxapi/context.h"
47
48 #include <cstring>
49
50 #include <memory>
51 #include <utility>
52 #include <vector>
53
54 #include "gromacs/commandline/pargs.h"
55 #include "gromacs/commandline/filenm.h"
56 #include "gromacs/commandline/pargs.h"
57 #include "gromacs/compat/make_unique.h"
58 #include "gromacs/gmxlib/network.h"
59 #include "gromacs/mdlib/stophandler.h"
60 #include "gromacs/mdrun/logging.h"
61 #include "gromacs/mdrun/multisim.h"
62 #include "gromacs/mdrun/runner.h"
63 #include "gromacs/mdrunutility/handlerestart.h"
64 #include "gromacs/mdtypes/commrec.h"
65 #include "gromacs/utility/arraysize.h"
66 #include "gromacs/utility/fatalerror.h"
67 #include "gromacs/utility/smalloc.h"
68
69 #include "gmxapi/exceptions.h"
70 #include "gmxapi/session.h"
71 #include "gmxapi/status.h"
72 #include "gmxapi/version.h"
73
74 #include "context-impl.h"
75 #include "createsession.h"
76 #include "session-impl.h"
77 #include "workflow.h"
78
79 namespace gmxapi
80 {
81
82 ContextImpl::ContextImpl()
83 {
84     GMX_ASSERT(session_.expired(), "This implementation assumes an expired weak_ptr at initialization.");
85 }
86
87 std::shared_ptr<gmxapi::ContextImpl> ContextImpl::create()
88 {
89     std::shared_ptr<ContextImpl> impl = std::make_shared<ContextImpl>();
90     return impl;
91 }
92
93 std::shared_ptr<Session> ContextImpl::launch(const Workflow &work)
94 {
95     using namespace gmx;
96     // Much of this implementation is not easily testable: we need tools to inspect simulation results and to modify
97     // simulation inputs.
98
99     std::shared_ptr<Session> launchedSession = nullptr;
100
101     // This implementation can only run one workflow at a time.
102     // Check whether we are already aware of an active session.
103     if (session_.expired())
104     {
105         // Check workflow spec, build graph for current context, launch and return new session.
106         // \todo This is specific to the session implementation...
107         auto        mdNode = work.getNode("MD");
108         std::string filename {};
109         if (mdNode != nullptr)
110         {
111             filename = mdNode->params();
112         }
113
114         /* As default behavior, automatically extend trajectories from the checkpoint file.
115          * In the future, our API for objects used to initialize a simulation needs to address the fact that currently a
116          * microstate requires data from both the TPR and checkpoint file to be fully specified. Put another way,
117          * current
118          * GROMACS simulations can take a "configuration" as input that does not constitute a complete microstate in
119          * terms of hidden degrees of freedom (integrator/thermostat/barostat/PRNG state), but we want a clear notion of
120          * a microstate for gmxapi interfaces.
121          */
122
123         // Set input TPR name
124         mdArgs_.emplace_back("-s");
125         mdArgs_.emplace_back(filename);
126
127         // Set checkpoint file name
128         mdArgs_.emplace_back("-cpi");
129         mdArgs_.emplace_back("state.cpt");
130         /* Note: we normalize the checkpoint file name, but not its full path.
131          * Through version 0.0.8, gmxapi clients change working directory
132          * for each session, so relative path(s) below are appropriate.
133          * A future gmxapi version should avoid changing directories once the
134          * process starts and instead manage files (paths) in an absolute and
135          * immutable way, with abstraction provided through the Context chain-of-responsibility.
136          * TODO: API abstractions for initializing simulations that may be new or partially complete.
137          * Reference gmxapi milestone 13 at https://redmine.gromacs.org/issues/2585
138          */
139
140         // Create a mock argv. Note that argv[0] is expected to hold the program name.
141         const int  offset = 1;
142         const auto argc   = static_cast<size_t>(mdArgs_.size() + offset);
143         auto       argv   = std::vector<char *>(argc, nullptr);
144         // argv[0] is ignored, but should be a valid string (e.g. null terminated array of char)
145         argv[0]  = new char[1];
146         *argv[0] = '\0';
147         for (size_t argvIndex = offset; argvIndex < argc; ++argvIndex)
148         {
149             const auto &mdArg = mdArgs_[argvIndex - offset];
150             argv[argvIndex] = new char[mdArg.length() + 1];
151             strcpy(argv[argvIndex], mdArg.c_str());
152         }
153
154         // pointer-to-t_commrec is the de facto handle type for communications record.
155         // Complete shared / borrowed ownership requires a reference to this stack variable
156         // (or pointer-to-pointer-to-t_commrec) since borrowing code may update the pointer.
157         // \todo Define the ownership and lifetime management semantics for a communication record, handle or value type.
158
159         // Note: this communications record initialization acts directly on
160         // MPI_COMM_WORLD and is incompatible with MPI environment sharing in
161         // gmxapi through 0.0.7, at least.
162         options_.cr = init_commrec();
163
164         const char *desc[]  = {"gmxapi placeholder text"};
165         if (options_.updateFromCommandLine(argc, argv.data(), desc) == 0)
166         {
167             return nullptr;
168         }
169
170         if (MASTER(options_.cr))
171         {
172             options_.logFileGuard = openLogFile(ftp2fn(efLOG,
173                                                        options_.filenames.size(),
174                                                        options_.filenames.data()),
175                                                 options_.mdrunOptions.continuationOptions.appendFiles);
176         }
177
178         auto simulationContext = createSimulationContext(options_.cr);
179
180         auto builder = MdrunnerBuilder(compat::not_null<decltype( &simulationContext)>(&simulationContext));
181         builder.addSimulationMethod(options_.mdrunOptions, options_.pforce);
182         builder.addDomainDecomposition(options_.domdecOptions);
183         // \todo pass by value
184         builder.addNonBonded(options_.nbpu_opt_choices[0]);
185         // \todo pass by value
186         builder.addElectrostatics(options_.pme_opt_choices[0], options_.pme_fft_opt_choices[0]);
187         builder.addBondedTaskAssignment(options_.bonded_opt_choices[0]);
188         builder.addNeighborList(options_.nstlist_cmdline);
189         builder.addReplicaExchange(options_.replExParams);
190         // \todo take ownership of multisim resources (ms)
191         builder.addMultiSim(options_.ms);
192         // \todo Provide parallelism resources through SimulationContext.
193         // Need to establish run-time values from various inputs to provide a resource handle to Mdrunner
194         builder.addHardwareOptions(options_.hw_opt);
195         // \todo File names are parameters that should be managed modularly through further factoring.
196         builder.addFilenames(options_.filenames);
197         // Note: The gmx_output_env_t life time is not managed after the call to parse_common_args.
198         // \todo Implement lifetime management for gmx_output_env_t.
199         // \todo Output environment should be configured outside of Mdrunner and provided as a resource.
200         builder.addOutputEnvironment(options_.oenv);
201         builder.addLogFile(options_.logFileGuard.get());
202
203         // Note, creation is not mature enough to be exposed in the external API yet.
204         launchedSession = createSession(shared_from_this(),
205                                         std::move(builder),
206                                         simulationContext,
207                                         std::move(options_.logFileGuard),
208                                         options_.ms);
209
210         // Clean up argv once builder is no longer in use
211         for (auto && string : argv)
212         {
213             if (string != nullptr)
214             {
215                 delete[] string;
216                 string = nullptr;
217             }
218         }
219
220     }
221     else
222     {
223         throw gmxapi::ProtocolError("Tried to launch a session while a session is still active.");
224     }
225
226     if (launchedSession != nullptr)
227     {
228         // Update weak reference.
229         session_ = launchedSession;
230     }
231     return launchedSession;
232 }
233
234 // As of gmxapi 0.0.3 there is only one Context type
235 Context::Context() :
236     Context {ContextImpl::create()}
237 {
238     GMX_ASSERT(impl_, "Context requires a non-null implementation member.");
239 }
240
241 std::shared_ptr<Session> Context::launch(const Workflow &work)
242 {
243     return impl_->launch(work);
244 }
245
246 Context::Context(std::shared_ptr<ContextImpl> impl) :
247     impl_ {std::move(impl)}
248 {
249     GMX_ASSERT(impl_, "Context requires a non-null implementation member.");
250 }
251
252 void Context::setMDArgs(const MDArgs &mdArgs)
253 {
254     impl_->mdArgs_ = mdArgs;
255 }
256
257 Context::~Context() = default;
258
259 } // end namespace gmxapi