Basic support for transforming KeyValueTrees
[gromacs.git] / src / gromacs / analysisdata / dataproxy.cpp
blobc495aa93989a7968c098d47a79dba8e6e9726b53
1 /*
2 * This file is part of the GROMACS molecular simulation package.
4 * Copyright (c) 2010,2011,2012,2013,2014, 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.
35 /*! \internal \file
36 * \brief
37 * Implements gmx::AnalysisDataProxy.
39 * \author Teemu Murtola <teemu.murtola@gmail.com>
40 * \ingroup module_analysisdata
42 #include "gmxpre.h"
44 #include "dataproxy.h"
46 #include "gromacs/analysisdata/dataframe.h"
47 #include "gromacs/analysisdata/datamodulemanager.h"
48 #include "gromacs/utility/gmxassert.h"
50 namespace gmx
53 AnalysisDataProxy::AnalysisDataProxy(int firstColumn, int columnSpan,
54 AbstractAnalysisData *data)
55 : source_(*data), firstColumn_(firstColumn), columnSpan_(columnSpan),
56 bParallel_(false)
58 GMX_RELEASE_ASSERT(data != NULL, "Source data must not be NULL");
59 GMX_RELEASE_ASSERT(firstColumn >= 0 && columnSpan > 0, "Invalid proxy column");
60 setMultipoint(source_.isMultipoint());
64 int
65 AnalysisDataProxy::frameCount() const
67 return source_.frameCount();
71 AnalysisDataFrameRef
72 AnalysisDataProxy::tryGetDataFrameInternal(int index) const
74 AnalysisDataFrameRef frame = source_.tryGetDataFrame(index);
75 if (!frame.isValid())
77 return AnalysisDataFrameRef();
79 return AnalysisDataFrameRef(frame, firstColumn_, columnSpan_);
83 bool
84 AnalysisDataProxy::requestStorageInternal(int nframes)
86 return source_.requestStorage(nframes);
90 int
91 AnalysisDataProxy::flags() const
93 return efAllowMultipoint | efAllowMulticolumn | efAllowMissing
94 | efAllowMultipleDataSets;
98 void
99 AnalysisDataProxy::dataStarted(AbstractAnalysisData *data)
101 GMX_RELEASE_ASSERT(data == &source_, "Source data mismatch");
102 setDataSetCount(data->dataSetCount());
103 for (int i = 0; i < data->dataSetCount(); ++i)
105 setColumnCount(i, columnSpan_);
107 moduleManager().notifyDataStart(this);
111 bool
112 AnalysisDataProxy::parallelDataStarted(
113 AbstractAnalysisData *data,
114 const AnalysisDataParallelOptions &options)
116 GMX_RELEASE_ASSERT(data == &source_, "Source data mismatch");
117 setDataSetCount(data->dataSetCount());
118 for (int i = 0; i < data->dataSetCount(); ++i)
120 setColumnCount(i, columnSpan_);
122 moduleManager().notifyParallelDataStart(this, options);
123 bParallel_ = !moduleManager().hasSerialModules();
124 return bParallel_;
128 void
129 AnalysisDataProxy::frameStarted(const AnalysisDataFrameHeader &frame)
131 if (bParallel_)
133 moduleManager().notifyParallelFrameStart(frame);
135 else
137 moduleManager().notifyFrameStart(frame);
142 void
143 AnalysisDataProxy::pointsAdded(const AnalysisDataPointSetRef &points)
145 AnalysisDataPointSetRef columns(points, firstColumn_, columnSpan_);
146 if (columns.columnCount() > 0)
148 if (bParallel_)
150 moduleManager().notifyParallelPointsAdd(columns);
152 else
154 moduleManager().notifyPointsAdd(columns);
160 void
161 AnalysisDataProxy::frameFinished(const AnalysisDataFrameHeader &header)
163 if (bParallel_)
165 moduleManager().notifyParallelFrameFinish(header);
167 else
169 moduleManager().notifyFrameFinish(header);
173 void
174 AnalysisDataProxy::frameFinishedSerial(int frameIndex)
176 if (bParallel_)
178 // The x and dx values are unused in this case.
179 AnalysisDataFrameHeader header(frameIndex, 0.0, 0.0);
180 moduleManager().notifyFrameFinish(header);
185 void
186 AnalysisDataProxy::dataFinished()
188 moduleManager().notifyDataFinish();
191 } // namespace gmx