1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 2006-2007 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>
25 #include <sys/types.h>
34 #include <glib/gstdio.h>
36 #include "glocalfileinputstream.h"
37 #include "glocalfileinfo.h"
46 #define g_local_file_input_stream_get_type _g_local_file_input_stream_get_type
47 G_DEFINE_TYPE (GLocalFileInputStream, g_local_file_input_stream, G_TYPE_FILE_INPUT_STREAM);
49 struct _GLocalFileInputStreamPrivate {
53 static gssize g_local_file_input_stream_read (GInputStream *stream,
56 GCancellable *cancellable,
58 static gssize g_local_file_input_stream_skip (GInputStream *stream,
60 GCancellable *cancellable,
62 static gboolean g_local_file_input_stream_close (GInputStream *stream,
63 GCancellable *cancellable,
65 static goffset g_local_file_input_stream_tell (GFileInputStream *stream);
66 static gboolean g_local_file_input_stream_can_seek (GFileInputStream *stream);
67 static gboolean g_local_file_input_stream_seek (GFileInputStream *stream,
70 GCancellable *cancellable,
72 static GFileInfo *g_local_file_input_stream_query_info (GFileInputStream *stream,
74 GCancellable *cancellable,
78 g_local_file_input_stream_finalize (GObject *object)
80 GLocalFileInputStream *file;
82 file = G_LOCAL_FILE_INPUT_STREAM (object);
84 if (G_OBJECT_CLASS (g_local_file_input_stream_parent_class)->finalize)
85 (*G_OBJECT_CLASS (g_local_file_input_stream_parent_class)->finalize) (object);
89 g_local_file_input_stream_class_init (GLocalFileInputStreamClass *klass)
91 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
92 GInputStreamClass *stream_class = G_INPUT_STREAM_CLASS (klass);
93 GFileInputStreamClass *file_stream_class = G_FILE_INPUT_STREAM_CLASS (klass);
95 g_type_class_add_private (klass, sizeof (GLocalFileInputStreamPrivate));
97 gobject_class->finalize = g_local_file_input_stream_finalize;
99 stream_class->read_fn = g_local_file_input_stream_read;
100 stream_class->skip = g_local_file_input_stream_skip;
101 stream_class->close_fn = g_local_file_input_stream_close;
102 file_stream_class->tell = g_local_file_input_stream_tell;
103 file_stream_class->can_seek = g_local_file_input_stream_can_seek;
104 file_stream_class->seek = g_local_file_input_stream_seek;
105 file_stream_class->query_info = g_local_file_input_stream_query_info;
109 g_local_file_input_stream_init (GLocalFileInputStream *info)
111 info->priv = G_TYPE_INSTANCE_GET_PRIVATE (info,
112 G_TYPE_LOCAL_FILE_INPUT_STREAM,
113 GLocalFileInputStreamPrivate);
117 * g_local_file_input_stream_new:
118 * @fd: File Descriptor.
120 * Returns: #GFileInputStream for the given file descriptor.
123 _g_local_file_input_stream_new (int fd)
125 GLocalFileInputStream *stream;
127 stream = g_object_new (G_TYPE_LOCAL_FILE_INPUT_STREAM, NULL);
128 stream->priv->fd = fd;
130 return G_FILE_INPUT_STREAM (stream);
134 g_local_file_input_stream_read (GInputStream *stream,
137 GCancellable *cancellable,
140 GLocalFileInputStream *file;
143 file = G_LOCAL_FILE_INPUT_STREAM (stream);
148 if (g_cancellable_set_error_if_cancelled (cancellable, error))
150 res = read (file->priv->fd, buffer, count);
156 g_set_error (error, G_IO_ERROR,
157 g_io_error_from_errno (errno),
158 _("Error reading from file: %s"),
169 g_local_file_input_stream_skip (GInputStream *stream,
171 GCancellable *cancellable,
175 GLocalFileInputStream *file;
177 file = G_LOCAL_FILE_INPUT_STREAM (stream);
179 if (g_cancellable_set_error_if_cancelled (cancellable, error))
182 start = lseek (file->priv->fd, 0, SEEK_CUR);
185 g_set_error (error, G_IO_ERROR,
186 g_io_error_from_errno (errno),
187 _("Error seeking in file: %s"),
192 res = lseek (file->priv->fd, count, SEEK_CUR);
195 g_set_error (error, G_IO_ERROR,
196 g_io_error_from_errno (errno),
197 _("Error seeking in file: %s"),
206 g_local_file_input_stream_close (GInputStream *stream,
207 GCancellable *cancellable,
210 GLocalFileInputStream *file;
213 file = G_LOCAL_FILE_INPUT_STREAM (stream);
215 if (file->priv->fd == -1)
220 res = close (file->priv->fd);
222 g_set_error (error, G_IO_ERROR,
223 g_io_error_from_errno (errno),
224 _("Error closing file: %s"),
234 g_local_file_input_stream_tell (GFileInputStream *stream)
236 GLocalFileInputStream *file;
239 file = G_LOCAL_FILE_INPUT_STREAM (stream);
241 pos = lseek (file->priv->fd, 0, SEEK_CUR);
243 if (pos == (off_t)-1)
250 g_local_file_input_stream_can_seek (GFileInputStream *stream)
252 GLocalFileInputStream *file;
255 file = G_LOCAL_FILE_INPUT_STREAM (stream);
257 pos = lseek (file->priv->fd, 0, SEEK_CUR);
259 if (pos == (off_t)-1 && errno == ESPIPE)
266 seek_type_to_lseek (GSeekType type)
283 g_local_file_input_stream_seek (GFileInputStream *stream,
286 GCancellable *cancellable,
289 GLocalFileInputStream *file;
292 file = G_LOCAL_FILE_INPUT_STREAM (stream);
294 pos = lseek (file->priv->fd, offset, seek_type_to_lseek (type));
296 if (pos == (off_t)-1)
298 g_set_error (error, G_IO_ERROR,
299 g_io_error_from_errno (errno),
300 _("Error seeking in file: %s"),
309 g_local_file_input_stream_query_info (GFileInputStream *stream,
311 GCancellable *cancellable,
314 GLocalFileInputStream *file;
316 file = G_LOCAL_FILE_INPUT_STREAM (stream);
318 if (g_cancellable_set_error_if_cancelled (cancellable, error))
321 return _g_local_file_info_get_from_fd (file->priv->fd,