]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/info_panels.cpp
Qt4 - MediaInformation, simplification of the states machine, removal of over-complic...
[vlc] / modules / gui / qt4 / components / info_panels.cpp
1 /*****************************************************************************
2  * infopanels.cpp : Panels for the information dialogs
3  ****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Jean-Baptiste Kempf <jb@videolan.org>
9  *          Ilkka Ollakka <ileoo@videolan.org>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  * GNU General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
24  *****************************************************************************/
25
26 #include "qt4.hpp"
27 #include "components/info_panels.hpp"
28
29 #include <QTreeWidget>
30 #include <QListView>
31 #include <QPushButton>
32 #include <QHeaderView>
33 #include <QList>
34 #include <QStringList>
35 #include <QGridLayout>
36 #include <QLineEdit>
37 #include <QLabel>
38 #include <QSpinBox>
39 #include <QTabWidget>
40
41 /************************************************************************
42  * Single panels
43  ************************************************************************/
44
45 /**
46  * First Panel - Meta Info
47  * All the usual MetaData are displayed and can be changed.
48  **/
49 MetaPanel::MetaPanel( QWidget *parent,
50                       intf_thread_t *_p_intf )
51                       : QWidget( parent ), p_intf( _p_intf )
52 {
53     QGridLayout *metaLayout = new QGridLayout( this );
54
55     int line = 0; /* Counter for GridLayout */
56     p_input = NULL;
57
58 #define ADD_META( string, widget ) {                                      \
59     metaLayout->addWidget( new QLabel( qtr( string ) + " :" ), line, 0 ); \
60     widget = new QLineEdit;                                               \
61     metaLayout->addWidget( widget, line, 1, 1, 9 );                       \
62     line++;            }
63
64     /* Title, artist and album*/
65     ADD_META( VLC_META_TITLE, title_text ); /* OK */
66     ADD_META( VLC_META_ARTIST, artist_text ); /* OK */
67     ADD_META( VLC_META_COLLECTION, collection_text ); /* OK */
68
69     /* Genre Name */
70     /* TODO List id3genres.h is not includable yet ? */
71     genre_text = new QLineEdit;
72     metaLayout->addWidget( new QLabel( qtr( VLC_META_GENRE ) + " :" ), line, 0 );
73     metaLayout->addWidget( genre_text, line, 1, 1, 4 );
74
75     /* Number - on the same line */
76     metaLayout->addWidget( new QLabel( qtr( "Track Number" )  + " :" ),
77                   line, 5, 1, 2  );
78     seqnum_text = new QLineEdit;
79     seqnum_text->setInputMask("0000");
80     seqnum_text->setAlignment( Qt::AlignRight );
81     metaLayout->addWidget( seqnum_text, line, 7, 1, 3 );
82     line++;
83
84     /* Date (Should be in years) */
85     date_text = new QLineEdit;
86     date_text->setInputMask("0000");
87     date_text->setAlignment( Qt::AlignRight );
88     metaLayout->addWidget( new QLabel( qtr( VLC_META_DATE ) + " :" ), line, 0 );
89     metaLayout->addWidget( date_text, line, 1, 1, 3 );
90
91     /* Rating - on the same line */
92     /*
93     metaLayout->addWidget( new QLabel( qtr( VLC_META_RATING ) + " :" ), line, 4, 1, 2 );
94     rating_text = new QSpinBox; setSpinBounds( rating_text );
95     metaLayout->addWidget( rating_text, line, 6, 1, 1 );
96     */
97     /* Language on the same line */
98     metaLayout->addWidget( new QLabel( qfu( VLC_META_LANGUAGE ) + " :" ), line, 7, 1, 2 );
99     language_text = new QLineEdit;
100     language_text->setReadOnly( true );
101     metaLayout->addWidget( language_text, line,  9, 1, 1 );
102     line++;
103
104     /* ART_URL */
105     art_cover = new QLabel( "" );
106     art_cover->setMinimumHeight( 128 );
107     art_cover->setMinimumWidth( 128 );
108     art_cover->setMaximumHeight( 128 );
109     art_cover->setMaximumWidth( 128 );
110     art_cover->setScaledContents( true );
111     art_cover->setPixmap( QPixmap( ":/noart.png" ) );
112     metaLayout->addWidget( art_cover, line, 8, 4, 2 );
113
114 /* Settings is unused */
115 /*    l->addWidget( new QLabel( qtr( VLC_META_SETTING ) + " :" ), line, 5 );
116     setting_text = new QLineEdit;
117     l->addWidget( setting_text, line, 6, 1, 4 ); */
118
119 /* Less used metadata */
120 #define ADD_META_2( string, widget ) {                                    \
121     metaLayout->addWidget( new QLabel( qtr( string ) + " :" ), line, 0 ); \
122     widget = new QLineEdit;                                               \
123     metaLayout->addWidget( widget, line, 1, 1, 7 );                       \
124     line++;            }
125
126     /* Now Playing - Useful for live feeds (HTTP, DVB, ETC...) */
127     ADD_META_2( VLC_META_NOW_PLAYING, nowplaying_text );
128     nowplaying_text->setReadOnly( true );
129     ADD_META_2( VLC_META_PUBLISHER, publisher_text );
130     ADD_META_2( VLC_META_COPYRIGHT, copyright_text );
131     ADD_META_2( "Comments", description_text );
132
133 /* useless metadata */
134
135     //ADD_META_2( VLC_META_ENCODED_BY, encodedby_text );
136     /*  ADD_META( TRACKID )  Useless ? */
137     /*  ADD_URI - DO not show it, done outside */
138
139 #undef ADD_META
140 #undef ADD_META_2
141
142     CONNECT( title_text, textEdited( QString ), this, enterEditMode() );
143     CONNECT( artist_text, textEdited( QString ), this, enterEditMode() );
144     CONNECT( collection_text, textEdited( QString ), this, enterEditMode() );
145     CONNECT( genre_text, textEdited( QString ), this, enterEditMode() );
146     CONNECT( seqnum_text, textEdited( QString ), this, enterEditMode() );
147
148     CONNECT( date_text, textEdited( QString ), this, enterEditMode() );
149     CONNECT( description_text, textEdited( QString ), this, enterEditMode() );
150 /*    CONNECT( rating_text, valueChanged( QString ), this, enterEditMode( QString ) );*/
151
152     /* We are not yet in Edit Mode */
153     b_inEditMode = false;
154 }
155
156 MetaPanel::~MetaPanel(){}
157
158 /**
159  * Update all the MetaData and art on an "item-changed" event
160  **/
161 void MetaPanel::update( input_item_t *p_item )
162 {
163     /* Don't update if you are in edit mode */
164     if( b_inEditMode ) return;
165     else p_input = p_item;
166
167     char *psz_meta;
168 #define UPDATE_META( meta, widget ) {               \
169     psz_meta = input_item_Get##meta( p_item );      \
170     if( !EMPTY_STR( psz_meta ) )                    \
171         widget->setText( qfu( psz_meta ) );         \
172     else                                            \
173         widget->setText( "" ); }                    \
174     free( psz_meta );
175
176 #define UPDATE_META_INT( meta, widget ) {           \
177     psz_meta = input_item_Get##meta( p_item );      \
178     if( !EMPTY_STR( psz_meta ) )                    \
179         widget->setValue( atoi( psz_meta ) ); }     \
180     free( psz_meta );
181
182     /* Name / Title */
183     psz_meta = input_item_GetTitle( p_item );
184     char *psz_name = input_item_GetName( p_item );
185     if( !EMPTY_STR( psz_meta ) )
186         title_text->setText( qfu( psz_meta ) );
187     else if( !EMPTY_STR( psz_name ) )
188         title_text->setText( qfu( psz_name ) );
189     else title_text->setText( "" );
190     free( psz_meta );
191     free( psz_name );
192
193     /* URL / URI */
194     psz_meta = input_item_GetURL( p_item );
195     if( !EMPTY_STR( psz_meta ) )
196     {
197         emit uriSet( QString( psz_meta ) );
198         free( psz_meta );
199     }
200     else
201     {
202         free( psz_meta );
203         psz_meta = input_item_GetURI( p_item );
204         if( !EMPTY_STR( psz_meta ) )
205             emit uriSet( QString( psz_meta ) );
206     }
207
208     /* Other classic though */
209     UPDATE_META( Artist, artist_text );
210     UPDATE_META( Genre, genre_text );
211     UPDATE_META( Copyright, copyright_text );
212     UPDATE_META( Album, collection_text );
213     UPDATE_META( Description, description_text );
214     UPDATE_META( Language, language_text );
215     UPDATE_META( NowPlaying, nowplaying_text );
216     UPDATE_META( Publisher, publisher_text );
217 //    UPDATE_META( Setting, setting_text );
218 //    UPDATE_META( EncodedBy, encodedby_text );
219
220     UPDATE_META( Date, date_text );
221     UPDATE_META( TrackNum, seqnum_text );
222 //    UPDATE_META_INT( Rating, rating_text );
223
224 #undef UPDATE_META_INT
225 #undef UPDATE_META
226
227     /* Art Urls */
228     psz_meta = input_item_GetArtURL( p_item );
229     if( psz_meta && !strncmp( psz_meta, "file://", 7 ) )
230     {
231         QString artUrl = qfu( psz_meta ).replace( "file://",QString("" ) );
232         art_cover->setPixmap( QPixmap( artUrl ) );
233     }
234     else
235         art_cover->setPixmap( QPixmap( ":/noart.png" ) );
236     free( psz_meta );
237 }
238
239 /**
240  * Save the MetaData, triggered by parent->save Button
241  **/
242 void MetaPanel::saveMeta()
243 {
244     playlist_t *p_playlist;
245
246     meta_export_t p_export;
247     p_export.p_item = p_input;
248
249     if( p_input == NULL )
250         return;
251
252     /* we can write meta data only in a file */
253     vlc_mutex_lock( &p_input->lock );
254     int i_type = p_input->i_type;
255     vlc_mutex_unlock( &p_input->lock );
256     if( i_type == ITEM_TYPE_FILE )
257     {
258         char *psz_uri_orig = input_item_GetURI( p_input );
259         char *psz_uri = psz_uri_orig;
260         if( !strncmp( psz_uri, "file://", 7 ) )
261             psz_uri += 7; /* strlen("file://") = 7 */
262
263         p_export.psz_file = strndup( psz_uri, PATH_MAX );
264         free( psz_uri_orig );
265     }
266     else
267         return;
268
269     /* now we read the modified meta data */
270     input_item_SetTitle(  p_input, qtu( title_text->text() ) );
271     input_item_SetArtist( p_input, qtu( artist_text->text() ) );
272     input_item_SetAlbum(  p_input, qtu( collection_text->text() ) );
273     input_item_SetGenre(  p_input, qtu( genre_text->text() ) );
274     input_item_SetTrackNum(  p_input, qtu( seqnum_text->text() ) );
275     input_item_SetDate(  p_input, qtu( date_text->text() ) );
276
277     input_item_SetCopyright( p_input, qtu( copyright_text->text() ) );
278     input_item_SetPublisher( p_input, qtu( publisher_text->text() ) );
279     input_item_SetDescription( p_input, qtu( description_text->text() ) );
280
281     p_playlist = pl_Yield( p_intf );
282     PL_LOCK;
283     p_playlist->p_private = &p_export;
284
285     module_t *p_mod = module_Need( p_playlist, "meta writer", NULL, 0 );
286     if( p_mod )
287         module_Unneed( p_playlist, p_mod );
288     PL_UNLOCK;
289     pl_Release( p_playlist );
290
291     /* Reset the status of the mode. No need to emit any signal */
292     b_inEditMode = false;
293 }
294
295
296 bool MetaPanel::isInEditMode()
297 {
298     return b_inEditMode;
299 }
300
301 void MetaPanel::enterEditMode()
302 {
303     setEditMode( true );
304 }
305
306 void MetaPanel::setEditMode( bool b_editing )
307 {
308     b_inEditMode = b_editing;
309     if( b_editing )emit editing();
310 }
311
312 /*
313  * Clear all the metadata widgets
314  */
315 void MetaPanel::clear()
316 {
317     uri_text->clear();
318     title_text->clear();
319     artist_text->clear();
320     genre_text->clear();
321     copyright_text->clear();
322     collection_text->clear();
323     seqnum_text->clear();
324     description_text->clear();
325     date_text->clear();
326     language_text->clear();
327     nowplaying_text->clear();
328     publisher_text->clear();
329     art_cover;
330
331     setEditMode( false );
332 }
333
334 /**
335  * Second Panel - Shows the extra metadata in a tree, non editable.
336  **/
337 ExtraMetaPanel::ExtraMetaPanel( QWidget *parent,
338                                 intf_thread_t *_p_intf )
339                                 : QWidget( parent ), p_intf( _p_intf )
340 {
341      QGridLayout *layout = new QGridLayout(this);
342
343      QLabel *topLabel = new QLabel( qtr( "Extra metadata and other information"
344                  " are shown in this list.\n" ) );
345      topLabel->setWordWrap( true );
346      layout->addWidget( topLabel, 0, 0 );
347
348      extraMetaTree = new QTreeWidget( this );
349      extraMetaTree->setAlternatingRowColors( true );
350      extraMetaTree->setColumnCount( 2 );
351      extraMetaTree->header()->hide();
352 /*     QStringList headerList = ( QStringList() << qtr( "Type" )
353  *                                             << qtr( "Value" ) );
354  * Useless, add this header if you think it would help the user          **
355  */
356
357      layout->addWidget( extraMetaTree, 1, 0 );
358 }
359
360 /**
361  * Update the Extra Metadata from p_meta->i_extras
362  **/
363 void ExtraMetaPanel::update( input_item_t *p_item )
364 {
365     vlc_mutex_lock( &p_item->lock );
366     vlc_meta_t *p_meta = p_item->p_meta;
367     if( !p_meta )
368         return;
369     QStringList tempItem;
370
371     QList<QTreeWidgetItem *> items;
372     vlc_dictionary_t * p_dict = &p_meta->extra_tags;
373     char ** ppsz_allkey = vlc_dictionary_all_keys( p_dict );
374     for (int i = 0; ppsz_allkey[i] ; i++ )
375     {
376         const char * psz_value = (const char *)vlc_dictionary_value_for_key(
377                 p_dict, ppsz_allkey[i] );
378         tempItem.append( qfu( ppsz_allkey[i] ) + " : ");
379         tempItem.append( qfu( psz_value ) );
380         items.append( new QTreeWidgetItem ( extraMetaTree, tempItem ) );
381         free( ppsz_allkey[i] );
382     }
383     vlc_mutex_unlock( &p_item->lock );
384     free( ppsz_allkey );
385     extraMetaTree->addTopLevelItems( items );
386 }
387
388 /**
389  * Clear the ExtraMetaData Tree
390  **/
391 void ExtraMetaPanel::clear()
392 {
393     extraMetaTree->clear();
394 }
395
396 /**
397  * Third panel - Stream info
398  * Display all codecs and muxers info that we could gather.
399  **/
400 InfoPanel::InfoPanel( QWidget *parent,
401                       intf_thread_t *_p_intf )
402                       : QWidget( parent ), p_intf( _p_intf )
403 {
404      QGridLayout *layout = new QGridLayout(this);
405
406      QList<QTreeWidgetItem *> items;
407
408      QLabel *topLabel = new QLabel( qtr( "Information about what your media or"
409               " stream is made of.\n Muxer, Audio and Video Codecs, Subtitles "
410               "are shown." ) );
411      topLabel->setWordWrap( true );
412      layout->addWidget( topLabel, 0, 0 );
413
414      InfoTree = new QTreeWidget(this);
415      InfoTree->setColumnCount( 1 );
416      InfoTree->header()->hide();
417      layout->addWidget(InfoTree, 1, 0 );
418 }
419
420 InfoPanel::~InfoPanel()
421 {
422 }
423
424 /**
425  * Update the Codecs information on parent->update()
426  **/
427 void InfoPanel::update( input_item_t *p_item)
428 {
429     InfoTree->clear();
430     QTreeWidgetItem *current_item = NULL;
431     QTreeWidgetItem *child_item = NULL;
432
433     for( int i = 0; i< p_item->i_categories ; i++)
434     {
435         current_item = new QTreeWidgetItem();
436         current_item->setText( 0, qfu(p_item->pp_categories[i]->psz_name) );
437         InfoTree->addTopLevelItem( current_item );
438
439         for( int j = 0 ; j < p_item->pp_categories[i]->i_infos ; j++ )
440         {
441             child_item = new QTreeWidgetItem ();
442             child_item->setText( 0,
443                     qfu(p_item->pp_categories[i]->pp_infos[j]->psz_name)
444                     + ": "
445                     + qfu(p_item->pp_categories[i]->pp_infos[j]->psz_value));
446
447             current_item->addChild(child_item);
448         }
449          InfoTree->setItemExpanded( current_item, true);
450     }
451 }
452
453 /**
454  * Clear the tree
455  **/
456 void InfoPanel::clear()
457 {
458     InfoTree->clear();
459 }
460
461 /**
462  * Save all the information to a file
463  * Not yet implemented.
464  **/
465 /*
466 void InfoPanel::saveCodecsInfo()
467 {}
468 */
469
470 /**
471  * Fourth Panel - Stats
472  * Displays the Statistics for reading/streaming/encoding/displaying in a tree
473  */
474 InputStatsPanel::InputStatsPanel( QWidget *parent,
475                                   intf_thread_t *_p_intf )
476                                   : QWidget( parent ), p_intf( _p_intf )
477 {
478      QGridLayout *layout = new QGridLayout(this);
479
480      QList<QTreeWidgetItem *> items;
481
482      QLabel *topLabel = new QLabel( qtr( "Various statistics about the current"
483                  " media or stream.\n Played and streamed info are shown." ) );
484      topLabel->setWordWrap( true );
485      layout->addWidget( topLabel, 0, 0 );
486
487      StatsTree = new QTreeWidget(this);
488      StatsTree->setColumnCount( 3 );
489      StatsTree->header()->hide();
490
491 #define CREATE_TREE_ITEM( itemName, itemText, itemValue, unit ) {              \
492     itemName =                                                                 \
493       new QTreeWidgetItem((QStringList () << itemText << itemValue << unit )); \
494     itemName->setTextAlignment( 1 , Qt::AlignRight ) ; }
495
496 #define CREATE_CATEGORY( catName, itemText ) {                           \
497     CREATE_TREE_ITEM( catName, itemText , "", "" );                      \
498     catName->setExpanded( true );                                        \
499     StatsTree->addTopLevelItem( catName );    }
500
501 #define CREATE_AND_ADD_TO_CAT( itemName, itemText, itemValue, catName, unit ){ \
502     CREATE_TREE_ITEM( itemName, itemText, itemValue, unit );                   \
503     catName->addChild( itemName ); }
504
505     /* Create the main categories */
506     CREATE_CATEGORY( audio, qtr("Audio") );
507     CREATE_CATEGORY( video, qtr("Video") );
508     CREATE_CATEGORY( input, qtr("Input") );
509     CREATE_CATEGORY( streaming, qtr("Streaming") );
510
511     CREATE_AND_ADD_TO_CAT( read_media_stat, qtr("Read at media"),
512                            "0", input , "kB" );
513     CREATE_AND_ADD_TO_CAT( input_bitrate_stat, qtr("Input bitrate"),
514                            "0", input, "kb/s" );
515     CREATE_AND_ADD_TO_CAT( demuxed_stat, qtr("Demuxed"), "0", input, "kB") ;
516     CREATE_AND_ADD_TO_CAT( stream_bitrate_stat, qtr("Stream bitrate"),
517                            "0", input, "kb/s" );
518
519     CREATE_AND_ADD_TO_CAT( vdecoded_stat, qtr("Decoded blocks"),
520                            "0", video, "" );
521     CREATE_AND_ADD_TO_CAT( vdisplayed_stat, qtr("Displayed frames"),
522                            "0", video, "" );
523     CREATE_AND_ADD_TO_CAT( vlost_frames_stat, qtr("Lost frames"),
524                            "0", video, "" );
525     CREATE_AND_ADD_TO_CAT( vfps_stat, qtr("FPS"), "0", video, "" );
526
527     CREATE_AND_ADD_TO_CAT( send_stat, qtr("Sent packets"), "0", streaming, "" );
528     CREATE_AND_ADD_TO_CAT( send_bytes_stat, qtr("Sent bytes"),
529                            "0", streaming, "kB" );
530     CREATE_AND_ADD_TO_CAT( send_bitrate_stat, qtr("Sent bitrates"),
531                            "0", streaming, "kb/s" );
532
533     CREATE_AND_ADD_TO_CAT( adecoded_stat, qtr("Decoded blocks"),
534                            "0", audio, "" );
535     CREATE_AND_ADD_TO_CAT( aplayed_stat, qtr("Played buffers"),
536                            "0", audio, "" );
537     CREATE_AND_ADD_TO_CAT( alost_stat, qtr("Lost buffers"), "0", audio, "" );
538
539     input->setExpanded( true );
540     video->setExpanded( true );
541     streaming->setExpanded( true );
542     audio->setExpanded( true );
543
544     StatsTree->resizeColumnToContents( 0 );
545     StatsTree->setColumnWidth( 1 , 100 );
546
547     layout->addWidget(StatsTree, 1, 0 );
548 }
549
550 InputStatsPanel::~InputStatsPanel()
551 {
552 }
553
554 /**
555  * Update the Statistics
556  **/
557 void InputStatsPanel::update( input_item_t *p_item )
558 {
559     vlc_mutex_lock( &p_item->p_stats->lock );
560
561 #define UPDATE( widget, format, calc... ) \
562     { QString str; widget->setText( 1 , str.sprintf( format, ## calc ) );  }
563
564     UPDATE( read_media_stat, "%8.0f",
565             (float)(p_item->p_stats->i_read_bytes)/1000);
566     UPDATE( input_bitrate_stat, "%6.0f",
567                     (float)(p_item->p_stats->f_input_bitrate * 8000 ));
568     UPDATE( demuxed_stat, "%8.0f",
569                     (float)(p_item->p_stats->i_demux_read_bytes)/1000 );
570     UPDATE( stream_bitrate_stat, "%6.0f",
571                     (float)(p_item->p_stats->f_demux_bitrate * 8000 ));
572
573     /* Video */
574     UPDATE( vdecoded_stat, "%5i", p_item->p_stats->i_decoded_video );
575     UPDATE( vdisplayed_stat, "%5i", p_item->p_stats->i_displayed_pictures );
576     UPDATE( vlost_frames_stat, "%5i", p_item->p_stats->i_lost_pictures );
577 /*  UPDATE( vfps_stat, "%5f", p_item->p_stats->i_lost_pictures );
578 input_Control( p_input_thread, INPUT_GET_VIDEO_FPS, &f_fps */
579
580     /* Sout */
581     UPDATE( send_stat, "%5i", p_item->p_stats->i_sent_packets );
582     UPDATE( send_bytes_stat, "%8.0f",
583             (float)(p_item->p_stats->i_sent_bytes)/1000 );
584     UPDATE( send_bitrate_stat, "%6.0f",
585             (float)(p_item->p_stats->f_send_bitrate*8)*1000 );
586
587     /* Audio*/
588     UPDATE( adecoded_stat, "%5i", p_item->p_stats->i_decoded_audio );
589     UPDATE( aplayed_stat, "%5i", p_item->p_stats->i_played_abuffers );
590     UPDATE( alost_stat, "%5i", p_item->p_stats->i_lost_abuffers );
591
592     vlc_mutex_unlock(& p_item->p_stats->lock );
593 }
594
595 void InputStatsPanel::clear()
596 {
597 }