1 /* GIO - GLib Input, IO 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.1 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>
24 #include <glib/gstdio.h>
27 #include "gcancellable.h"
28 #include "glocalfileiostream.h"
29 #include "glocalfileinputstream.h"
30 #include "glocalfileinfo.h"
33 #include "gfiledescriptorbased.h"
37 #define g_local_file_io_stream_get_type _g_local_file_io_stream_get_type
38 G_DEFINE_TYPE (GLocalFileIOStream
, g_local_file_io_stream
, G_TYPE_FILE_IO_STREAM
)
41 g_local_file_io_stream_finalize (GObject
*object
)
43 GLocalFileIOStream
*file
;
45 file
= G_LOCAL_FILE_IO_STREAM (object
);
47 g_object_unref (file
->input_stream
);
48 g_object_unref (file
->output_stream
);
50 G_OBJECT_CLASS (g_local_file_io_stream_parent_class
)->finalize (object
);
54 _g_local_file_io_stream_new (GLocalFileOutputStream
*output_stream
)
56 GLocalFileIOStream
*stream
;
59 stream
= g_object_new (G_TYPE_LOCAL_FILE_IO_STREAM
, NULL
);
60 stream
->output_stream
= g_object_ref (G_OUTPUT_STREAM (output_stream
));
61 _g_local_file_output_stream_set_do_close (output_stream
, FALSE
);
62 fd
= _g_local_file_output_stream_get_fd (output_stream
);
63 stream
->input_stream
= (GInputStream
*)_g_local_file_input_stream_new (fd
);
65 _g_local_file_input_stream_set_do_close (G_LOCAL_FILE_INPUT_STREAM (stream
->input_stream
),
68 return G_FILE_IO_STREAM (stream
);
72 g_local_file_io_stream_get_input_stream (GIOStream
*stream
)
74 return G_LOCAL_FILE_IO_STREAM (stream
)->input_stream
;
77 static GOutputStream
*
78 g_local_file_io_stream_get_output_stream (GIOStream
*stream
)
80 return G_LOCAL_FILE_IO_STREAM (stream
)->output_stream
;
85 g_local_file_io_stream_close (GIOStream
*stream
,
86 GCancellable
*cancellable
,
89 GLocalFileIOStream
*file
= G_LOCAL_FILE_IO_STREAM (stream
);
91 /* There are shortcutted and can't fail */
92 g_output_stream_close (file
->output_stream
, cancellable
, NULL
);
93 g_input_stream_close (file
->input_stream
, cancellable
, NULL
);
96 _g_local_file_output_stream_really_close (G_LOCAL_FILE_OUTPUT_STREAM (file
->output_stream
),
101 g_local_file_io_stream_class_init (GLocalFileIOStreamClass
*klass
)
103 GObjectClass
*gobject_class
= G_OBJECT_CLASS (klass
);
104 GIOStreamClass
*stream_class
= G_IO_STREAM_CLASS (klass
);
106 gobject_class
->finalize
= g_local_file_io_stream_finalize
;
108 stream_class
->get_input_stream
= g_local_file_io_stream_get_input_stream
;
109 stream_class
->get_output_stream
= g_local_file_io_stream_get_output_stream
;
110 stream_class
->close_fn
= g_local_file_io_stream_close
;
114 g_local_file_io_stream_init (GLocalFileIOStream
*stream
)