Skip to content
Snippets Groups Projects
FileDescriptor.h 896 B
Newer Older
wfg's avatar
wfg committed
/*
 * Distributed under the OSI-approved Apache License, Version 2.0.  See
 * accompanying file Copyright.txt for details.
 *
 * FileDescriptor.h uses POSIX as the underlying library
wfg's avatar
wfg committed
 *
 *  Created on: Oct 6, 2016
 *      Author: wfg
 */

#ifndef FILEDESCRIPTOR_H_
#define FILEDESCRIPTOR_H_
#include "ADIOSConfig.h"
#include "core/Transport.h"
wfg's avatar
wfg committed

namespace adios
{
/**
 * File descriptor transport using the POSIX library
 */
class FileDescriptor : public Transport
wfg's avatar
wfg committed
{

public:
    FileDescriptor(MPI_Comm mpiComm, const bool debugMode);
    ~FileDescriptor();
    void Open(const std::string &name, const std::string accessMode);
    void Write(const char *buffer, std::size_t size);
wfg's avatar
wfg committed
private:
    int m_FileDescriptor = -1; ///< file descriptor returned by POSIX open
wfg's avatar
wfg committed
};
} // end namespace transport
} // end namespace
#endif /* FILEDESCRIPTOR_H_ */