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