2000-12-28 22:12:02 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
|
|
|
* 2000 Wim Taymans <wtay@chello.be>
|
|
|
|
*
|
|
|
|
* gsttrace.h: Header for tracing functions (depracated)
|
2000-01-30 09:03:00 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GST_TRACE_H__
|
|
|
|
#define __GST_TRACE_H__
|
|
|
|
|
2001-06-25 20:36:02 +00:00
|
|
|
#ifndef GST_DISABLE_TRACE
|
|
|
|
|
2000-12-15 01:57:34 +00:00
|
|
|
#include <glib.h>
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2002-07-08 19:07:30 +00:00
|
|
|
G_BEGIN_DECLS
|
2000-12-28 22:12:02 +00:00
|
|
|
|
2000-11-04 18:54:07 +00:00
|
|
|
typedef struct _GstTrace GstTrace;
|
|
|
|
typedef struct _GstTraceEntry GstTraceEntry;
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
struct _GstTrace {
|
|
|
|
/* where this trace is going */
|
|
|
|
gchar *filename;
|
|
|
|
int fd;
|
|
|
|
|
|
|
|
/* current buffer, size, head offset */
|
|
|
|
GstTraceEntry *buf;
|
|
|
|
gint bufsize;
|
|
|
|
gint bufoffset;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GstTraceEntry {
|
2001-08-22 21:45:25 +00:00
|
|
|
gint64 timestamp;
|
2000-01-30 09:03:00 +00:00
|
|
|
guint32 sequence;
|
|
|
|
guint32 data;
|
|
|
|
gchar message[112];
|
|
|
|
};
|
|
|
|
|
2003-02-02 19:10:44 +00:00
|
|
|
|
|
|
|
|
2002-08-12 16:59:39 +00:00
|
|
|
GstTrace* gst_trace_new (gchar *filename, gint size);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
2000-11-04 18:54:07 +00:00
|
|
|
void gst_trace_destroy (GstTrace *trace);
|
|
|
|
void gst_trace_flush (GstTrace *trace);
|
2001-05-16 05:04:44 +00:00
|
|
|
void gst_trace_text_flush (GstTrace *trace);
|
2000-11-04 18:54:07 +00:00
|
|
|
#define gst_trace_get_size(trace) ((trace)->bufsize)
|
|
|
|
#define gst_trace_get_offset(trace) ((trace)->bufoffset)
|
|
|
|
#define gst_trace_get_remaining(trace) ((trace)->bufsize - (trace)->bufoffset)
|
|
|
|
void gst_trace_set_default (GstTrace *trace);
|
|
|
|
|
|
|
|
void _gst_trace_add_entry (GstTrace *trace, guint32 seq,
|
|
|
|
guint32 data, gchar *msg);
|
|
|
|
|
2002-12-18 21:44:57 +00:00
|
|
|
void gst_trace_read_tsc (gint64 *dst);
|
2000-01-30 09:03:00 +00:00
|
|
|
|
|
|
|
|
2003-02-02 19:10:44 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GST_ALLOC_TRACE_LIVE = (1 << 0),
|
|
|
|
GST_ALLOC_TRACE_MEM_LIVE = (1 << 1),
|
|
|
|
} GstAllocTraceFlags;
|
|
|
|
|
|
|
|
typedef struct _GstAllocTrace GstAllocTrace;
|
|
|
|
|
|
|
|
struct _GstAllocTrace {
|
|
|
|
gchar *name;
|
|
|
|
gint flags;
|
|
|
|
|
|
|
|
gint live;
|
|
|
|
GSList *mem_live;
|
|
|
|
};
|
|
|
|
|
|
|
|
gboolean gst_alloc_trace_available (void);
|
|
|
|
const GList* gst_alloc_trace_list (void);
|
|
|
|
GstAllocTrace* _gst_alloc_trace_register (const gchar *name);
|
|
|
|
|
|
|
|
void gst_alloc_trace_print_all (void);
|
|
|
|
void gst_alloc_trace_set_flags_all (GstAllocTraceFlags flags);
|
|
|
|
|
|
|
|
GstAllocTrace* gst_alloc_trace_get (const gchar *name);
|
|
|
|
void gst_alloc_trace_print (const GstAllocTrace *trace);
|
|
|
|
void gst_alloc_trace_set_flags (GstAllocTrace *trace, GstAllocTraceFlags flags);
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef GST_WITH_ALLOC_TRACE
|
|
|
|
#define gst_alloc_trace_register(name) _gst_alloc_trace_register (name);
|
|
|
|
#define gst_alloc_trace_new(trace, mem) \
|
|
|
|
G_STMT_START { \
|
|
|
|
if ((trace)->flags & GST_ALLOC_TRACE_LIVE) \
|
|
|
|
(trace)->live++; \
|
|
|
|
if ((trace)->flags & GST_ALLOC_TRACE_MEM_LIVE) \
|
|
|
|
(trace)->mem_live = \
|
|
|
|
g_slist_prepend ((trace)->mem_live, mem); \
|
|
|
|
} G_STMT_END
|
|
|
|
|
|
|
|
#define gst_alloc_trace_free(trace, mem) \
|
|
|
|
G_STMT_START { \
|
|
|
|
if ((trace)->flags & GST_ALLOC_TRACE_LIVE) \
|
|
|
|
(trace)->live--; \
|
|
|
|
if ((trace)->flags & GST_ALLOC_TRACE_MEM_LIVE) \
|
|
|
|
(trace)->mem_live = \
|
|
|
|
g_slist_remove ((trace)->mem_live, mem); \
|
|
|
|
} G_STMT_END
|
|
|
|
|
|
|
|
#else
|
|
|
|
#define gst_alloc_trace_register(name) NULL
|
|
|
|
#define gst_alloc_trace_new(trace, mem)
|
|
|
|
#define gst_alloc_trace_free(trace, mem)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef GST_DISABLE_TRACE
|
2000-01-30 09:03:00 +00:00
|
|
|
extern gint _gst_trace_on;
|
|
|
|
#define gst_trace_add_entry(trace,seq,data,msg) \
|
|
|
|
if (_gst_trace_on) { \
|
|
|
|
_gst_trace_add_entry(trace,(guint32)seq,(guint32)data,msg); \
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
#define gst_trace_add_entry(trace,seq,data,msg)
|
|
|
|
#endif
|
|
|
|
|
2001-12-15 18:15:13 +00:00
|
|
|
#else /* GST_DISABLE_TRACE */
|
2001-06-25 20:36:02 +00:00
|
|
|
|
|
|
|
#pragma GCC poison gst_trace_new
|
|
|
|
#pragma GCC poison gst_trace_destroy
|
|
|
|
#pragma GCC poison gst_trace_flush
|
|
|
|
#pragma GCC poison gst_trace_text_flush
|
|
|
|
#pragma GCC poison gst_trace_get_size
|
|
|
|
#pragma GCC poison gst_trace_get_offset
|
|
|
|
#pragma GCC poison gst_trace_get_remaining
|
|
|
|
#pragma GCC poison gst_trace_set_default
|
|
|
|
#pragma GCC poison _gst_trace_add_entry
|
|
|
|
#pragma GCC poison gst_trace_read_tsc
|
|
|
|
#pragma GCC poison gst_trace_add_entry
|
|
|
|
|
2003-02-10 20:32:32 +00:00
|
|
|
#define gst_alloc_trace_register(name)
|
|
|
|
#define gst_alloc_trace_new(trace, mem)
|
|
|
|
#define gst_alloc_trace_free(trace, mem)
|
|
|
|
|
|
|
|
#define gst_alloc_trace_available() FALSE
|
|
|
|
#define gst_alloc_trace_list() NULL
|
|
|
|
#define _gst_alloc_trace_register(name) NULL
|
|
|
|
|
|
|
|
#define gst_alloc_trace_print_all()
|
|
|
|
#define gst_alloc_trace_set_flags_all(flags)
|
|
|
|
|
|
|
|
#define gst_alloc_trace_get(name) NULL
|
|
|
|
#define gst_alloc_trace_print(trace)
|
|
|
|
#define gst_alloc_trace_set_flags(trace,flags)
|
|
|
|
|
|
|
|
|
2001-12-15 18:15:13 +00:00
|
|
|
#endif /* GST_DISABLE_TRACE */
|
2001-06-25 20:36:02 +00:00
|
|
|
|
2002-07-08 19:07:30 +00:00
|
|
|
G_END_DECLS
|
|
|
|
|
2000-01-30 09:03:00 +00:00
|
|
|
#endif /* __GST_TRACE_H__ */
|