Blame view

src/ExternLib/StatisticFunctions/StatisticCorrelationCreator.hh 8.42 KB
8dd4b7f3   Hacene SI HADJ MOHAND   setting up processé
1
2
3
4
5
6
7
8
9
10
/*
 *  StatisticCorrelationCreator.hh
 *
 *  Created on: Mar 26, 2019
 *      Author: AKKA IS
 */

#ifndef STATISTICCORRELATIONCREATOR_HH_
#define STATISTICCORRELATIONCREATOR_HH_

403992c8   Hacene SI HADJ MOHAND   scalr ok tested
11
12
13
#include "Operation.hh"
#include "ParameterManager.hh"
#include "ParamMgr.hh"
8dd4b7f3   Hacene SI HADJ MOHAND   setting up processé
14
15
#include "ParamData.hh"
#include "VisitorOfParamData.hh"
8dd4b7f3   Hacene SI HADJ MOHAND   setting up processé
16
#include "AMDA_exception.hh"
f5c74402   Hacene SI HADJ MOHAND   compilation ok
17
#include "CorrelationFunctions.hh"
8dd4b7f3   Hacene SI HADJ MOHAND   setting up processé
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32

namespace AMDA {
    namespace Parameters {

        /**
         * @class SumIntoTableIndexesCreator
         * @brief Creator of the Operation SumIntoTableIndexes parameterized with ParamData input type.
         * @details Implement the interface VisitorOfParamData.
         */
        class StatisticCorrelationCreator : public VisitorOfParamData {
        public:

            /**
             * @brief Constructor.
             */
403992c8   Hacene SI HADJ MOHAND   scalr ok tested
33
34
            StatisticCorrelationCreator(Process& pProcess, TimeIntervalListSPtr pTimeIntervalList, ParamData& paramInput, ParamData& secondParamData, ParameterSPtr secondInputParam, double windowtime, std::string type_)
            : _process(pProcess), _timeIntervalList(pTimeIntervalList), _paramData(paramInput), _secondParamData(secondParamData), _secondInputParam(secondInputParam),_windowtime(windowtime), _type(type_) {
8dd4b7f3   Hacene SI HADJ MOHAND   setting up processé
35
36
37
38
39
40
41
                _paramData.accept(*this);
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataScalaireShort *)
             */
            void visit(ParamDataScalaireShort *) {
e8db9c26   Hacene SI HADJ MOHAND   structure ok
42
                createOperation<short>();
8dd4b7f3   Hacene SI HADJ MOHAND   setting up processé
43
44
45
46
47
48
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataScalaireFloat *)
             */
            void visit(ParamDataScalaireFloat *) {
403992c8   Hacene SI HADJ MOHAND   scalr ok tested
49
                createOperation<float>();
8dd4b7f3   Hacene SI HADJ MOHAND   setting up processé
50
51
52
53
54
55
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataScalaireDouble *)
             */
            void visit(ParamDataScalaireDouble *) {
e8db9c26   Hacene SI HADJ MOHAND   structure ok
56
                createOperation<double>();
403992c8   Hacene SI HADJ MOHAND   scalr ok tested
57

8dd4b7f3   Hacene SI HADJ MOHAND   setting up processé
58
59
60
61
62
63
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataScalaireLongDouble *)
             */
            void visit(ParamDataScalaireLongDouble *) {
e8db9c26   Hacene SI HADJ MOHAND   structure ok
64
                createOperation<long double>();
8dd4b7f3   Hacene SI HADJ MOHAND   setting up processé
65
66
67
68
69
70
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataScalaireInt *)
             */
            void visit(ParamDataScalaireInt *) {
e6a241e7   Hacene SI HADJ MOHAND   structure ok
71
                createOperation<int>();
8dd4b7f3   Hacene SI HADJ MOHAND   setting up processé
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
            }

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

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab1DShort *)
             */
            void visit(ParamDataTab1DShort *) {
                createOperation1D<short>();
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab1DFloat *)
             */
            void visit(ParamDataTab1DFloat *) {
                createOperation1D<float>();
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab1DDouble *)
             */
            void visit(ParamDataTab1DDouble *) {
                createOperation1D<double>();
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab1DLongDouble *)
             */
            void visit(ParamDataTab1DLongDouble *) {
                createOperation1D<long double>();
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab1DInt *)
             */
            void visit(ParamDataTab1DInt *) {
                createOperation1D<int>();
            }

