b3c07e
From 2f5019ea84f197313ae39d2e2b36dfc49e542ff1 Mon Sep 17 00:00:00 2001
4ec165
From: Wim Taymans <wtaymans@redhat.com>
b3c07e
Date: Tue, 23 Jun 2015 10:28:29 +0200
b3c07e
Subject: gst-inspect: add mode to output RPM requires format
4ec165
4ec165
4ec165
diff --git a/tools/gst-inspect.c b/tools/gst-inspect.c
b3c07e
index 1b5ed83f8..2a04fbdac 100644
4ec165
--- a/tools/gst-inspect.c
4ec165
+++ b/tools/gst-inspect.c
b3c07e
@@ -386,7 +386,7 @@ print_object_properties_info (GObject * obj, GObjectClass * obj_class,
b3c07e
 
b3c07e
     first_flag = TRUE;
b3c07e
     n_print ("%sflags%s: ", PROP_ATTR_NAME_COLOR, RESET_COLOR);
b3c07e
-    readable = ! !(param->flags & G_PARAM_READABLE);
b3c07e
+    readable = !!(param->flags & G_PARAM_READABLE);
b3c07e
     if (readable && obj != NULL) {
b3c07e
       g_object_get_property (obj, param->name, &value);
b3c07e
     } else {
b3c07e
@@ -1726,11 +1726,228 @@ print_tracer_info (GstPluginFeature * feature, gboolean print_names)
b3c07e
   return 0;
4ec165
 }
4ec165
 
b3c07e
+static void
4ec165
+print_gst_structure_append_field (GList * strings, const char *field)
4ec165
+{
4ec165
+  GList *s;
4ec165
+
4ec165
+  //g_message ("adding '%s' to the string", field);
4ec165
+
4ec165
+  for (s = strings; s != NULL; s = s->next) {
4ec165
+    g_string_append (s->data, field);
4ec165
+  }
4ec165
+}
4ec165
+
4ec165
+static void
4ec165
+print_gst_structure_append_field_index (GList * strings, const char *field,
4ec165
+    guint num_items, guint offset)
4ec165
+{
4ec165
+  GList *s;
4ec165
+  guint i;
4ec165
+
4ec165
+  //g_message ("adding '%s' to the string (num: %d offset: %d)", field, num_items, offset);
4ec165
+
4ec165
+  for (s = strings, i = 0; s != NULL; s = s->next, i++) {
4ec165
+    if (i == offset) {
4ec165
+      //g_message ("adding '%s' at '%d'", field, i);
4ec165
+      g_string_append (s->data, field);
4ec165
+    }
4ec165
+    if (i == num_items)
4ec165
+      i = 0;
4ec165
+  }
4ec165
+
4ec165
+}
4ec165
+
4ec165
+static GList *
4ec165
+print_gst_structure_dup_fields (GList * strings, guint num_items)
4ec165
+{
4ec165
+  guint new_items, i;
4ec165
+
4ec165
+  if (num_items == 1)
4ec165
+    return strings;
4ec165
+
4ec165
+  //g_message ("creating %d new items", num_items);
4ec165
+
4ec165
+  new_items = g_list_length (strings) * (num_items - 1);
4ec165
+  for (i = 0; i < new_items; i++) {
4ec165
+    GString *s, *first;
4ec165
+
4ec165
+    first = strings->data;
4ec165
+    s = g_string_new_len (first->str, first->len);
4ec165
+    strings = g_list_prepend (strings, s);
4ec165
+  }
4ec165
+
4ec165
+  return strings;
4ec165
+}
4ec165
+
4ec165
+enum
4ec165
+{
4ec165
+  FIELD_VERSION = 0,
4ec165
+  FIELD_LAYER,
4ec165
+  FIELD_VARIANT,
4ec165
+  FIELD_SYSTEMSTREAM
4ec165
+};
4ec165
+
4ec165
+static int
4ec165
+field_get_type (const char *field_name)
4ec165
+{
4ec165
+  if (strstr (field_name, "version") != NULL)
4ec165
+    return FIELD_VERSION;
4ec165
+  if (strcmp (field_name, "layer") == 0)
4ec165
+    return FIELD_LAYER;
4ec165
+  if (strcmp (field_name, "systemstream") == 0)
4ec165
+    return FIELD_SYSTEMSTREAM;
4ec165
+  if (strcmp (field_name, "variant") == 0)
4ec165
+    return FIELD_VARIANT;
4ec165
+
4ec165
+  return -1;
4ec165
+}
4ec165
+
4ec165
+static gint
4ec165
+fields_type_compare (const char *a, const char *b)
4ec165
+{
4ec165
+  gint a_type, b_type;
4ec165
+
4ec165
+  a_type = field_get_type (a);
4ec165
+  b_type = field_get_type (b);
4ec165
+  if (a_type < b_type)
4ec165
+    return -1;
4ec165
+  if (b_type < a_type)
4ec165
+    return 1;
4ec165
+  return 0;
4ec165
+}
4ec165
+
4ec165
+static void
4ec165
+print_gst_structure_for_rpm (const char *type_name, GstStructure * s)
4ec165
+{
4ec165
+  guint i, num_fields;
4ec165
+  const char *name;
4ec165
+  GList *fields, *l, *strings;
4ec165
+  GString *string;
4ec165
+
4ec165
+  name = gst_structure_get_name (s);
4ec165
+  strings = NULL;
4ec165
+  num_fields = gst_structure_n_fields (s);
4ec165
+  fields = NULL;
4ec165
+
4ec165
+  for (i = 0; i < num_fields; i++) {
4ec165
+    const char *field_name;
4ec165
+
4ec165
+    field_name = gst_structure_nth_field_name (s, i);
4ec165
+    if (field_get_type (field_name) < 0) {
4ec165
+      //g_message ("ignoring field named %s", field_name);
4ec165
+      continue;
4ec165
+    }
4ec165
+
4ec165
+    fields =
4ec165
+        g_list_insert_sorted (fields, g_strdup (field_name),
4ec165
+        (GCompareFunc) fields_type_compare);
4ec165
+  }
4ec165
+
4ec165
+  /* Example:
4ec165
+   * gstreamer1(decoder-video/mpeg)(mpegversion=1)()(64bit) */
4ec165
+  string = g_string_new ("gstreamer1");
4ec165
+  g_string_append_c (string, '(');
4ec165
+  g_string_append (string, type_name);
4ec165
+  g_string_append_c (string, '-');
4ec165
+  g_string_append (string, name);
4ec165
+  g_string_append_c (string, ')');
4ec165
+
4ec165
+  strings = g_list_append (strings, string);
4ec165
+
4ec165
+  for (l = fields; l != NULL; l = l->next) {
4ec165
+    char *field_name;
4ec165
+    GType type;
4ec165
+
4ec165
+    field_name = l->data;
4ec165
+
4ec165
+    type = gst_structure_get_field_type (s, field_name);
4ec165
+    //g_message ("field is: %s, type: %s", field_name, g_type_name (type));
4ec165
+
4ec165
+    if (type == G_TYPE_INT) {
4ec165
+      char *field;
4ec165
+      int value;
4ec165
+
4ec165
+      gst_structure_get_int (s, field_name, &value);
4ec165
+      field = g_strdup_printf ("(%s=%d)", field_name, value);
4ec165
+      print_gst_structure_append_field (strings, field);
4ec165
+      g_free (field);
4ec165
+    } else if (type == G_TYPE_BOOLEAN) {
4ec165
+      char *field;
4ec165
+      int value;
4ec165
+
4ec165
+      gst_structure_get_boolean (s, field_name, &value);
4ec165
+      field = g_strdup_printf ("(%s=%s)", field_name, value ? "true" : "false");
4ec165
+      print_gst_structure_append_field (strings, field);
4ec165
+      g_free (field);
4ec165
+    } else if (type == GST_TYPE_INT_RANGE) {
4ec165
+      const GValue *value;
4ec165
+      int min, max;
4ec165
+
4ec165
+      value = gst_structure_get_value (s, field_name);
4ec165
+      min = gst_value_get_int_range_min (value);
4ec165
+      max = gst_value_get_int_range_max (value);
4ec165
+
4ec165
+      strings = print_gst_structure_dup_fields (strings, max - min + 1);
4ec165
+
4ec165
+      for (i = min; i <= max; i++) {
4ec165
+        char *field;
4ec165
+
4ec165
+        field = g_strdup_printf ("(%s=%d)", field_name, i);
4ec165
+        print_gst_structure_append_field_index (strings, field, max - min + 1,
4ec165
+            i - min);
4ec165
+        g_free (field);
4ec165
+      }
4ec165
+    } else if (type == GST_TYPE_LIST) {
4ec165
+      const GValue *value;
4ec165
+      int num_items;
4ec165
+
4ec165
+      value = gst_structure_get_value (s, field_name);
4ec165
+      num_items = gst_value_list_get_size (value);
4ec165
+
4ec165
+      strings = print_gst_structure_dup_fields (strings, num_items);
4ec165
+
4ec165
+      for (i = 0; i < num_items; i++) {
4ec165
+        char *field;
4ec165
+        const GValue *item_value;
4ec165
+
4ec165
+        item_value = gst_value_list_get_value (value, i);
4ec165
+        field = g_strdup_printf ("(%s=%d)", field_name,
4ec165
+            g_value_get_int (item_value));
4ec165
+        print_gst_structure_append_field_index (strings, field, num_items, i);
4ec165
+        g_free (field);
4ec165
+      }
4ec165
+    } else if (type == G_TYPE_STRING) {
4ec165
+      char *field;
4ec165
+      const char *value;
4ec165
+
4ec165
+      value = gst_structure_get_string (s, field_name);
4ec165
+      field = g_strdup_printf ("(%s=%s)", field_name, value);
4ec165
+      print_gst_structure_append_field (strings, field);
4ec165
+      g_free (field);
4ec165
+    } else {
4ec165
+      g_warning ("unhandled type! %s", g_type_name (type));
4ec165
+    }
4ec165
+
4ec165
+    g_free (field_name);
4ec165
+  }
4ec165
+
4ec165
+  g_list_free (fields);
4ec165
+
4ec165
+  for (l = strings; l != NULL; l = l->next) {
4ec165
+    string = l->data;
4ec165
+    g_print ("%s\n", string->str);
4ec165
+    g_string_free (string, TRUE);
4ec165
+  }
4ec165
+  g_list_free (strings);
4ec165
+}
4ec165
+
b3c07e
 /* NOTE: Not coloring output from automatic install functions, as their output
b3c07e
  * is meant for machines, not humans.
b3c07e
  */
b3c07e
 static void
b3c07e
-print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
4ec165
+print_plugin_automatic_install_info_codecs (GstElementFactory * factory,
4ec165
+    gboolean rpm_format)
4ec165
 {
4ec165
   GstPadDirection direction;
4ec165
   const gchar *type_name;
b3c07e
@@ -1756,6 +1973,13 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
4ec165
     return;
4ec165
   }
4ec165
 
4ec165
+  if (rpm_format) {
4ec165
+    /* Ignore NONE ranked plugins */
4ec165
+    if ((gst_plugin_feature_get_rank (GST_PLUGIN_FEATURE (factory))) ==
4ec165
+        GST_RANK_NONE)
4ec165
+      return;
4ec165
+  }
4ec165
+
4ec165
   /* decoder/demuxer sink pads should always be static and there should only
4ec165
    * be one, the same applies to encoders/muxers and source pads */
4ec165
   static_templates = gst_element_factory_get_static_pad_templates (factory);
b3c07e
@@ -1792,15 +2016,20 @@ print_plugin_automatic_install_info_codecs (GstElementFactory * factory)
4ec165
     gst_structure_remove_field (s, "rate");
4ec165
     gst_structure_remove_field (s, "depth");
4ec165
     gst_structure_remove_field (s, "clock-rate");
4ec165
-    s_str = gst_structure_to_string (s);
4ec165
-    g_print ("%s-%s\n", type_name, s_str);
4ec165
-    g_free (s_str);
4ec165
+    if (!rpm_format) {
4ec165
+      s_str = gst_structure_to_string (s);
4ec165
+      g_print ("%s-%s\n", type_name, s_str);
4ec165
+      g_free (s_str);
4ec165
+    } else {
4ec165
+      print_gst_structure_for_rpm (type_name, s);
4ec165
+    }
4ec165
   }
