/* Copyright (C) 2007 The gtkmm Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see .
*/
#include
#include
#include
_DEFS(giomm,gio)
_PINCLUDE(giomm/private/inputstream_p.h)
namespace Gio
{
/**
* UnixInputStream implements InputStream for reading from a unix file
* descriptor, including asynchronous operations. The file descriptor must be
* selectable, so it doesn't work with opened files.
*
* @ingroup Streams
*
* @newin{2,16}
*/
class GIOMM_API UnixInputStream
: public Gio::InputStream, public PollableInputStream, public FileDescriptorBased
{
_CLASS_GOBJECT(UnixInputStream, GUnixInputStream, G_UNIX_INPUT_STREAM, Gio::InputStream, GInputStream, , , GIOMM_API)
_IMPLEMENTS_INTERFACE(PollableInputStream)
_IMPLEMENTS_INTERFACE(FileDescriptorBased)
_GTKMMPROC_WIN32_NO_WRAP
protected:
_WRAP_CTOR(UnixInputStream(int fd, bool close_fd), g_unix_input_stream_new)
public:
_WRAP_CREATE(int fd, bool close_fd)
_WRAP_METHOD(void set_close_fd(bool close_fd = true), g_unix_input_stream_set_close_fd)
_WRAP_METHOD(bool get_close_fd() const, g_unix_input_stream_get_close_fd)
_WRAP_METHOD(int get_fd() const, g_unix_input_stream_get_fd)
_WRAP_PROPERTY("fd", int)
_WRAP_PROPERTY("close-fd", bool)
};
} // namespace Gio