source: XIOS/trunk/src/filter/store_filter.hpp @ 1704

Last change on this file since 1704 was 1704, checked in by yushan, 5 years ago

Introducing the new graph functionality. Attribute build_workflow_graph=.TRUE. is used in the field definition section in the xml file to enable the workflow graph of the field and other fields referecing to it. A more detailed document will be available soon on the graph fuctionality.

File size: 3.5 KB
Line 
1#ifndef __XIOS_CStoreFilter__
2#define __XIOS_CStoreFilter__
3
4#include "input_pin.hpp"
5#include "workflow_graph.hpp"
6
7
8namespace xios
9{
10  class CContext;
11  class CGrid;
12  class CField;
13
14  /*!
15   * A terminal filter which stores all the packets it receives.
16   */
17  class CStoreFilter : public CInputPin
18  {
19    public:
20      /*!
21       * Constructs the filter with one input slot and an associated
22       * garbage collector for the specified grid and context.
23       *
24       * \param gc the garbage collector associated with this input pin
25       * \param context the context to which the data belongs
26       * \param grid the grid to which the data is attached
27       * \param detectMissingValues whether missing values should be detected
28       * \param missingValue the value to use to replace missing values
29       */
30      CStoreFilter(CGarbageCollector& gc, CContext* context, CGrid* grid,
31                   bool detectMissingValues = false, double missingValue = 0.0);
32
33      /*!
34       * Accesses the filter storage and retuns the packet corresponding
35       * to the specified timestamp. If there is no packet available for
36       * the specified timestamp, the function waits until the data is
37       * received or a timeout occurs.
38       *
39       * \param timestamp the timestamp of the requested packet
40       * \return a pointer to a read-only packet
41       */
42      CConstDataPacketPtr getPacket(Time timestamp);
43
44      /*!
45       * Accesses the filter storage and retuns the data corresponding
46       * to the specified timestamp. If there is no data available for
47       * the specified timestamp, the function waits until the data is
48       * received or a timeout occurs.
49       *
50       * \param timestamp the timestamp of the requested data
51       * \param data the array where the data is to be copied
52       * \return the status code associated with the data
53       */
54      template <int N>
55      CDataPacket::StatusCode getData(Time timestamp, CArray<double, N>& data);
56
57      /*!
58       * Tests if the filter must auto-trigger.
59       *
60       * \return true if the filter must auto-trigger
61       */
62      bool virtual mustAutoTrigger() const;
63
64      /*!
65       * Tests whether data is expected for the specified date.
66       *
67       * \param date the date associated to the data
68       */
69      bool virtual isDataExpected(const CDate& date) const;
70
71      /*!
72       * Removes all pending packets which are older than the specified timestamp.
73       *
74       * \param timestamp the timestamp used for invalidation
75       */
76      void virtual invalidate(Time timestamp);
77
78      int filterID;
79      int tag;
80      Time start_graph;
81      Time end_graph;
82      CField *field;
83      int distance;
84
85
86    protected:
87      /*!
88       * Stores the packet for later access.
89       *
90       * \param data a vector of packets corresponding to each slot
91       */
92      void virtual onInputReady(std::vector<CDataPacketPtr> data);
93      void virtual buildGraph(std::vector<CDataPacketPtr> data);
94
95    private:
96      CGarbageCollector& gc; //!< The garbage collector associated to the filter
97      CContext* context; //!< The context to which the data belongs
98      CGrid* grid; //!< The grid attached to the data the filter can accept
99      const bool detectMissingValues; //!< Whether missing values should be detected
100      const double missingValue; //!< The value to use to replace missing values
101      std::map<Time, CDataPacketPtr> packets; //<! The stored packets
102  }; // class CStoreFilter
103} // namespace xios
104
105#endif //__XIOS_CStoreFilter__
Note: See TracBrowser for help on using the repository browser.