4ec165
   gst_caps_unref (caps);
4ec165
 }
4ec165
 
4ec165
 static void
4ec165
-print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
4ec165
+print_plugin_automatic_install_info_protocols (GstElementFactory * factory,
4ec165
+    gboolean rpm_format)
4ec165
 {
4ec165
   const gchar *const *protocols;
4ec165
 
b3c07e
@@ -1809,13 +2038,19 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
4ec165
     switch (gst_element_factory_get_uri_type (factory)) {
4ec165
       case GST_URI_SINK:
4ec165
         while (*protocols != NULL) {
4ec165
-          g_print ("urisink-%s\n", *protocols);
4ec165
+          if (!rpm_format)
4ec165
+            g_print ("urisink-%s\n", *protocols);
4ec165
+          else
4ec165
+            g_print ("gstreamer1(urisink-%s)\n", *protocols);
4ec165
           ++protocols;
4ec165
         }
4ec165
         break;
4ec165
       case GST_URI_SRC:
4ec165
         while (*protocols != NULL) {
4ec165
-          g_print ("urisource-%s\n", *protocols);
4ec165
+          if (!rpm_format)
4ec165
+            g_print ("urisource-%s\n", *protocols);
4ec165
+          else
4ec165
+            g_print ("gstreamer1(urisource-%s)\n", *protocols);
4ec165
           ++protocols;
4ec165
         }
4ec165
         break;
b3c07e
@@ -1826,7 +2061,7 @@ print_plugin_automatic_install_info_protocols (GstElementFactory * factory)
4ec165
 }
4ec165
 
4ec165
 static void
4ec165
-print_plugin_automatic_install_info (GstPlugin * plugin)
4ec165
+print_plugin_automatic_install_info (GstPlugin * plugin, gboolean rpm_format)
4ec165
 {
4ec165
   GList *features, *l;
4ec165
 
b3c07e
@@ -1845,11 +2080,15 @@ print_plugin_automatic_install_info (GstPlugin * plugin)
4ec165
     if (feature_plugin == plugin) {
4ec165
       GstElementFactory *factory;
4ec165
 
4ec165
-      g_print ("element-%s\n", gst_plugin_feature_get_name (feature));
4ec165
+      if (!rpm_format)
4ec165
+        g_print ("element-%s\n", gst_plugin_feature_get_name (feature));
4ec165
+      else
4ec165
+        g_print ("gstreamer1(element-%s)\n",
4ec165
+            gst_plugin_feature_get_name (feature));
4ec165
 
4ec165
       factory = GST_ELEMENT_FACTORY (feature);
4ec165
-      print_plugin_automatic_install_info_protocols (factory);
4ec165
-      print_plugin_automatic_install_info_codecs (factory);
4ec165
+      print_plugin_automatic_install_info_protocols (factory, rpm_format);
4ec165
+      print_plugin_automatic_install_info_codecs (factory, rpm_format);
4ec165
     }
4ec165
     if (feature_plugin)
4ec165
       gst_object_unref (feature_plugin);
b3c07e
@@ -1871,7 +2110,7 @@ print_all_plugin_automatic_install_info (void)
4ec165
     plugin = (GstPlugin *) (plugins->data);
4ec165
     plugins = g_list_next (plugins);
4ec165
 
4ec165
-    print_plugin_automatic_install_info (plugin);
4ec165
+    print_plugin_automatic_install_info (plugin, FALSE);
4ec165
   }
4ec165
   gst_plugin_list_free (orig_plugins);
4ec165
 }
