More Michael fixage
[platform/upstream/gstreamer.git] / gst / elements / gstdisksink.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstdisksink.c: 
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23
24 #include <gst/gst.h>
25 #include "gstdisksink.h"
26
27
28 GstElementDetails gst_disksink_details = {
29   "Disk Sink",
30   "Sink",
31   "Disk hole for data",
32   VERSION,
33   "Thomas <thomas@apestaart.org>",
34   "(C) 2001"
35 };
36
37
38 /* DiskSink signals and args */
39 enum {
40   /* FILL ME */
41   SIGNAL_HANDOFF,
42   LAST_SIGNAL
43 };
44
45 enum {
46   ARG_0,
47   ARG_LOCATION,
48 };
49
50
51 static void     gst_disksink_class_init         (GstDiskSinkClass *klass);
52 static void     gst_disksink_init               (GstDiskSink *disksink);
53
54 static void     gst_disksink_set_property       (GObject *object, guint prop_id, 
55                                                  const GValue *value, GParamSpec *pspec);
56 static void     gst_disksink_get_property       (GObject *object, guint prop_id, 
57                                                  GValue *value, GParamSpec *pspec);
58
59 static gboolean gst_disksink_open_file          (GstDiskSink *sink);
60 static void     gst_disksink_close_file         (GstDiskSink *sink);
61
62 static void     gst_disksink_chain              (GstPad *pad,GstBuffer *buf);
63
64 static GstElementStateReturn gst_disksink_change_state (GstElement *element);
65
66 static GstElementClass *parent_class = NULL;
67 static guint gst_disksink_signals[LAST_SIGNAL] = { 0 };
68
69 GType
70 gst_disksink_get_type (void) 
71 {
72   static GType disksink_type = 0;
73
74   if (!disksink_type) {
75     static const GTypeInfo disksink_info = {
76       sizeof(GstDiskSinkClass),      NULL,
77       NULL,
78       (GClassInitFunc)gst_disksink_class_init,
79       NULL,
80       NULL,
81       sizeof(GstDiskSink),
82       0,
83       (GInstanceInitFunc)gst_disksink_init,
84     };
85     disksink_type = g_type_register_static (GST_TYPE_ELEMENT, "GstDiskSink", &disksink_info, 0);
86   }
87   return disksink_type;
88 }
89
90 static void
91 gst_disksink_class_init (GstDiskSinkClass *klass) 
92 {
93   GObjectClass *gobject_class;
94   GstElementClass *gstelement_class;
95
96   gobject_class = (GObjectClass*)klass;
97   gstelement_class = (GstElementClass*)klass;
98
99   parent_class = g_type_class_ref (GST_TYPE_ELEMENT);
100
101   gst_element_install_std_props (
102           GST_ELEMENT_CLASS (klass),
103           "location", ARG_LOCATION, G_PARAM_READWRITE,
104           NULL);
105
106   gst_disksink_signals[SIGNAL_HANDOFF] =
107     g_signal_new ("handoff", G_TYPE_FROM_CLASS(klass), G_SIGNAL_RUN_LAST,
108                     G_STRUCT_OFFSET (GstDiskSinkClass, handoff), NULL, NULL,
109                     g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
110
111   gobject_class->set_property = gst_disksink_set_property;
112   gobject_class->get_property = gst_disksink_get_property;
113
114   gstelement_class->change_state = gst_disksink_change_state;
115 }
116
117 static void 
118 gst_disksink_init (GstDiskSink *disksink) 
119 {
120   GstPad *pad;
121   pad = gst_pad_new ("sink", GST_PAD_SINK);
122   gst_element_add_pad (GST_ELEMENT (disksink), pad);
123   gst_pad_set_chain_function (pad, gst_disksink_chain);
124
125   disksink->filename = NULL;
126   disksink->file = NULL;
127 }
128
129 static void
130 gst_disksink_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
131 {
132   GstDiskSink *sink;
133
134   /* it's not null if we got it, but it might not be ours */
135   sink = GST_DISKSINK (object);
136
137   switch (prop_id) {
138     case ARG_LOCATION:
139       /* the element must be stopped or paused in order to do this */
140       g_return_if_fail ((GST_STATE (sink) < GST_STATE_PLAYING)
141                       || (GST_STATE (sink) == GST_STATE_PAUSED));
142       if (sink->filename)
143         g_free (sink->filename);
144       sink->filename = g_strdup (g_value_get_string (value));
145       if ( (GST_STATE (sink) == GST_STATE_PAUSED) 
146         && (sink->filename != NULL))
147       {
148               gst_disksink_close_file (sink);
149               gst_disksink_open_file (sink);   
150       }
151  
152       break;
153     default:
154       break;
155   }
156 }
157
158 static void   
159 gst_disksink_get_property (GObject *object, guint prop_id, GValue *value, GParamSpec *pspec)
160 {
161   GstDiskSink *sink;
162  
163   /* it's not null if we got it, but it might not be ours */
164   g_return_if_fail (GST_IS_DISKSINK (object));
165  
166   sink = GST_DISKSINK (object);
167   
168   switch (prop_id) {
169     case ARG_LOCATION:
170       g_value_set_string (value, sink->filename);
171       break;
172     default:
173       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
174       break;
175   }
176 }
177
178 static gboolean
179 gst_disksink_open_file (GstDiskSink *sink)
180 {
181   g_return_val_if_fail (!GST_FLAG_IS_SET (sink, GST_DISKSINK_OPEN), FALSE);
182
183   /* open the file */
184   sink->file = fopen (sink->filename, "w");
185   if (sink->file == NULL) {
186     perror ("open");
187     gst_element_error (GST_ELEMENT (sink), g_strconcat("opening file \"", sink->filename, "\"", NULL));
188     return FALSE;
189   } 
190
191   GST_FLAG_SET (sink, GST_DISKSINK_OPEN);
192
193   return TRUE;
194 }
195
196 static void
197 gst_disksink_close_file (GstDiskSink *sink)
198 {
199   g_return_if_fail (GST_FLAG_IS_SET (sink, GST_DISKSINK_OPEN));
200
201   if (fclose (sink->file) != 0)
202   {
203     perror ("close");
204     gst_element_error (GST_ELEMENT (sink), g_strconcat("closing file \"", sink->filename, "\"", NULL));
205   }
206   else {
207     GST_FLAG_UNSET (sink, GST_DISKSINK_OPEN);
208   }
209 }
210
211 /**
212  * gst_disksink_chain:
213  * @pad: the pad this disksink is connected to
214  * @buf: the buffer that has to be absorbed
215  *
216  * take the buffer from the pad and write to file if it's open
217  */
218 static void 
219 gst_disksink_chain (GstPad *pad, GstBuffer *buf) 
220 {
221   GstDiskSink *disksink;
222   gint bytes_written = 0;
223
224   g_return_if_fail (pad != NULL);
225   g_return_if_fail (GST_IS_PAD (pad));
226   g_return_if_fail (buf != NULL);
227
228   disksink = GST_DISKSINK (gst_pad_get_parent (pad));
229
230   if (GST_FLAG_IS_SET (disksink, GST_DISKSINK_OPEN))
231   {
232     bytes_written = fwrite (GST_BUFFER_DATA (buf), 1, GST_BUFFER_SIZE (buf), disksink->file);
233     if (bytes_written < GST_BUFFER_SIZE (buf))
234     {
235       printf ("disksink : Warning : %d bytes should be written, only %d bytes written\n",
236                   GST_BUFFER_SIZE (buf), bytes_written);
237     }
238   }
239   gst_buffer_unref (buf);
240
241   g_signal_emit (G_OBJECT (disksink), gst_disksink_signals[SIGNAL_HANDOFF], 0,
242                               disksink);
243 }
244
245 static GstElementStateReturn
246 gst_disksink_change_state (GstElement *element)
247 {
248   g_return_val_if_fail (GST_IS_DISKSINK (element), GST_STATE_FAILURE);
249
250   if (GST_STATE_PENDING (element) == GST_STATE_NULL) {
251     if (GST_FLAG_IS_SET (element, GST_DISKSINK_OPEN))
252       gst_disksink_close_file (GST_DISKSINK (element));
253   } else {
254     if (!GST_FLAG_IS_SET (element, GST_DISKSINK_OPEN)) {
255       if (!gst_disksink_open_file (GST_DISKSINK (element)))
256         return GST_STATE_FAILURE;
257     }
258   }
259
260   if (GST_ELEMENT_CLASS (parent_class)->change_state)
261     return GST_ELEMENT_CLASS (parent_class)->change_state (element);
262
263   return GST_STATE_SUCCESS;
264 }
265