mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
065f9a0ff9
* Allow using Poco::FileStream to wrap arbitrary file handles/descriptors as C++ streams (#3444). * Allow opening a file descriptor/HANDLE as C++ stream. * FileStream: treat read from closed pipe as EOF. * chore(Filestream): conde style (naming) Co-Authored-By: Alex Fabijanic <alex@pocoproject.org> Co-Authored-By: Matej Kenda <matejken@gmail.com> * enh(FileStream): make FileIOS::open a virtual function. (#3444) * test(FileStream): unit test for FileStream::openHandle (#3444) * Update CONTRIBUTORS. * test(FileStream): Win32 unit test fix. * build(CMake): Require policy minimum version 3.15. --------- Co-authored-by: Daniel Grunwald <grunwald@axivion.com> Co-authored-by: Alex Fabijanic <alex@pocoproject.org>
87 lines
1.9 KiB
C++
87 lines
1.9 KiB
C++
//
|
|
// FileStream_POSIX.h
|
|
//
|
|
// Library: Foundation
|
|
// Package: Streams
|
|
// Module: FileStream
|
|
//
|
|
// Definition of the FileStreamBuf, FileInputStream and FileOutputStream classes.
|
|
//
|
|
// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef Foundation_FileStream_POSIX_INCLUDED
|
|
#define Foundation_FileStream_POSIX_INCLUDED
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
#include "Poco/BufferedBidirectionalStreamBuf.h"
|
|
#include <istream>
|
|
#include <ostream>
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
class Foundation_API FileStreamBuf: public BufferedBidirectionalStreamBuf
|
|
/// This stream buffer handles Fileio
|
|
{
|
|
public:
|
|
using NativeHandle = int;
|
|
|
|
FileStreamBuf();
|
|
/// Creates a FileStreamBuf.
|
|
|
|
~FileStreamBuf();
|
|
/// Destroys the FileStream.
|
|
|
|
void open(const std::string& path, std::ios::openmode mode);
|
|
/// Opens the given file in the given mode.
|
|
|
|
void openHandle(NativeHandle fd, std::ios::openmode mode);
|
|
/// Take ownership of the given file descriptor.
|
|
|
|
bool close();
|
|
/// Closes the File stream buffer. Returns true if successful,
|
|
/// false otherwise.
|
|
|
|
std::streampos seekoff(std::streamoff off, std::ios::seekdir dir, std::ios::openmode mode = std::ios::in | std::ios::out);
|
|
/// Change position by offset, according to way and mode.
|
|
|
|
std::streampos seekpos(std::streampos pos, std::ios::openmode mode = std::ios::in | std::ios::out);
|
|
/// Change to specified position, according to mode.
|
|
|
|
void flushToDisk();
|
|
/// Forces buffered data to be written to the disk
|
|
|
|
NativeHandle nativeHandle() const;
|
|
/// Returns native file descriptor handle
|
|
|
|
Poco::UInt64 size() const;
|
|
/// Returns file size
|
|
|
|
protected:
|
|
enum
|
|
{
|
|
BUFFER_SIZE = 4096
|
|
};
|
|
|
|
int readFromDevice(char* buffer, std::streamsize length);
|
|
int writeToDevice(const char* buffer, std::streamsize length);
|
|
|
|
private:
|
|
std::string _path;
|
|
NativeHandle _fd;
|
|
std::streamoff _pos;
|
|
};
|
|
|
|
|
|
} // namespace Poco
|
|
|
|
|
|
#endif // Foundation_FileStream_WIN32_INCLUDED
|