Miind
Report.hpp
Go to the documentation of this file.
1 // Copyright (c) 2005 - 2012 Marc de Kamps
2 // 2012 David-Matthias Sichau
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
6 //
7 // * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation
9 // and/or other materials provided with the distribution.
10 // * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software
11 // without specific prior written permission.
12 //
13 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
14 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
15 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
16 // USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
17 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
18 //
19 
20 #ifndef MPILIB_REPORT_REPORT_HPP_
21 #define MPILIB_REPORT_REPORT_HPP_
22 
27 
28 #include <sstream>
29 #include <string>
30 
31 namespace MPILib {
32 namespace report {
33 
41 struct Report {
65  std::vector<ReportValue> _values;
69  unsigned int _nrNodes;
70 
77  Report(Time time, Rate rate, NodeId id);
78 
89  Report(Time time, Rate rate, NodeId id, AlgorithmGrid grid,
90  ReportType type, std::vector<ReportValue> vec_values, int nrNodes =
91  0);
92 
97  void addValue(const ReportValue& value);
98 
99 };
100 // end of Report
101 
102 }//end of namespace report
103 } // end of namespace MPILib
104 
105 #endif // MPILIB_REPORT_REPORT_HPP_ include guard
A Report is sent by a MPINode when it is queried.
Definition: Report.hpp:41
double Time
AlgorithmGrid _grid
Definition: Report.hpp:57
void addValue(const ReportValue &value)
Definition: Report.cpp:35
ReportType _type
Definition: Report.hpp:61
unsigned int NodeId
ReportValue objects cab be added to a Report when a particular quantity, as yet unknown at this stage...
Definition: ReportValue.hpp:38
Report(Time time, Rate rate, NodeId id)
Definition: Report.cpp:25
std::vector< ReportValue > _values
Definition: Report.hpp:65
unsigned int _nrNodes
Definition: Report.hpp:69
double Rate