mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
34d56abedd
We need different export decorators for the different libs. For now no actual change though, just rename before the release, and add prelude headers to define the new decorator to GST_EXPORT.
138 lines
5.7 KiB
C
138 lines
5.7 KiB
C
/* GStreamer
|
|
*
|
|
* Copyright (C) 2013 Thibault Saunier <thibault.saunier@collabora.com>
|
|
*
|
|
* 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_VALIDATE_REPORTER_
|
|
#define _GST_VALIDATE_REPORTER_
|
|
|
|
typedef struct _GstValidateReporter GstValidateReporter;
|
|
typedef struct _GstValidateReporterInterface GstValidateReporterInterface;
|
|
|
|
#include <glib-object.h>
|
|
#include <gst/validate/validate-prelude.h>
|
|
#include <gst/validate/gst-validate-report.h>
|
|
#include <gst/validate/gst-validate-runner.h>
|
|
#include <gst/validate/gst-validate-enums.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/* GstValidateReporter interface declarations */
|
|
#define GST_TYPE_VALIDATE_REPORTER (gst_validate_reporter_get_type ())
|
|
#define GST_VALIDATE_REPORTER(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_VALIDATE_REPORTER, GstValidateReporter))
|
|
#define GST_IS_VALIDATE_REPORTER(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_VALIDATE_REPORTER))
|
|
#define GST_VALIDATE_REPORTER_GET_INTERFACE(inst) (G_TYPE_INSTANCE_GET_INTERFACE ((inst), GST_TYPE_VALIDATE_REPORTER, GstValidateReporterInterface))
|
|
#define GST_VALIDATE_REPORTER_CAST(obj) ((GstValidateReporter *) obj)
|
|
|
|
/**
|
|
* GST_VALIDATE_REPORT:
|
|
* @m: The #GstValidateReporter where the issue happened
|
|
* @issue_id: The #GstValidateIssueId of the issue
|
|
* @...: The format of the message describing the issue in a printf
|
|
* format, followed by the parameters.
|
|
*
|
|
* Reports a new issue in the GstValidate reporting system with @m
|
|
* as the source of that issue.
|
|
*/
|
|
#ifdef G_HAVE_ISO_VARARGS
|
|
#define GST_VALIDATE_REPORT(m, issue_id, ...) \
|
|
G_STMT_START { \
|
|
gst_validate_report (GST_VALIDATE_REPORTER (m), \
|
|
issue_id, \
|
|
__VA_ARGS__ ); \
|
|
} G_STMT_END
|
|
|
|
#else /* G_HAVE_GNUC_VARARGS */
|
|
#ifdef G_HAVE_GNUC_VARARGS
|
|
#define GST_VALIDATE_REPORT(m, issue_id, args...) \
|
|
G_STMT_START { \
|
|
gst_validate_report (GST_VALIDATE_REPORTER (m), \
|
|
issue_id, ##args ); \
|
|
} G_STMT_END
|
|
#endif /* G_HAVE_ISO_VARARGS */
|
|
#endif /* G_HAVE_GNUC_VARARGS */
|
|
GST_VALIDATE_API
|
|
GType gst_validate_reporter_get_type (void);
|
|
|
|
/**
|
|
* GstValidateInterceptionReturn:
|
|
* @GST_VALIDATE_REPORTER_DROP: The report will be completely ignored.
|
|
* @GST_VALIDATE_REPORTER_KEEP: The report will be kept by the reporter,
|
|
* but not reported to the runner.
|
|
* @GST_VALIDATE_REPORTER_REPORT: The report will be kept by the reporter
|
|
* and reported to the runner.
|
|
*/
|
|
typedef enum
|
|
{
|
|
GST_VALIDATE_REPORTER_DROP,
|
|
GST_VALIDATE_REPORTER_KEEP,
|
|
GST_VALIDATE_REPORTER_REPORT
|
|
} GstValidateInterceptionReturn;
|
|
|
|
/**
|
|
* GstValidateReporter:
|
|
*/
|
|
struct _GstValidateReporterInterface
|
|
{
|
|
GTypeInterface parent;
|
|
|
|
GstValidateInterceptionReturn (*intercept_report) (GstValidateReporter * reporter,
|
|
GstValidateReport * report);
|
|
GstValidateReportingDetails (*get_reporting_level) (GstValidateReporter * reporter);
|
|
GstPipeline * (*get_pipeline) (GstValidateReporter *reporter);
|
|
};
|
|
|
|
GST_VALIDATE_API
|
|
void gst_validate_reporter_set_name (GstValidateReporter * reporter,
|
|
gchar * name);
|
|
GST_VALIDATE_API
|
|
const gchar * gst_validate_reporter_get_name (GstValidateReporter * reporter);
|
|
GST_VALIDATE_API
|
|
GstValidateRunner * gst_validate_reporter_get_runner (GstValidateReporter *reporter);
|
|
GST_VALIDATE_API
|
|
void gst_validate_reporter_init (GstValidateReporter * reporter, const gchar *name);
|
|
GST_VALIDATE_API
|
|
void gst_validate_report (GstValidateReporter * reporter, GstValidateIssueId issue_id,
|
|
const gchar * format, ...) G_GNUC_PRINTF (3, 4) G_GNUC_NO_INSTRUMENT;
|
|
GST_VALIDATE_API
|
|
void gst_validate_report_valist (GstValidateReporter * reporter, GstValidateIssueId issue_id,
|
|
const gchar * format, va_list var_args);
|
|
GST_VALIDATE_API void
|
|
gst_validate_reporter_report_simple (GstValidateReporter * reporter, GstValidateIssueId issue_id,
|
|
const gchar * message);
|
|
|
|
GST_VALIDATE_API
|
|
void gst_validate_reporter_set_runner (GstValidateReporter * reporter, GstValidateRunner *runner);
|
|
GST_VALIDATE_API
|
|
void gst_validate_reporter_set_handle_g_logs (GstValidateReporter * reporter);
|
|
GST_VALIDATE_API
|
|
GstValidateReport * gst_validate_reporter_get_report (GstValidateReporter *reporter,
|
|
GstValidateIssueId issue_id);
|
|
GST_VALIDATE_API
|
|
GList * gst_validate_reporter_get_reports (GstValidateReporter * reporter);
|
|
GST_VALIDATE_API
|
|
gint gst_validate_reporter_get_reports_count (GstValidateReporter *reporter);
|
|
GST_VALIDATE_API
|
|
GstValidateReportingDetails gst_validate_reporter_get_reporting_level (GstValidateReporter *reporter);
|
|
|
|
GST_VALIDATE_API
|
|
void gst_validate_reporter_purge_reports (GstValidateReporter * reporter);
|
|
GST_VALIDATE_API
|
|
GstPipeline * gst_validate_reporter_get_pipeline (GstValidateReporter * reporter);
|
|
|
|
G_END_DECLS
|
|
#endif /* _GST_VALIDATE_REPORTER_ */
|