Improvde #include order consistency
[glib.git] / gio / gwin32inputstream.c
blob21af46865acf30141e6e80e8f4105fe3471268d4
1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2010 Red Hat, Inc.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library 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 GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Author: Alexander Larsson <alexl@redhat.com>
21 * Author: Tor Lillqvist <tml@iki.fi>
24 #include "config.h"
26 #include <windows.h>
28 #include <io.h>
30 #include <glib.h>
31 #include "gioerror.h"
32 #include "gsimpleasyncresult.h"
33 #include "gwin32inputstream.h"
34 #include "gcancellable.h"
35 #include "gasynchelper.h"
36 #include "glibintl.h"
39 /**
40 * SECTION:gwin32inputstream
41 * @short_description: Streaming input operations for Windows file handles
42 * @include: gio/gwin32inputstream.h
43 * @see_also: #GInputStream
45 * #GWin32InputStream implements #GInputStream for reading from a
46 * Windows file handle.
48 * Note that <filename>&lt;gio/gwin32inputstream.h&gt;</filename> belongs
49 * to the Windows-specific GIO interfaces, thus you have to use the
50 * <filename>gio-windows-2.0.pc</filename> pkg-config file when using it.
53 enum {
54 PROP_0,
55 PROP_HANDLE,
56 PROP_CLOSE_HANDLE
59 G_DEFINE_TYPE (GWin32InputStream, g_win32_input_stream, G_TYPE_INPUT_STREAM);
61 struct _GWin32InputStreamPrivate {
62 HANDLE handle;
63 gboolean close_handle;
66 static void g_win32_input_stream_set_property (GObject *object,
67 guint prop_id,
68 const GValue *value,
69 GParamSpec *pspec);
70 static void g_win32_input_stream_get_property (GObject *object,
71 guint prop_id,
72 GValue *value,
73 GParamSpec *pspec);
74 static gssize g_win32_input_stream_read (GInputStream *stream,
75 void *buffer,
76 gsize count,
77 GCancellable *cancellable,
78 GError **error);
79 static gboolean g_win32_input_stream_close (GInputStream *stream,
80 GCancellable *cancellable,
81 GError **error);
83 static void
84 g_win32_input_stream_finalize (GObject *object)
86 G_OBJECT_CLASS (g_win32_input_stream_parent_class)->finalize (object);
89 static void
90 g_win32_input_stream_class_init (GWin32InputStreamClass *klass)
92 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
93 GInputStreamClass *stream_class = G_INPUT_STREAM_CLASS (klass);
95 g_type_class_add_private (klass, sizeof (GWin32InputStreamPrivate));
97 gobject_class->get_property = g_win32_input_stream_get_property;
98 gobject_class->set_property = g_win32_input_stream_set_property;
99 gobject_class->finalize = g_win32_input_stream_finalize;
101 stream_class->read_fn = g_win32_input_stream_read;
102 stream_class->close_fn = g_win32_input_stream_close;
105 * GWin32InputStream:handle:
107 * The handle that the stream reads from.
109 * Since: 2.26
111 g_object_class_install_property (gobject_class,
112 PROP_HANDLE,
113 g_param_spec_pointer ("handle",
114 P_("File handle"),
115 P_("The file handle to read from"),
116 G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
119 * GWin32InputStream:close-handle:
121 * Whether to close the file handle when the stream is closed.
123 * Since: 2.26
125 g_object_class_install_property (gobject_class,
126 PROP_CLOSE_HANDLE,
127 g_param_spec_boolean ("close-handle",
128 P_("Close file handle"),
129 P_("Whether to close the file handle when the stream is closed"),
130 TRUE,
131 G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
134 static void
135 g_win32_input_stream_set_property (GObject *object,
136 guint prop_id,
137 const GValue *value,
138 GParamSpec *pspec)
140 GWin32InputStream *win32_stream;
142 win32_stream = G_WIN32_INPUT_STREAM (object);
144 switch (prop_id)
146 case PROP_HANDLE:
147 win32_stream->priv->handle = g_value_get_pointer (value);
148 break;
149 case PROP_CLOSE_HANDLE:
150 win32_stream->priv->close_handle = g_value_get_boolean (value);
151 break;
152 default:
153 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
154 break;
158 static void
159 g_win32_input_stream_get_property (GObject *object,
160 guint prop_id,
161 GValue *value,
162 GParamSpec *pspec)
164 GWin32InputStream *win32_stream;
166 win32_stream = G_WIN32_INPUT_STREAM (object);
168 switch (prop_id)
170 case PROP_HANDLE:
171 g_value_set_pointer (value, win32_stream->priv->handle);
172 break;
173 case PROP_CLOSE_HANDLE:
174 g_value_set_boolean (value, win32_stream->priv->close_handle);
175 break;
176 default:
177 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
181 static void
182 g_win32_input_stream_init (GWin32InputStream *win32_stream)
184 win32_stream->priv = G_TYPE_INSTANCE_GET_PRIVATE (win32_stream,
185 G_TYPE_WIN32_INPUT_STREAM,
186 GWin32InputStreamPrivate);
188 win32_stream->priv->handle = NULL;
189 win32_stream->priv->close_handle = TRUE;
193 * g_win32_input_stream_new:
194 * @handle: a Win32 file handle
195 * @close_handle: %TRUE to close the handle when done
197 * Creates a new #GWin32InputStream for the given @handle.
199 * If @close_handle is %TRUE, the handle will be closed
200 * when the stream is closed.
202 * Note that "handle" here means a Win32 HANDLE, not a "file descriptor"
203 * as used in the Windows C libraries.
205 * Returns: a new #GWin32InputStream
207 GInputStream *
208 g_win32_input_stream_new (void *handle,
209 gboolean close_handle)
211 GWin32InputStream *stream;
213 g_return_val_if_fail (handle != NULL, NULL);
215 stream = g_object_new (G_TYPE_WIN32_INPUT_STREAM,
216 "handle", handle,
217 "close-handle", close_handle,
218 NULL);
220 return G_INPUT_STREAM (stream);
224 * g_win32_input_stream_set_close_handle:
225 * @stream: a #GWin32InputStream
226 * @close_handle: %TRUE to close the handle when done
228 * Sets whether the handle of @stream shall be closed
229 * when the stream is closed.
231 * Since: 2.26
233 void
234 g_win32_input_stream_set_close_handle (GWin32InputStream *stream,
235 gboolean close_handle)
237 g_return_if_fail (G_IS_WIN32_INPUT_STREAM (stream));
239 close_handle = close_handle != FALSE;
240 if (stream->priv->close_handle != close_handle)
242 stream->priv->close_handle = close_handle;
243 g_object_notify (G_OBJECT (stream), "close-handle");
248 * g_win32_input_stream_get_close_handle:
249 * @stream: a #GWin32InputStream
251 * Returns whether the handle of @stream will be
252 * closed when the stream is closed.
254 * Return value: %TRUE if the handle is closed when done
256 * Since: 2.26
258 gboolean
259 g_win32_input_stream_get_close_handle (GWin32InputStream *stream)
261 g_return_val_if_fail (G_IS_WIN32_INPUT_STREAM (stream), FALSE);
263 return stream->priv->close_handle;
267 * g_win32_input_stream_get_handle:
268 * @stream: a #GWin32InputStream
270 * Return the Windows file handle that the stream reads from.
272 * Return value: The file handle of @stream
274 * Since: 2.26
276 void *
277 g_win32_input_stream_get_handle (GWin32InputStream *stream)
279 g_return_val_if_fail (G_IS_WIN32_INPUT_STREAM (stream), NULL);
281 return stream->priv->handle;
284 static gssize
285 g_win32_input_stream_read (GInputStream *stream,
286 void *buffer,
287 gsize count,
288 GCancellable *cancellable,
289 GError **error)
291 GWin32InputStream *win32_stream;
292 BOOL res;
293 DWORD nbytes, nread;
294 OVERLAPPED overlap = { 0, };
295 gssize retval = -1;
297 win32_stream = G_WIN32_INPUT_STREAM (stream);
299 if (g_cancellable_set_error_if_cancelled (cancellable, error))
300 return -1;
302 if (count > G_MAXINT)
303 nbytes = G_MAXINT;
304 else
305 nbytes = count;
307 overlap.hEvent = CreateEvent (NULL, FALSE, FALSE, NULL);
308 g_return_val_if_fail (overlap.hEvent != NULL, -1);
310 res = ReadFile (win32_stream->priv->handle, buffer, nbytes, &nread, &overlap);
311 if (res)
312 retval = nread;
313 else
315 int errsv = GetLastError ();
317 if (errsv == ERROR_IO_PENDING &&
318 _g_win32_overlap_wait_result (win32_stream->priv->handle,
319 &overlap, &nread, cancellable))
321 retval = nread;
322 goto end;
325 if (g_cancellable_set_error_if_cancelled (cancellable, error))
326 goto end;
328 errsv = GetLastError ();
329 if (errsv == ERROR_MORE_DATA)
331 /* If a named pipe is being read in message mode and the
332 * next message is longer than the nNumberOfBytesToRead
333 * parameter specifies, ReadFile returns FALSE and
334 * GetLastError returns ERROR_MORE_DATA */
335 retval = nread;
336 goto end;
338 else if (errsv == ERROR_HANDLE_EOF ||
339 errsv == ERROR_BROKEN_PIPE)
341 /* TODO: the other end of a pipe may call the WriteFile
342 * function with nNumberOfBytesToWrite set to zero. In this
343 * case, it's not possible for the caller to know if it's
344 * broken pipe or a read of 0. Perhaps we should add a
345 * is_broken flag for this win32 case.. */
346 retval = 0;
348 else
350 gchar *emsg;
352 emsg = g_win32_error_message (errsv);
353 g_set_error (error, G_IO_ERROR,
354 g_io_error_from_win32_error (errsv),
355 _("Error reading from handle: %s"),
356 emsg);
357 g_free (emsg);
361 end:
362 CloseHandle (overlap.hEvent);
363 return retval;
366 static gboolean
367 g_win32_input_stream_close (GInputStream *stream,
368 GCancellable *cancellable,
369 GError **error)
371 GWin32InputStream *win32_stream;
372 BOOL res;
374 win32_stream = G_WIN32_INPUT_STREAM (stream);
376 if (!win32_stream->priv->close_handle)
377 return TRUE;
379 res = CloseHandle (win32_stream->priv->handle);
380 if (!res)
382 int errsv = GetLastError ();
383 gchar *emsg = g_win32_error_message (errsv);
385 g_set_error (error, G_IO_ERROR,
386 g_io_error_from_win32_error (errsv),
387 _("Error closing handle: %s"),
388 emsg);
389 g_free (emsg);
390 return FALSE;
393 return TRUE;