element-maker: call up in basetransform template
[platform/upstream/gstreamer.git] / tools / gst-app-maker
1 #!/bin/sh
2
3
4 prefix=gst
5 templatedir=element-templates
6
7 while [ "$1" ] ; do
8   case $1 in
9     --help)
10       cat <<-EOF
11 Usage: element-maker [OPTIONS] _NAME BASE_CLASS
12 Create a GStreamer application from a template.
13 Options:
14   --help             Print this information
15   --prefix PREFIX    Use PREFIX instead of "gst"
16 Example: 'gst-app-maker my_app' will create the file gstmyapp.c.
17 EOF
18       exit 0
19       ;;
20     --prefix)
21       shift
22       prefix=$1
23       ;;
24     -*)
25       echo Unknown option: $1
26       exit 1
27       ;;
28     *)
29       if [ "$name" = "" ]; then
30         name=$1
31       else
32         echo Ignored: $1
33       fi
34   esac
35   shift
36 done
37
38 if [ "$name" = "" ] ; then
39   echo "Usage: element-maker [OPTIONS] ELEMENT_NAME BASE_CLASS"
40   exit 1
41 fi
42
43
44 PREFIX=$(echo $prefix | sed -e 's/\(.*\)/\U\1/')
45 NAME=$(echo $name | sed -e 's/\(.*\)/\U\1/')
46 Prefix=$(echo $prefix | sed -e 's/_\(.\)/\U\1/g' -e 's/^\(.\)/\U\1/')
47 Name=$(echo $name | sed -e 's/_\(.\)/\U\1/g' -e 's/^\(.\)/\U\1/')
48
49 GST_IS_REPLACE=${PREFIX}_IS_${NAME}
50 GST_REPLACE=${PREFIX}_${NAME}
51 GST_TYPE_REPLACE=${PREFIX}_TYPE_${NAME}
52 GstReplace=${Prefix}${Name}
53 gst_replace=${prefix}_${name}
54 gstreplace=${prefix}$(echo $name | sed -e 's/_//g')
55 replace=$(echo $name | sed -e 's/_//g')
56
57 if [ "$REAL_NAME" = "" ] ; then
58   REAL_NAME=FIXME
59 fi
60 if [ "$EMAIL_ADDRESS" = "" ] ; then
61   EMAIL_ADDRESS=fixme@example.com
62 fi
63
64
65
66 generate ()
67 {
68
69 cat <<-EOF
70 /* GstReplace
71  * Copyright (C) $(date +%Y) $REAL_NAME <$EMAIL_ADDRESS>
72  * Copyright (C) 2010 Entropy Wave Inc
73  *
74  * Redistribution and use in source and binary forms, with or without
75  * modification, are permitted provided that the following conditions
76  * are met:
77  * 1. Redistributions of source code must retain the above copyright
78  *    notice, this list of conditions and the following disclaimer.
79  * 2. Redistributions in binary form must reproduce the above copyright
80  *    notice, this list of conditions and the following disclaimer in the
81  *    documentation and/or other materials provided with the distribution.
82  *
83  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
84  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
85  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
86  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
87  * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
88  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
89  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
90  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
91  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
92  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
93  * POSSIBILITY OF SUCH DAMAGE.
94  */
95
96 #ifdef HAVE_CONFIG_H
97 #include "config.h"
98 #endif
99
100 #include <gst/gst.h>
101 #include <stdlib.h>
102
103 #define GETTEXT_PACKAGE "replace"
104
105
106 typedef struct _GstReplace GstReplace;
107 struct _GstReplace {
108   GstElement *pipeline;
109   GstBus *bus;
110   GMainLoop *main_loop;
111
112   GstElement *source_element;
113   GstElement *sink_element;
114
115   gboolean paused_for_buffering;
116   guint timer_id;
117 };
118
119 GstReplace * gst_replace_new (void);
120 void gst_replace_free (GstReplace *replace);
121 void gst_replace_create_pipeline (GstReplace *replace);
122 void gst_replace_create_pipeline_playbin (GstReplace *replace, const char *uri);
123 void gst_replace_start (GstReplace *replace);
124 void gst_replace_stop (GstReplace *replace);
125
126 static gboolean gst_replace_handle_message (GstBus *bus, GstMessage *message,
127     gpointer data);
128 static gboolean onesecond_timer (gpointer priv);
129
130
131 gboolean verbose;
132
133 static GOptionEntry entries[] =
134 {
135   { "verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose, "Be verbose", NULL },
136
137   { NULL }
138
139 };
140
141 int
142 main (int argc, char *argv[])
143 {
144   GError *error = NULL;
145   GOptionContext *context;
146   GstReplace *replace;
147   GMainLoop *main_loop;
148
149   context = g_option_context_new ("- FIXME");
150   g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
151   g_option_context_add_group (context, gst_init_get_option_group ());
152   if (!g_option_context_parse (context, &argc, &argv, &error)) {
153     g_print ("option parsing failed: %s\n", error->message);
154     exit (1);
155   }
156   g_option_context_free (context);
157
158   replace = gst_replace_new ();
159
160   if (argc > 1) {
161     gchar *uri;
162     if (gst_uri_is_valid (argv[1])) {
163       uri = g_strdup (argv[1]);
164     } else {
165       uri = g_filename_to_uri (argv[1], NULL, NULL);
166     }
167     gst_replace_create_pipeline_playbin (replace, uri);
168     g_free (uri);
169   } else {
170     gst_replace_create_pipeline (replace);
171   }
172
173   gst_replace_start (replace);
174
175   main_loop = g_main_loop_new (NULL, TRUE);
176   replace->main_loop = main_loop;
177
178   g_main_loop_run (main_loop);
179
180   exit (0);
181 }
182
183
184 GstReplace *
185 gst_replace_new (void)
186 {
187   GstReplace *replace;
188
189   replace = g_new0 (GstReplace, 1);
190
191   return replace;
192 }
193
194 void
195 gst_replace_free (GstReplace *replace)
196 {
197   if (replace->source_element) {
198     gst_object_unref (replace->source_element);
199     replace->source_element = NULL;
200   }
201   if (replace->sink_element) {
202     gst_object_unref (replace->sink_element);
203     replace->sink_element = NULL;
204   }
205
206   if (replace->pipeline) {
207     gst_element_set_state (replace->pipeline, GST_STATE_NULL);
208     gst_object_unref (replace->pipeline);
209     replace->pipeline = NULL;
210   }
211   g_free (replace);
212 }
213
214 void
215 gst_replace_create_pipeline_playbin (GstReplace *replace, const char *uri)
216 {
217   GstElement *pipeline;
218   GError *error = NULL;
219   
220   pipeline = gst_pipeline_new (NULL);
221   gst_bin_add (GST_BIN(pipeline),
222       gst_element_factory_make ("playbin", "source"));
223
224   if (error) {
225     g_print("pipeline parsing error: %s\n", error->message);
226     gst_object_unref (pipeline);
227     return;
228   }
229
230   replace->pipeline = pipeline;
231
232   gst_pipeline_set_auto_flush_bus (GST_PIPELINE(pipeline), FALSE);
233   replace->bus = gst_pipeline_get_bus (GST_PIPELINE(pipeline));
234   gst_bus_add_watch (replace->bus, gst_replace_handle_message, replace);
235
236   replace->source_element = gst_bin_get_by_name (GST_BIN(pipeline), "source");
237   g_print("source_element is %p\n", replace->source_element);
238
239   g_print("setting uri to %s\n", uri);
240   g_object_set (replace->source_element, "uri", uri, NULL);
241 }
242
243 void
244 gst_replace_create_pipeline (GstReplace *replace)
245 {
246   GString *pipe_desc;
247   GstElement *pipeline;
248   GError *error = NULL;
249   
250   pipe_desc = g_string_new ("");
251
252   g_string_append (pipe_desc, "videotestsrc name=source num-buffers=100 ! ");
253   g_string_append (pipe_desc, "timeoverlay ! ");
254   g_string_append (pipe_desc, "xvimagesink name=sink ");
255   g_string_append (pipe_desc, "audiotestsrc samplesperbuffer=1600 num-buffers=100 ! ");
256   g_string_append (pipe_desc, "alsasink ");
257
258   if (verbose) g_print ("pipeline: %s\n", pipe_desc->str);
259
260   pipeline = (GstElement *) gst_parse_launch (pipe_desc->str, &error);
261   g_string_free (pipe_desc, FALSE);
262
263   if (error) {
264     g_print("pipeline parsing error: %s\n", error->message);
265     gst_object_unref (pipeline);
266     return;
267   }
268
269   replace->pipeline = pipeline;
270
271   gst_pipeline_set_auto_flush_bus (GST_PIPELINE(pipeline), FALSE);
272   replace->bus = gst_pipeline_get_bus (GST_PIPELINE(pipeline));
273   gst_bus_add_watch (replace->bus, gst_replace_handle_message, replace);
274
275   replace->source_element = gst_bin_get_by_name (GST_BIN(pipeline), "source");
276   replace->sink_element = gst_bin_get_by_name (GST_BIN(pipeline), "sink");
277 }
278
279 void
280 gst_replace_start (GstReplace *replace)
281 {
282   gst_element_set_state (replace->pipeline, GST_STATE_READY);
283
284   replace->timer_id = g_timeout_add (1000, onesecond_timer, replace);
285 }
286
287 void
288 gst_replace_stop (GstReplace *replace)
289 {
290   gst_element_set_state (replace->pipeline, GST_STATE_NULL);
291
292   g_source_remove (replace->timer_id);
293 }
294
295 static void
296 gst_replace_handle_eos (GstReplace *replace)
297 {
298   gst_replace_stop (replace);
299 }
300
301 static void
302 gst_replace_handle_error (GstReplace *replace, GError *error,
303     const char *debug)
304 {
305   g_print ("error: %s\n", error->message);
306   gst_replace_stop (replace);
307 }
308
309 static void
310 gst_replace_handle_warning (GstReplace *replace, GError *error,
311     const char *debug)
312 {
313   g_print ("warning: %s\n", error->message);
314 }
315
316 static void
317 gst_replace_handle_info (GstReplace *replace, GError *error,
318     const char *debug)
319 {
320   g_print ("info: %s\n", error->message);
321 }
322
323 static void
324 gst_replace_handle_null_to_ready (GstReplace *replace)
325 {
326   gst_element_set_state (replace->pipeline, GST_STATE_PAUSED);
327
328 }
329
330 static void
331 gst_replace_handle_ready_to_paused (GstReplace *replace)
332 {
333   if (!replace->paused_for_buffering) {
334     gst_element_set_state (replace->pipeline, GST_STATE_PLAYING);
335   }
336 }
337
338 static void
339 gst_replace_handle_paused_to_playing (GstReplace *replace)
340 {
341
342 }
343
344 static void
345 gst_replace_handle_playing_to_paused (GstReplace *replace)
346 {
347
348 }
349
350 static void
351 gst_replace_handle_paused_to_ready (GstReplace *replace)
352 {
353
354 }
355
356 static void
357 gst_replace_handle_ready_to_null (GstReplace *replace)
358 {
359   g_main_loop_quit (replace->main_loop);
360
361 }
362
363
364 static gboolean
365 gst_replace_handle_message (GstBus *bus, GstMessage *message,
366     gpointer data)
367 {
368   GstReplace *replace = (GstReplace *) data;
369
370   switch (GST_MESSAGE_TYPE(message)) {
371     case GST_MESSAGE_EOS:
372       gst_replace_handle_eos (replace);
373       break;
374     case GST_MESSAGE_ERROR:
375       {
376         GError *error = NULL;
377         gchar *debug;
378
379         gst_message_parse_error (message, &error, &debug);
380         gst_replace_handle_error (replace, error, debug);
381       }
382       break;
383     case GST_MESSAGE_WARNING:
384       {
385         GError *error = NULL;
386         gchar *debug;
387
388         gst_message_parse_warning (message, &error, &debug);
389         gst_replace_handle_warning (replace, error, debug);
390       }
391       break;
392     case GST_MESSAGE_INFO:
393       {
394         GError *error = NULL;
395         gchar *debug;
396
397         gst_message_parse_info (message, &error, &debug);
398         gst_replace_handle_info (replace, error, debug);
399       }
400       break;
401     case GST_MESSAGE_TAG:
402       {
403         GstTagList *tag_list;
404
405         gst_message_parse_tag (message, &tag_list);
406         if (verbose) g_print("tag\n");
407       }
408       break;
409     case GST_MESSAGE_STATE_CHANGED:
410       {
411         GstState oldstate, newstate, pending;
412
413         gst_message_parse_state_changed (message, &oldstate, &newstate,
414             &pending);
415         if (GST_ELEMENT(message->src) == replace->pipeline) {
416           if (verbose) g_print("state change from %s to %s\n",
417               gst_element_state_get_name (oldstate),
418               gst_element_state_get_name (newstate));
419           switch (GST_STATE_TRANSITION(oldstate, newstate)) {
420             case GST_STATE_CHANGE_NULL_TO_READY:
421               gst_replace_handle_null_to_ready (replace);
422               break;
423             case GST_STATE_CHANGE_READY_TO_PAUSED:
424               gst_replace_handle_ready_to_paused (replace);
425               break;
426             case GST_STATE_CHANGE_PAUSED_TO_PLAYING:
427               gst_replace_handle_paused_to_playing (replace);
428               break;
429             case GST_STATE_CHANGE_PLAYING_TO_PAUSED:
430               gst_replace_handle_playing_to_paused (replace);
431               break;
432             case GST_STATE_CHANGE_PAUSED_TO_READY:
433               gst_replace_handle_paused_to_ready (replace);
434               break;
435             case GST_STATE_CHANGE_READY_TO_NULL:
436               gst_replace_handle_ready_to_null (replace);
437               break;
438             default:
439               if (verbose) g_print("unknown state change from %s to %s\n",
440                   gst_element_state_get_name (oldstate),
441                   gst_element_state_get_name (newstate));
442           }
443         }
444       }
445       break;
446     case GST_MESSAGE_BUFFERING:
447       {
448         int percent;
449         gst_message_parse_buffering (message, &percent);
450         //g_print("buffering %d\n", percent);
451         if (!replace->paused_for_buffering && percent < 100) {
452           g_print ("pausing for buffing\n");
453           replace->paused_for_buffering = TRUE;
454           gst_element_set_state (replace->pipeline, GST_STATE_PAUSED);
455         } else if (replace->paused_for_buffering && percent == 100) {
456           g_print ("unpausing for buffing\n");
457           replace->paused_for_buffering = FALSE;
458           gst_element_set_state (replace->pipeline, GST_STATE_PLAYING);
459         }
460       }
461       break;
462     case GST_MESSAGE_STATE_DIRTY:
463     case GST_MESSAGE_CLOCK_PROVIDE:
464     case GST_MESSAGE_CLOCK_LOST:
465     case GST_MESSAGE_NEW_CLOCK:
466     case GST_MESSAGE_STRUCTURE_CHANGE:
467     case GST_MESSAGE_STREAM_STATUS:
468       break;
469     case GST_MESSAGE_STEP_DONE:
470     case GST_MESSAGE_APPLICATION:
471     case GST_MESSAGE_ELEMENT:
472     case GST_MESSAGE_SEGMENT_START:
473     case GST_MESSAGE_SEGMENT_DONE:
474     case GST_MESSAGE_DURATION:
475     case GST_MESSAGE_LATENCY:
476     case GST_MESSAGE_ASYNC_START:
477     case GST_MESSAGE_ASYNC_DONE:
478     case GST_MESSAGE_REQUEST_STATE:
479     case GST_MESSAGE_STEP_START:
480     case GST_MESSAGE_QOS:
481     default:
482       if (verbose) {
483         g_print ("message: %s\n", GST_MESSAGE_TYPE_NAME (message));
484       }
485       break;
486   }
487
488   return TRUE;
489 }
490
491
492
493 static gboolean
494 onesecond_timer (gpointer priv)
495 {
496   //GstReplace *replace = (GstReplace *)priv;
497
498   g_print(".\n");
499
500   return TRUE;
501 }
502
503
504
505 /* helper functions */
506
507 #if 0
508 gboolean
509 have_element (const gchar *element_name)
510 {
511   GstPluginFeature *feature;
512
513   feature = gst_default_registry_find_feature (element_name,
514       GST_TYPE_ELEMENT_FACTORY);
515   if (feature) {
516     g_object_unref (feature);
517     return TRUE;
518   }
519   return FALSE;
520 }
521 #endif
522
523 EOF
524
525 }
526
527 generate | sed \
528   -e "s/GST_BASE_REPLACE/$GST_BASE_REPLACE/g" \
529   -e "s/GST_TYPE_BASE_REPLACE/$GST_TYPE_BASE_REPLACE/g" \
530   -e "s/GstBaseReplace/$GstBaseReplace/g" \
531   -e "s/GST_IS_REPLACE/$GST_IS_REPLACE/g" \
532   -e "s/GST_REPLACE/$GST_REPLACE/g" \
533   -e "s/GST_TYPE_REPLACE/$GST_TYPE_REPLACE/g" \
534   -e "s/GstReplace/$GstReplace/g" \
535   -e "s/gst_replace/$gst_replace/g" \
536   -e "s/gstreplace/$gstreplace/g" \
537   -e "s/replace/$replace/g" >$gstreplace.c
538
539 gst-indent $gstreplace.c
540
541 gcc -O2 -Wall $(pkg-config --cflags gstreamer-1.0) -c -o $gstreplace.o $gstreplace.c
542 gcc -o $gstreplace $gstreplace.o $(pkg-config --libs gstreamer-1.0)
543
544