]> git.sesse.net Git - vlc/blob - modules/gui/qt4/components/playlist/playlist_model.cpp
Qt4: reset current_index cache sametime as i_cache_id
[vlc] / modules / gui / qt4 / components / playlist / playlist_model.cpp
1 /*****************************************************************************
2  * playlist_model.cpp : Manage playlist model
3  ****************************************************************************
4  * Copyright (C) 2006-2007 the VideoLAN team
5  * $Id$
6  *
7  * Authors: ClĂ©ment Stenac <zorglub@videolan.org>
8  *          Ilkka Ollakkka <ileoo (at) videolan dot org>
9  *          Jakob Leben <jleben@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 #ifdef HAVE_CONFIG_H
27 # include "config.h"
28 #endif
29
30 #include "qt4.hpp"
31 #include "dialogs_provider.hpp"
32 #include "components/playlist/playlist_model.hpp"
33 #include "dialogs/mediainfo.hpp"
34 #include "dialogs/playlist.hpp"
35 #include <vlc_intf_strings.h>
36
37 #include "pixmaps/types/type_unknown.xpm"
38
39 #include <assert.h>
40 #include <QIcon>
41 #include <QFont>
42 #include <QMenu>
43 #include <QApplication>
44 #include <QSettings>
45 #include <QUrl>
46 #include <QFileInfo>
47 #include <QDesktopServices>
48 #include <QInputDialog>
49
50 #include "sorting.h"
51
52 #define I_NEW_DIR \
53     I_DIR_OR_FOLDER( N_("Create Directory"), N_( "Create Folder" ) )
54 #define I_NEW_DIR_NAME \
55     I_DIR_OR_FOLDER( N_( "Enter name for new directory:" ), \
56                      N_( "Enter name for new folder:" ) )
57
58 QIcon PLModel::icons[ITEM_TYPE_NUMBER];
59
60 /*************************************************************************
61  * Playlist model implementation
62  *************************************************************************/
63
64 PLModel::PLModel( playlist_t *_p_playlist,  /* THEPL */
65                   intf_thread_t *_p_intf,   /* main Qt p_intf */
66                   playlist_item_t * p_root,
67                   QObject *parent )         /* Basic Qt parent */
68                   : QAbstractItemModel( parent )
69 {
70     p_intf            = _p_intf;
71     p_playlist        = _p_playlist;
72     i_cached_id       = -1;
73     i_cached_input_id = -1;
74     i_popup_item      = i_popup_parent = -1;
75     sortingMenu       = NULL;
76     current_index     = QModelIndex();
77
78     rootItem          = NULL; /* PLItem rootItem, will be set in rebuild( ) */
79
80     /* Icons initialization */
81 #define ADD_ICON(type, x) icons[ITEM_TYPE_##type] = QIcon( x )
82     ADD_ICON( UNKNOWN , type_unknown_xpm );
83     ADD_ICON( FILE, ":/type/file" );
84     ADD_ICON( DIRECTORY, ":/type/directory" );
85     ADD_ICON( DISC, ":/type/disc" );
86     ADD_ICON( CDDA, ":/type/cdda" );
87     ADD_ICON( CARD, ":/type/capture-card" );
88     ADD_ICON( NET, ":/type/net" );
89     ADD_ICON( PLAYLIST, ":/type/playlist" );
90     ADD_ICON( NODE, ":/type/node" );
91 #undef ADD_ICON
92
93     rebuild( p_root );
94     DCONNECT( THEMIM->getIM(), metaChanged( input_item_t *),
95              this, processInputItemUpdate( input_item_t *) );
96     DCONNECT( THEMIM, inputChanged( input_thread_t * ),
97              this, processInputItemUpdate( input_thread_t* ) );
98     CONNECT( THEMIM, playlistItemAppended( int, int ),
99              this, processItemAppend( int, int ) );
100     CONNECT( THEMIM, playlistItemRemoved( int ),
101              this, processItemRemoval( int ) );
102     CONNECT( this, currentChanged( const QModelIndex &) ,
103              this, cacheCurrent( const QModelIndex &) );
104 }
105
106 PLModel::~PLModel()
107 {
108     delete rootItem;
109     delete sortingMenu;
110 }
111
112 Qt::DropActions PLModel::supportedDropActions() const
113 {
114     return Qt::CopyAction | Qt::MoveAction;
115 }
116
117 Qt::ItemFlags PLModel::flags( const QModelIndex &index ) const
118 {
119     Qt::ItemFlags flags = QAbstractItemModel::flags( index );
120
121     PLItem *item = index.isValid() ? getItem( index ) : rootItem;
122
123     if( canEdit() )
124     {
125         PL_LOCK;
126         playlist_item_t *plItem =
127             playlist_ItemGetById( p_playlist, item->i_id );
128
129         if ( plItem && ( plItem->i_children > -1 ) )
130             flags |= Qt::ItemIsDropEnabled;
131
132         PL_UNLOCK;
133
134     }
135     flags |= Qt::ItemIsDragEnabled;
136
137     return flags;
138 }
139
140 QStringList PLModel::mimeTypes() const
141 {
142     QStringList types;
143     types << "vlc/qt-input-items";
144     return types;
145 }
146
147 bool modelIndexLessThen( const QModelIndex &i1, const QModelIndex &i2 )
148 {
149     if( !i1.isValid() || !i2.isValid() ) return false;
150     PLItem *item1 = static_cast<PLItem*>( i1.internalPointer() );
151     PLItem *item2 = static_cast<PLItem*>( i2.internalPointer() );
152     if( item1->parent() == item2->parent() ) return i1.row() < i2.row();
153     else return *item1 < *item2;
154 }
155
156 QMimeData *PLModel::mimeData( const QModelIndexList &indexes ) const
157 {
158     PlMimeData *plMimeData = new PlMimeData();
159     QModelIndexList list;
160
161     foreach( const QModelIndex &index, indexes ) {
162         if( index.isValid() && index.column() == 0 )
163             list.append(index);
164     }
165
166     qSort(list.begin(), list.end(), modelIndexLessThen);
167
168     PLItem *item = NULL;
169     foreach( const QModelIndex &index, list ) {
170         if( item )
171         {
172             PLItem *testee = getItem( index );
173             while( testee->parent() )
174             {
175                 if( testee->parent() == item ||
176                     testee->parent() == item->parent() ) break;
177                 testee = testee->parent();
178             }
179             if( testee->parent() == item ) continue;
180             item = getItem( index );
181         }
182         else
183             item = getItem( index );
184
185         plMimeData->appendItem( item->p_input );
186     }
187
188     return plMimeData;
189 }
190
191 /* Drop operation */
192 bool PLModel::dropMimeData( const QMimeData *data, Qt::DropAction action,
193                            int row, int column, const QModelIndex &parent )
194 {
195     bool copy = action == Qt::CopyAction;
196     if( !copy && action != Qt::MoveAction )
197         return true;
198
199     const PlMimeData *plMimeData = qobject_cast<const PlMimeData*>( data );
200     if( plMimeData )
201     {
202         if( copy )
203             dropAppendCopy( plMimeData, getItem( parent ), row );
204         else
205             dropMove( plMimeData, getItem( parent ), row );
206     }
207     return true;
208 }
209
210 void PLModel::dropAppendCopy( const PlMimeData *plMimeData, PLItem *target, int pos )
211 {
212     PL_LOCK;
213
214     playlist_item_t *p_parent =
215             playlist_ItemGetByInput( p_playlist, target->p_input );
216     if( !p_parent ) return;
217
218     if( pos == -1 ) pos = PLAYLIST_END;
219
220     QList<input_item_t*> inputItems = plMimeData->inputItems();
221
222     foreach( input_item_t* p_input, inputItems )
223     {
224         playlist_item_t *p_item = playlist_ItemGetByInput( p_playlist, p_input );
225         if( !p_item ) continue;
226         pos = playlist_NodeAddCopy( p_playlist, p_item, p_parent, pos );
227     }
228
229     PL_UNLOCK;
230 }
231
232 void PLModel::dropMove( const PlMimeData * plMimeData, PLItem *target, int row )
233 {
234     QList<input_item_t*> inputItems = plMimeData->inputItems();
235     QList<PLItem*> model_items;
236     playlist_item_t *pp_items[inputItems.size()];
237
238     PL_LOCK;
239
240     playlist_item_t *p_parent =
241         playlist_ItemGetByInput( p_playlist, target->p_input );
242
243     if( !p_parent || row > p_parent->i_children )
244     {
245         PL_UNLOCK; return;
246     }
247
248     int new_pos = row == -1 ? p_parent->i_children : row;
249     int model_pos = new_pos;
250     int i = 0;
251
252     foreach( input_item_t *p_input, inputItems )
253     {
254         playlist_item_t *p_item = playlist_ItemGetByInput( p_playlist, p_input );
255         if( !p_item ) continue;
256
257         PLItem *item = findByInput( rootItem, p_input->i_id );
258         if( !item ) continue;
259
260         /* Better not try to move a node into itself.
261            Abort the whole operation in that case,
262            because it is ambiguous. */
263         PLItem *climber = target;
264         while( climber )
265         {
266             if( climber == item )
267             {
268                 PL_UNLOCK; return;
269             }
270             climber = climber->parentItem;
271         }
272
273         if( item->parentItem == target &&
274             target->children.indexOf( item ) < new_pos )
275                 model_pos--;
276
277         model_items.append( item );
278         pp_items[i] = p_item;
279         i++;
280     }
281
282     if( model_items.isEmpty() )
283     {
284         PL_UNLOCK; return;
285     }
286
287     playlist_TreeMoveMany( p_playlist, i, pp_items, p_parent, new_pos );
288
289     PL_UNLOCK;
290
291     foreach( PLItem *item, model_items )
292         takeItem( item );
293
294     insertChildren( target, model_items, model_pos );
295 }
296
297 /* remove item with its id */
298 void PLModel::removeItem( int i_id )
299 {
300     PLItem *item = findById( rootItem, i_id );
301     removeItem( item );
302 }
303
304 void PLModel::activateItem( const QModelIndex &index )
305 {
306     assert( index.isValid() );
307     PLItem *item = getItem( index );
308     assert( item );
309     PL_LOCK;
310     playlist_item_t *p_item = playlist_ItemGetById( p_playlist, item->i_id );
311     activateItem( p_item );
312     PL_UNLOCK;
313 }
314
315 /* Must be entered with lock */
316 void PLModel::activateItem( playlist_item_t *p_item )
317 {
318     if( !p_item ) return;
319     playlist_item_t *p_parent = p_item;
320     while( p_parent )
321     {
322         if( p_parent->i_id == rootItem->i_id ) break;
323         p_parent = p_parent->p_parent;
324     }
325     if( p_parent )
326         playlist_Control( p_playlist, PLAYLIST_VIEWPLAY, pl_Locked,
327                           p_parent, p_item );
328 }
329
330 /****************** Base model mandatory implementations *****************/
331 QVariant PLModel::data( const QModelIndex &index, int role ) const
332 {
333     if( !index.isValid() ) return QVariant();
334     PLItem *item = getItem( index );
335     if( role == Qt::DisplayRole )
336     {
337         int metadata = columnToMeta( index.column() );
338         if( metadata == COLUMN_END ) return QVariant();
339
340         QString returninfo;
341         if( metadata == COLUMN_NUMBER )
342             returninfo = QString::number( index.row() + 1 );
343         else
344         {
345             char *psz = psz_column_meta( item->p_input, metadata );
346             returninfo = qfu( psz );
347             free( psz );
348         }
349         return QVariant( returninfo );
350     }
351     else if( role == Qt::DecorationRole && index.column() == 0  )
352     {
353         /* Used to segfault here because i_type wasn't always initialized */
354         return QVariant( PLModel::icons[item->p_input->i_type] );
355     }
356     else if( role == Qt::FontRole )
357     {
358         if( isCurrent( index ) )
359         {
360             QFont f; f.setBold( true ); return QVariant( f );
361         }
362     }
363     else if( role == Qt::BackgroundRole && isCurrent( index ) )
364     {
365         return QVariant( QBrush( Qt::gray ) );
366     }
367     else if( role == IsCurrentRole ) return QVariant( isCurrent( index ) );
368     else if( role == IsLeafNodeRole )
369     {
370         QVariant isLeaf;
371         PL_LOCK;
372         playlist_item_t *plItem =
373             playlist_ItemGetById( p_playlist, item->i_id );
374
375         if( plItem )
376             isLeaf = plItem->i_children == -1;
377
378         PL_UNLOCK;
379         return isLeaf;
380     }
381     else if( role == IsCurrentsParentNodeRole )
382     {
383         return QVariant( isParent( index, current_index ) );
384     }
385     return QVariant();
386 }
387
388 /* Seek from current index toward the top and see if index is one of parent nodes */
389 bool PLModel::isParent( const QModelIndex &index, const QModelIndex &current ) const
390 {
391     if( index == current )
392         return true;
393
394     if( !current.isValid() || !current.parent().isValid() )
395         return false;
396
397     return isParent( index, current.parent() );
398 }
399
400 bool PLModel::isCurrent( const QModelIndex &index ) const
401 {
402     return index == current_index;
403 }
404
405 int PLModel::itemId( const QModelIndex &index ) const
406 {
407     return getItem( index )->i_id;
408 }
409
410 QVariant PLModel::headerData( int section, Qt::Orientation orientation,
411                               int role ) const
412 {
413     if (orientation != Qt::Horizontal || role != Qt::DisplayRole)
414         return QVariant();
415
416     int meta_col = columnToMeta( section );
417
418     if( meta_col == COLUMN_END ) return QVariant();
419
420     return QVariant( qfu( psz_column_title( meta_col ) ) );
421 }
422
423 QModelIndex PLModel::index( int row, int column, const QModelIndex &parent )
424                   const
425 {
426     PLItem *parentItem = parent.isValid() ? getItem( parent ) : rootItem;
427
428     PLItem *childItem = parentItem->child( row );
429     if( childItem )
430         return createIndex( row, column, childItem );
431     else
432         return QModelIndex();
433 }
434
435 QModelIndex PLModel::index( int i_id, int c )
436 {
437   return index( findById( rootItem, i_id ), c );
438 }
439
440 /* Return the index of a given item */
441 QModelIndex PLModel::index( PLItem *item, int column ) const
442 {
443     if( !item ) return QModelIndex();
444     const PLItem *parent = item->parent();
445     if( parent )
446         return createIndex( parent->children.lastIndexOf( item ),
447                             column, item );
448     return QModelIndex();
449 }
450
451 void PLModel::cacheCurrent( const QModelIndex &current )
452 {
453     current_index = current;
454 }
455
456 QModelIndex PLModel::currentIndex()
457 {
458     return current_index;
459 }
460
461 QModelIndex PLModel::parent( const QModelIndex &index ) const
462 {
463     if( !index.isValid() ) return QModelIndex();
464
465     PLItem *childItem = getItem( index );
466     if( !childItem )
467     {
468         msg_Err( p_playlist, "NULL CHILD" );
469         return QModelIndex();
470     }
471
472     PLItem *parentItem = childItem->parent();
473     if( !parentItem || parentItem == rootItem ) return QModelIndex();
474     if( !parentItem->parentItem )
475     {
476         msg_Err( p_playlist, "No parent parent, trying row 0 " );
477         msg_Err( p_playlist, "----- PLEASE REPORT THIS ------" );
478         return createIndex( 0, 0, parentItem );
479     }
480     return createIndex(parentItem->row(), 0, parentItem);
481 }
482
483 int PLModel::columnCount( const QModelIndex &i) const
484 {
485     return columnFromMeta( COLUMN_END );
486 }
487
488 int PLModel::rowCount( const QModelIndex &parent ) const
489 {
490     PLItem *parentItem = parent.isValid() ? getItem( parent ) : rootItem;
491     return parentItem->childCount();
492 }
493
494 QStringList PLModel::selectedURIs()
495 {
496     QStringList lst;
497     for( int i = 0; i < current_selection.size(); i++ )
498     {
499         PLItem *item = getItem( current_selection[i] );
500         if( item )
501         {
502             PL_LOCK;
503             playlist_item_t *p_item = playlist_ItemGetById( p_playlist, item->i_id );
504             if( p_item )
505             {
506                 char *psz = input_item_GetURI( p_item->p_input );
507                 if( psz )
508                 {
509                     lst.append( qfu(psz) );
510                     free( psz );
511                 }
512             }
513             PL_UNLOCK;
514         }
515     }
516     return lst;
517 }
518
519
520 /************************* Lookups *****************************/
521
522 PLItem *PLModel::findById( PLItem *root, int i_id )
523 {
524     return findInner( root, i_id, false );
525 }
526
527 PLItem *PLModel::findByInput( PLItem *root, int i_id )
528 {
529     PLItem *result = findInner( root, i_id, true );
530     return result;
531 }
532
533 #define CACHE( i, p ) { i_cached_id = i; p_cached_item = p; }
534 #define ICACHE( i, p ) { i_cached_input_id = i; p_cached_item_bi = p; }
535
536 PLItem * PLModel::findInner( PLItem *root, int i_id, bool b_input )
537 {
538     if( !root ) return NULL;
539     if( ( !b_input && i_cached_id == i_id) ||
540         ( b_input && i_cached_input_id ==i_id ) )
541     {
542         return b_input ? p_cached_item_bi : p_cached_item;
543     }
544
545     if( !b_input && root->i_id == i_id )
546     {
547         CACHE( i_id, root );
548         return root;
549     }
550     else if( b_input && root->p_input->i_id == i_id )
551     {
552         ICACHE( i_id, root );
553         return root;
554     }
555
556     QList<PLItem *>::iterator it = root->children.begin();
557     while ( it != root->children.end() )
558     {
559         if( !b_input && (*it)->i_id == i_id )
560         {
561             CACHE( i_id, (*it) );
562             return p_cached_item;
563         }
564         else if( b_input && (*it)->p_input->i_id == i_id )
565         {
566             ICACHE( i_id, (*it) );
567             return p_cached_item_bi;
568         }
569         if( (*it)->children.size() )
570         {
571             PLItem *childFound = findInner( (*it), i_id, b_input );
572             if( childFound )
573             {
574                 if( b_input )
575                     ICACHE( i_id, childFound )
576                 else
577                     CACHE( i_id, childFound )
578                 return childFound;
579             }
580         }
581         it++;
582     }
583     return NULL;
584 }
585 #undef CACHE
586 #undef ICACHE
587
588 int PLModel::columnToMeta( int _column )
589 {
590     int meta = 1;
591     int column = 0;
592
593     while( column != _column && meta != COLUMN_END )
594     {
595         meta <<= 1;
596         column++;
597     }
598
599     return meta;
600 }
601
602 int PLModel::columnFromMeta( int meta_col )
603 {
604     int meta = 1;
605     int column = 0;
606
607     while( meta != meta_col && meta != COLUMN_END )
608     {
609         meta <<= 1;
610         column++;
611     }
612
613     return column;
614 }
615
616 bool PLModel::canEdit() const
617 {
618   return (
619     rootItem != NULL &&
620     (
621       rootItem->p_input == p_playlist->p_playing->p_input ||
622       (
623         p_playlist->p_media_library &&
624         rootItem->p_input == p_playlist->p_media_library->p_input
625       )
626     )
627   );
628 }
629 /************************* Updates handling *****************************/
630
631 /**** Events processing ****/
632 void PLModel::processInputItemUpdate( input_thread_t *p_input )
633 {
634     if( !p_input ) return;
635     if( p_input && !( p_input->b_dead || !vlc_object_alive( p_input ) ) )
636     {
637         PLItem *item = findByInput( rootItem, input_GetItem( p_input )->i_id );
638         if( item ) emit currentChanged( index( item, 0 ) );
639     }
640     processInputItemUpdate( input_GetItem( p_input ) );
641 }
642
643 void PLModel::processInputItemUpdate( input_item_t *p_item )
644 {
645     if( !p_item ||  p_item->i_id <= 0 ) return;
646     PLItem *item = findByInput( rootItem, p_item->i_id );
647     if( item )
648         updateTreeItem( item );
649 }
650
651 void PLModel::processItemRemoval( int i_id )
652 {
653     if( i_id <= 0 ) return;
654     removeItem( i_id );
655 }
656
657 void PLModel::processItemAppend( int i_item, int i_parent )
658 {
659     playlist_item_t *p_item = NULL;
660     PLItem *newItem = NULL;
661     input_thread_t *currentInputThread;
662     int pos;
663
664     PLItem *nodeItem = findById( rootItem, i_parent );
665     if( !nodeItem ) return;
666
667     foreach( PLItem *existing, nodeItem->children )
668       if( existing->i_id == i_item ) return;
669
670     PL_LOCK;
671     p_item = playlist_ItemGetById( p_playlist, i_item );
672     if( !p_item || p_item->i_flags & PLAYLIST_DBL_FLAG )
673     {
674         PL_UNLOCK; return;
675     }
676
677     for( pos = 0; pos < p_item->p_parent->i_children; pos++ )
678         if( p_item->p_parent->pp_children[pos] == p_item ) break;
679
680     newItem = new PLItem( p_item, nodeItem );
681     PL_UNLOCK;
682
683     beginInsertRows( index( nodeItem, 0 ), pos, pos );
684     nodeItem->insertChild( newItem, pos );
685     endInsertRows();
686
687     if( newItem->p_input == THEMIM->currentInputItem() )
688         emit currentChanged( index( newItem, 0 ) );
689 }
690
691
692 void PLModel::rebuild()
693 {
694     rebuild( NULL );
695 }
696
697 void PLModel::rebuild( playlist_item_t *p_root )
698 {
699     playlist_item_t* p_item;
700
701     /* Invalidate cache */
702     i_cached_id = i_cached_input_id = -1;
703     current_index = QModelIndex();
704
705     if( rootItem ) rootItem->removeChildren();
706
707     PL_LOCK;
708     if( p_root )
709     {
710         delete rootItem;
711         rootItem = new PLItem( p_root );
712     }
713     assert( rootItem );
714     /* Recreate from root */
715     updateChildren( rootItem );
716     PL_UNLOCK;
717
718     /* And signal the view */
719     reset();
720
721     if( p_root ) emit rootChanged();
722 }
723
724 void PLModel::takeItem( PLItem *item )
725 {
726     assert( item );
727     PLItem *parent = item->parentItem;
728     assert( parent );
729     int i_index = parent->children.indexOf( item );
730
731     beginRemoveRows( index( parent, 0 ), i_index, i_index );
732     parent->takeChildAt( i_index );
733     endRemoveRows();
734 }
735
736 void PLModel::insertChildren( PLItem *node, QList<PLItem*>& items, int i_pos )
737 {
738     assert( node );
739     int count = items.size();
740     if( !count ) return;
741     beginInsertRows( index( node, 0 ), i_pos, i_pos + count - 1 );
742     for( int i = 0; i < count; i++ )
743     {
744         node->children.insert( i_pos + i, items[i] );
745         items[i]->parentItem = node;
746     }
747     endInsertRows();
748 }
749
750 void PLModel::removeItem( PLItem *item )
751 {
752     if( !item ) return;
753
754     i_cached_id = -1;
755     i_cached_input_id = -1;
756     current_index = QModelIndex();
757
758     if( item->parentItem ) {
759         int i = item->parentItem->children.indexOf( item );
760         beginRemoveRows( index( item->parentItem, 0), i, i );
761         item->parentItem->children.removeAt(i);
762         delete item;
763         endRemoveRows();
764     }
765     else delete item;
766
767     if(item == rootItem)
768     {
769         rootItem = NULL;
770         rebuild( p_playlist->p_playing );
771     }
772 }
773
774 /* This function must be entered WITH the playlist lock */
775 void PLModel::updateChildren( PLItem *root )
776 {
777     playlist_item_t *p_node = playlist_ItemGetById( p_playlist, root->i_id );
778     updateChildren( p_node, root );
779 }
780
781 /* This function must be entered WITH the playlist lock */
782 void PLModel::updateChildren( playlist_item_t *p_node, PLItem *root )
783 {
784     for( int i = 0; i < p_node->i_children ; i++ )
785     {
786         if( p_node->pp_children[i]->i_flags & PLAYLIST_DBL_FLAG ) continue;
787         PLItem *newItem =  new PLItem( p_node->pp_children[i], root );
788         root->appendChild( newItem );
789         if( p_node->pp_children[i]->i_children != -1 )
790             updateChildren( p_node->pp_children[i], newItem );
791     }
792 }
793
794 /* Function doesn't need playlist-lock, as we don't touch playlist_item_t stuff here*/
795 void PLModel::updateTreeItem( PLItem *item )
796 {
797     if( !item ) return;
798     emit dataChanged( index( item, 0 ) , index( item, columnCount( QModelIndex() ) ) );
799 }
800
801 /************************* Actions ******************************/
802
803 /**
804  * Deletion, don't delete items childrens if item is going to be
805  * delete allready, so we remove childrens from selection-list.
806  */
807 void PLModel::doDelete( QModelIndexList selected )
808 {
809     if( !canEdit() ) return;
810
811     while( !selected.isEmpty() )
812     {
813         QModelIndex index = selected[0];
814         selected.removeAt( 0 );
815
816         if( index.column() != 0 ) continue;
817
818         PLItem *item = getItem( index );
819         if( item->children.size() )
820             recurseDelete( item->children, &selected );
821
822         PL_LOCK;
823         playlist_DeleteFromInput( p_playlist, item->p_input, pl_Locked );
824         PL_UNLOCK;
825
826         removeItem( item );
827     }
828 }
829
830 void PLModel::recurseDelete( QList<PLItem*> children, QModelIndexList *fullList )
831 {
832     for( int i = children.size() - 1; i >= 0 ; i-- )
833     {
834         PLItem *item = children[i];
835         if( item->children.size() )
836             recurseDelete( item->children, fullList );
837         fullList->removeAll( index( item, 0 ) );
838     }
839 }
840
841 /******* Volume III: Sorting and searching ********/
842 void PLModel::sort( int column, Qt::SortOrder order )
843 {
844     sort( rootItem->i_id, column, order );
845 }
846
847 void PLModel::sort( int i_root_id, int column, Qt::SortOrder order )
848 {
849     msg_Dbg( p_intf, "Sorting by column %i, order %i", column, order );
850
851     int meta = columnToMeta( column );
852     if( meta == COLUMN_END ) return;
853
854     PLItem *item = findById( rootItem, i_root_id );
855     if( !item ) return;
856     QModelIndex qIndex = index( item, 0 );
857     int count = item->children.size();
858     if( count )
859     {
860         beginRemoveRows( qIndex, 0, count - 1 );
861         item->removeChildren();
862         endRemoveRows( );
863     }
864
865     PL_LOCK;
866     {
867         playlist_item_t *p_root = playlist_ItemGetById( p_playlist,
868                                                         i_root_id );
869         if( p_root )
870         {
871             playlist_RecursiveNodeSort( p_playlist, p_root,
872                                         i_column_sorting( meta ),
873                                         order == Qt::AscendingOrder ?
874                                             ORDER_NORMAL : ORDER_REVERSE );
875         }
876     }
877
878     i_cached_id = i_cached_input_id = -1;
879     current_index = QModelIndex();
880
881     if( count )
882     {
883         beginInsertRows( qIndex, 0, count - 1 );
884         updateChildren( item );
885         endInsertRows( );
886     }
887     PL_UNLOCK;
888     /* if we have popup item, try to make sure that you keep that item visible */
889     if( i_popup_item > -1 )
890     {
891         PLItem *popupitem = findById( rootItem, i_popup_item );
892         if( popupitem ) emit currentChanged( index( popupitem, 0 ) );
893         /* reset i_popup_item as we don't show it as selected anymore anyway */
894         i_popup_item = -1;
895     }
896     else if( currentIndex().isValid() ) emit currentChanged( currentIndex() );
897 }
898
899 void PLModel::search( const QString& search_text, const QModelIndex & idx, bool b_recursive )
900 {
901     /** \todo Fire the search with a small delay ? */
902     PL_LOCK;
903     {
904         playlist_item_t *p_root = playlist_ItemGetById( p_playlist,
905                                                         itemId( idx ) );
906         assert( p_root );
907         const char *psz_name = qtu( search_text );
908         playlist_LiveSearchUpdate( p_playlist , p_root, psz_name, b_recursive );
909
910         if( idx.isValid() )
911         {
912             PLItem *searchRoot = getItem( idx );
913
914             beginRemoveRows( idx, 0, searchRoot->children.size() - 1 );
915             searchRoot->removeChildren();
916             endRemoveRows( );
917
918             beginInsertRows( idx, 0, searchRoot->children.size() - 1 );
919             updateChildren( searchRoot );
920             endInsertRows();
921
922             PL_UNLOCK;
923             return;
924         }
925     }
926     PL_UNLOCK;
927     rebuild();
928 }
929
930 /*********** Popup *********/
931 bool PLModel::popup( const QModelIndex & index, const QPoint &point, const QModelIndexList &list )
932 {
933     int i_id = index.isValid() ? itemId( index ) : rootItem->i_id;
934
935     PL_LOCK;
936     playlist_item_t *p_item = playlist_ItemGetById( p_playlist, i_id );
937     if( !p_item )
938     {
939         PL_UNLOCK;
940         return false;
941     }
942
943     i_popup_item = index.isValid() ? p_item->i_id : -1;
944     i_popup_parent = index.isValid() ?
945         ( p_item->p_parent ? p_item->p_parent->i_id : -1 ) :
946         ( rootItem->i_id );
947     i_popup_column = index.column();
948
949     bool tree = ( rootItem && rootItem->i_id != p_playlist->p_playing->i_id ) ||
950                 var_InheritBool( p_intf, "playlist-tree" );
951
952     PL_UNLOCK;
953
954     current_selection = list;
955
956     QMenu menu;
957     if( i_popup_item > -1 )
958     {
959         menu.addAction( QIcon( ":/menu/play" ), qtr(I_POP_PLAY), this, SLOT( popupPlay() ) );
960         menu.addAction( QIcon( ":/menu/stream" ),
961                         qtr(I_POP_STREAM), this, SLOT( popupStream() ) );
962         menu.addAction( qtr(I_POP_SAVE), this, SLOT( popupSave() ) );
963         menu.addAction( QIcon( ":/menu/info" ), qtr(I_POP_INFO), this, SLOT( popupInfo() ) );
964         menu.addAction( QIcon( ":/type/folder-grey" ),
965                         qtr( I_POP_EXPLORE ), this, SLOT( popupExplore() ) );
966         menu.addSeparator();
967     }
968     if( canEdit() )
969     {
970         QIcon addIcon( ":/buttons/playlist/playlist_add" );
971         menu.addSeparator();
972         if( tree ) menu.addAction( addIcon, qtr(I_POP_NEWFOLDER), this, SLOT( popupAddNode() ) );
973         if( rootItem->i_id == THEPL->p_playing->i_id )
974         {
975             menu.addAction( addIcon, qtr(I_PL_ADDF), THEDP, SLOT( simplePLAppendDialog()) );
976             menu.addAction( addIcon, qtr(I_PL_ADDDIR), THEDP, SLOT( PLAppendDir()) );
977             menu.addAction( addIcon, qtr(I_OP_ADVOP), THEDP, SLOT( PLAppendDialog()) );
978         }
979         else if( THEPL->p_media_library &&
980                     rootItem->i_id == THEPL->p_media_library->i_id )
981         {
982             menu.addAction( addIcon, qtr(I_PL_ADDF), THEDP, SLOT( simpleMLAppendDialog()) );
983             menu.addAction( addIcon, qtr(I_PL_ADDDIR), THEDP, SLOT( MLAppendDir() ) );
984             menu.addAction( addIcon, qtr(I_OP_ADVOP), THEDP, SLOT( MLAppendDialog() ) );
985         }
986     }
987     if( i_popup_item > -1 )
988     {
989         menu.addAction( QIcon( ":/buttons/playlist/playlist_remove" ),
990                         qtr(I_POP_DEL), this, SLOT( popupDel() ) );
991         menu.addSeparator();
992         if( !sortingMenu )
993         {
994             sortingMenu = new QMenu( qtr( "Sort by" ) );
995             sortingMapper = new QSignalMapper( this );
996             int i, j;
997             for( i = 1, j = 1; i < COLUMN_END; i <<= 1, j++ )
998             {
999                 if( i == COLUMN_NUMBER ) continue;
1000                 QMenu *m = sortingMenu->addMenu( qfu( psz_column_title( i ) ) );
1001                 QAction *asc = m->addAction( qtr("Ascending") );
1002                 QAction *desc = m->addAction( qtr("Descending") );
1003                 sortingMapper->setMapping( asc, j );
1004                 sortingMapper->setMapping( desc, -j );
1005                 CONNECT( asc, triggered(), sortingMapper, map() );
1006                 CONNECT( desc, triggered(), sortingMapper, map() );
1007             }
1008             CONNECT( sortingMapper, mapped( int ), this, popupSort( int ) );
1009         }
1010         menu.addMenu( sortingMenu );
1011     }
1012     if( !menu.isEmpty() )
1013     {
1014         menu.exec( point ); return true;
1015     }
1016     else return false;
1017 }
1018
1019 void PLModel::popupDel()
1020 {
1021     doDelete( current_selection );
1022 }
1023
1024 void PLModel::popupPlay()
1025 {
1026     PL_LOCK;
1027     {
1028         playlist_item_t *p_item = playlist_ItemGetById( p_playlist,
1029                                                         i_popup_item );
1030         activateItem( p_item );
1031     }
1032     PL_UNLOCK;
1033 }
1034
1035 void PLModel::popupInfo()
1036 {
1037     PL_LOCK;
1038     playlist_item_t *p_item = playlist_ItemGetById( p_playlist,
1039                                                     i_popup_item );
1040     if( p_item )
1041     {
1042         input_item_t* p_input = p_item->p_input;
1043         vlc_gc_incref( p_input );
1044         PL_UNLOCK;
1045         MediaInfoDialog *mid = new MediaInfoDialog( p_intf, p_input );
1046         vlc_gc_decref( p_input );
1047         mid->setParent( PlaylistDialog::getInstance( p_intf ),
1048                         Qt::Dialog );
1049         mid->show();
1050     } else
1051         PL_UNLOCK;
1052 }
1053
1054 void PLModel::popupStream()
1055 {
1056     QStringList mrls = selectedURIs();
1057     if( !mrls.isEmpty() )
1058         THEDP->streamingDialog( NULL, mrls[0], false );
1059
1060 }
1061
1062 void PLModel::popupSave()
1063 {
1064     QStringList mrls = selectedURIs();
1065     if( !mrls.isEmpty() )
1066         THEDP->streamingDialog( NULL, mrls[0] );
1067 }
1068
1069 void PLModel::popupExplore()
1070 {
1071     PL_LOCK;
1072     playlist_item_t *p_item = playlist_ItemGetById( p_playlist,
1073                                                     i_popup_item );
1074     if( p_item )
1075     {
1076        input_item_t *p_input = p_item->p_input;
1077        char *psz_meta = input_item_GetURI( p_input );
1078        PL_UNLOCK;
1079        if( psz_meta )
1080        {
1081            const char *psz_access;
1082            const char *psz_demux;
1083            char  *psz_path;
1084            input_SplitMRL( &psz_access, &psz_demux, &psz_path, psz_meta );
1085
1086            if( !EMPTY_STR( psz_access ) && (
1087                    !strncasecmp( psz_access, "file", 4 ) ||
1088                    !strncasecmp( psz_access, "dire", 4 ) ))
1089            {
1090                QFileInfo info( qfu( decode_URI( psz_path ) ) );
1091                QDesktopServices::openUrl(
1092                                QUrl::fromLocalFile( info.absolutePath() ) );
1093            }
1094            free( psz_meta );
1095        }
1096     }
1097     else
1098         PL_UNLOCK;
1099 }
1100
1101 void PLModel::popupAddNode()
1102 {
1103     bool ok;
1104     QString name = QInputDialog::getText( PlaylistDialog::getInstance( p_intf ),
1105         qtr( I_NEW_DIR ), qtr( I_NEW_DIR_NAME ),
1106         QLineEdit::Normal, QString(), &ok);
1107     if( !ok || name.isEmpty() ) return;
1108     PL_LOCK;
1109     playlist_item_t *p_item = playlist_ItemGetById( p_playlist,
1110                                                     i_popup_parent );
1111     if( p_item )
1112     {
1113         playlist_NodeCreate( p_playlist, qtu( name ), p_item, PLAYLIST_END, 0, NULL );
1114     }
1115     PL_UNLOCK;
1116 }
1117
1118 void PLModel::popupSort( int column )
1119 {
1120     sort( i_popup_parent,
1121           column > 0 ? column - 1 : -column - 1,
1122           column > 0 ? Qt::AscendingOrder : Qt::DescendingOrder );
1123 }
1124
1125 /******************* Drag and Drop helper class ******************/
1126
1127 PlMimeData::PlMimeData( )
1128 { }
1129
1130 PlMimeData::~PlMimeData()
1131 {
1132     foreach( input_item_t *p_item, _inputItems )
1133         vlc_gc_decref( p_item );
1134 }
1135
1136 void PlMimeData::appendItem( input_item_t *p_item )
1137 {
1138     vlc_gc_incref( p_item );
1139     _inputItems.append( p_item );
1140 }
1141
1142 QList<input_item_t*> PlMimeData::inputItems() const
1143 {
1144     return _inputItems;
1145 }
1146
1147 QStringList PlMimeData::formats () const
1148 {
1149     QStringList fmts;
1150     fmts << "vlc/qt-input-items";
1151     return fmts;
1152 }