Blame view

src/ExternLib/Boxcar/BoxcarCreator.hh 5.77 KB
fbe3c2bb   Benjamin Renard   First commit
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
/*
 * BoxcarCreator.hh
 *
 *  Created on: Dec 12, 2012
 *      Author: f.casimir
 */

#ifndef BoxcarCREATOR_HH_
#define BoxcarCREATOR_HH_


#include "DicError.hh"
#include "AMDA_exception.hh"

#include "ParamData.hh"
#include "VisitorOfParamData.hh"
#include "Boxcar.hh"

namespace AMDA {
namespace Parameters {

/**
 * @class BoxcarCreator
 * @brief Creator of the Operation Boxcar parameterized with ParamData input type.
 * @details Implement the interface VisitorOfParamData.
 */
class BoxcarCreator : public VisitorOfParamData {
public:
	/**
	 * @brief Constructor.
	 */
35e5427c   Benjamin Renard   Fix boxcar (#7318)
32
33
	BoxcarCreator(Process& pProcess, ParamData& paramInput, TimeIntervalListSPtr pTimeIntervalList, double second)
		: _process(pProcess), _paramData(paramInput), _operation(NULL), _timeIntervalList(pTimeIntervalList), _second(second) {
fbe3c2bb   Benjamin Renard   First commit
34
35
36
37
38
39
40

		_paramData.accept(*this);
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataScalaireShort *)
	 */
35e5427c   Benjamin Renard   Fix boxcar (#7318)
41
	void visit(ParamDataScalaireShort *) {_operation = new Boxcar<ParamDataScalaireShort>( _process, dynamic_cast<ParamDataScalaireShort &>(_paramData), _timeIntervalList, _second);}
fbe3c2bb   Benjamin Renard   First commit
42
43
44
45

	/**
	 * @overload VisitorOfParamData::visit(ParamDataScalaireFloat *)
	 */
35e5427c   Benjamin Renard   Fix boxcar (#7318)
46
	void visit(ParamDataScalaireFloat *) {_operation = new Boxcar<ParamDataScalaireFloat>( _process, dynamic_cast<ParamDataScalaireFloat &>(_paramData), _timeIntervalList, _second);}
fbe3c2bb   Benjamin Renard   First commit
47
48
49
50

	/**
	 * @overload VisitorOfParamData::visit(ParamDataScalaireDouble *)
	 */
35e5427c   Benjamin Renard   Fix boxcar (#7318)
51
	void visit(ParamDataScalaireDouble *) {_operation = new Boxcar<ParamDataScalaireDouble>(  _process,dynamic_cast<ParamDataScalaireDouble &>(_paramData), _timeIntervalList, _second);}
fbe3c2bb   Benjamin Renard   First commit
52
53
54
55

	/**
	 * @overload VisitorOfParamData::visit(ParamDataScalaireLongDouble *)
	 */
35e5427c   Benjamin Renard   Fix boxcar (#7318)
56
	void visit(ParamDataScalaireLongDouble *) {_operation = new Boxcar<ParamDataScalaireLongDouble>( _process, dynamic_cast<ParamDataScalaireLongDouble &>(_paramData), _timeIntervalList, _second);}
fbe3c2bb   Benjamin Renard   First commit
57
58
59
60

	/**
	 * @overload VisitorOfParamData::visit(ParamDataScalaireInt *)
	 */
35e5427c   Benjamin Renard   Fix boxcar (#7318)
61
	void visit(ParamDataScalaireInt *) {_operation = new Boxcar<ParamDataScalaireInt>( _process, dynamic_cast<ParamDataScalaireInt &>(_paramData), _timeIntervalList, _second);}
fbe3c2bb   Benjamin Renard   First commit
62
63
64
65
66
67
68
69
70
71
72

	/**
	 * @overload VisitorOfParamData::visit(ParamDataLogicalData *)
	 */
	void visit(ParamDataLogicalData *) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("BoxcarCreator operation not supported"));
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DShort *)
	 */
35e5427c   Benjamin Renard   Fix boxcar (#7318)
73
	void visit(ParamDataTab1DShort *) {_operation = new Boxcar<ParamDataTab1DShort>( _process, dynamic_cast<ParamDataTab1DShort &>(_paramData), _timeIntervalList, _second);}
fbe3c2bb   Benjamin Renard   First commit
74
75
76
77

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DFloat *)
	 */
35e5427c   Benjamin Renard   Fix boxcar (#7318)
78
	void visit(ParamDataTab1DFloat *) {_operation = new Boxcar<ParamDataTab1DFloat>( _process, dynamic_cast<ParamDataTab1DFloat &>(_paramData), _timeIntervalList, _second);}
fbe3c2bb   Benjamin Renard   First commit
79
80
81
82

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DDouble *)
	 */
35e5427c   Benjamin Renard   Fix boxcar (#7318)
83
	void visit(ParamDataTab1DDouble *) {_operation = new Boxcar<ParamDataTab1DDouble>( _process, dynamic_cast<ParamDataTab1DDouble &>(_paramData), _timeIntervalList, _second);}
fbe3c2bb   Benjamin Renard   First commit
84
85
86
87

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DLongDouble *)
	 */
35e5427c   Benjamin Renard   Fix boxcar (#7318)
88
	void visit(ParamDataTab1DLongDouble *) {_operation = new Boxcar<ParamDataTab1DLongDouble>( _process, dynamic_cast<ParamDataTab1DLongDouble &>(_paramData), _timeIntervalList, _second);}
fbe3c2bb   Benjamin Renard   First commit
89
90
91
92

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DInt *)
	 */
35e5427c   Benjamin Renard   Fix boxcar (#7318)
93
	void visit(ParamDataTab1DInt *) {_operation = new Boxcar<ParamDataTab1DInt>( _process, dynamic_cast<ParamDataTab1DInt &>(_paramData), _timeIntervalList, _second);}
fbe3c2bb   Benjamin Renard   First commit
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

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab1DLogicalData *)
	 */
	void visit(ParamDataTab1DLogicalData *) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("BoxcarCreator operation not supported"));
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DShort *)
	 */
	void visit(ParamDataTab2DShort *) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("ParamDataTab2DShort data not supported"));
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DFloat *)
	 */
	void visit(ParamDataTab2DFloat *) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("ParamDataTab2DFloat data not supported"));
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DDouble *)
	 */
	void visit(ParamDataTab2DDouble *) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("ParamDataTab2DDouble data not supported"));
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DLongDouble *)
	 */
	void visit(ParamDataTab2DLongDouble *) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("ParamDataTab2DLongDouble data not supported"));
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DInt *)
	 */
	void visit(ParamDataTab2DInt *) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("ParamDataTab2DInt data not supported"));
	}

	/**
	 * @overload VisitorOfParamData::visit(ParamDataTab2DLogicalData *)
	 */
	void visit(ParamDataTab2DLogicalData *) {
		BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("ParamDataTab2DLogicalData data not supported"));
	}

	/**
	 * @brief get the Boxcar parameterized operation.
	 */
	Operation * getOperation() const {	return _operation;	}

private:
	Process   &_process;
	ParamData &_paramData;
	Operation *_operation;
35e5427c   Benjamin Renard   Fix boxcar (#7318)
153
	TimeIntervalListSPtr _timeIntervalList;
fbe3c2bb   Benjamin Renard   First commit
154
155
156
157
158
159
160
161
162
	  /**
	   * @brief laps time to shift data.
	   */
	double _second;
};

} /* namespace Parameters */
} /* namespace AMDA */
#endif /* BoxcarCREATOR_HH_ */