#include <AbstractPipe.h>
Public Member Functions | |
const sk::util::Class | getClass () const |
Returns the object's class. | |
void | close () |
void | closeInput () |
void | closeOutput () |
FileDescriptorInputStream & | inputStream () const |
FileDescriptorOutputStream & | outputStream () const |
virtual Object & | self () |
Returns a reference to itself. | |
virtual const Object & | self () const |
Object * | clone () const |
Instantiates another object of the same class as a copy of itself. | |
virtual uint64_t | getId () const |
Returns a unique object id. | |
virtual const String | toString () const |
Returns a string representation of the object. By default, it returns the object's class and the objects's id. | |
virtual const String | inspect () const |
Returns a string containing human-readable representation of the object. | |
Protected Member Functions | |
AbstractPipe () | |
virtual | ~AbstractPipe () |
void | setInputFileDescriptor (int fd) |
void | setOutputFileDescriptor (int fd) |
void | setInputFileDescriptor (const sk::io::FileDescriptor &descriptor) |
void | setOutputFileDescriptor (const sk::io::FileDescriptor &descriptor) |
sk::io::AbstractPipe::AbstractPipe | ( | ) | [protected] |
virtual sk::io::AbstractPipe::~AbstractPipe | ( | ) | [protected, virtual] |
Object* sk::util::Object::clone | ( | ) | const [inherited] |
Instantiates another object of the same class as a copy of itself.
Reimplemented in sk::rt::logger::Destination, and sk::util::String.
void sk::io::AbstractPipe::close | ( | ) | [virtual] |
Implements sk::io::Pipe.
void sk::io::AbstractPipe::closeInput | ( | ) | [virtual] |
Implements sk::io::Pipe.
void sk::io::AbstractPipe::closeOutput | ( | ) | [virtual] |
Implements sk::io::Pipe.
const sk::util::Class sk::io::AbstractPipe::getClass | ( | ) | const [virtual] |
Returns the object's class.
Reimplemented from sk::util::Object.
Reimplemented in sk::io::AnonymousPipe.
virtual uint64_t sk::util::Object::getId | ( | ) | const [virtual, inherited] |
FileDescriptorInputStream& sk::io::AbstractPipe::inputStream | ( | ) | const [virtual] |
Implements sk::io::Pipe.
virtual const String sk::util::Object::inspect | ( | ) | const [virtual, inherited] |
Returns a string containing human-readable representation of the object.
Reimplemented in sk::rt::thread::AbstractLock, sk::rt::Thread, sk::util::Class, sk::util::Container, sk::util::slot::Pointer< T, Mixin >, sk::util::slot::Reference< T, Mixin >, sk::util::String, and sk::util::StringArray.
FileDescriptorOutputStream& sk::io::AbstractPipe::outputStream | ( | ) | const [virtual] |
Implements sk::io::Pipe.
virtual const Object& sk::util::Object::self | ( | ) | const [virtual, inherited] |
Reimplemented in sk::util::String.
virtual Object& sk::util::Object::self | ( | ) | [virtual, inherited] |
void sk::io::AbstractPipe::setInputFileDescriptor | ( | const sk::io::FileDescriptor & | descriptor | ) | [protected] |
void sk::io::AbstractPipe::setInputFileDescriptor | ( | int | fd | ) | [protected] |
void sk::io::AbstractPipe::setOutputFileDescriptor | ( | const sk::io::FileDescriptor & | descriptor | ) | [protected] |
void sk::io::AbstractPipe::setOutputFileDescriptor | ( | int | fd | ) | [protected] |
virtual const String sk::util::Object::toString | ( | ) | const [virtual, inherited] |
Returns a string representation of the object. By default, it returns the object's class and the objects's id.
Reimplemented in sk::rt::logger::Level, sk::rt::thread::State, sk::util::Boolean, sk::util::Class, sk::util::Container, sk::util::Pathname, and sk::util::String.