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, see <http://www.gnu.org/licenses/>.
18 * Author: Alexander Larsson <alexl@redhat.com>
19 * Author: Tor Lillqvist <tml@iki.fi>
30 #include "gsimpleasyncresult.h"
31 #include "gwin32inputstream.h"
32 #include "giowin32-priv.h"
33 #include "gcancellable.h"
34 #include "gasynchelper.h"
39 * SECTION:gwin32inputstream
40 * @short_description: Streaming input operations for Windows file handles
41 * @include: gio/gwin32inputstream.h
42 * @see_also: #GInputStream
44 * #GWin32InputStream implements #GInputStream for reading from a
45 * Windows file handle.
47 * Note that `<gio/gwin32inputstream.h>` belongs to the Windows-specific GIO
48 * interfaces, thus you have to use the `gio-windows-2.0.pc` pkg-config file
58 struct _GWin32InputStreamPrivate {
60 gboolean close_handle;
64 G_DEFINE_TYPE_WITH_PRIVATE (GWin32InputStream, g_win32_input_stream, G_TYPE_INPUT_STREAM)
66 static void g_win32_input_stream_set_property (GObject *object,
70 static void g_win32_input_stream_get_property (GObject *object,
74 static gssize g_win32_input_stream_read (GInputStream *stream,
77 GCancellable *cancellable,
79 static gboolean g_win32_input_stream_close (GInputStream *stream,
80 GCancellable *cancellable,
84 g_win32_input_stream_class_init (GWin32InputStreamClass *klass)
86 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
87 GInputStreamClass *stream_class = G_INPUT_STREAM_CLASS (klass);
89 gobject_class->get_property = g_win32_input_stream_get_property;
90 gobject_class->set_property = g_win32_input_stream_set_property;
92 stream_class->read_fn = g_win32_input_stream_read;
93 stream_class->close_fn = g_win32_input_stream_close;
96 * GWin32InputStream:handle:
98 * The handle that the stream reads from.
102 g_object_class_install_property (gobject_class,
104 g_param_spec_pointer ("handle",
106 P_("The file handle to read from"),
107 G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
110 * GWin32InputStream:close-handle:
112 * Whether to close the file handle when the stream is closed.
116 g_object_class_install_property (gobject_class,
118 g_param_spec_boolean ("close-handle",
119 P_("Close file handle"),
120 P_("Whether to close the file handle when the stream is closed"),
122 G_PARAM_READABLE | G_PARAM_WRITABLE | G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK | G_PARAM_STATIC_BLURB));
126 g_win32_input_stream_set_property (GObject *object,
131 GWin32InputStream *win32_stream;
133 win32_stream = G_WIN32_INPUT_STREAM (object);
138 win32_stream->priv->handle = g_value_get_pointer (value);
140 case PROP_CLOSE_HANDLE:
141 win32_stream->priv->close_handle = g_value_get_boolean (value);
144 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
150 g_win32_input_stream_get_property (GObject *object,
155 GWin32InputStream *win32_stream;
157 win32_stream = G_WIN32_INPUT_STREAM (object);
162 g_value_set_pointer (value, win32_stream->priv->handle);
164 case PROP_CLOSE_HANDLE:
165 g_value_set_boolean (value, win32_stream->priv->close_handle);
168 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
173 g_win32_input_stream_init (GWin32InputStream *win32_stream)
175 win32_stream->priv = g_win32_input_stream_get_instance_private (win32_stream);
176 win32_stream->priv->handle = NULL;
177 win32_stream->priv->close_handle = TRUE;
178 win32_stream->priv->fd = -1;
182 * g_win32_input_stream_new:
183 * @handle: a Win32 file handle
184 * @close_handle: %TRUE to close the handle when done
186 * Creates a new #GWin32InputStream for the given @handle.
188 * If @close_handle is %TRUE, the handle will be closed
189 * when the stream is closed.
191 * Note that "handle" here means a Win32 HANDLE, not a "file descriptor"
192 * as used in the Windows C libraries.
194 * Returns: a new #GWin32InputStream
197 g_win32_input_stream_new (void *handle,
198 gboolean close_handle)
200 GWin32InputStream *stream;
202 g_return_val_if_fail (handle != NULL, NULL);
204 stream = g_object_new (G_TYPE_WIN32_INPUT_STREAM,
206 "close-handle", close_handle,
209 return G_INPUT_STREAM (stream);
213 * g_win32_input_stream_set_close_handle:
214 * @stream: a #GWin32InputStream
215 * @close_handle: %TRUE to close the handle when done
217 * Sets whether the handle of @stream shall be closed
218 * when the stream is closed.
223 g_win32_input_stream_set_close_handle (GWin32InputStream *stream,
224 gboolean close_handle)
226 g_return_if_fail (G_IS_WIN32_INPUT_STREAM (stream));
228 close_handle = close_handle != FALSE;
229 if (stream->priv->close_handle != close_handle)
231 stream->priv->close_handle = close_handle;
232 g_object_notify (G_OBJECT (stream), "close-handle");
237 * g_win32_input_stream_get_close_handle:
238 * @stream: a #GWin32InputStream
240 * Returns whether the handle of @stream will be
241 * closed when the stream is closed.
243 * Returns: %TRUE if the handle is closed when done
248 g_win32_input_stream_get_close_handle (GWin32InputStream *stream)
250 g_return_val_if_fail (G_IS_WIN32_INPUT_STREAM (stream), FALSE);
252 return stream->priv->close_handle;
256 * g_win32_input_stream_get_handle:
257 * @stream: a #GWin32InputStream
259 * Return the Windows file handle that the stream reads from.
261 * Returns: The file handle of @stream
266 g_win32_input_stream_get_handle (GWin32InputStream *stream)
268 g_return_val_if_fail (G_IS_WIN32_INPUT_STREAM (stream), NULL);
270 return stream->priv->handle;
274 g_win32_input_stream_read (GInputStream *stream,
277 GCancellable *cancellable,
280 GWin32InputStream *win32_stream;
283 OVERLAPPED overlap = { 0, };
286 win32_stream = G_WIN32_INPUT_STREAM (stream);
288 if (g_cancellable_set_error_if_cancelled (cancellable, error))
291 if (count > G_MAXINT)
296 overlap.hEvent = CreateEvent (NULL, FALSE, FALSE, NULL);
297 g_return_val_if_fail (overlap.hEvent != NULL, -1);
299 res = ReadFile (win32_stream->priv->handle, buffer, nbytes, &nread, &overlap);
304 int errsv = GetLastError ();
306 if (errsv == ERROR_IO_PENDING &&
307 _g_win32_overlap_wait_result (win32_stream->priv->handle,
308 &overlap, &nread, cancellable))
314 if (g_cancellable_set_error_if_cancelled (cancellable, error))
317 errsv = GetLastError ();
318 if (errsv == ERROR_MORE_DATA)
320 /* If a named pipe is being read in message mode and the
321 * next message is longer than the nNumberOfBytesToRead
322 * parameter specifies, ReadFile returns FALSE and
323 * GetLastError returns ERROR_MORE_DATA */
327 else if (errsv == ERROR_HANDLE_EOF ||
328 errsv == ERROR_BROKEN_PIPE)
330 /* TODO: the other end of a pipe may call the WriteFile
331 * function with nNumberOfBytesToWrite set to zero. In this
332 * case, it's not possible for the caller to know if it's
333 * broken pipe or a read of 0. Perhaps we should add a
334 * is_broken flag for this win32 case.. */
341 emsg = g_win32_error_message (errsv);
342 g_set_error (error, G_IO_ERROR,
343 g_io_error_from_win32_error (errsv),
344 _("Error reading from handle: %s"),
351 CloseHandle (overlap.hEvent);
356 g_win32_input_stream_close (GInputStream *stream,
357 GCancellable *cancellable,
360 GWin32InputStream *win32_stream;
363 win32_stream = G_WIN32_INPUT_STREAM (stream);
365 if (!win32_stream->priv->close_handle)
368 if (win32_stream->priv->fd != -1)
370 if (close (win32_stream->priv->fd) < 0)
372 g_set_error_literal (error, G_IO_ERROR,
373 g_io_error_from_errno (errno),
380 res = CloseHandle (win32_stream->priv->handle);
383 int errsv = GetLastError ();
384 gchar *emsg = g_win32_error_message (errsv);
386 g_set_error (error, G_IO_ERROR,
387 g_io_error_from_win32_error (errsv),
388 _("Error closing handle: %s"),
399 g_win32_input_stream_new_from_fd (gint fd,
402 GWin32InputStream *win32_stream;
404 win32_stream = G_WIN32_INPUT_STREAM (g_win32_input_stream_new ((HANDLE) _get_osfhandle (fd), close_fd));
405 win32_stream->priv->fd = fd;
407 return (GInputStream*)win32_stream;