OMSimulatorLib
The OMSimulator project is a FMI-based co-simulation environment that supports ordinary (i.e., non-delayed) and TLM connections.
ResultWriter.h
Go to the documentation of this file.
1 /*
2  * This file is part of OpenModelica.
3  *
4  * Copyright (c) 1998-CurrentYear, Open Source Modelica Consortium (OSMC),
5  * c/o Linköpings universitet, Department of Computer and Information Science,
6  * SE-58183 Linköping, Sweden.
7  *
8  * All rights reserved.
9  *
10  * THIS PROGRAM IS PROVIDED UNDER THE TERMS OF GPL VERSION 3 LICENSE OR
11  * THIS OSMC PUBLIC LICENSE (OSMC-PL) VERSION 1.2.
12  * ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS PROGRAM CONSTITUTES
13  * RECIPIENT'S ACCEPTANCE OF THE OSMC PUBLIC LICENSE OR THE GPL VERSION 3,
14  * ACCORDING TO RECIPIENTS CHOICE.
15  *
16  * The OpenModelica software and the Open Source Modelica
17  * Consortium (OSMC) Public License (OSMC-PL) are obtained
18  * from OSMC, either from the above address,
19  * from the URLs: http://www.ida.liu.se/projects/OpenModelica or
20  * http://www.openmodelica.org, and in the OpenModelica distribution.
21  * GNU version 3 is obtained from: http://www.gnu.org/copyleft/gpl.html.
22  *
23  * This program is distributed WITHOUT ANY WARRANTY; without
24  * even the implied warranty of MERCHANTABILITY or FITNESS
25  * FOR A PARTICULAR PURPOSE, EXCEPT AS EXPRESSLY SET FORTH
26  * IN THE BY RECIPIENT SELECTED SUBSIDIARY LICENSE CONDITIONS OF OSMC-PL.
27  *
28  * See the full OSMC Public License conditions for more details.
29  *
30  */
31 
32 #ifndef _OMS_RESULTWRITER_H_
33 #define _OMS_RESULTWRITER_H_
34 
35 #include "ComRef.h"
36 #include <string>
37 #include <vector>
38 
39 namespace oms
40 {
42  {
46  };
47 
49  {
50  double realValue;
51  int intValue;
52  bool boolValue;
53  };
54 
55  struct Signal
56  {
58  std::string description;
60  };
61 
62  struct Parameter
63  {
66  };
67 
69  {
70  public:
71  ResultWriter(unsigned int bufferSize);
72  virtual ~ResultWriter();
73 
74  unsigned int addSignal(const ComRef& name, const std::string& description, SignalType_t type);
75  void addParameter(const ComRef& name, const std::string& description, SignalType_t type, SignalValue_t value);
76 
77  bool create(const std::string& filename, double startTime, double stopTime);
78  void close();
79 
80  void updateSignal(unsigned int id, SignalValue_t value);
81  void emit(double time);
82 
83  private:
84  // Stop the compiler generating methods for copying the object
85  ResultWriter(ResultWriter const& copy); // Not Implemented
86  ResultWriter& operator=(ResultWriter const& copy); // Not Implemented
87 
88  protected:
89  virtual bool createFile(const std::string& filename, double startTime, double stopTime) = 0;
90  virtual void closeFile() = 0;
91  virtual void writeFile() = 0;
92 
93  std::vector<Signal> signals;
94  std::vector<Parameter> parameters;
95 
96  double* data_2;
97  unsigned int bufferSize;
98  unsigned int nEmits;
99  };
100 
101  class VoidWriter :
102  public ResultWriter
103  {
104  public:
105  VoidWriter(unsigned int bufferSize) :ResultWriter(bufferSize) {}
107 
108  protected:
109  bool createFile(const std::string& filename, double startTime, double stopTime) {return true;}
110  void closeFile() {}
111  void writeFile() {}
112  };
113 }
114 
115 #endif
unsigned int bufferSize
Definition: ResultWriter.h:97
double realValue
Definition: ResultWriter.h:50
void closeFile()
Definition: ResultWriter.h:110
Definition: ResultWriter.h:68
int intValue
Definition: ResultWriter.h:51
Definition: ResultWriter.h:55
bool createFile(const std::string &filename, double startTime, double stopTime)
Definition: ResultWriter.h:109
void writeFile()
Definition: ResultWriter.h:111
std::vector< Signal > signals
Definition: ResultWriter.h:93
double * data_2
Definition: ResultWriter.h:96
Definition: ResultWriter.h:43
ComRef name
Definition: ResultWriter.h:57
Definition: ResultWriter.h:48
Signal signal
Definition: ResultWriter.h:64
bool boolValue
Definition: ResultWriter.h:52
ComRef - component reference.
Definition: ComRef.h:43
SignalValue_t value
Definition: ResultWriter.h:65
Definition: ResultWriter.h:44
std::string description
Definition: ResultWriter.h:58
Definition: ResultWriter.h:101
Definition: AlgLoop.h:44
SignalType_t
Definition: ResultWriter.h:41
SignalType_t type
Definition: ResultWriter.h:59
unsigned int nEmits
Definition: ResultWriter.h:98
~VoidWriter()
Definition: ResultWriter.h:106
std::vector< Parameter > parameters
Definition: ResultWriter.h:94
VoidWriter(unsigned int bufferSize)
Definition: ResultWriter.h:105
Definition: ResultWriter.h:62
Definition: ResultWriter.h:45