File: adiosStream.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 (43 lines) | stat: -rw-r--r-- 1,219 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
39
40
41
42
43
/*
 * adiosStream.h
 *
 *  Created on: Nov 2018
 *      Author: Norbert Podhorszki
 */

#ifndef ADIOSSTREAM_H
#define ADIOSSTREAM_H

#include <cstdio>

#include "adios2.h"
#include "stream.h"

class adiosStream : public Stream
{
public:
    adios2::Engine engine;
    adios2::IO io;
    bool hasIOTimer;
    size_t appID;

    adiosStream(const std::string &streamName, adios2::IO &io, const adios2::Mode mode,
                MPI_Comm comm, bool iotimer, size_t appid);
    ~adiosStream();
    void Write(CommandWrite *cmdW, Config &cfg, const Settings &settings, size_t step);
    adios2::StepStatus Read(CommandRead *cmdR, Config &cfg, const Settings &settings, size_t step);
    void Close();

private:
    MPI_Comm comm;
    FILE *perfLogFP;
    double openTime;
    void defineADIOSArray(const std::shared_ptr<VariableInfo> ov);
    void putADIOSArray(const std::shared_ptr<VariableInfo> ov);
    void getADIOSArray(std::shared_ptr<VariableInfo> ov);
    adios2::StepStatus readADIOS(CommandRead *cmdR, Config &cfg, const Settings &settings,
                                 size_t step);
    void writeADIOS(CommandWrite *cmdW, Config &cfg, const Settings &settings, size_t step);
};

#endif /* ADIOSSTREAM_H */