Replace compat::make_unique with std::make_unique
[gromacs.git] / src / api / cpp / workflow.cpp
blobcf90d806fb0ba287a533390572dca524aafff7fe
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.
36 #include "workflow.h"
38 #include <memory>
40 #include "gromacs/utility/gmxassert.h"
42 #include "workflow-impl.h"
44 namespace gmxapi
47 NodeSpecification::~NodeSpecification() = default;
50 std::unique_ptr<NodeSpecification> MDNodeSpecification::clone()
52 GMX_ASSERT(!tprfilename_.empty(), "Need a non-empty filename string.");
53 std::unique_ptr<NodeSpecification> node = nullptr;
54 node = std::make_unique<MDNodeSpecification>(tprfilename_);
55 return node;
58 MDNodeSpecification::MDNodeSpecification(const std::string &filename) :
59 tprfilename_ {std::move(filename)}
61 GMX_ASSERT(!tprfilename_.empty(), "Need a non-empty filename string.");
64 NodeSpecification::paramsType MDNodeSpecification::params() const noexcept
66 return tprfilename_;
69 NodeKey Workflow::addNode(std::unique_ptr<NodeSpecification> spec)
71 // TODO capture provided NodeSpecification.
72 // Relates to gmxapi milestone 7, described at https://redmine.gromacs.org/issues/2585
73 throw gmxapi::NotImplementedError("Member function not yet implemented or used.");
74 (void)spec;
75 return {};
78 std::unique_ptr<Workflow> Workflow::create(const std::string &filename)
80 const std::string name = "MD";
81 auto spec = std::make_unique<MDNodeSpecification>(filename);
82 Workflow::Impl graph;
83 graph.emplace(std::make_pair(name, std::move(spec)));
84 auto workflow = std::make_unique<Workflow>(std::move(graph));
85 return workflow;
88 std::unique_ptr<NodeSpecification> Workflow::getNode(const NodeKey &key) const noexcept
90 const Impl &graph = graph_;
91 GMX_ASSERT((graph.count(key) == 0) || (graph.count(key) == 1), "Key should occur zero or one times.");
92 auto const iter = graph.find(key);
93 std::unique_ptr<NodeSpecification> node = nullptr;
94 if (iter == graph.end())
96 // key not found. Return nullptr.
97 // Alternatively, we could throw a WorkflowKeyError.
99 else
101 node = (*iter).second->clone();
103 return node;
106 Workflow::Workflow(Workflow::Impl &&impl) :
107 graph_ {std::forward<Workflow::Impl>(impl)}
110 Workflow::Impl::const_iterator Workflow::cbegin() const
112 return graph_.cbegin();
115 Workflow::Impl::const_iterator Workflow::cend() const
117 return graph_.cend();
120 Workflow::Impl::const_iterator Workflow::begin() const
122 return graph_.cbegin();
125 Workflow::Impl::const_iterator Workflow::end() const
127 return graph_.cend();
130 } // end namespace gmxapi