[vlc-devel] commit: Update the list of objects after a VLM import. Patch By Jean-François Massol , slightly modified. (Jean-Baptiste Kempf )

git version control git at videolan.org
Mon Mar 17 07:50:19 CET 2008


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Sun Mar 16 17:40:33 2008 -0700| [af2b9b2c865247952124dbb012251c6ef1be2bc3]

Update the list of objects after a VLM import. Patch By Jean-François Massol, slightly modified.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=af2b9b2c865247952124dbb012251c6ef1be2bc3
---

 modules/gui/qt4/dialogs/vlm.cpp |   75 +++++++++++++++++++++++++++++++++++++--
 modules/gui/qt4/dialogs/vlm.hpp |    1 +
 2 files changed, 73 insertions(+), 3 deletions(-)

diff --git a/modules/gui/qt4/dialogs/vlm.cpp b/modules/gui/qt4/dialogs/vlm.cpp
index 5630733..607dc16 100644
--- a/modules/gui/qt4/dialogs/vlm.cpp
+++ b/modules/gui/qt4/dialogs/vlm.cpp
@@ -162,11 +162,15 @@ VLMDialog::VLMDialog( QWidget *parent, intf_thread_t *_p_intf ) : QVLCDialog( pa
 
 VLMDialog::~VLMDialog()
 {
+    msg_Dbg( p_intf, "Destroying VLM Dialog" );
+    delete vlmWrapper;
+
    /* FIXME :you have to destroy vlm here to close
     * but we shouldn't destroy vlm here in case somebody else wants it */
-    msg_Dbg( p_intf, "Destroying VLM Dialog" );
     if( p_vlm )
+    {
         vlm_Delete( p_vlm );
+    }
 }
 
 void VLMDialog::showScheduleWidget( int i )
@@ -275,6 +279,57 @@ bool VLMDialog::exportVLMConf()
     return false;
 }
 
+void VLMDialog::mediasPopulator()
+{
+    if( p_vlm )
+    {
+        int i_nMedias;
+        QString typeShortName;
+        int vlmItemCount;
+        vlm_media_t ***ppp_dsc = (vlm_media_t ***)malloc( sizeof( vlm_media_t ) );
+
+        /* Get medias informations and numbers */
+        vlm_Control( p_vlm, VLM_GET_MEDIAS, ppp_dsc, &i_nMedias );
+
+        /* Loop on all of them */
+        for( int i = 0; i < i_nMedias; i++ )
+        {
+            VLMAWidget * vlmAwidget;
+            vlmItemCount = vlmItems.size();
+
+            QString mediaName = qfu( (*ppp_dsc)[i]->psz_name );
+            /* It may have several inputs, we take the first one by default
+                 - an evolution will be to manage these inputs in the gui */
+            QString inputText = qfu( (*ppp_dsc)[i]->ppsz_input[0] );
+
+            QString outputText = qfu( (*ppp_dsc)[i]->psz_output );
+
+            /* Schedule media is a quite especial, maybe there is another way to grab informations */
+            if( (*ppp_dsc)[i]->b_vod )
+            {
+                typeShortName = "VOD";
+                QString mux = qfu( (*ppp_dsc)[i]->vod.psz_mux );
+                vlmAwidget = new VLMVod( mediaName, inputText, outputText,
+                                    (*ppp_dsc)[i]->b_enabled, mux, this );
+            }
+            else
+            {
+                typeShortName = "Bcast";
+                vlmAwidget = new VLMBroadcast( mediaName, inputText, outputText,
+                                  (*ppp_dsc)[i]->b_enabled, (*ppp_dsc)[i]->broadcast.b_loop, this );
+            }
+            /* Add an Item of the Side List */
+            ui.vlmListItem->addItem( typeShortName + " : " + mediaName );
+            ui.vlmListItem->setCurrentRow( vlmItemCount - 1 );
+
+            /* Add a new VLMAWidget on the main List */
+            vlmItemLayout->insertWidget( vlmItemCount, vlmAwidget );
+            vlmItems.append( vlmAwidget );
+            clearWidgets();
+        }
+        free( ppp_dsc );
+    }
+}
 
 bool VLMDialog::importVLMConf()
 {
@@ -286,9 +341,19 @@ bool VLMDialog::importVLMConf()
     if( !openVLMConfFileName.isEmpty() )
     {
         vlm_message_t *message;
+        int status;
         QString command = "load \"" + openVLMConfFileName + "\"";
-        vlm_ExecuteCommand( p_vlm, qtu( command ) , &message );
+        status = vlm_ExecuteCommand( p_vlm, qtu( command ) , &message );
         vlm_MessageDelete( message );
+        if( status == 0 )
+        {
+            mediasPopulator();
+        }
+        else
+        {
+            msg_Dbg( p_intf, "Failed to import vlm configuration file : %s", qtu( command ) );
+            return false;
+        }
         return true;
     }
     return false;
@@ -587,7 +652,9 @@ VLMWrapper::VLMWrapper( vlm_t *_p_vlm )
 }
 
 VLMWrapper::~VLMWrapper()
-{}
+{
+    p_vlm = NULL;
+}
 
 void VLMWrapper::AddBroadcast( const QString name, QString input,
                                QString output,
@@ -684,12 +751,14 @@ void VLMWrapper::EditVod( const QString name, const QString input,
     QString command = "setup \"" + name + "\" input \"" + input + "\"";
     vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
     vlm_MessageDelete( message );
+
     if( !output.isEmpty() )
     {
         command = "setup \"" + name + "\" output \"" + output + "\"";
         vlm_ExecuteCommand( p_vlm, qtu( command ), &message );
         vlm_MessageDelete( message );
     }
+
     if( b_enabled )
     {
         command = "setup \"" + name + "\" enabled";
diff --git a/modules/gui/qt4/dialogs/vlm.hpp b/modules/gui/qt4/dialogs/vlm.hpp
index ca44981..c3e3ba7 100644
--- a/modules/gui/qt4/dialogs/vlm.hpp
+++ b/modules/gui/qt4/dialogs/vlm.hpp
@@ -98,6 +98,7 @@ private:
     QDateTimeEdit *time, *date, *repeatTime;
     QSpinBox *scherepeatnumber, *repeatDays;
     bool isNameGenuine( QString );
+    void mediasPopulator();
 public slots:
     void removeVLMItem( VLMAWidget * );
     void startModifyVLMItem( VLMAWidget * );




More information about the vlc-devel mailing list