Skip to content
Snippets Groups Projects
BPFileReader.h 1.77 KiB
Newer Older
wfg's avatar
wfg committed
/*
 * Distributed under the OSI-approved Apache License, Version 2.0.  See
 * accompanying file Copyright.txt for details.
 *
wgodoy's avatar
wgodoy committed
 * BPFileReader.h
wfg's avatar
wfg committed
 *
 *  Created on: Feb 27, 2017
wgodoy's avatar
wgodoy committed
 *      Author: William F Godoy godoywf@ornl.gov
wfg's avatar
wfg committed
 */

#ifndef ADIOS2_ENGINE_BP_BPFILEREADER_H_
#define ADIOS2_ENGINE_BP_BPFILEREADER_H_
wfg's avatar
wfg committed

#include "adios2/ADIOSConfig.h"
#include "adios2/core/Engine.h"
#include "adios2/toolkit/format/bp1/BP1.h" //format::BP1Reader
#include "adios2/toolkit/transportman/TransportMan.h"
wfg's avatar
wfg committed

namespace adios2
wfg's avatar
wfg committed
class BPFileReader : public Engine
wfg's avatar
wfg committed
{

public:
     * Unique constructor
     * @param io
     * @param name
     * @param openMode only read
     * @param mpiComm
    BPFileReader(IO &io, const std::string &name, const Mode openMode,
wgodoy's avatar
wgodoy committed
                 MPI_Comm mpiComm);

    virtual ~BPFileReader() = default;

wgodoy's avatar
wgodoy committed
    void Close(const int transportIndex = -1);

private:
    format::BP1Reader m_BP1BuffersReader;
    transportman::TransportMan m_FileManager;
    void Init();
    void InitTransports();
    void InitBuffers();
#define declare(T, L)                                                          \
    Variable<T> *DoInquireVariable##L(const std::string &variableName) final;
    ADIOS2_FOREACH_TYPE_2ARGS(declare)
#undef declare
#define declare_type(T) void DoRead(Variable<T> &variable, T *values) final;

    ADIOS2_FOREACH_TYPE_1ARG(declare_type)
#undef declare_type

    template <class T>
    Variable<T> *InquireVariableCommon(const std::string &variableName);

    template <class T>
    void ReadCommon(Variable<T> &variable, T *values);

    // call at Init Buffers
    void ReadMinifooter();
    void ReadPGIndices();
    void ReadVariableIndices();
    void ReadAttributesIndices();
wfg's avatar
wfg committed
};

} // end namespace adios2
wfg's avatar
wfg committed

#endif /* ADIOS2_ENGINE_BP_BPFILEREADER_H_ */