Added command line parsing for
[platform/upstream/gstreamer.git] / gst / gstinfo.c
1 /* GStreamer
2  * Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
3  *                    2000 Wim Taymans <wtay@chello.be>
4  *
5  * gstinfo.c: INFO, ERROR, and DEBUG systems
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 #include "gst_private.h"
24 #include "gst.h"
25
26 extern gchar *_gst_progname;
27
28
29 /***** DEBUG system *****/
30 GHashTable *__gst_function_pointers = NULL;
31
32
33
34 /***** INFO system *****/
35 GstInfoHandler _gst_info_handler = gst_default_info_handler;
36 #ifdef GST_INFO_ENABLED_VERBOSE
37 guint32 _gst_info_categories = 0xffffffff;
38 #else
39 guint32 _gst_info_categories = 0x00000001;
40 #endif
41
42 static gchar *_gst_info_category_strings[] = {
43   "GST_INIT",
44   "COTHREADS",
45   "COTHREAD_SWITCH",
46   "AUTOPLUG",
47   "AUTOPLUG_ATTEMPT",
48   "PARENTAGE",
49   "STATES",
50   "PLANING",
51   "SCHEDULING",
52   "OPERATION",
53   "BUFFER",
54   "CAPS",
55   "CLOCK",
56   "ELEMENT_PADS",
57   "ELEMENTFACTORY",
58   "PADS",
59   "PIPELINE",
60   "PLUGIN_LOADING",
61   "PLUGIN_ERRORS",
62   "PROPERTIES",
63   "THREAD",
64   "TYPES",
65   "XML",
66 };
67
68 void
69 gst_default_info_handler (gint category, gchar *file, gchar *function,
70                            gint line, gchar *debug_string,
71                            void *element, gchar *string)
72 {
73   gchar *empty = "";
74   gchar *elementname = empty,*location = empty;
75
76   if (debug_string == NULL) debug_string = "";
77   if (category != GST_CAT_GST_INIT)
78     location = g_strdup_printf("%s:%d%s:",function,line,debug_string);
79   if (element && GST_IS_ELEMENT (element))
80     elementname = g_strdup_printf (" [%s]",gst_element_get_name (element));
81
82   fprintf(stderr,"INFO:%s%s %s\n",location,elementname,string);
83
84   if (location != empty) g_free(location);
85   if (elementname != empty) g_free(elementname);
86
87   g_free(string);
88 }
89
90 void
91 gst_info_set_categories (guint32 categories) {
92   _gst_info_categories = categories;
93 }
94
95 guint32
96 gst_info_get_categories () {
97   return _gst_info_categories;
98 }
99
100 const gchar *
101 gst_get_category_name (gint category) {
102   if ((category >= 0) && (category < GST_CAT_MAX_CATEGORY))
103     return _gst_info_category_strings[category];
104   else
105     return NULL;
106 }
107
108 void
109 gst_info_enable_category (gint category) {
110   _gst_info_categories |= (1 << category);
111 }
112
113 void
114 gst_info_disable_category (gint category) {
115   _gst_info_categories &= ~ (1 << category);
116 }
117
118
119
120 /***** ERROR system *****/
121 GstErrorHandler _gst_error_handler = gst_default_error_handler;
122
123 void
124 gst_default_error_handler (gchar *file, gchar *function,
125                            gint line, gchar *debug_string,
126                            void *element, void *object, gchar *string)
127 {
128   int chars = 0;
129   gchar *path;
130   int i;
131
132   // if there are NULL pointers, point them to null strings to clean up output
133   if (!debug_string) debug_string = "";
134   if (!string) string = "";
135
136   // print out a preamble
137   fprintf(stderr,"***** GStreamer ERROR ***** in file %s at %s:%d%s\n",
138           file,function,line,debug_string);
139
140   // if there's an element, print out the pertinent information
141   if (element) {
142     if (GST_IS_OBJECT(element)) {
143       path = gst_object_get_path_string(element);
144       fprintf(stderr,"Element: %s",path);
145       chars = 9 + strlen(path);
146       g_free(path);
147     } else {
148       fprintf(stderr,"Element ptr: %p",element);
149       chars = 15 + sizeof(void*)*2;
150     }
151   }
152
153   // if there's an object, print it out as well
154   if (object) {
155     // attempt to pad the line, or create a new one
156     if (chars < 40)
157       for (i=0;i<(40-chars)/8+1;i++) fprintf(stderr,"\t");
158     else
159       fprintf(stderr,"\n");
160
161     if (GST_IS_OBJECT(object)) {
162       path = gst_object_get_path_string(object);
163       fprintf(stderr,"Object: %s",path);
164       g_free(path);
165     } else {
166       fprintf(stderr,"Object ptr: %p",object);
167     }
168   }
169
170   fprintf(stderr,"\n");
171   fprintf(stderr,"Error: %s\n",string);
172
173   g_free(string);
174
175   fprintf(stderr,"***** attempting to stack trace.... *****\n");
176
177   g_on_error_stack_trace (_gst_progname);
178
179   exit(1);
180 }
181
182 gst_info_init (int    *argc,
183                char ***argv)
184 {
185
186   if (argc && argv) {
187     
188   }
189 }