5d4ee465461a4b0eaa7b32eb8d3105a48f5ad58f
[platform/upstream/gstreamer.git] / tools / gst-launch.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *               2000 Wim Taymans <wtay@chello.be>
4  *               2004 Thomas Vander Stichele <thomas@apestaart.org>
5  *
6  * gst-launch.c: tool to launch GStreamer pipelines from the command line
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
21  * Boston, MA 02110-1301, USA.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #  include "config.h"
26 #endif
27
28 #include <glib.h>
29 #include <stdio.h>
30 #include <string.h>
31 #include <signal.h>
32 #ifdef HAVE_UNISTD_H
33 #include <unistd.h>
34 #endif
35 #ifdef G_OS_UNIX
36 #include <glib-unix.h>
37 #include <sys/wait.h>
38 #endif
39 #include <locale.h>             /* for LC_ALL */
40 #include "tools.h"
41
42 extern volatile gboolean glib_on_error_halt;
43
44 #ifdef G_OS_UNIX
45 static void fault_restore (void);
46 static void fault_spin (void);
47 #endif
48
49 /* event_loop return codes */
50 typedef enum _EventLoopResult
51 {
52   ELR_NO_ERROR = 0,
53   ELR_ERROR,
54   ELR_INTERRUPT
55 } EventLoopResult;
56
57 static GstElement *pipeline;
58 static EventLoopResult caught_error = ELR_NO_ERROR;
59 static gboolean quiet = FALSE;
60 static gboolean tags = FALSE;
61 static gboolean toc = FALSE;
62 static gboolean messages = FALSE;
63 static gboolean is_live = FALSE;
64 static gboolean waiting_eos = FALSE;
65
66 /* convenience macro so we don't have to litter the code with if(!quiet) */
67 #define PRINT if(!quiet)g_print
68
69 #ifdef G_OS_UNIX
70 static void
71 fault_handler_sighandler (int signum)
72 {
73   fault_restore ();
74
75   /* printf is used instead of g_print(), since it's less likely to
76    * deadlock */
77   switch (signum) {
78     case SIGSEGV:
79       fprintf (stderr, "Caught SIGSEGV\n");
80       break;
81     case SIGQUIT:
82       if (!quiet)
83         printf ("Caught SIGQUIT\n");
84       break;
85     default:
86       fprintf (stderr, "signo:  %d\n", signum);
87       break;
88   }
89
90   fault_spin ();
91 }
92
93 static void
94 fault_spin (void)
95 {
96   int spinning = TRUE;
97
98   glib_on_error_halt = FALSE;
99   g_on_error_stack_trace ("gst-launch-" GST_API_VERSION);
100
101   wait (NULL);
102
103   /* FIXME how do we know if we were run by libtool? */
104   fprintf (stderr,
105       "Spinning.  Please run 'gdb gst-launch- " GST_API_VERSION " %d' to "
106       "continue debugging, Ctrl-C to quit, or Ctrl-\\ to dump core.\n",
107       (gint) getpid ());
108   while (spinning)
109     g_usleep (1000000);
110 }
111
112 static void
113 fault_restore (void)
114 {
115   struct sigaction action;
116
117   memset (&action, 0, sizeof (action));
118   action.sa_handler = SIG_DFL;
119
120   sigaction (SIGSEGV, &action, NULL);
121   sigaction (SIGQUIT, &action, NULL);
122 }
123
124 static void
125 fault_setup (void)
126 {
127   struct sigaction action;
128
129   memset (&action, 0, sizeof (action));
130   action.sa_handler = fault_handler_sighandler;
131
132   sigaction (SIGSEGV, &action, NULL);
133   sigaction (SIGQUIT, &action, NULL);
134 }
135 #endif /* G_OS_UNIX */
136
137 #if 0
138 typedef struct _GstIndexStats
139 {
140   gint id;
141   gchar *desc;
142
143   guint num_frames;
144   guint num_keyframes;
145   guint num_dltframes;
146   GstClockTime last_keyframe;
147   GstClockTime last_dltframe;
148   GstClockTime min_keyframe_gap;
149   GstClockTime max_keyframe_gap;
150   GstClockTime avg_keyframe_gap;
151 } GstIndexStats;
152
153 static void
154 entry_added (GstIndex * index, GstIndexEntry * entry, gpointer user_data)
155 {
156   GPtrArray *index_stats = (GPtrArray *) user_data;
157   GstIndexStats *s;
158
159   switch (entry->type) {
160     case GST_INDEX_ENTRY_ID:
161       /* we have a new writer */
162       GST_DEBUG_OBJECT (index, "id %d: describes writer %s", entry->id,
163           GST_INDEX_ID_DESCRIPTION (entry));
164       if (entry->id >= index_stats->len) {
165         g_ptr_array_set_size (index_stats, entry->id + 1);
166       }
167       s = g_new (GstIndexStats, 1);
168       s->id = entry->id;
169       s->desc = g_strdup (GST_INDEX_ID_DESCRIPTION (entry));
170       s->num_frames = s->num_keyframes = s->num_dltframes = 0;
171       s->last_keyframe = s->last_dltframe = GST_CLOCK_TIME_NONE;
172       s->min_keyframe_gap = s->max_keyframe_gap = s->avg_keyframe_gap =
173           GST_CLOCK_TIME_NONE;
174       g_ptr_array_index (index_stats, entry->id) = s;
175       break;
176     case GST_INDEX_ENTRY_FORMAT:
177       /* have not found any code calling this */
178       GST_DEBUG_OBJECT (index, "id %d: registered format %d for %s\n",
179           entry->id, GST_INDEX_FORMAT_FORMAT (entry),
180           GST_INDEX_FORMAT_KEY (entry));
181       break;
182     case GST_INDEX_ENTRY_ASSOCIATION:
183     {
184       gint64 ts;
185       GstAssocFlags flags = GST_INDEX_ASSOC_FLAGS (entry);
186
187       s = g_ptr_array_index (index_stats, entry->id);
188       gst_index_entry_assoc_map (entry, GST_FORMAT_TIME, &ts);
189
190       if (flags & GST_ASSOCIATION_FLAG_KEY_UNIT) {
191         s->num_keyframes++;
192
193         if (GST_CLOCK_TIME_IS_VALID (ts)) {
194           if (GST_CLOCK_TIME_IS_VALID (s->last_keyframe)) {
195             GstClockTimeDiff d = GST_CLOCK_DIFF (s->last_keyframe, ts);
196
197             if (G_UNLIKELY (d < 0)) {
198               GST_WARNING ("received out-of-order keyframe at %"
199                   GST_TIME_FORMAT, GST_TIME_ARGS (ts));
200               /* FIXME: does it still make sense to use that for the statistics */
201               d = GST_CLOCK_DIFF (ts, s->last_keyframe);
202             }
203
204             if (GST_CLOCK_TIME_IS_VALID (s->min_keyframe_gap)) {
205               if (d < s->min_keyframe_gap)
206                 s->min_keyframe_gap = d;
207             } else {
208               s->min_keyframe_gap = d;
209             }
210             if (GST_CLOCK_TIME_IS_VALID (s->max_keyframe_gap)) {
211               if (d > s->max_keyframe_gap)
212                 s->max_keyframe_gap = d;
213             } else {
214               s->max_keyframe_gap = d;
215             }
216             if (GST_CLOCK_TIME_IS_VALID (s->avg_keyframe_gap)) {
217               s->avg_keyframe_gap = (d + s->num_frames * s->avg_keyframe_gap) /
218                   (s->num_frames + 1);
219             } else {
220               s->avg_keyframe_gap = d;
221             }
222           }
223           s->last_keyframe = ts;
224         }
225       }
226       if (flags & GST_ASSOCIATION_FLAG_DELTA_UNIT) {
227         s->num_dltframes++;
228         if (GST_CLOCK_TIME_IS_VALID (ts)) {
229           s->last_dltframe = ts;
230         }
231       }
232       s->num_frames++;
233
234       break;
235     }
236     default:
237       break;
238   }
239 }
240
241 /* print statistics from the entry_added callback, free the entries */
242 static void
243 print_index_stats (GPtrArray * index_stats)
244 {
245   gint i;
246
247   if (index_stats->len) {
248     g_print ("%s:\n", _("Index statistics"));
249   }
250
251   for (i = 0; i < index_stats->len; i++) {
252     GstIndexStats *s = g_ptr_array_index (index_stats, i);
253     if (s) {
254       g_print ("id %d, %s\n", s->id, s->desc);
255       if (s->num_frames) {
256         GstClockTime last_frame = s->last_keyframe;
257
258         if (GST_CLOCK_TIME_IS_VALID (s->last_dltframe)) {
259           if (!GST_CLOCK_TIME_IS_VALID (last_frame) ||
260               (s->last_dltframe > last_frame))
261             last_frame = s->last_dltframe;
262         }
263
264         if (GST_CLOCK_TIME_IS_VALID (last_frame)) {
265           g_print ("  total time               = %" GST_TIME_FORMAT "\n",
266               GST_TIME_ARGS (last_frame));
267         }
268         g_print ("  frame/keyframe rate      = %u / %u = ", s->num_frames,
269             s->num_keyframes);
270         if (s->num_keyframes)
271           g_print ("%lf\n", s->num_frames / (gdouble) s->num_keyframes);
272         else
273           g_print ("-\n");
274         if (s->num_keyframes) {
275           g_print ("  min/avg/max keyframe gap = %" GST_TIME_FORMAT ", %"
276               GST_TIME_FORMAT ", %" GST_TIME_FORMAT "\n",
277               GST_TIME_ARGS (s->min_keyframe_gap),
278               GST_TIME_ARGS (s->avg_keyframe_gap),
279               GST_TIME_ARGS (s->max_keyframe_gap));
280         }
281       } else {
282         g_print ("  no stats\n");
283       }
284
285       g_free (s->desc);
286       g_free (s);
287     }
288   }
289 }
290 #endif
291
292 /* Kids, use the functions from libgstpbutils in gst-plugins-base in your
293  * own code (we can't do that here because it would introduce a circular
294  * dependency) */
295 static gboolean
296 gst_is_missing_plugin_message (GstMessage * msg)
297 {
298   if (GST_MESSAGE_TYPE (msg) != GST_MESSAGE_ELEMENT
299       || gst_message_get_structure (msg) == NULL)
300     return FALSE;
301
302   return gst_structure_has_name (gst_message_get_structure (msg),
303       "missing-plugin");
304 }
305
306 static const gchar *
307 gst_missing_plugin_message_get_description (GstMessage * msg)
308 {
309   return gst_structure_get_string (gst_message_get_structure (msg), "name");
310 }
311
312 static void
313 print_error_message (GstMessage * msg)
314 {
315   GError *err = NULL;
316   gchar *name, *debug = NULL;
317
318   name = gst_object_get_path_string (msg->src);
319   gst_message_parse_error (msg, &err, &debug);
320
321   g_printerr (_("ERROR: from element %s: %s\n"), name, err->message);
322   if (debug != NULL)
323     g_printerr (_("Additional debug info:\n%s\n"), debug);
324
325   g_error_free (err);
326   g_free (debug);
327   g_free (name);
328 }
329
330 static void
331 print_tag (const GstTagList * list, const gchar * tag, gpointer unused)
332 {
333   gint i, count;
334
335   count = gst_tag_list_get_tag_size (list, tag);
336
337   for (i = 0; i < count; i++) {
338     gchar *str;
339
340     if (gst_tag_get_type (tag) == G_TYPE_STRING) {
341       if (!gst_tag_list_get_string_index (list, tag, i, &str))
342         g_assert_not_reached ();
343     } else if (gst_tag_get_type (tag) == GST_TYPE_SAMPLE) {
344       GstSample *sample = NULL;
345
346       if (gst_tag_list_get_sample_index (list, tag, i, &sample)) {
347         GstBuffer *img = gst_sample_get_buffer (sample);
348         GstCaps *caps = gst_sample_get_caps (sample);
349
350         if (img) {
351           if (caps) {
352             gchar *caps_str;
353
354             caps_str = gst_caps_to_string (caps);
355             str = g_strdup_printf ("buffer of %" G_GSIZE_FORMAT " bytes, "
356                 "type: %s", gst_buffer_get_size (img), caps_str);
357             g_free (caps_str);
358           } else {
359             str = g_strdup_printf ("buffer of %" G_GSIZE_FORMAT " bytes",
360                 gst_buffer_get_size (img));
361           }
362         } else {
363           str = g_strdup ("NULL buffer");
364         }
365       }
366     } else if (gst_tag_get_type (tag) == GST_TYPE_DATE_TIME) {
367       GstDateTime *dt = NULL;
368
369       gst_tag_list_get_date_time_index (list, tag, i, &dt);
370       if (!gst_date_time_has_time (dt)) {
371         str = gst_date_time_to_iso8601_string (dt);
372       } else {
373         gdouble tz_offset = gst_date_time_get_time_zone_offset (dt);
374         gchar tz_str[32];
375
376         if (tz_offset != 0.0) {
377           g_snprintf (tz_str, sizeof (tz_str), "(UTC %s%gh)",
378               (tz_offset > 0.0) ? "+" : "", tz_offset);
379         } else {
380           g_snprintf (tz_str, sizeof (tz_str), "(UTC)");
381         }
382
383         str = g_strdup_printf ("%04u-%02u-%02u %02u:%02u:%02u %s",
384             gst_date_time_get_year (dt), gst_date_time_get_month (dt),
385             gst_date_time_get_day (dt), gst_date_time_get_hour (dt),
386             gst_date_time_get_minute (dt), gst_date_time_get_second (dt),
387             tz_str);
388       }
389       gst_date_time_unref (dt);
390     } else {
391       str =
392           g_strdup_value_contents (gst_tag_list_get_value_index (list, tag, i));
393     }
394
395     if (i == 0) {
396       PRINT ("%16s: %s\n", gst_tag_get_nick (tag), str);
397     } else {
398       PRINT ("%16s: %s\n", "", str);
399     }
400
401     g_free (str);
402   }
403 }
404
405 static void
406 print_tag_foreach (const GstTagList * tags, const gchar * tag,
407     gpointer user_data)
408 {
409   GValue val = { 0, };
410   gchar *str;
411   gint depth = GPOINTER_TO_INT (user_data);
412
413   gst_tag_list_copy_value (&val, tags, tag);
414
415   if (G_VALUE_HOLDS_STRING (&val))
416     str = g_value_dup_string (&val);
417   else
418     str = gst_value_serialize (&val);
419
420   g_print ("%*s%s: %s\n", 2 * depth, " ", gst_tag_get_nick (tag), str);
421   g_free (str);
422
423   g_value_unset (&val);
424 }
425
426 #define MAX_INDENT 40
427
428 static void
429 print_toc_entry (gpointer data, gpointer user_data)
430 {
431   GstTocEntry *entry = (GstTocEntry *) data;
432   const gchar spc[MAX_INDENT + 1] = "                                        ";
433   guint indent = MIN (GPOINTER_TO_UINT (user_data), MAX_INDENT);
434   const GstTagList *tags;
435   GList *subentries;
436   gint64 start, stop;
437
438   gst_toc_entry_get_start_stop_times (entry, &start, &stop);
439
440   PRINT ("%s%s:", &spc[MAX_INDENT - indent],
441       gst_toc_entry_type_get_nick (gst_toc_entry_get_entry_type (entry)));
442   if (GST_CLOCK_TIME_IS_VALID (start)) {
443     PRINT (" start: %" GST_TIME_FORMAT, GST_TIME_ARGS (start));
444   }
445   if (GST_CLOCK_TIME_IS_VALID (stop)) {
446     PRINT (" stop: %" GST_TIME_FORMAT, GST_TIME_ARGS (stop));
447   }
448   PRINT ("\n");
449   indent += 2;
450
451   /* print tags */
452   tags = gst_toc_entry_get_tags (entry);
453   if (tags)
454     gst_tag_list_foreach (tags, print_tag_foreach, GUINT_TO_POINTER (indent));
455
456   /* loop over sub-toc entries */
457   subentries = gst_toc_entry_get_sub_entries (entry);
458   g_list_foreach (subentries, print_toc_entry, GUINT_TO_POINTER (indent));
459 }
460
461 #ifdef G_OS_UNIX
462 /* As the interrupt handler is dispatched from GMainContext as a GSourceFunc
463  * handler, we can react to this by posting a message. */
464 static gboolean
465 intr_handler (gpointer user_data)
466 {
467   GstElement *pipeline = (GstElement *) user_data;
468
469   PRINT ("handling interrupt.\n");
470
471   /* post an application specific message */
472   gst_element_post_message (GST_ELEMENT (pipeline),
473       gst_message_new_application (GST_OBJECT (pipeline),
474           gst_structure_new ("GstLaunchInterrupt",
475               "message", G_TYPE_STRING, "Pipeline interrupted", NULL)));
476
477   /* remove signal handler */
478   return FALSE;
479 }
480
481 #endif /* G_OS_UNIX */
482
483 /* returns ELR_ERROR if there was an error
484  * or ELR_INTERRUPT if we caught a keyboard interrupt
485  * or ELR_NO_ERROR otherwise. */
486 static EventLoopResult
487 event_loop (GstElement * pipeline, gboolean blocking, GstState target_state)
488 {
489 #ifdef G_OS_UNIX
490   guint signal_watch_id;
491 #endif
492   GstBus *bus;
493   GstMessage *message = NULL;
494   EventLoopResult res = ELR_NO_ERROR;
495   gboolean buffering = FALSE;
496
497   bus = gst_element_get_bus (GST_ELEMENT (pipeline));
498
499 #ifdef G_OS_UNIX
500   signal_watch_id =
501       g_unix_signal_add (SIGINT, (GSourceFunc) intr_handler, pipeline);
502 #endif
503
504   while (TRUE) {
505     message = gst_bus_poll (bus, GST_MESSAGE_ANY, blocking ? -1 : 0);
506
507     /* if the poll timed out, only when !blocking */
508     if (message == NULL)
509       goto exit;
510
511     /* check if we need to dump messages to the console */
512     if (messages) {
513       GstObject *src_obj;
514       const GstStructure *s;
515       guint32 seqnum;
516
517       seqnum = gst_message_get_seqnum (message);
518
519       s = gst_message_get_structure (message);
520
521       src_obj = GST_MESSAGE_SRC (message);
522
523       if (GST_IS_ELEMENT (src_obj)) {
524         PRINT (_("Got message #%u from element \"%s\" (%s): "),
525             (guint) seqnum, GST_ELEMENT_NAME (src_obj),
526             GST_MESSAGE_TYPE_NAME (message));
527       } else if (GST_IS_PAD (src_obj)) {
528         PRINT (_("Got message #%u from pad \"%s:%s\" (%s): "),
529             (guint) seqnum, GST_DEBUG_PAD_NAME (src_obj),
530             GST_MESSAGE_TYPE_NAME (message));
531       } else if (GST_IS_OBJECT (src_obj)) {
532         PRINT (_("Got message #%u from object \"%s\" (%s): "),
533             (guint) seqnum, GST_OBJECT_NAME (src_obj),
534             GST_MESSAGE_TYPE_NAME (message));
535       } else {
536         PRINT (_("Got message #%u (%s): "), (guint) seqnum,
537             GST_MESSAGE_TYPE_NAME (message));
538       }
539
540       if (s) {
541         gchar *sstr;
542
543         sstr = gst_structure_to_string (s);
544         PRINT ("%s\n", sstr);
545         g_free (sstr);
546       } else {
547         PRINT ("no message details\n");
548       }
549     }
550
551     switch (GST_MESSAGE_TYPE (message)) {
552       case GST_MESSAGE_NEW_CLOCK:
553       {
554         GstClock *clock;
555
556         gst_message_parse_new_clock (message, &clock);
557
558         PRINT ("New clock: %s\n", (clock ? GST_OBJECT_NAME (clock) : "NULL"));
559         break;
560       }
561       case GST_MESSAGE_CLOCK_LOST:
562         PRINT ("Clock lost, selecting a new one\n");
563         gst_element_set_state (pipeline, GST_STATE_PAUSED);
564         gst_element_set_state (pipeline, GST_STATE_PLAYING);
565         break;
566       case GST_MESSAGE_EOS:{
567         waiting_eos = FALSE;
568         PRINT (_("Got EOS from element \"%s\".\n"),
569             GST_MESSAGE_SRC_NAME (message));
570         goto exit;
571       }
572       case GST_MESSAGE_TAG:
573         if (tags) {
574           GstTagList *tag_list;
575
576           if (GST_IS_ELEMENT (GST_MESSAGE_SRC (message))) {
577             PRINT (_("FOUND TAG      : found by element \"%s\".\n"),
578                 GST_MESSAGE_SRC_NAME (message));
579           } else if (GST_IS_PAD (GST_MESSAGE_SRC (message))) {
580             PRINT (_("FOUND TAG      : found by pad \"%s:%s\".\n"),
581                 GST_DEBUG_PAD_NAME (GST_MESSAGE_SRC (message)));
582           } else if (GST_IS_OBJECT (GST_MESSAGE_SRC (message))) {
583             PRINT (_("FOUND TAG      : found by object \"%s\".\n"),
584                 GST_MESSAGE_SRC_NAME (message));
585           } else {
586             PRINT (_("FOUND TAG\n"));
587           }
588
589           gst_message_parse_tag (message, &tag_list);
590           gst_tag_list_foreach (tag_list, print_tag, NULL);
591           gst_tag_list_unref (tag_list);
592         }
593         break;
594       case GST_MESSAGE_TOC:
595         if (toc) {
596           GstToc *toc;
597           GList *entries;
598           gboolean updated;
599
600           if (GST_IS_ELEMENT (GST_MESSAGE_SRC (message))) {
601             PRINT (_("FOUND TOC      : found by element \"%s\".\n"),
602                 GST_MESSAGE_SRC_NAME (message));
603           } else if (GST_IS_OBJECT (GST_MESSAGE_SRC (message))) {
604             PRINT (_("FOUND TOC      : found by object \"%s\".\n"),
605                 GST_MESSAGE_SRC_NAME (message));
606           } else {
607             PRINT (_("FOUND TOC\n"));
608           }
609
610           gst_message_parse_toc (message, &toc, &updated);
611           /* recursively loop over toc entries */
612           entries = gst_toc_get_entries (toc);
613           g_list_foreach (entries, print_toc_entry, GUINT_TO_POINTER (0));
614           gst_toc_unref (toc);
615         }
616         break;
617       case GST_MESSAGE_INFO:{
618         GError *gerror;
619         gchar *debug;
620         gchar *name = gst_object_get_path_string (GST_MESSAGE_SRC (message));
621
622         gst_message_parse_info (message, &gerror, &debug);
623         if (debug) {
624           PRINT (_("INFO:\n%s\n"), debug);
625         }
626         g_error_free (gerror);
627         g_free (debug);
628         g_free (name);
629         break;
630       }
631       case GST_MESSAGE_WARNING:{
632         GError *gerror;
633         gchar *debug;
634         gchar *name = gst_object_get_path_string (GST_MESSAGE_SRC (message));
635
636         /* dump graph on warning */
637         GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
638             GST_DEBUG_GRAPH_SHOW_ALL, "gst-launch.warning");
639
640         gst_message_parse_warning (message, &gerror, &debug);
641         PRINT (_("WARNING: from element %s: %s\n"), name, gerror->message);
642         if (debug) {
643           PRINT (_("Additional debug info:\n%s\n"), debug);
644         }
645         g_error_free (gerror);
646         g_free (debug);
647         g_free (name);
648         break;
649       }
650       case GST_MESSAGE_ERROR:{
651         /* dump graph on error */
652         GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
653             GST_DEBUG_GRAPH_SHOW_ALL, "gst-launch.error");
654
655         print_error_message (message);
656
657         /* we have an error */
658         res = ELR_ERROR;
659         goto exit;
660       }
661       case GST_MESSAGE_STATE_CHANGED:{
662         GstState old, new, pending;
663
664         /* we only care about pipeline state change messages */
665         if (GST_MESSAGE_SRC (message) != GST_OBJECT_CAST (pipeline))
666           break;
667
668         /* ignore when we are buffering since then we mess with the states
669          * ourselves. */
670         if (buffering) {
671           PRINT (_("Prerolled, waiting for buffering to finish...\n"));
672           break;
673         }
674
675         gst_message_parse_state_changed (message, &old, &new, &pending);
676
677         /* if we reached the final target state, exit */
678         if (target_state == GST_STATE_PAUSED && new == target_state)
679           goto exit;
680
681         /* else not an interesting message */
682         break;
683       }
684       case GST_MESSAGE_BUFFERING:{
685         gint percent;
686
687         gst_message_parse_buffering (message, &percent);
688         PRINT ("%s %d%%  \r", _("buffering..."), percent);
689
690         /* no state management needed for live pipelines */
691         if (is_live)
692           break;
693
694         if (percent == 100) {
695           /* a 100% message means buffering is done */
696           buffering = FALSE;
697           /* if the desired state is playing, go back */
698           if (target_state == GST_STATE_PLAYING) {
699             PRINT (_("Done buffering, setting pipeline to PLAYING ...\n"));
700             gst_element_set_state (pipeline, GST_STATE_PLAYING);
701           } else
702             goto exit;
703         } else {
704           /* buffering busy */
705           if (buffering == FALSE && target_state == GST_STATE_PLAYING) {
706             /* we were not buffering but PLAYING, PAUSE  the pipeline. */
707             PRINT (_("Buffering, setting pipeline to PAUSED ...\n"));
708             gst_element_set_state (pipeline, GST_STATE_PAUSED);
709           }
710           buffering = TRUE;
711         }
712         break;
713       }
714       case GST_MESSAGE_LATENCY:
715       {
716         PRINT (_("Redistribute latency...\n"));
717         gst_bin_recalculate_latency (GST_BIN (pipeline));
718         break;
719       }
720       case GST_MESSAGE_REQUEST_STATE:
721       {
722         GstState state;
723         gchar *name = gst_object_get_path_string (GST_MESSAGE_SRC (message));
724
725         gst_message_parse_request_state (message, &state);
726
727         PRINT (_("Setting state to %s as requested by %s...\n"),
728             gst_element_state_get_name (state), name);
729
730         gst_element_set_state (pipeline, state);
731
732         g_free (name);
733         break;
734       }
735       case GST_MESSAGE_APPLICATION:{
736         const GstStructure *s;
737
738         s = gst_message_get_structure (message);
739
740         if (gst_structure_has_name (s, "GstLaunchInterrupt")) {
741           /* this application message is posted when we caught an interrupt and
742            * we need to stop the pipeline. */
743           PRINT (_("Interrupt: Stopping pipeline ...\n"));
744           res = ELR_INTERRUPT;
745           goto exit;
746         }
747         break;
748       }
749       case GST_MESSAGE_ELEMENT:{
750         if (gst_is_missing_plugin_message (message)) {
751           const gchar *desc;
752
753           desc = gst_missing_plugin_message_get_description (message);
754           PRINT (_("Missing element: %s\n"), desc ? desc : "(no description)");
755         }
756         break;
757       }
758       default:
759         /* just be quiet by default */
760         break;
761     }
762     if (message)
763       gst_message_unref (message);
764   }
765   g_assert_not_reached ();
766
767 exit:
768   {
769     if (message)
770       gst_message_unref (message);
771     gst_object_unref (bus);
772 #ifdef G_OS_UNIX
773     g_source_remove (signal_watch_id);
774 #endif
775     return res;
776   }
777 }
778
779 static GstBusSyncReply
780 bus_sync_handler (GstBus * bus, GstMessage * message, gpointer data)
781 {
782   GstElement *pipeline = (GstElement *) data;
783
784   switch (GST_MESSAGE_TYPE (message)) {
785     case GST_MESSAGE_STATE_CHANGED:
786       /* we only care about pipeline state change messages */
787       if (GST_MESSAGE_SRC (message) == GST_OBJECT_CAST (pipeline)) {
788         GstState old, new, pending;
789         gchar *state_transition_name;
790
791         gst_message_parse_state_changed (message, &old, &new, &pending);
792
793         state_transition_name = g_strdup_printf ("%s_%s",
794             gst_element_state_get_name (old), gst_element_state_get_name (new));
795
796         /* dump graph for (some) pipeline state changes */
797         {
798           gchar *dump_name = g_strconcat ("gst-launch.", state_transition_name,
799               NULL);
800           GST_DEBUG_BIN_TO_DOT_FILE_WITH_TS (GST_BIN (pipeline),
801               GST_DEBUG_GRAPH_SHOW_ALL, dump_name);
802           g_free (dump_name);
803         }
804
805         /* place a marker into e.g. strace logs */
806         {
807           gchar *access_name = g_strconcat (g_get_tmp_dir (), G_DIR_SEPARATOR_S,
808               "gst-launch", G_DIR_SEPARATOR_S, state_transition_name, NULL);
809           g_file_test (access_name, G_FILE_TEST_EXISTS);
810           g_free (access_name);
811         }
812
813         g_free (state_transition_name);
814       }
815     default:
816       break;
817   }
818   return GST_BUS_PASS;
819 }
820
821 int
822 main (int argc, char *argv[])
823 {
824   /* options */
825   gboolean verbose = FALSE;
826   gboolean no_fault = FALSE;
827   gboolean eos_on_shutdown = FALSE;
828 #if 0
829   gboolean check_index = FALSE;
830 #endif
831   gchar *savefile = NULL;
832   gchar *exclude_args = NULL;
833 #ifndef GST_DISABLE_OPTION_PARSING
834   GOptionEntry options[] = {
835     {"tags", 't', 0, G_OPTION_ARG_NONE, &tags,
836         N_("Output tags (also known as metadata)"), NULL},
837     {"toc", 'c', 0, G_OPTION_ARG_NONE, &toc,
838         N_("Output TOC (chapters and editions)"), NULL},
839     {"verbose", 'v', 0, G_OPTION_ARG_NONE, &verbose,
840         N_("Output status information and property notifications"), NULL},
841     {"quiet", 'q', 0, G_OPTION_ARG_NONE, &quiet,
842         N_("Do not print any progress information"), NULL},
843     {"messages", 'm', 0, G_OPTION_ARG_NONE, &messages,
844         N_("Output messages"), NULL},
845     {"exclude", 'X', 0, G_OPTION_ARG_NONE, &exclude_args,
846         N_("Do not output status information of TYPE"), N_("TYPE1,TYPE2,...")},
847     {"no-fault", 'f', 0, G_OPTION_ARG_NONE, &no_fault,
848         N_("Do not install a fault handler"), NULL},
849     {"eos-on-shutdown", 'e', 0, G_OPTION_ARG_NONE, &eos_on_shutdown,
850         N_("Force EOS on sources before shutting the pipeline down"), NULL},
851 #if 0
852     {"index", 'i', 0, G_OPTION_ARG_NONE, &check_index,
853         N_("Gather and print index statistics"), NULL},
854 #endif
855     GST_TOOLS_GOPTION_VERSION,
856     {NULL}
857   };
858   GOptionContext *ctx;
859   GError *err = NULL;
860 #endif
861 #if 0
862   GstIndex *index;
863   GPtrArray *index_stats = NULL;
864 #endif
865   gchar **argvn;
866   GError *error = NULL;
867   gint res = 0;
868
869   free (malloc (8));            /* -lefence */
870
871 #ifdef ENABLE_NLS
872   bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
873   bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
874   textdomain (GETTEXT_PACKAGE);
875 #endif
876
877   g_set_prgname ("gst-launch-" GST_API_VERSION);
878
879 #ifndef GST_DISABLE_OPTION_PARSING
880   ctx = g_option_context_new ("PIPELINE-DESCRIPTION");
881   g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);
882   g_option_context_add_group (ctx, gst_init_get_option_group ());
883   if (!g_option_context_parse (ctx, &argc, &argv, &err)) {
884     if (err)
885       g_printerr ("Error initializing: %s\n", GST_STR_NULL (err->message));
886     else
887       g_printerr ("Error initializing: Unknown error!\n");
888     exit (1);
889   }
890   g_option_context_free (ctx);
891 #else
892   gst_init (&argc, &argv);
893 #endif
894
895   gst_tools_print_version ();
896
897 #ifdef G_OS_UNIX
898   if (!no_fault)
899     fault_setup ();
900 #endif
901
902   /* make a null-terminated version of argv */
903   argvn = g_new0 (char *, argc);
904   memcpy (argvn, argv + 1, sizeof (char *) * (argc - 1));
905   {
906     pipeline =
907         (GstElement *) gst_parse_launchv ((const gchar **) argvn, &error);
908   }
909   g_free (argvn);
910
911   if (!pipeline) {
912     if (error) {
913       g_printerr (_("ERROR: pipeline could not be constructed: %s.\n"),
914           GST_STR_NULL (error->message));
915       g_error_free (error);
916     } else {
917       g_printerr (_("ERROR: pipeline could not be constructed.\n"));
918     }
919     return 1;
920   } else if (error) {
921     g_printerr (_("WARNING: erroneous pipeline: %s\n"),
922         GST_STR_NULL (error->message));
923     g_error_free (error);
924     return 1;
925   }
926
927   if (verbose) {
928     gchar **exclude_list =
929         exclude_args ? g_strsplit (exclude_args, ",", 0) : NULL;
930     g_signal_connect (pipeline, "deep-notify",
931         G_CALLBACK (gst_object_default_deep_notify), exclude_list);
932   }
933
934   if (!savefile) {
935     GstState state, pending;
936     GstStateChangeReturn ret;
937     GstBus *bus;
938
939     /* If the top-level object is not a pipeline, place it in a pipeline. */
940     if (!GST_IS_PIPELINE (pipeline)) {
941       GstElement *real_pipeline = gst_element_factory_make ("pipeline", NULL);
942
943       if (real_pipeline == NULL) {
944         g_printerr (_("ERROR: the 'pipeline' element wasn't found.\n"));
945         return 1;
946       }
947       gst_bin_add (GST_BIN (real_pipeline), pipeline);
948       pipeline = real_pipeline;
949     }
950 #if 0
951     if (check_index) {
952       /* gst_index_new() creates a null-index, it does not store anything, but
953        * the entry-added signal works and this is what we use to build the
954        * statistics */
955       index = gst_index_new ();
956       if (index) {
957         index_stats = g_ptr_array_new ();
958         g_signal_connect (G_OBJECT (index), "entry-added",
959             G_CALLBACK (entry_added), index_stats);
960         g_object_set (G_OBJECT (index), "resolver", GST_INDEX_RESOLVER_GTYPE,
961             NULL);
962         gst_element_set_index (pipeline, index);
963       }
964     }
965 #endif
966
967     bus = gst_element_get_bus (pipeline);
968     gst_bus_set_sync_handler (bus, bus_sync_handler, (gpointer) pipeline, NULL);
969     gst_object_unref (bus);
970
971     PRINT (_("Setting pipeline to PAUSED ...\n"));
972     ret = gst_element_set_state (pipeline, GST_STATE_PAUSED);
973
974     switch (ret) {
975       case GST_STATE_CHANGE_FAILURE:
976         g_printerr (_("ERROR: Pipeline doesn't want to pause.\n"));
977         res = -1;
978         event_loop (pipeline, FALSE, GST_STATE_VOID_PENDING);
979         goto end;
980       case GST_STATE_CHANGE_NO_PREROLL:
981         PRINT (_("Pipeline is live and does not need PREROLL ...\n"));
982         is_live = TRUE;
983         break;
984       case GST_STATE_CHANGE_ASYNC:
985         PRINT (_("Pipeline is PREROLLING ...\n"));
986         caught_error = event_loop (pipeline, TRUE, GST_STATE_PAUSED);
987         if (caught_error) {
988           g_printerr (_("ERROR: pipeline doesn't want to preroll.\n"));
989           goto end;
990         }
991         state = GST_STATE_PAUSED;
992         /* fallthrough */
993       case GST_STATE_CHANGE_SUCCESS:
994         PRINT (_("Pipeline is PREROLLED ...\n"));
995         break;
996     }
997
998     caught_error = event_loop (pipeline, FALSE, GST_STATE_PLAYING);
999
1000     if (caught_error) {
1001       g_printerr (_("ERROR: pipeline doesn't want to preroll.\n"));
1002     } else {
1003       GstClockTime tfthen, tfnow;
1004       GstClockTimeDiff diff;
1005
1006       PRINT (_("Setting pipeline to PLAYING ...\n"));
1007
1008       if (gst_element_set_state (pipeline,
1009               GST_STATE_PLAYING) == GST_STATE_CHANGE_FAILURE) {
1010         GstMessage *err_msg;
1011         GstBus *bus;
1012
1013         g_printerr (_("ERROR: pipeline doesn't want to play.\n"));
1014         bus = gst_element_get_bus (pipeline);
1015         if ((err_msg = gst_bus_poll (bus, GST_MESSAGE_ERROR, 0))) {
1016           print_error_message (err_msg);
1017           gst_message_unref (err_msg);
1018         }
1019         gst_object_unref (bus);
1020         res = -1;
1021         goto end;
1022       }
1023
1024       tfthen = gst_util_get_timestamp ();
1025       caught_error = event_loop (pipeline, TRUE, GST_STATE_PLAYING);
1026       if (eos_on_shutdown && caught_error != ELR_NO_ERROR) {
1027         gboolean ignore_errors;
1028
1029         waiting_eos = TRUE;
1030         if (caught_error == ELR_INTERRUPT) {
1031           PRINT (_("EOS on shutdown enabled -- Forcing EOS on the pipeline\n"));
1032           gst_element_send_event (pipeline, gst_event_new_eos ());
1033           ignore_errors = FALSE;
1034         } else {
1035           PRINT (_("EOS on shutdown enabled -- waiting for EOS after Error\n"));
1036           ignore_errors = TRUE;
1037         }
1038         PRINT (_("Waiting for EOS...\n"));
1039
1040         while (TRUE) {
1041           caught_error = event_loop (pipeline, TRUE, GST_STATE_PLAYING);
1042
1043           if (caught_error == ELR_NO_ERROR) {
1044             /* we got EOS */
1045             PRINT (_("EOS received - stopping pipeline...\n"));
1046             break;
1047           } else if (caught_error == ELR_INTERRUPT) {
1048             PRINT (_
1049                 ("Interrupt while waiting for EOS - stopping pipeline...\n"));
1050             break;
1051           } else if (caught_error == ELR_ERROR) {
1052             if (!ignore_errors) {
1053               PRINT (_("An error happened while waiting for EOS\n"));
1054               break;
1055             }
1056           }
1057         }
1058       }
1059       tfnow = gst_util_get_timestamp ();
1060
1061       diff = GST_CLOCK_DIFF (tfthen, tfnow);
1062
1063       PRINT (_("Execution ended after %" GST_TIME_FORMAT "\n"),
1064           GST_TIME_ARGS (diff));
1065     }
1066
1067     PRINT (_("Setting pipeline to PAUSED ...\n"));
1068     gst_element_set_state (pipeline, GST_STATE_PAUSED);
1069     if (caught_error == ELR_NO_ERROR)
1070       gst_element_get_state (pipeline, &state, &pending, GST_CLOCK_TIME_NONE);
1071
1072     /* iterate mainloop to process pending stuff */
1073     while (g_main_context_iteration (NULL, FALSE));
1074
1075     PRINT (_("Setting pipeline to READY ...\n"));
1076     gst_element_set_state (pipeline, GST_STATE_READY);
1077     gst_element_get_state (pipeline, &state, &pending, GST_CLOCK_TIME_NONE);
1078
1079 #if 0
1080     if (check_index) {
1081       print_index_stats (index_stats);
1082       g_ptr_array_free (index_stats, TRUE);
1083     }
1084 #endif
1085
1086   end:
1087     PRINT (_("Setting pipeline to NULL ...\n"));
1088     gst_element_set_state (pipeline, GST_STATE_NULL);
1089   }
1090
1091   PRINT (_("Freeing pipeline ...\n"));
1092   gst_object_unref (pipeline);
1093
1094   gst_deinit ();
1095
1096   return res;
1097 }