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