source: XIOS/dev/dev_trunk_omp/src/filter/file_server_writer_filter.hpp @ 1679

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

MARK: Dynamic workflow graph developement. Branch up to date with trunk @1676. Using vis.js

File size: 1.4 KB
Line 
1#ifndef __XIOS_CFileServerWriterFilter__
2#define __XIOS_CFileServerWriterFilter__
3
4#include "input_pin.hpp"
5
6namespace xios
7{
8  class CField;
9
10  /*!
11   * A terminal filter which writes the packets it receives in a file.
12   */
13  class CFileServerWriterFilter : public CInputPin
14  {
15    public:
16      /*!
17       * Constructs the filter (with one input slot) associated to the specified field
18       * and a garbage collector.
19       *
20       * \param gc the associated garbage collector
21       * \param field the associated field
22       */
23      CFileServerWriterFilter(CGarbageCollector& gc, CField* field);
24
25      /*!
26       * Tests if the filter must auto-trigger.
27       *
28       * \return true if the filter must auto-trigger
29       */
30      bool virtual mustAutoTrigger() const;
31
32      /*!
33       * Tests whether data is expected for the specified date.
34       *
35       * \param date the date associated to the data
36       */
37      bool virtual isDataExpected(const CDate& date) const;
38
39
40    protected:
41      /*!
42       * Callbacks a field to write a packet to a file.
43       *
44       * \param data a vector of packets corresponding to each slot
45       */
46      void virtual onInputReady(std::vector<CDataPacketPtr> data);
47
48    private:
49      CField* field; //<! The associated field
50      std::map<Time, CDataPacketPtr> packets; //<! The stored packets
51
52  }; // class CFileServerWriterFilter
53} // namespace xios
54
55#endif //__XIOS_CFileServerWriterFilter__
Note: See TracBrowser for help on using the repository browser.