bpf::system::Process::PipeStream class final

Class to represent a pipe stream to be used for process link across platforms

Base classes

class bpf::io::IInputStream
class bpf::io::IOutputStream

Constructors, destructors, conversion operators

PipeStream(const PipeStream& other) deleted

Public functions

auto operator=(const PipeStream& other) -> PipeStream& deleted
auto Read(void* buf, fsize bufsize) -> fsize final
auto Write(const void* buf, fsize bufsize) -> fsize final
void Close()

Function documentation

bpf::system::Process::PipeStream::PipeStream(const PipeStream& other) deleted

Do not allow copy construction

PipeStream& bpf::system::Process::PipeStream::operator=(const PipeStream& other) deleted

Do not allow copy assignment

fsize bpf::system::Process::PipeStream::Read(void* buf, fsize bufsize) final

Parameters
buf buffer to receive the read bytes
bufsize the size of the receiving buffer
Returns number of bytes read
Exceptions
IOException in case of system error

Reads bytes from this stream, no buffering is performed

fsize bpf::system::Process::PipeStream::Write(const void* buf, fsize bufsize) final

Parameters
buf the buffer with the bytes to write
bufsize the size of the buffer
Returns number of bytes written
Exceptions
IOException in case of system error

Writes bytes to this stream, no buffering is performed

void bpf::system::Process::PipeStream::Close()

Closes the pipe