mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-05-13 03:38:55 +00:00
234 lines
6.4 KiB
C
234 lines
6.4 KiB
C
/* GStreamer
|
|
*
|
|
* Copyright (C) 2013 Collabora Ltd.
|
|
* Author: Thiago Sousa Santos <thiago.sousa.santos@collabora.com>
|
|
*
|
|
* gst-validate-runner.c - Validate Runner class
|
|
*
|
|
* 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.1 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.
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include "gst-validate-internal.h"
|
|
#include "gst-validate-report.h"
|
|
#include "gst-validate-monitor-factory.h"
|
|
#include "gst-validate-override-registry.h"
|
|
#include "gst-validate-runner.h"
|
|
|
|
/**
|
|
* SECTION:gst-validate-runner
|
|
* @short_description: Class that runs Gst Validate tests for a pipeline
|
|
*
|
|
* Allows you to test a pipeline within GstValidate. It is the object where
|
|
* all issue reporting is done.
|
|
*
|
|
* In the tools using GstValidate the only minimal code to be able to monitor
|
|
* your pipelines is:
|
|
*
|
|
* |[
|
|
* GstPipeline *pipeline = gst_pipeline_new ("monitored-pipeline");
|
|
* GstValidateRunner *runner = gst_validate_runner_new ();
|
|
* GstValidateMonitor *monitor = gst_validate_monitor_factory_create (
|
|
* GST_OBJECT (pipeline), runner, NULL);
|
|
*
|
|
* // Run the pipeline and do whatever you want with it
|
|
*
|
|
* // In that same order
|
|
* gst_object_unref (pipeline);
|
|
* gst_object_unref (runner);
|
|
* gst_object_unref (monitor);
|
|
* ]|
|
|
*/
|
|
|
|
struct _GstValidateRunnerPrivate
|
|
{
|
|
GMutex mutex;
|
|
GSList *reports;
|
|
};
|
|
|
|
#define GST_VALIDATE_RUNNER_LOCK(r) \
|
|
G_STMT_START { \
|
|
GST_LOG_OBJECT (r, "About to lock %p", &GST_VALIDATE_RUNNER_CAST(r)->priv->mutex); \
|
|
(g_mutex_lock (&GST_VALIDATE_RUNNER_CAST(r)->priv->mutex)); \
|
|
GST_LOG_OBJECT (r, "Acquired lock %p", &GST_VALIDATE_RUNNER_CAST(r)->priv->mutex); \
|
|
} G_STMT_END
|
|
|
|
#define GST_VALIDATE_RUNNER_UNLOCK(r) \
|
|
G_STMT_START { \
|
|
GST_LOG_OBJECT (r, "About to unlock %p", &GST_VALIDATE_RUNNER_CAST(r)->priv->mutex); \
|
|
(g_mutex_unlock (&GST_VALIDATE_RUNNER_CAST(r)->priv->mutex)); \
|
|
GST_LOG_OBJECT (r, "Released lock %p", &GST_VALIDATE_RUNNER_CAST(r)->priv->mutex); \
|
|
} G_STMT_END
|
|
|
|
#define gst_validate_runner_parent_class parent_class
|
|
G_DEFINE_TYPE (GstValidateRunner, gst_validate_runner, G_TYPE_OBJECT);
|
|
|
|
/* signals */
|
|
enum
|
|
{
|
|
REPORT_ADDED_SIGNAL,
|
|
/* add more above */
|
|
LAST_SIGNAL
|
|
};
|
|
|
|
static guint _signals[LAST_SIGNAL] = { 0 };
|
|
|
|
static void
|
|
gst_validate_runner_dispose (GObject * object)
|
|
{
|
|
GstValidateRunner *runner = GST_VALIDATE_RUNNER_CAST (object);
|
|
|
|
g_slist_free_full (runner->priv->reports,
|
|
(GDestroyNotify) gst_validate_report_unref);
|
|
|
|
g_mutex_clear (&runner->priv->mutex);
|
|
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
|
}
|
|
|
|
static void
|
|
gst_validate_runner_class_init (GstValidateRunnerClass * klass)
|
|
{
|
|
GObjectClass *gobject_class;
|
|
|
|
gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
gobject_class->dispose = gst_validate_runner_dispose;
|
|
|
|
g_type_class_add_private (klass, sizeof (GstValidateRunnerPrivate));
|
|
|
|
_signals[REPORT_ADDED_SIGNAL] =
|
|
g_signal_new ("report-added", G_TYPE_FROM_CLASS (klass),
|
|
G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_NONE, 1,
|
|
GST_TYPE_VALIDATE_REPORT);
|
|
}
|
|
|
|
static void
|
|
gst_validate_runner_init (GstValidateRunner * runner)
|
|
{
|
|
runner->priv = G_TYPE_INSTANCE_GET_PRIVATE (runner, GST_TYPE_VALIDATE_RUNNER,
|
|
GstValidateRunnerPrivate);
|
|
g_mutex_init (&runner->priv->mutex);
|
|
}
|
|
|
|
/**
|
|
* gst_validate_runner_new:
|
|
*
|
|
* Create a new #GstValidateRunner
|
|
*
|
|
* Returns: A newly created #GstValidateRunner
|
|
*/
|
|
GstValidateRunner *
|
|
gst_validate_runner_new (void)
|
|
{
|
|
return g_object_new (GST_TYPE_VALIDATE_RUNNER, NULL);
|
|
}
|
|
|
|
void
|
|
gst_validate_runner_add_report (GstValidateRunner * runner,
|
|
GstValidateReport * report)
|
|
{
|
|
GST_VALIDATE_RUNNER_LOCK (runner);
|
|
runner->priv->reports = g_slist_prepend (runner->priv->reports, report);
|
|
GST_VALIDATE_RUNNER_UNLOCK (runner);
|
|
|
|
g_signal_emit (runner, _signals[REPORT_ADDED_SIGNAL], 0, report);
|
|
}
|
|
|
|
/**
|
|
* gst_validate_runner_get_reports_count:
|
|
* @runner: The $GstValidateRunner to get the number of report from
|
|
*
|
|
* Get the number of reports present in the runner:
|
|
*
|
|
* Returns: The number of report present in the runner.
|
|
*/
|
|
guint
|
|
gst_validate_runner_get_reports_count (GstValidateRunner * runner)
|
|
{
|
|
guint l;
|
|
|
|
g_return_val_if_fail (runner != NULL, 0);
|
|
|
|
GST_VALIDATE_RUNNER_LOCK (runner);
|
|
l = g_slist_length (runner->priv->reports);
|
|
GST_VALIDATE_RUNNER_UNLOCK (runner);
|
|
|
|
return l;
|
|
}
|
|
|
|
GSList *
|
|
gst_validate_runner_get_reports (GstValidateRunner * runner)
|
|
{
|
|
GSList *ret;
|
|
|
|
GST_VALIDATE_RUNNER_LOCK (runner);
|
|
ret = g_slist_reverse (runner->priv->reports);
|
|
GST_VALIDATE_RUNNER_UNLOCK (runner);
|
|
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* gst_validate_runner_printf:
|
|
* @runner: The #GstValidateRunner to print all the reports for
|
|
*
|
|
* Prints all the report on the terminal or on wherever set
|
|
* on the #GST_VALIDATE_FILE env variable.
|
|
*
|
|
* Retrurns: 0 if no critical error has been found and 18 if a critical
|
|
* error as been detected. That return value is usually to be used as
|
|
* exit code of the application.
|
|
* */
|
|
int
|
|
gst_validate_runner_printf (GstValidateRunner * runner)
|
|
{
|
|
GSList *tmp;
|
|
guint count = 0;
|
|
int ret = 0;
|
|
GList *criticals = NULL;
|
|
|
|
for (tmp = gst_validate_runner_get_reports (runner); tmp; tmp = tmp->next) {
|
|
GstValidateReport *report = tmp->data;
|
|
|
|
if (gst_validate_report_should_print (report))
|
|
gst_validate_report_printf (report);
|
|
|
|
if (ret == 0 && report->level == GST_VALIDATE_REPORT_LEVEL_CRITICAL) {
|
|
criticals = g_list_append (criticals, tmp->data);
|
|
ret = 18;
|
|
}
|
|
count++;
|
|
}
|
|
|
|
if (criticals) {
|
|
GList *iter;
|
|
|
|
g_printerr ("\n\n==== Got criticals, Return value set to 18 ====\n");
|
|
|
|
for (iter = criticals; iter; iter = iter->next) {
|
|
g_printerr (" Critical error %s\n",
|
|
((GstValidateReport *) (iter->data))->message);
|
|
}
|
|
g_printerr ("\n");
|
|
}
|
|
|
|
gst_validate_printf (NULL, "Pipeline finished, issues found: %u\n", count);
|
|
return ret;
|
|
}
|