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.FileIOStream; 26 27 private import gio.AsyncResultIF; 28 private import gio.Cancellable; 29 private import gio.FileInfo; 30 private import gio.IOStream; 31 private import gio.SeekableIF; 32 private import gio.SeekableT; 33 private import gio.c.functions; 34 public import gio.c.types; 35 private import glib.ErrorG; 36 private import glib.GException; 37 private import glib.Str; 38 private import gobject.ObjectG; 39 public import gtkc.giotypes; 40 41 42 /** 43 * GFileIOStream provides io streams that both read and write to the same 44 * file handle. 45 * 46 * GFileIOStream implements #GSeekable, which allows the io 47 * stream to jump to arbitrary positions in the file and to truncate 48 * the file, provided the filesystem of the file supports these 49 * operations. 50 * 51 * To find the position of a file io stream, use 52 * g_seekable_tell(). 53 * 54 * To find out if a file io stream supports seeking, use g_seekable_can_seek(). 55 * To position a file io stream, use g_seekable_seek(). 56 * To find out if a file io stream supports truncating, use 57 * g_seekable_can_truncate(). To truncate a file io 58 * stream, use g_seekable_truncate(). 59 * 60 * The default implementation of all the #GFileIOStream operations 61 * and the implementation of #GSeekable just call into the same operations 62 * on the output stream. 63 */ 64 public class FileIOStream : IOStream, SeekableIF 65 { 66 /** the main Gtk struct */ 67 protected GFileIOStream* gFileIOStream; 68 69 /** Get the main Gtk struct */ 70 public GFileIOStream* getFileIOStreamStruct(bool transferOwnership = false) 71 { 72 if (transferOwnership) 73 ownedRef = false; 74 return gFileIOStream; 75 } 76 77 /** the main Gtk struct as a void* */ 78 protected override void* getStruct() 79 { 80 return cast(void*)gFileIOStream; 81 } 82 83 /** 84 * Sets our main struct and passes it to the parent class. 85 */ 86 public this (GFileIOStream* gFileIOStream, bool ownedRef = false) 87 { 88 this.gFileIOStream = gFileIOStream; 89 super(cast(GIOStream*)gFileIOStream, ownedRef); 90 } 91 92 // add the Seekable capabilities 93 mixin SeekableT!(GFileIOStream); 94 95 96 /** */ 97 public static GType getType() 98 { 99 return g_file_io_stream_get_type(); 100 } 101 102 /** 103 * Gets the entity tag for the file when it has been written. 104 * This must be called after the stream has been written 105 * and closed, as the etag can change while writing. 106 * 107 * Returns: the entity tag for the stream. 108 * 109 * Since: 2.22 110 */ 111 public string getEtag() 112 { 113 auto retStr = g_file_io_stream_get_etag(gFileIOStream); 114 115 scope(exit) Str.freeString(retStr); 116 return Str.toString(retStr); 117 } 118 119 /** 120 * Queries a file io stream for the given @attributes. 121 * This function blocks while querying the stream. For the asynchronous 122 * version of this function, see g_file_io_stream_query_info_async(). 123 * While the stream is blocked, the stream will set the pending flag 124 * internally, and any other operations on the stream will fail with 125 * %G_IO_ERROR_PENDING. 126 * 127 * Can fail if the stream was already closed (with @error being set to 128 * %G_IO_ERROR_CLOSED), the stream has pending operations (with @error being 129 * set to %G_IO_ERROR_PENDING), or if querying info is not supported for 130 * the stream's interface (with @error being set to %G_IO_ERROR_NOT_SUPPORTED). I 131 * all cases of failure, %NULL will be returned. 132 * 133 * If @cancellable is not %NULL, then the operation can be cancelled by 134 * triggering the cancellable object from another thread. If the operation 135 * was cancelled, the error %G_IO_ERROR_CANCELLED will be set, and %NULL will 136 * be returned. 137 * 138 * Params: 139 * attributes = a file attribute query string. 140 * cancellable = optional #GCancellable object, %NULL to ignore. 141 * 142 * Returns: a #GFileInfo for the @stream, or %NULL on error. 143 * 144 * Since: 2.22 145 * 146 * Throws: GException on failure. 147 */ 148 public FileInfo queryInfo(string attributes, Cancellable cancellable) 149 { 150 GError* err = null; 151 152 auto p = g_file_io_stream_query_info(gFileIOStream, Str.toStringz(attributes), (cancellable is null) ? null : cancellable.getCancellableStruct(), &err); 153 154 if (err !is null) 155 { 156 throw new GException( new ErrorG(err) ); 157 } 158 159 if(p is null) 160 { 161 return null; 162 } 163 164 return ObjectG.getDObject!(FileInfo)(cast(GFileInfo*) p, true); 165 } 166 167 /** 168 * Asynchronously queries the @stream for a #GFileInfo. When completed, 169 * @callback will be called with a #GAsyncResult which can be used to 170 * finish the operation with g_file_io_stream_query_info_finish(). 171 * 172 * For the synchronous version of this function, see 173 * g_file_io_stream_query_info(). 174 * 175 * Params: 176 * attributes = a file attribute query string. 177 * ioPriority = the [I/O priority][gio-GIOScheduler] of the request 178 * cancellable = optional #GCancellable object, %NULL to ignore. 179 * callback = callback to call when the request is satisfied 180 * userData = the data to pass to callback function 181 * 182 * Since: 2.22 183 */ 184 public void queryInfoAsync(string attributes, int ioPriority, Cancellable cancellable, GAsyncReadyCallback callback, void* userData) 185 { 186 g_file_io_stream_query_info_async(gFileIOStream, Str.toStringz(attributes), ioPriority, (cancellable is null) ? null : cancellable.getCancellableStruct(), callback, userData); 187 } 188 189 /** 190 * Finalizes the asynchronous query started 191 * by g_file_io_stream_query_info_async(). 192 * 193 * Params: 194 * result = a #GAsyncResult. 195 * 196 * Returns: A #GFileInfo for the finished query. 197 * 198 * Since: 2.22 199 * 200 * Throws: GException on failure. 201 */ 202 public FileInfo queryInfoFinish(AsyncResultIF result) 203 { 204 GError* err = null; 205 206 auto p = g_file_io_stream_query_info_finish(gFileIOStream, (result is null) ? null : result.getAsyncResultStruct(), &err); 207 208 if (err !is null) 209 { 210 throw new GException( new ErrorG(err) ); 211 } 212 213 if(p is null) 214 { 215 return null; 216 } 217 218 return ObjectG.getDObject!(FileInfo)(cast(GFileInfo*) p, true); 219 } 220 }