b3c07e
@@ -1938,6 +2177,7 @@ main (int argc, char *argv[])
4ec165
   gboolean do_print_blacklist = FALSE;
4ec165
   gboolean plugin_name = FALSE;
4ec165
   gboolean print_aii = FALSE;
4ec165
+  gboolean print_aii_rpm = FALSE;
4ec165
   gboolean uri_handlers = FALSE;
4ec165
   gboolean check_exists = FALSE;
4ec165
   gchar *min_version = NULL;
b3c07e
@@ -1958,6 +2198,9 @@ main (int argc, char *argv[])
4ec165
               "or all plugins provide.\n                                       "
4ec165
               "Useful in connection with external automatic plugin "
4ec165
               "installation mechanisms"), NULL},
4ec165
+    {"rpm", '\0', 0, G_OPTION_ARG_NONE, &print_aii_rpm,
4ec165
+        N_("Print the machine-parsable list of features of a plugin in RPM "
4ec165
+              "Provides compatible-format"), NULL},
4ec165
     {"plugin", '\0', 0, G_OPTION_ARG_NONE, &plugin_name,
4ec165
         N_("List the plugin contents"), NULL},
4ec165
     {"types", 't', 0, G_OPTION_ARG_STRING, &types,
b3c07e
@@ -2113,7 +2356,7 @@ main (int argc, char *argv[])
4ec165
       /* if there is such a plugin, print out info */
4ec165
       if (plugin) {
4ec165
         if (print_aii) {
4ec165
-          print_plugin_automatic_install_info (plugin);
4ec165
+          print_plugin_automatic_install_info (plugin, print_aii_rpm);
4ec165
         } else {
4ec165
           print_plugin_info (plugin);
4ec165
           print_plugin_features (plugin);
b3c07e
@@ -2126,13 +2369,17 @@ main (int argc, char *argv[])
4ec165
 
4ec165
           if (plugin) {
4ec165
             if (print_aii) {
4ec165
-              print_plugin_automatic_install_info (plugin);
4ec165
+              print_plugin_automatic_install_info (plugin, print_aii_rpm);
4ec165
             } else {
4ec165
               print_plugin_info (plugin);
4ec165
               print_plugin_features (plugin);
4ec165
             }
4ec165
           } else {
4ec165
-            g_printerr (_("Could not load plugin file: %s\n"), error->message);
4ec165
+            if (!print_aii_rpm)
4ec165
+              g_print (_("Could not load plugin file: %s\n"), error->message);
4ec165
+            else
4ec165
+              g_printerr (_("Could not load plugin file: %s\n"),
4ec165
+                  error->message);
4ec165
             g_clear_error (&error);
b3c07e
             exit_code = -1;
b3c07e
             goto done;