Skip to content
Snippets Groups Projects
Transport.h 2.2 KiB
Newer Older
wfg's avatar
wfg committed
/*
wfg's avatar
wfg committed
 *
 *  Created on: Oct 6, 2016
 *      Author: wfg
 */

#ifndef TRANSPORT_H_
#define TRANSPORT_H_
/// \cond EXCLUDE_FROM_DOXYGEN
wfg's avatar
wfg committed
#include <string>
#include <vector>
wfg's avatar
wfg committed
namespace adios
{

    const std::string m_Type; ///< transport type from derived class
    std::string m_Name; ///< from Open
    std::string m_AccessMode; ///< from Open
wfg's avatar
wfg committed
    bool m_IsOpen = false;
wfg's avatar
wfg committed

wfg's avatar
wfg committed

    int m_RankMPI = 0; ///< current MPI rank process
    int m_SizeMPI = 1; ///< current MPI processes size
    Profiler m_Profiler; ///< collects information about Open and bytes Transport
    /**
     * Base constructor that all derived classes pass
wfg's avatar
wfg committed
     * @param mpiComm passed to m_MPIComm
     * @param debugMode passed to m_DebugMode
     */
    Transport( const std::string type, MPI_Comm mpiComm, const bool debugMode );
    virtual ~Transport( ); ///< empty destructor, using STL for memory management
    /**
     * Open Output file accesing a mode
wfg's avatar
wfg committed
     * @param name name of stream or file
     * @param accessMode r or read, w or write, a or append
     */
wfg's avatar
wfg committed
    virtual void Open( const std::string name, const std::string accessMode ) = 0;

    /**
     * Set buffer and size for a particular transport
     * @param buffer raw data buffer
     * @param size raw data buffer size
     */
    virtual void SetBuffer( char* buffer, std::size_t size );

    /**
     * Write function for a transport
     * @param buffer pointer to buffer to be written
     * @param size size of buffer to be written
     */
wfg's avatar
wfg committed
    virtual void Write( const char* buffer, std::size_t size ) = 0;
wfg's avatar
wfg committed

wfg's avatar
wfg committed
    virtual void Flush( ); ///< flushes current contents to physical medium without closing the transport
wfg's avatar
wfg committed
    virtual void Close( ); ///< closes current transport and flushes everything, transport becomes unreachable
    virtual void InitProfiler( const std::string accessMode, const Support::Resolutions resolution );

wfg's avatar
wfg committed
    const bool m_DebugMode = false; ///< if true: additional checks and exceptions
#endif /* TRANSPORT_H_ */