1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
includefile(include/header)
COMMENT(manpage, section, releasedate, archive, short name)
manpage(FBB::IFdBuf)(3bobcat)(_CurYrs_)(libbobcat-dev__CurVers_)
(File Descriptor Input Stream Buffer)
manpagename(FBB::IFdBuf)
(Input stream buffer initialized by a file descriptor)
manpagesynopsis()
bf(#include <bobcat/ifdbuf>)nl()
Linking option: tt(-lbobcat)
manpagedescription()
bf(FBB::IFdBuf) objects may be used as a tt(std::streambuf) of
tt(std::istream) objects to allow extractions from a file descriptor.
File descriptors are not defined within the context of bf(C++),
but they can be used on operating systems that support the concept. Realize
that using file descriptors introduces operating system dependencies.
includefile(include/namespace)
manpagesection(INHERITS FROM)
bf(std::streambuf)
manpagesection(ENUMERATION)
The public enumeration tt(Mode) defined in the class tt(FBB::IFdStreamBuf)
has the following values:
itemization(
it() bf(CLOSE_FD), indicating that the file descriptor used by the object
must be closed;
it() bf(KEEP_FD) (the default) indicating that the file descriptor used by
the object must not be closed.
)
manpagesection(CONSTRUCTORS)
itemization(
itb(IFdBuf())
This constructor initializes the streambuf, without associating it to
a file descriptor, and without using buffering. The member tt(reset) can be
used subsequently to associate the object with a file descriptor and
optionally a buffer size. When the object is destroyed or if the mode-less
overloaded version of the tt(reset) member is called, the file descriptor is
not closed.
itb(IFdBuf(Mode mode))
This constructor initializes the streambuf, without associating it to
a file descriptor, and without using buffering. The member tt(reset) can be
used subsequently to associate the object with a file descriptor and
optionally a buffer size. When the object is destroyed or if the mode-less
overloaded version of the member tt(reset) is called, the tt(Mode) argument
determines whether the file descriptor will be closed or will remain open.
itb(IFdBuf(int fd, size_t n = 1))
This constructor initializes the streambuf, associating it to file
descriptor tt(fd), and an optional unget buffer size (by default having size
1). When the object is destroyed or if the mode-less overloaded version of
the member tt(reset) is called, the file descriptor is not closed.
itb(IFdBuf(int fd, Mode mode, size_t n = 1))
This constructor initializes the streambuf, associating it to file
descriptor tt(fd), and an optional unget buffer size (by default having size
1). When the object is destroyed or if the mode-less
overloaded version of the tt(reset) member is called, the tt(Mode) argument
determines whether the file descriptor will be closed or will remain open.
)
Copy and move constructors (and assignment operators) are not available.
manpagesection(MEMBER FUNCTIONS)
All members of tt(std::streambuf) are
available, as tt(FBB::IFdBuf) inherits from this class.
itemization(
itb(void close())
The file descriptor used by the tt(IFdBuf) is closed,
irrespective of the tt(Mode) that was specified when the tt(IFdBuf)
object was constructed. Following tt(close) the tt(IFdBuf) object can
no longer be used until one of its tt(reset) members has been called.
itb(int fd() const)
The file descriptor used by the tt(IFdBuf) object is returned.
If the tt(OFdBuf) is not associated with a file descriptor -1 is
returned.
itb(void reset(int fd, size_t n = 1))
The streambuf is (re)initialized, using file descriptor tt(fd), and an
optional unget buffer size (by default having size 1). When called repeatedly,
the tt(Mode) specification used whem the object was constructed determines
whether the file descriptor will be closed or will remain open.
itb(void reset(int fd, Mode mode, size_t n = 1))
The streambuf is (re)initialized, using file descriptor tt(fd), a file
descriptor closing parameter and an optional unget buffer size (by default
having size 1). Depending on the tt(Mode) argument the object's currently used
file descriptor will be closed or will remain open when the tt(IFdBuf)
object is destroyed.
)
manpagesection(EXAMPLE)
verbinclude(../../ifdbuf/driver/driver.cc)
manpagefiles()
em(bobcat/ifdbuf) - defines the class interface
manpageseealso()
bf(bobcat)(7), bf(ifdstream)(3bobcat), bf(ofdbuf)(3bobcat),
bf(std::streambuf)
manpagebugs()
The member tt(xsgetn(char *dest, std::streamsize n)) sets
tt(istream::good()) to tt(false) when fewer bytes than tt(n) were read using
tt(istream::read()). Also see tt(xsgetn)'s description.
Note that by default the provided file descriptors remain open. The
complementary class bf(ofdbuf)(3bobcat) by default em(closes) the file
descriptor.
includefile(include/trailer)
|