1 /* 2 * This file is part of gtkD. 3 * 4 * gtkD is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU Lesser General Public License 6 * as published by the Free Software Foundation; either version 3 7 * of the License, or (at your option) any later version, with 8 * some exceptions, please read the COPYING file. 9 * 10 * gtkD is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU Lesser General Public License for more details. 14 * 15 * You should have received a copy of the GNU Lesser General Public License 16 * along with gtkD; if not, write to the Free Software 17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110, USA 18 */ 19 20 // generated automatically - do not change 21 // find conversion definition on APILookup.txt 22 // implement new conversion functionalities on the wrap.utils pakage 23 24 25 module gio.PollableInputStreamIF; 26 27 private import gio.Cancellable; 28 private import gio.c.functions; 29 public import gio.c.types; 30 private import glib.ErrorG; 31 private import glib.GException; 32 private import glib.Source; 33 public import gtkc.giotypes; 34 35 36 /** 37 * #GPollableInputStream is implemented by #GInputStreams that 38 * can be polled for readiness to read. This can be used when 39 * interfacing with a non-GIO API that expects 40 * UNIX-file-descriptor-style asynchronous I/O rather than GIO-style. 41 * 42 * Since: 2.28 43 */ 44 public interface PollableInputStreamIF{ 45 /** Get the main Gtk struct */ 46 public GPollableInputStream* getPollableInputStreamStruct(bool transferOwnership = false); 47 48 /** the main Gtk struct as a void* */ 49 protected void* getStruct(); 50 51 52 /** */ 53 public static GType getType() 54 { 55 return g_pollable_input_stream_get_type(); 56 } 57 58 /** 59 * Checks if @stream is actually pollable. Some classes may implement 60 * #GPollableInputStream but have only certain instances of that class 61 * be pollable. If this method returns %FALSE, then the behavior of 62 * other #GPollableInputStream methods is undefined. 63 * 64 * For any given stream, the value returned by this method is constant; 65 * a stream cannot switch from pollable to non-pollable or vice versa. 66 * 67 * Returns: %TRUE if @stream is pollable, %FALSE if not. 68 * 69 * Since: 2.28 70 */ 71 public bool canPoll(); 72 73 /** 74 * Creates a #GSource that triggers when @stream can be read, or 75 * @cancellable is triggered or an error occurs. The callback on the 76 * source is of the #GPollableSourceFunc type. 77 * 78 * As with g_pollable_input_stream_is_readable(), it is possible that 79 * the stream may not actually be readable even after the source 80 * triggers, so you should use g_pollable_input_stream_read_nonblocking() 81 * rather than g_input_stream_read() from the callback. 82 * 83 * Params: 84 * cancellable = a #GCancellable, or %NULL 85 * 86 * Returns: a new #GSource 87 * 88 * Since: 2.28 89 */ 90 public Source createSource(Cancellable cancellable); 91 92 /** 93 * Checks if @stream can be read. 94 * 95 * Note that some stream types may not be able to implement this 100% 96 * reliably, and it is possible that a call to g_input_stream_read() 97 * after this returns %TRUE would still block. To guarantee 98 * non-blocking behavior, you should always use 99 * g_pollable_input_stream_read_nonblocking(), which will return a 100 * %G_IO_ERROR_WOULD_BLOCK error rather than blocking. 101 * 102 * Returns: %TRUE if @stream is readable, %FALSE if not. If an error 103 * has occurred on @stream, this will result in 104 * g_pollable_input_stream_is_readable() returning %TRUE, and the 105 * next attempt to read will return the error. 106 * 107 * Since: 2.28 108 */ 109 public bool isReadable(); 110 111 /** 112 * Attempts to read up to @count bytes from @stream into @buffer, as 113 * with g_input_stream_read(). If @stream is not currently readable, 114 * this will immediately return %G_IO_ERROR_WOULD_BLOCK, and you can 115 * use g_pollable_input_stream_create_source() to create a #GSource 116 * that will be triggered when @stream is readable. 117 * 118 * Note that since this method never blocks, you cannot actually 119 * use @cancellable to cancel it. However, it will return an error 120 * if @cancellable has already been cancelled when you call, which 121 * may happen if you call this method after a source triggers due 122 * to having been cancelled. 123 * 124 * Params: 125 * buffer = a buffer to 126 * read data into (which should be at least @count bytes long). 127 * cancellable = a #GCancellable, or %NULL 128 * 129 * Returns: the number of bytes read, or -1 on error (including 130 * %G_IO_ERROR_WOULD_BLOCK). 131 * 132 * Throws: GException on failure. 133 */ 134 public ptrdiff_t readNonblocking(ubyte[] buffer, Cancellable cancellable); 135 }