VirtualInstrument.hh
5.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/*
* VirtualInstrument.hh
*
* Created on: Nov 21, 2014
* Author: AKKA
*/
#ifndef VIRTUALINSTRUMENT_HH_
#define VIRTUALINSTRUMENT_HH_
#include <map>
#include <list>
#include <string>
#include <boost/shared_ptr.hpp>
#include <boost/weak_ptr.hpp>
#include "FileReaderAbstract.hh"
#include "Pusher.hh"
#include "ParamFlow.hh"
#include "TimeTable.hh"
namespace AMDA {
namespace LocalFileInterface {
typedef std::list<TimeTableCatalog::TimeInterval> TimeIntervalList;
typedef boost::shared_ptr<TimeIntervalList> TimeIntervalListSPtr;
typedef std::vector<double> InfoValues;
typedef boost::shared_ptr<InfoValues> InfoValuesSPtr;
typedef std::map<std::string,InfoValuesSPtr> InfoMap;
class VirtualInstrumentManager;
class VirtualInstrumentInterval;
/*
* @brief File formats
*/
typedef enum
{
FORMAT_UNKNOWN,
FORMAT_ASCII,
FORMAT_CDF,
FORMAT_VOT
} VIFileFormat;
/*
* @class VirtualInstrument
* @brief Storage of file associated to a local virtual instrument.
*/
class VirtualInstrument {
public:
/**
* @brief Class used to identify if a TimeIntervalList is already added to the map or not.
*/
class CompKey
{
public:
bool operator()(const TimeIntervalListSPtr& a, const TimeIntervalListSPtr& b)
{
if (a->size() != b->size()) {
return true;
} else {
TimeIntervalList::const_iterator itA = a->begin();
TimeIntervalList::const_iterator itB = b->begin();
while (itA != a->end()) {
if ( (itA->_startTime != itB->_startTime) || (itA->_stopTime != itB->_stopTime) ) {
return true;
} else {
++itA;
++itB;
}
}
return false;
}
}
};
typedef boost::shared_ptr<VirtualInstrumentInterval> VirtualIntrumentIntervalSPtr;
typedef std::map<TimeIntervalListSPtr, VirtualIntrumentIntervalSPtr, CompKey> IntervalList;
/*
* @brief Constructor
*/
VirtualInstrument(VirtualInstrumentManager& piVrtualInstrumentManager, const std::string& VIId);
/*
* @brief Destructor
*/
virtual ~VirtualInstrument();
/*
* @brief get Virtual Instrument ID
*/
const std::string& getVIId() const
{
return _VIId;
}
/*
* @brief set Virtual Instrument ID
*/
void setVIId(const std::string& pVIId)
{
_VIId = pVIId;
}
/*
* @brief get global start
*/
double getGlobalStartTime()
{
return _globalStartTime;
}
/*
* @brief set global start time
*/
void setGlobalStartTime(double start)
{
_globalStartTime = start;
}
/*
* @brief get global stop time
*/
double getGlobalStopTime()
{
return _globalStopTime;
}
/*
* @brief set global start time
*/
void setGlobalStopTime(double stop)
{
_globalStopTime = stop;
}
/*
* @brief get files format for the Virtual Instrument
*/
VIFileFormat getFilesFormat()
{
return _filesFormat;
}
/*
* @brief set files format for the virtual instrument
*/
void setFilesFormat(VIFileFormat format)
{
_filesFormat = format;
}
/*
* @brief Add a file definition in the virtual instrument
*/
void addFileDefinition(const char* pName, double pStart,double pStop);
/*
* @brief Create file reader associated to the VirtualInstrument files format
*/
bool createFileReader(LocalTimeFormat timeFormat);
/*
* @brief Get file reader
*/
FileReaderAbstract* getFileReader()
{
return _fileReaderPtr;
}
/*
* @brief Create pusher associated to the paramId
*/
PusherBase* createPusher(std::string& paramId,
LocalParamType ¶mType, int& dim1Size, int& dim2Size);
/*
* @brief Get param flow associated to the paramId
*/
ParamFlowSPtr getParamFlow(const std::string& pParamId, TimeIntervalListSPtr pTimeIntervalList,
LocalParamType paramType, int dim1Size, int dim2Size);
/*
* @brief Get data position in the Virtual Instrument from time
*/
bool getDataPosition(double &time, int& fileIndex, int& recordIndex);
/*
* @brief Get one param data packet
*/
FileReaderStatus getParamPacketData(std::string& paramId, int fileIndex, int recordIndex,
double stopTime, LocalParamDataPacket *packet);
/*
* @brief Get the time param id
*/
bool updateTimeId();
/*
* @brief Get info
*/
InfoValuesSPtr& getFileInfo(const char* pInfoName);
protected :
/*
* @brief Get file full path from file index
*/
std::string getFileFullPath(int fileIndex);
private:
/*
* @brief Structure used to define a file attached to the virtual instrument
*/
typedef struct
{
std::string _name;
double _start;
double _stop;
} LocalFileDefinition;
/*
* @brief VirtualInstrumentManager reference
*/
VirtualInstrumentManager& _virtualInstrumentManager;
/*
* @brief Virtual Instrument ID
*/
std::string _VIId ;
/*
* @brief Virtual Instrument Global Start
*/
double _globalStartTime;
/*
* @brief Virtual Instrument Global Stop
*/
double _globalStopTime;
/*
* @brief Virtual Instrument files format
*/
VIFileFormat _filesFormat;
/*
* @brief Vector of attached files
*/
std::vector<LocalFileDefinition> _files;
/*
* @brief timeId
*/
std::string _timeId;
/*
* @brief Pointer to the file reader
*/
FileReaderAbstract* _fileReaderPtr;
/*
* @brief List of VirtualInstrumentInterval about the current Virtual Instrument
*/
IntervalList _intervalList;
/*
* @brief Calibration information
*/
InfoMap _infoMap;
};
typedef boost::weak_ptr<VirtualInstrument> VirtualInstrumentWPtr;
typedef boost::shared_ptr<VirtualInstrument> VirtualInstrumentSPtr;
} /* namespace LocalFileInterface */
} /* namespace AMDA */
#endif /* VIRTUALINSTRUMENT_HH_ */