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.FileInputStream; 26 27 private import gio.AsyncResultIF; 28 private import gio.Cancellable; 29 private import gio.FileInfo; 30 private import gio.InputStream; 31 private import gio.SeekableIF; 32 private import gio.SeekableT; 33 private import glib.ErrorG; 34 private import glib.GException; 35 private import glib.Str; 36 private import gobject.ObjectG; 37 private import gtkc.gio; 38 public import gtkc.giotypes; 39 40 41 /** 42 * GFileInputStream provides input streams that take their 43 * content from a file. 44 * 45 * GFileInputStream implements #GSeekable, which allows the input 46 * stream to jump to arbitrary positions in the file, provided the 47 * filesystem of the file allows it. To find the position of a file 48 * input stream, use g_seekable_tell(). To find out if a file input 49 * stream supports seeking, use g_seekable_can_seek(). 50 * To position a file input stream, use g_seekable_seek(). 51 */ 52 public class FileInputStream : InputStream, SeekableIF 53 { 54 /** the main Gtk struct */ 55 protected GFileInputStream* gFileInputStream; 56 57 /** Get the main Gtk struct */ 58 public GFileInputStream* getFileInputStreamStruct() 59 { 60 return gFileInputStream; 61 } 62 63 /** the main Gtk struct as a void* */ 64 protected override void* getStruct() 65 { 66 return cast(void*)gFileInputStream; 67 } 68 69 protected override void setStruct(GObject* obj) 70 { 71 gFileInputStream = cast(GFileInputStream*)obj; 72 super.setStruct(obj); 73 } 74 75 /** 76 * Sets our main struct and passes it to the parent class. 77 */ 78 public this (GFileInputStream* gFileInputStream, bool ownedRef = false) 79 { 80 this.gFileInputStream = gFileInputStream; 81 super(cast(GInputStream*)gFileInputStream, ownedRef); 82 } 83 84 // add the Seekable capabilities 85 mixin SeekableT!(GFileInputStream); 86 87 88 /** */ 89 public static GType getType() 90 { 91 return g_file_input_stream_get_type(); 92 } 93 94 /** 95 * Queries a file input stream the given @attributes. This function blocks 96 * while querying the stream. For the asynchronous (non-blocking) version 97 * of this function, see g_file_input_stream_query_info_async(). While the 98 * stream is blocked, the stream will set the pending flag internally, and 99 * any other operations on the stream will fail with %G_IO_ERROR_PENDING. 100 * 101 * Params: 102 * attributes = a file attribute query string. 103 * cancellable = optional #GCancellable object, %NULL to ignore. 104 * 105 * Return: a #GFileInfo, or %NULL on error. 106 * 107 * Throws: GException on failure. 108 */ 109 public FileInfo queryInfo(string attributes, Cancellable cancellable) 110 { 111 GError* err = null; 112 113 auto p = g_file_input_stream_query_info(gFileInputStream, Str.toStringz(attributes), (cancellable is null) ? null : cancellable.getCancellableStruct(), &err); 114 115 if (err !is null) 116 { 117 throw new GException( new ErrorG(err) ); 118 } 119 120 if(p is null) 121 { 122 return null; 123 } 124 125 return ObjectG.getDObject!(FileInfo)(cast(GFileInfo*) p, true); 126 } 127 128 /** 129 * Queries the stream information asynchronously. 130 * When the operation is finished @callback will be called. 131 * You can then call g_file_input_stream_query_info_finish() 132 * to get the result of the operation. 133 * 134 * For the synchronous version of this function, 135 * see g_file_input_stream_query_info(). 136 * 137 * If @cancellable is not %NULL, then the operation can be cancelled by 138 * triggering the cancellable object from another thread. If the operation 139 * was cancelled, the error %G_IO_ERROR_CANCELLED will be set 140 * 141 * Params: 142 * attributes = a file attribute query string. 143 * ioPriority = the [I/O priority][io-priority] of the request 144 * cancellable = optional #GCancellable object, %NULL to ignore. 145 * callback = callback to call when the request is satisfied 146 * userData = the data to pass to callback function 147 */ 148 public void queryInfoAsync(string attributes, int ioPriority, Cancellable cancellable, GAsyncReadyCallback callback, void* userData) 149 { 150 g_file_input_stream_query_info_async(gFileInputStream, Str.toStringz(attributes), ioPriority, (cancellable is null) ? null : cancellable.getCancellableStruct(), callback, userData); 151 } 152 153 /** 154 * Finishes an asynchronous info query operation. 155 * 156 * Params: 157 * result = a #GAsyncResult. 158 * 159 * Return: #GFileInfo. 160 * 161 * Throws: GException on failure. 162 */ 163 public FileInfo queryInfoFinish(AsyncResultIF result) 164 { 165 GError* err = null; 166 167 auto p = g_file_input_stream_query_info_finish(gFileInputStream, (result is null) ? null : result.getAsyncResultStruct(), &err); 168 169 if (err !is null) 170 { 171 throw new GException( new ErrorG(err) ); 172 } 173 174 if(p is null) 175 { 176 return null; 177 } 178 179 return ObjectG.getDObject!(FileInfo)(cast(GFileInfo*) p, true); 180 } 181 }