Merge branch release-4-6 into master
[alexxy/gromacs.git] / src / gromacs / analysisdata / analysisdata.cpp
1 /*
2  * This file is part of the GROMACS molecular simulation package.
3  *
4  * Copyright (c) 2010,2011,2012,2013, by the GROMACS development team, led by
5  * David van der Spoel, Berk Hess, Erik Lindahl, and including many
6  * others, as listed in the AUTHORS file in the top-level source
7  * 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 /*! \internal \file
36  * \brief
37  * Implements classes in analysisdata.h.
38  *
39  * \author Teemu Murtola <teemu.murtola@gmail.com>
40  * \ingroup module_analysisdata
41  */
42 #include "gromacs/analysisdata/analysisdata.h"
43
44 #include "gromacs/analysisdata/dataframe.h"
45 #include "gromacs/analysisdata/datastorage.h"
46 #include "gromacs/analysisdata/paralleloptions.h"
47 #include "gromacs/utility/exceptions.h"
48 #include "gromacs/utility/gmxassert.h"
49 #include "gromacs/utility/uniqueptr.h"
50
51 namespace gmx
52 {
53
54 /********************************************************************
55  * AnalysisDataHandleImpl
56  */
57
58 namespace internal
59 {
60
61 /*! \internal \brief
62  * Private implementation class for AnalysisDataHandle.
63  *
64  * \ingroup module_analysisdata
65  */
66 class AnalysisDataHandleImpl
67 {
68     public:
69         //! Creates a handle associated with the given data object.
70         explicit AnalysisDataHandleImpl(AnalysisData *data)
71             : data_(*data), currentFrame_(NULL)
72         {
73         }
74
75         //! The data object that this handle belongs to.
76         AnalysisData             &data_;
77         //! Current storage frame object, or NULL if no current frame.
78         AnalysisDataStorageFrame *currentFrame_;
79 };
80
81 }   // namespace internal
82
83 /********************************************************************
84  * AnalysisData::Impl
85  */
86
87 /*! \internal \brief
88  * Private implementation class for AnalysisData.
89  *
90  * \ingroup module_analysisdata
91  */
92 class AnalysisData::Impl
93 {
94     public:
95         //! Smart pointer type to manage a data handle implementation.
96         typedef gmx_unique_ptr<internal::AnalysisDataHandleImpl>::type
97             HandlePointer;
98         //! Shorthand for a list of data handles.
99         typedef std::vector<HandlePointer> HandleList;
100
101         //! Storage implementation.
102         AnalysisDataStorage     storage_;
103         /*! \brief
104          * List of handles for this data object.
105          *
106          * Note that AnalysisDataHandle objects also contain (raw) pointers
107          * to these objects.
108          */
109         HandleList              handles_;
110 };
111
112 /********************************************************************
113  * AnalysisData
114  */
115
116 AnalysisData::AnalysisData()
117     : impl_(new Impl)
118 {
119 }
120
121
122 AnalysisData::~AnalysisData()
123 {
124 }
125
126
127 void
128 AnalysisData::setColumnCount(int ncol)
129 {
130     GMX_RELEASE_ASSERT(ncol > 0, "Number of columns must be positive");
131     GMX_RELEASE_ASSERT(impl_->handles_.empty(),
132                        "Cannot change data dimensionality after creating handles");
133     AbstractAnalysisData::setColumnCount(ncol);
134 }
135
136
137 void
138 AnalysisData::setMultipoint(bool bMultipoint)
139 {
140     GMX_RELEASE_ASSERT(impl_->handles_.empty(),
141                        "Cannot change data type after creating handles");
142     AbstractAnalysisData::setMultipoint(bMultipoint);
143 }
144
145
146 AnalysisDataHandle
147 AnalysisData::startData(const AnalysisDataParallelOptions &opt)
148 {
149     GMX_RELEASE_ASSERT(impl_->handles_.size() < static_cast<unsigned>(opt.parallelizationFactor()),
150                        "Too many calls to startData() compared to provided options");
151     if (impl_->handles_.empty())
152     {
153         notifyDataStart();
154         impl_->storage_.setParallelOptions(opt);
155         impl_->storage_.startDataStorage(this);
156     }
157
158     Impl::HandlePointer handle(new internal::AnalysisDataHandleImpl(this));
159     impl_->handles_.push_back(move(handle));
160     return AnalysisDataHandle(impl_->handles_.back().get());
161 }
162
163
164 void
165 AnalysisData::finishData(AnalysisDataHandle handle)
166 {
167     Impl::HandleList::iterator i;
168
169     for (i = impl_->handles_.begin(); i != impl_->handles_.end(); ++i)
170     {
171         if (i->get() == handle.impl_)
172         {
173             break;
174         }
175     }
176     GMX_RELEASE_ASSERT(i != impl_->handles_.end(),
177                        "finishData() called for an unknown handle");
178
179     impl_->handles_.erase(i);
180
181     if (impl_->handles_.empty())
182     {
183         notifyDataFinish();
184     }
185 }
186
187
188 AnalysisDataFrameRef
189 AnalysisData::tryGetDataFrameInternal(int index) const
190 {
191     return impl_->storage_.tryGetDataFrame(index);
192 }
193
194
195 bool
196 AnalysisData::requestStorageInternal(int nframes)
197 {
198     return impl_->storage_.requestStorage(nframes);
199 }
200
201
202 /********************************************************************
203  * AnalysisDataHandle
204  */
205
206 AnalysisDataHandle::AnalysisDataHandle()
207     : impl_(NULL)
208 {
209 }
210
211
212 AnalysisDataHandle::AnalysisDataHandle(internal::AnalysisDataHandleImpl *impl)
213     : impl_(impl)
214 {
215 }
216
217
218 void
219 AnalysisDataHandle::startFrame(int index, real x, real dx)
220 {
221     GMX_RELEASE_ASSERT(impl_ != NULL, "Invalid data handle used");
222     GMX_RELEASE_ASSERT(impl_->currentFrame_ == NULL,
223                        "startFrame() called twice without calling finishFrame()");
224     impl_->currentFrame_ =
225         &impl_->data_.impl_->storage_.startFrame(index, x, dx);
226 }
227
228
229 void
230 AnalysisDataHandle::setPoint(int column, real value, bool bPresent)
231 {
232     GMX_RELEASE_ASSERT(impl_ != NULL, "Invalid data handle used");
233     GMX_RELEASE_ASSERT(impl_->currentFrame_ != NULL,
234                        "setPoint() called without calling startFrame()");
235     impl_->currentFrame_->setValue(column, value, bPresent);
236 }
237
238
239 void
240 AnalysisDataHandle::setPoint(int column, real value, real error, bool bPresent)
241 {
242     GMX_RELEASE_ASSERT(impl_ != NULL, "Invalid data handle used");
243     GMX_RELEASE_ASSERT(impl_->currentFrame_ != NULL,
244                        "setPoint() called without calling startFrame()");
245     impl_->currentFrame_->setValue(column, value, error, bPresent);
246 }
247
248
249 void
250 AnalysisDataHandle::setPoints(int firstColumn, int count, const real *values)
251 {
252     GMX_RELEASE_ASSERT(impl_ != NULL, "Invalid data handle used");
253     GMX_RELEASE_ASSERT(impl_->currentFrame_ != NULL,
254                        "setPoints() called without calling startFrame()");
255     for (int i = 0; i < count; ++i)
256     {
257         impl_->currentFrame_->setValue(firstColumn + i, values[i]);
258     }
259 }
260
261
262 void
263 AnalysisDataHandle::finishPointSet()
264 {
265     GMX_RELEASE_ASSERT(impl_ != NULL, "Invalid data handle used");
266     GMX_RELEASE_ASSERT(impl_->data_.isMultipoint(),
267                        "finishPointSet() called for non-multipoint data");
268     GMX_RELEASE_ASSERT(impl_->currentFrame_ != NULL,
269                        "finishPointSet() called without calling startFrame()");
270     impl_->currentFrame_->finishPointSet();
271 }
272
273
274 void
275 AnalysisDataHandle::finishFrame()
276 {
277     GMX_RELEASE_ASSERT(impl_ != NULL, "Invalid data handle used");
278     GMX_RELEASE_ASSERT(impl_->currentFrame_ != NULL,
279                        "finishFrame() called without calling startFrame()");
280     AnalysisDataStorageFrame *frame = impl_->currentFrame_;
281     impl_->currentFrame_ = NULL;
282     frame->finishFrame();
283 }
284
285
286 void
287 AnalysisDataHandle::finishData()
288 {
289     GMX_RELEASE_ASSERT(impl_ != NULL, "Invalid data handle used");
290     // Deletes the implementation pointer.
291     impl_->data_.finishData(*this);
292     impl_ = NULL;
293 }
294
295 } // namespace gmx