            /**
             * @overload VisitorOfParamData::visit(ParamDataTab1DLogicalData *)
             */
            void visit(ParamDataTab1DLogicalData *) {
                BOOST_THROW_EXCEPTION(AMDA::AMDA_exception() << AMDA::errno_code(AMDA_ERROR_UNKNOWN) << AMDA::ex_msg("Tsyganenko96Creator 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("Tsyganenko96Creator operation not supported"));
            }

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

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

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

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

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

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

            template <typename Type>
e6a241e7   Hacene SI HADJ MOHAND   structure ok
174
            void createOperation() {
403992c8   Hacene SI HADJ MOHAND   scalr ok tested
175
176
177
178
                _operation = new StatisticFunctions::Correlation<Type, Type>(_process, _timeIntervalList, dynamic_cast<ParamDataSpec<Type>&> (_paramData),
                        dynamic_cast<ParamDataSpec<Type>&> (_secondParamData), _windowtime, _type);
            pushSecondParamData<Type>();

8dd4b7f3   Hacene SI HADJ MOHAND   setting up processé
179
            }
e8db9c26   Hacene SI HADJ MOHAND   structure ok
180
            
403992c8   Hacene SI HADJ MOHAND   scalr ok tested
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
             template <typename Type>
             void pushSecondParamData(){
                      try {
                    ParamDataIndexInfo lParamDataIndexInfo;
                    lParamDataIndexInfo = _secondInputParam->getAsync(&_process).get();
                    while ((!lParamDataIndexInfo._noMoreTimeInt && !lParamDataIndexInfo._timeIntToProcessChanged) || (lParamDataIndexInfo._nbDataToProcess > 0)) {
                        reinterpret_cast<StatisticFunctions::AbstractCorrelationFunc<Type, Type>*> (_operation)->pushSecondParamData(lParamDataIndexInfo);
                        if (lParamDataIndexInfo._timeIntToProcessChanged || lParamDataIndexInfo._noMoreTimeInt)
                            break;
                        lParamDataIndexInfo = _secondInputParam->getAsync(&_process).get();
                    }
                } catch (...) {
                    throw;
                }
             }

            template <typename Type>
e8db9c26   Hacene SI HADJ MOHAND   structure ok
198
            void createOperation1D() {
6a7820dc   Hacene SI HADJ MOHAND   1d compilation ok
199
200
201
202
                  _operation = new StatisticFunctions::Correlation1D<std::vector<Type>, std::vector<Type>, Type>(_process, _timeIntervalList, dynamic_cast<ParamDataSpec<std::vector<Type>>&> (_paramData),
                        dynamic_cast<ParamDataSpec<std::vector<Type>>&> (_secondParamData), _windowtime, _type);
            pushSecondParamData<std::vector<Type>>();
                
e8db9c26   Hacene SI HADJ MOHAND   structure ok
203
            }
8dd4b7f3   Hacene SI HADJ MOHAND   setting up processé
204
205

            Process &_process;
e6a241e7   Hacene SI HADJ MOHAND   structure ok
206
            TimeIntervalListSPtr _timeIntervalList;
403992c8   Hacene SI HADJ MOHAND   scalr ok tested
207
208
209
            ParamData &_paramData;
            ParamData &_secondParamData;
            ParameterSPtr _secondInputParam;
8dd4b7f3   Hacene SI HADJ MOHAND   setting up processé
210
211
212
213
214
215
216
217
            double _windowtime;
            std::string _type;
            Operation *_operation;
        };

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