[banshee] gst#: Add a bit of missing-plugin handling



commit b30e2846a68fca1f3233f9eca2a84e331e1d1ffc
Author: Gabriel Burt <gabriel burt gmail com>
Date:   Fri May 6 16:02:17 2011 -0500

    gst#: Add a bit of missing-plugin handling
    
    Requires gst# with my fixes for bgo#649595 and bgo#649609

 .../Banshee.GStreamerSharp/PlayerEngine.cs         |   31 ++++++++++++++++++++
 1 files changed, 31 insertions(+), 0 deletions(-)
---
diff --git a/src/Backends/Banshee.GStreamerSharp/Banshee.GStreamerSharp/PlayerEngine.cs b/src/Backends/Banshee.GStreamerSharp/Banshee.GStreamerSharp/PlayerEngine.cs
index f9d3574..334f7cb 100644
--- a/src/Backends/Banshee.GStreamerSharp/Banshee.GStreamerSharp/PlayerEngine.cs
+++ b/src/Backends/Banshee.GStreamerSharp/Banshee.GStreamerSharp/PlayerEngine.cs
@@ -28,6 +28,7 @@
 
 using System;
 using System.Collections;
+using System.Collections.Generic;
 using System.Linq;
 using System.Runtime.InteropServices;
 using System.Threading;
@@ -35,6 +36,7 @@ using System.Threading;
 using Mono.Unix;
 
 using Gst;
+using Gst.PbUtils;
 using Gst.BasePlugins;
 
 using Hyena;
@@ -54,6 +56,7 @@ namespace Banshee.GStreamerSharp
         Pipeline pipeline;
         PlayBin2 playbin;
         uint iterate_timeout_id = 0;
+        List<string> missing_details = new List<string> ();
 
         public PlayerEngine ()
         {
@@ -128,13 +131,41 @@ namespace Banshee.GStreamerSharp
                     msg.ParseError (out error_type, out err_msg, out debug);
 
                     HandleError (error_type, err_msg, debug);
+                    break;
+
+                case MessageType.Element:
+                    if (MissingPluginMessage.IsMissingPluginMessage (msg)) {
+                        string detail = MissingPluginMessage.GetInstallerDetail (msg);
+
+                        if (detail == null)
+                            return false;
+
+                        if (missing_details.Contains (detail)) {
+                            Log.DebugFormat ("Ignoring missing element details, already prompted ('{0}')", detail);
+                            return false;
+                        }
+
+                        Log.DebugFormat ("Saving missing element details ('{0}')", detail);
+                        missing_details.Add (detail);
+
+                        Log.Error ("Missing GStreamer Plugin", MissingPluginMessage.GetDescription (msg), true);
 
+                        InstallPluginsContext install_context = new InstallPluginsContext ();
+                        Install.InstallPlugins (missing_details.ToArray (), install_context, OnInstallPluginsReturn);
+                    }
                     break;
             }
 
             return true;
         }
 
+        private void OnInstallPluginsReturn (InstallPluginsReturn status)
+        {
+            Log.InformationFormat ("GStreamer plugin installer returned: {0}", status);
+            if (status == InstallPluginsReturn.Success || status == InstallPluginsReturn.InstallInProgress) {
+            }
+        }
+
         private void OnVolumeChanged (object o, Gst.GLib.NotifyArgs args)
         {
             OnEventChanged (PlayerEvent.Volume);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]