source: XIOS/dev/dev_ym/XIOS_COUPLING/src/filter/temporal_filter.hpp @ 2230

Last change on this file since 2230 was 2193, checked in by yushan, 3 years ago

workflow graph : enable unary and binary arithmetic filters

File size: 3.7 KB
Line 
1#ifndef __XIOS_CTemporalFilter__
2#define __XIOS_CTemporalFilter__
3
4#include "filter.hpp"
5#include <boost/smart_ptr/scoped_ptr.hpp>
6#include "functor.hpp"
7#include "array_new.hpp"
8
9namespace xios
10{
11  /*!
12   * A generic temporal filter with one input slot wrapping any type of temporal operation.
13   */
14  class CTemporalFilter : public CFilter, public IFilterEngine
15  {
16    public:
17      /*!
18       * Constructs a temporal filter wrapping the specified temporal operation.
19       *
20       * \param gc the associated garbage collector
21       * \param opId the string identifying the temporal operation
22       * \param initDate the origin of time
23       * \param samplingFreq the sampling frequency, i.e. the frequency at which the input data will be used
24       * \param samplingOffset the sampling offset, i.e. the offset after which the input data will be used
25       * \param opFreq the operation frequency, i.e. the frequency at which the output data will be computed
26       * \param ignoreMissingValue true if and only if the missing value must be ignored
27                                   when doing the operation
28       */
29      CTemporalFilter(CGarbageCollector& gc, const std::string& opId,
30                      const CDate& initDate, const CDuration samplingFreq, const CDuration samplingOffset, const CDuration opFreq,
31                      bool ignoreMissingValue = false);
32
33      /*!
34       * Applies the temporal operation to the input data and returns the result when it is ready.
35       *
36       * \param data a vector of packets corresponding to each slot (one in this case)
37       * \return the result of the temporal operation or null if it is not ready yet
38       */
39      CDataPacketPtr virtual apply(std::vector<CDataPacketPtr> data);
40
41      void buildWorkflowGraph(std::vector<CDataPacketPtr> data);
42
43      /*!
44       * Tests if the filter must auto-trigger.
45       *
46       * \return true if the filter must auto-trigger
47       */
48      bool virtual mustAutoTrigger() const;
49
50      /*!
51       * Tests whether data is expected for the specified date.
52       *
53       * \param date the date associated to the data
54       */
55      bool virtual isDataExpected(const CDate& date) const;
56      bool graphCycleCompleted;
57      std::string getTemporalOperation();
58
59    private:
60      // Warning the declaration order matters here, double-check the constructor before changing it
61      CArray<double, 1> tmpData; //!< The array of data used for temporary storage
62      const boost::scoped_ptr<func::CFunctor> functor; //!< The functor corresponding to the temporal operation
63      const bool isOnceOperation; //!< True if the operation should be computed just once
64      const bool isInstantOperation; //!< True if the operation is instant
65      const CDuration samplingFreq; //!< The sampling frequency, i.e. the frequency at which the input data will be used
66      const CDuration samplingOffset; //!< The sampling offset, i.e. the offset after which the input data will be used
67      const CDuration opFreq; //!< The operation frequency, i.e. the frequency at which the output data will be computed
68      const CDuration offsetMonth; //!< The month duration of samplingOffset
69      CDuration offsetAllButMonth; //!< All but the month duration of samplingOffset
70      const CDate initDate;
71      CDate nextSamplingDate; //!< The date of the next sampling
72      int nbOperationDates; //!< The number of times an operation is performed
73      int nbSamplingDates;
74//      CDate nextOperationDate; //!< The date of the next operation
75      bool isFirstOperation; //!< True before the first operation was been computed
76      const std::string temporalOperation;
77  }; // class CTemporalFilter
78} // namespace xios
79
80#endif //__XIOS_CTemporalFilter__
Note: See TracBrowser for help on using the repository browser.