File: stream.h

package info (click to toggle)
adios2 2.10.2%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 33,764 kB
  • sloc: cpp: 175,964; ansic: 160,510; f90: 14,630; yacc: 12,668; python: 7,275; perl: 7,126; sh: 2,825; lisp: 1,106; xml: 1,049; makefile: 579; lex: 557
file content (38 lines) | stat: -rw-r--r-- 1,040 bytes parent folder | download | duplicates (2)
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
32
33
34
35
36
37
38
/*
 * stream.h
 *
 *  Created on: Nov 2018
 *      Author: Norbert Podhorszki
 */

#ifndef STREAM_H
#define STREAM_H

#include "adios2.h"
#include "ioGroup.h"
#include "processConfig.h"
#include "settings.h"

#include <string>

class Stream
{
public:
    const std::string streamName;
    adios2::Mode mode;
    Stream(const std::string &streamName, const adios2::Mode mode);
    virtual ~Stream() = 0;
    virtual void Write(CommandWrite *cmdW, Config &cfg, const Settings &settings, size_t step) = 0;
    virtual adios2::StepStatus Read(CommandRead *cmdR, Config &cfg, const Settings &settings,
                                    size_t step) = 0;
    virtual void Close() = 0;

protected:
    void fillArray(std::shared_ptr<VariableInfo> ov, double value);
};

std::shared_ptr<Stream> openStream(const std::string &streamName, std::shared_ptr<ioGroup> iogroup,
                                   const adios2::Mode mode, IOLib iolib, MPI_Comm comm,
                                   bool iotimer, size_t appid);

#endif /* STREAM_H */