Fix a mixup of singular and plural
[glib.git] / gio / glocalfileinputstream.c
blobbb05bb678ff94e88144b7eab49f7fcb1756e6794
1 /* GIO - GLib Input, Output and Streaming Library
2 *
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>
23 #include "config.h"
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <fcntl.h>
28 #ifdef HAVE_UNISTD_H
29 #include <unistd.h>
30 #endif
31 #include <errno.h>
33 #include <glib.h>
34 #include <glib/gstdio.h>
35 #include "gcancellable.h"
36 #include "gioerror.h"
37 #include "glocalfileinputstream.h"
38 #include "glocalfileinfo.h"
39 #include "glibintl.h"
41 #ifdef G_OS_UNIX
42 #include "glib-unix.h"
43 #include "gfiledescriptorbased.h"
44 #endif
46 #ifdef G_OS_WIN32
47 #include <io.h>
48 #endif
52 #ifdef G_OS_UNIX
53 static void g_file_descriptor_based_iface_init (GFileDescriptorBasedIface *iface);
54 #endif
56 #define g_local_file_input_stream_get_type _g_local_file_input_stream_get_type
57 #ifdef G_OS_UNIX
58 G_DEFINE_TYPE_WITH_CODE (GLocalFileInputStream, g_local_file_input_stream, G_TYPE_FILE_INPUT_STREAM,
59 G_IMPLEMENT_INTERFACE (G_TYPE_FILE_DESCRIPTOR_BASED,
60 g_file_descriptor_based_iface_init)
62 #else
63 G_DEFINE_TYPE_WITH_CODE (GLocalFileInputStream, g_local_file_input_stream, G_TYPE_FILE_INPUT_STREAM,);
64 #endif
66 struct _GLocalFileInputStreamPrivate {
67 int fd;
68 guint do_close : 1;
71 static gssize g_local_file_input_stream_read (GInputStream *stream,
72 void *buffer,
73 gsize count,
74 GCancellable *cancellable,
75 GError **error);
76 static gssize g_local_file_input_stream_skip (GInputStream *stream,
77 gsize count,
78 GCancellable *cancellable,
79 GError **error);
80 static gboolean g_local_file_input_stream_close (GInputStream *stream,
81 GCancellable *cancellable,
82 GError **error);
83 static goffset g_local_file_input_stream_tell (GFileInputStream *stream);
84 static gboolean g_local_file_input_stream_can_seek (GFileInputStream *stream);
85 static gboolean g_local_file_input_stream_seek (GFileInputStream *stream,
86 goffset offset,
87 GSeekType type,
88 GCancellable *cancellable,
89 GError **error);
90 static GFileInfo *g_local_file_input_stream_query_info (GFileInputStream *stream,
91 const char *attributes,
92 GCancellable *cancellable,
93 GError **error);
94 #ifdef G_OS_UNIX
95 static int g_local_file_input_stream_get_fd (GFileDescriptorBased *stream);
96 #endif
98 static void
99 g_local_file_input_stream_finalize (GObject *object)
101 G_OBJECT_CLASS (g_local_file_input_stream_parent_class)->finalize (object);
104 void
105 _g_local_file_input_stream_set_do_close (GLocalFileInputStream *in,
106 gboolean do_close)
108 in->priv->do_close = do_close;
111 static void
112 g_local_file_input_stream_class_init (GLocalFileInputStreamClass *klass)
114 GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
115 GInputStreamClass *stream_class = G_INPUT_STREAM_CLASS (klass);
116 GFileInputStreamClass *file_stream_class = G_FILE_INPUT_STREAM_CLASS (klass);
118 g_type_class_add_private (klass, sizeof (GLocalFileInputStreamPrivate));
120 gobject_class->finalize = g_local_file_input_stream_finalize;
122 stream_class->read_fn = g_local_file_input_stream_read;
123 stream_class->skip = g_local_file_input_stream_skip;
124 stream_class->close_fn = g_local_file_input_stream_close;
125 file_stream_class->tell = g_local_file_input_stream_tell;
126 file_stream_class->can_seek = g_local_file_input_stream_can_seek;
127 file_stream_class->seek = g_local_file_input_stream_seek;
128 file_stream_class->query_info = g_local_file_input_stream_query_info;
131 #ifdef G_OS_UNIX
132 static void
133 g_file_descriptor_based_iface_init (GFileDescriptorBasedIface *iface)
135 iface->get_fd = g_local_file_input_stream_get_fd;
137 #endif
139 static void
140 g_local_file_input_stream_init (GLocalFileInputStream *info)
142 info->priv = G_TYPE_INSTANCE_GET_PRIVATE (info,
143 G_TYPE_LOCAL_FILE_INPUT_STREAM,
144 GLocalFileInputStreamPrivate);
145 info->priv->do_close = TRUE;
148 GFileInputStream *
149 _g_local_file_input_stream_new (int fd)
151 GLocalFileInputStream *stream;
153 stream = g_object_new (G_TYPE_LOCAL_FILE_INPUT_STREAM, NULL);
154 stream->priv->fd = fd;
156 return G_FILE_INPUT_STREAM (stream);
159 static gssize
160 g_local_file_input_stream_read (GInputStream *stream,
161 void *buffer,
162 gsize count,
163 GCancellable *cancellable,
164 GError **error)
166 GLocalFileInputStream *file;
167 gssize res;
169 file = G_LOCAL_FILE_INPUT_STREAM (stream);
171 res = -1;
172 while (1)
174 if (g_cancellable_set_error_if_cancelled (cancellable, error))
175 break;
176 res = read (file->priv->fd, buffer, count);
177 if (res == -1)
179 int errsv = errno;
181 if (errsv == EINTR)
182 continue;
184 g_set_error (error, G_IO_ERROR,
185 g_io_error_from_errno (errsv),
186 _("Error reading from file: %s"),
187 g_strerror (errsv));
190 break;
193 return res;
196 static gssize
197 g_local_file_input_stream_skip (GInputStream *stream,
198 gsize count,
199 GCancellable *cancellable,
200 GError **error)
202 off_t res, start;
203 GLocalFileInputStream *file;
205 file = G_LOCAL_FILE_INPUT_STREAM (stream);
207 if (g_cancellable_set_error_if_cancelled (cancellable, error))
208 return -1;
210 start = lseek (file->priv->fd, 0, SEEK_CUR);
211 if (start == -1)
213 int errsv = errno;
215 g_set_error (error, G_IO_ERROR,
216 g_io_error_from_errno (errsv),
217 _("Error seeking in file: %s"),
218 g_strerror (errsv));
219 return -1;
222 res = lseek (file->priv->fd, count, SEEK_CUR);
223 if (res == -1)
225 int errsv = errno;
227 g_set_error (error, G_IO_ERROR,
228 g_io_error_from_errno (errsv),
229 _("Error seeking in file: %s"),
230 g_strerror (errsv));
231 return -1;
234 return res - start;
237 static gboolean
238 g_local_file_input_stream_close (GInputStream *stream,
239 GCancellable *cancellable,
240 GError **error)
242 GLocalFileInputStream *file;
244 file = G_LOCAL_FILE_INPUT_STREAM (stream);
246 if (!file->priv->do_close)
247 return TRUE;
249 if (file->priv->fd == -1)
250 return TRUE;
252 if (!g_close (file->priv->fd, NULL))
254 int errsv = errno;
256 g_set_error (error, G_IO_ERROR,
257 g_io_error_from_errno (errsv),
258 _("Error closing file: %s"),
259 g_strerror (errsv));
260 return FALSE;
263 return TRUE;
267 static goffset
268 g_local_file_input_stream_tell (GFileInputStream *stream)
270 GLocalFileInputStream *file;
271 off_t pos;
273 file = G_LOCAL_FILE_INPUT_STREAM (stream);
275 pos = lseek (file->priv->fd, 0, SEEK_CUR);
277 if (pos == (off_t)-1)
278 return 0;
280 return pos;
283 static gboolean
284 g_local_file_input_stream_can_seek (GFileInputStream *stream)
286 GLocalFileInputStream *file;
287 off_t pos;
289 file = G_LOCAL_FILE_INPUT_STREAM (stream);
291 pos = lseek (file->priv->fd, 0, SEEK_CUR);
293 if (pos == (off_t)-1 && errno == ESPIPE)
294 return FALSE;
296 return TRUE;
299 static int
300 seek_type_to_lseek (GSeekType type)
302 switch (type)
304 default:
305 case G_SEEK_CUR:
306 return SEEK_CUR;
308 case G_SEEK_SET:
309 return SEEK_SET;
311 case G_SEEK_END:
312 return SEEK_END;
316 static gboolean
317 g_local_file_input_stream_seek (GFileInputStream *stream,
318 goffset offset,
319 GSeekType type,
320 GCancellable *cancellable,
321 GError **error)
323 GLocalFileInputStream *file;
324 off_t pos;
326 file = G_LOCAL_FILE_INPUT_STREAM (stream);
328 pos = lseek (file->priv->fd, offset, seek_type_to_lseek (type));
330 if (pos == (off_t)-1)
332 int errsv = errno;
334 g_set_error (error, G_IO_ERROR,
335 g_io_error_from_errno (errsv),
336 _("Error seeking in file: %s"),
337 g_strerror (errsv));
338 return FALSE;
341 return TRUE;
344 static GFileInfo *
345 g_local_file_input_stream_query_info (GFileInputStream *stream,
346 const char *attributes,
347 GCancellable *cancellable,
348 GError **error)
350 GLocalFileInputStream *file;
352 file = G_LOCAL_FILE_INPUT_STREAM (stream);
354 if (g_cancellable_set_error_if_cancelled (cancellable, error))
355 return NULL;
357 return _g_local_file_info_get_from_fd (file->priv->fd,
358 attributes,
359 error);
362 #ifdef G_OS_UNIX
363 static int
364 g_local_file_input_stream_get_fd (GFileDescriptorBased *fd_based)
366 GLocalFileInputStream *stream = G_LOCAL_FILE_INPUT_STREAM (fd_based);
367 return stream->priv->fd;
369 #endif