forked from koying/SPMC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FileItem.h
686 lines (588 loc) · 22.4 KB
/
FileItem.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
/*!
\file FileItem.h
\brief
*/
#pragma once
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* This Program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#include "guilib/GUIListItem.h"
#include "utils/IArchivable.h"
#include "utils/ISerializable.h"
#include "utils/ISortable.h"
#include "XBDateTime.h"
#include "utils/SortUtils.h"
#include "GUIPassword.h"
#include "threads/CriticalSection.h"
#include <vector>
#include "boost/shared_ptr.hpp"
namespace MUSIC_INFO
{
class CMusicInfoTag;
}
class CVideoInfoTag;
namespace EPG
{
class CEpgInfoTag;
}
namespace PVR
{
class CPVRChannel;
class CPVRRecording;
class CPVRTimerInfoTag;
}
class CPictureInfoTag;
class CAlbum;
class CArtist;
class CSong;
class CGenre;
class CURL;
/* special startoffset used to indicate that we wish to resume */
#define STARTOFFSET_RESUME (-1)
class CMediaSource;
enum EFileFolderType {
EFILEFOLDER_TYPE_ALWAYS = 1<<0,
EFILEFOLDER_TYPE_ONCLICK = 1<<1,
EFILEFOLDER_TYPE_ONBROWSE = 1<<2,
EFILEFOLDER_MASK_ALL = 0xff,
EFILEFOLDER_MASK_ONCLICK = EFILEFOLDER_TYPE_ALWAYS
| EFILEFOLDER_TYPE_ONCLICK,
EFILEFOLDER_MASK_ONBROWSE = EFILEFOLDER_TYPE_ALWAYS
| EFILEFOLDER_TYPE_ONCLICK
| EFILEFOLDER_TYPE_ONBROWSE,
};
/*!
\brief Represents a file on a share
\sa CFileItemList
*/
class CFileItem :
public CGUIListItem, public IArchivable, public ISerializable, public ISortable
{
public:
CFileItem(void);
CFileItem(const CFileItem& item);
CFileItem(const CGUIListItem& item);
explicit CFileItem(const std::string& strLabel);
CFileItem(const CURL& path, bool bIsFolder);
CFileItem(const std::string& strPath, bool bIsFolder);
CFileItem(const CSong& song);
CFileItem(const CURL &path, const CAlbum& album);
CFileItem(const std::string &path, const CAlbum& album);
CFileItem(const CArtist& artist);
CFileItem(const CGenre& genre);
CFileItem(const MUSIC_INFO::CMusicInfoTag& music);
CFileItem(const CVideoInfoTag& movie);
CFileItem(const EPG::CEpgInfoTag& tag);
CFileItem(const PVR::CPVRChannel& channel);
CFileItem(const PVR::CPVRRecording& record);
CFileItem(const PVR::CPVRTimerInfoTag& timer);
CFileItem(const CMediaSource& share);
virtual ~CFileItem(void);
virtual CGUIListItem *Clone() const { return new CFileItem(*this); };
const CURL GetURL() const;
void SetURL(const CURL& url);
bool IsURL(const CURL& url) const;
const std::string &GetPath() const { return m_strPath; };
void SetPath(const std::string &path) { m_strPath = path; };
bool IsPath(const std::string& path) const;
/*! \brief reset class to it's default values as per construction.
Free's all allocated memory.
\sa Initialize
*/
void Reset();
const CFileItem& operator=(const CFileItem& item);
virtual void Archive(CArchive& ar);
virtual void Serialize(CVariant& value) const;
virtual void ToSortable(SortItem &sortable, Field field) const;
void ToSortable(SortItem &sortable, const Fields &fields) const;
virtual bool IsFileItem() const { return true; };
bool Exists(bool bUseCache = true) const;
/*!
\brief Check whether an item is an optical media folder or its parent.
This will return the non-empty path to the playable entry point of the media
one or two levels down (VIDEO_TS.IFO for DVDs or index.bdmv for BDs).
The returned path will be empty if folder does not meet this criterion.
\return non-empty string if item is optical media folder, empty otherwise.
*/
std::string GetOpticalMediaPath() const;
/*!
\brief Check whether an item is a video item. Note that this returns true for
anything with a video info tag, so that may include eg. folders.
\return true if item is video, false otherwise.
*/
bool IsVideo() const;
bool IsDiscStub() const;
/*!
\brief Check whether an item is a picture item. Note that this returns true for
anything with a picture info tag, so that may include eg. folders.
\return true if item is picture, false otherwise.
*/
bool IsPicture() const;
bool IsLyrics() const;
/*!
\brief Check whether an item is an audio item. Note that this returns true for
anything with a music info tag, so that may include eg. folders.
\return true if item is audio, false otherwise.
*/
bool IsAudio() const;
bool IsKaraoke() const;
bool IsCUESheet() const;
bool IsInternetStream(const bool bStrictCheck = false) const;
bool IsPlayList() const;
bool IsSmartPlayList() const;
bool IsLibraryFolder() const;
bool IsPythonScript() const;
bool IsPlugin() const;
bool IsScript() const;
bool IsAddonsPath() const;
bool IsSourcesPath() const;
bool IsNFO() const;
bool IsDiscImage() const;
bool IsOpticalMediaFile() const;
bool IsDVDFile(bool bVobs = true, bool bIfos = true) const;
bool IsBDFile() const;
bool IsRAR() const;
bool IsAPK() const;
bool IsZIP() const;
bool IsCBZ() const;
bool IsCBR() const;
bool IsISO9660() const;
bool IsCDDA() const;
bool IsDVD() const;
bool IsOnDVD() const;
bool IsOnLAN() const;
bool IsHD() const;
bool IsNfs() const;
bool IsAfp() const;
bool IsRemote() const;
bool IsSmb() const;
bool IsURL() const;
bool IsDAAP() const;
bool IsStack() const;
bool IsMultiPath() const;
bool IsMusicDb() const;
bool IsVideoDb() const;
bool IsEPG() const;
bool IsPVRChannel() const;
bool IsPVRRecording() const;
bool IsPVRTimer() const;
bool IsType(const char *ext) const;
bool IsVirtualDirectoryRoot() const;
bool IsReadOnly() const;
bool CanQueue() const;
void SetCanQueue(bool bYesNo);
bool IsParentFolder() const;
bool IsFileFolder(EFileFolderType types = EFILEFOLDER_MASK_ALL) const;
bool IsRemovable() const;
bool IsTuxBox() const;
bool IsMythTV() const;
bool IsHDHomeRun() const;
bool IsSlingbox() const;
bool IsVTP() const;
bool IsPVR() const;
bool IsLiveTV() const;
bool IsRSS() const;
bool IsAndroidApp() const;
void RemoveExtension();
void CleanString();
void FillInDefaultIcon();
void SetFileSizeLabel();
virtual void SetLabel(const std::string &strLabel);
int GetVideoContentType() const; /* return VIDEODB_CONTENT_TYPE, but don't want to include videodb in this header */
bool IsLabelPreformated() const { return m_bLabelPreformated; }
void SetLabelPreformated(bool bYesNo) { m_bLabelPreformated=bYesNo; }
bool SortsOnTop() const { return m_specialSort == SortSpecialOnTop; }
bool SortsOnBottom() const { return m_specialSort == SortSpecialOnBottom; }
void SetSpecialSort(SortSpecial sort) { m_specialSort = sort; }
inline bool HasMusicInfoTag() const
{
return m_musicInfoTag != NULL;
}
MUSIC_INFO::CMusicInfoTag* GetMusicInfoTag();
inline const MUSIC_INFO::CMusicInfoTag* GetMusicInfoTag() const
{
return m_musicInfoTag;
}
inline bool HasVideoInfoTag() const
{
return m_videoInfoTag != NULL;
}
CVideoInfoTag* GetVideoInfoTag();
inline const CVideoInfoTag* GetVideoInfoTag() const
{
return m_videoInfoTag;
}
inline bool HasEPGInfoTag() const
{
return m_epgInfoTag != NULL;
}
EPG::CEpgInfoTag* GetEPGInfoTag();
inline const EPG::CEpgInfoTag* GetEPGInfoTag() const
{
return m_epgInfoTag;
}
inline bool HasPVRChannelInfoTag() const
{
return m_pvrChannelInfoTag != NULL;
}
PVR::CPVRChannel* GetPVRChannelInfoTag();
inline const PVR::CPVRChannel* GetPVRChannelInfoTag() const
{
return m_pvrChannelInfoTag;
}
inline bool HasPVRRecordingInfoTag() const
{
return m_pvrRecordingInfoTag != NULL;
}
PVR::CPVRRecording* GetPVRRecordingInfoTag();
inline const PVR::CPVRRecording* GetPVRRecordingInfoTag() const
{
return m_pvrRecordingInfoTag;
}
inline bool HasPVRTimerInfoTag() const
{
return m_pvrTimerInfoTag != NULL;
}
PVR::CPVRTimerInfoTag* GetPVRTimerInfoTag();
inline const PVR::CPVRTimerInfoTag* GetPVRTimerInfoTag() const
{
return m_pvrTimerInfoTag;
}
/*!
\brief Test if this item has a valid resume point set.
\return True if this item has a resume point and it is set, false otherwise.
*/
bool IsResumePointSet() const;
/*!
\brief Return the current resume time.
\return The time in seconds from the start to resume playing from.
*/
double GetCurrentResumeTime() const;
inline bool HasPictureInfoTag() const
{
return m_pictureInfoTag != NULL;
}
inline const CPictureInfoTag* GetPictureInfoTag() const
{
return m_pictureInfoTag;
}
CPictureInfoTag* GetPictureInfoTag();
/*!
\brief Get the local fanart for this item if it exists
\return path to the local fanart for this item, or empty if none exists
\sa GetFolderThumb, GetTBNFile
*/
std::string GetLocalFanart() const;
/*! \brief Assemble the filename of a particular piece of local artwork for an item.
No file existence check is typically performed.
\param artFile the art file to search for.
\param useFolder whether to look in the folder for the art file. Defaults to false.
\return the path to the local artwork.
\sa FindLocalArt
*/
std::string GetLocalArt(const std::string &artFile, bool useFolder = false) const;
/*! \brief Assemble the filename of a particular piece of local artwork for an item,
and check for file existence.
\param artFile the art file to search for.
\param useFolder whether to look in the folder for the art file. Defaults to false.
\return the path to the local artwork if it exists, empty otherwise.
\sa GetLocalArt
*/
std::string FindLocalArt(const std::string &artFile, bool useFolder) const;
/*! \brief Whether or not to skip searching for local art.
\return true if local art should be skipped for this item, false otherwise.
\sa GetLocalArt, FindLocalArt
*/
bool SkipLocalArt() const;
// Gets the .tbn file associated with this item
std::string GetTBNFile() const;
// Gets the folder image associated with this item (defaults to folder.jpg)
std::string GetFolderThumb(const std::string &folderJPG = "folder.jpg") const;
// Gets the correct movie title
std::string GetMovieName(bool bUseFolderNames = false) const;
/*! \brief Find the base movie path (i.e. the item the user expects us to use to lookup the movie)
For folder items, with "use foldernames for lookups" it returns the folder.
Regardless of settings, for VIDEO_TS/BDMV it returns the parent of the VIDEO_TS/BDMV folder (if present)
\param useFolderNames whether we're using foldernames for lookups
\return the base movie folder
*/
std::string GetBaseMoviePath(bool useFolderNames) const;
// Gets the user thumb, if it exists
std::string GetUserMusicThumb(bool alwaysCheckRemote = false, bool fallbackToFolder = false) const;
/*! \brief Get the path where we expect local metadata to reside.
For a folder, this is just the existing path (eg tvshow folder)
For a file, this is the parent path, with exceptions made for VIDEO_TS and BDMV files
Three cases are handled:
/foo/bar/movie_name/file_name -> /foo/bar/movie_name/
/foo/bar/movie_name/VIDEO_TS/file_name -> /foo/bar/movie_name/
/foo/bar/movie_name/BDMV/file_name -> /foo/bar/movie_name/
\sa URIUtils::GetParentPath
*/
std::string GetLocalMetadataPath() const;
// finds a matching local trailer file
std::string FindTrailer() const;
virtual bool LoadMusicTag();
/* Returns the content type of this item if known */
const std::string& GetMimeType() const { return m_mimetype; }
/* sets the mime-type if known beforehand */
void SetMimeType(const std::string& mimetype) { m_mimetype = mimetype; } ;
/*! \brief Resolve the MIME type based on file extension or a web lookup
If m_mimetype is already set (non-empty), this function has no effect. For
http:// and shout:// streams, this will query the stream (blocking operation).
Set lookup=false to skip any internet lookups and always return immediately.
*/
void FillInMimeType(bool lookup = true);
/* general extra info about the contents of the item, not for display */
void SetExtraInfo(const std::string& info) { m_extrainfo = info; };
const std::string& GetExtraInfo() const { return m_extrainfo; };
/*! \brief Update an item with information from another item
We take metadata information from the given item and supplement the current item
with that info. If tags exist in the new item we use the entire tag information.
Properties are appended, and labels, thumbnail and icon are updated if non-empty
in the given item.
\param item the item used to supplement information
\param replaceLabels whether to replace labels (defaults to true)
*/
void UpdateInfo(const CFileItem &item, bool replaceLabels = true);
bool IsSamePath(const CFileItem *item) const;
bool IsAlbum() const;
/*! \brief Sets details using the information from the CVideoInfoTag object
Sets the videoinfotag and uses its information to set the label and path.
\param video video details to use and set
*/
void SetFromVideoInfoTag(const CVideoInfoTag &video);
/*! \brief Sets details using the information from the CAlbum object
Sets the album in the music info tag and uses its information to set the
label and album-specific properties.
\param album album details to use and set
*/
void SetFromAlbum(const CAlbum &album);
/*! \brief Sets details using the information from the CSong object
Sets the song in the music info tag and uses its information to set the
label, path, song-specific properties and artwork.
\param song song details to use and set
*/
void SetFromSong(const CSong &song);
bool m_bIsShareOrDrive; ///< is this a root share/drive
int m_iDriveType; ///< If \e m_bIsShareOrDrive is \e true, use to get the share type. Types see: CMediaSource::m_iDriveType
CDateTime m_dateTime; ///< file creation date & time
int64_t m_dwSize; ///< file size (0 for folders)
std::string m_strDVDLabel;
std::string m_strTitle;
int m_iprogramCount;
int m_idepth;
int m_lStartOffset;
int m_lStartPartNumber;
int m_lEndOffset;
LockType m_iLockMode;
std::string m_strLockCode;
int m_iHasLock; // 0 - no lock 1 - lock, but unlocked 2 - locked
int m_iBadPwdCount;
private:
/*! \brief initialize all members of this class (not CGUIListItem members) to default values.
Called from constructors, and from Reset()
\sa Reset, CGUIListItem
*/
void Initialize();
std::string m_strPath; ///< complete path to item
SortSpecial m_specialSort;
bool m_bIsParentFolder;
bool m_bCanQueue;
bool m_bLabelPreformated;
std::string m_mimetype;
std::string m_extrainfo;
MUSIC_INFO::CMusicInfoTag* m_musicInfoTag;
CVideoInfoTag* m_videoInfoTag;
EPG::CEpgInfoTag* m_epgInfoTag;
PVR::CPVRChannel* m_pvrChannelInfoTag;
PVR::CPVRRecording* m_pvrRecordingInfoTag;
PVR::CPVRTimerInfoTag * m_pvrTimerInfoTag;
CPictureInfoTag* m_pictureInfoTag;
bool m_bIsAlbum;
};
/*!
\brief A shared pointer to CFileItem
\sa CFileItem
*/
typedef boost::shared_ptr<CFileItem> CFileItemPtr;
/*!
\brief A vector of pointer to CFileItem
\sa CFileItem
*/
typedef std::vector< CFileItemPtr > VECFILEITEMS;
/*!
\brief Iterator for VECFILEITEMS
\sa CFileItemList
*/
typedef std::vector< CFileItemPtr >::iterator IVECFILEITEMS;
/*!
\brief A map of pointers to CFileItem
\sa CFileItem
*/
typedef std::map<std::string, CFileItemPtr > MAPFILEITEMS;
/*!
\brief Iterator for MAPFILEITEMS
\sa MAPFILEITEMS
*/
typedef std::map<std::string, CFileItemPtr >::iterator IMAPFILEITEMS;
/*!
\brief Pair for MAPFILEITEMS
\sa MAPFILEITEMS
*/
typedef std::pair<std::string, CFileItemPtr > MAPFILEITEMSPAIR;
typedef bool (*FILEITEMLISTCOMPARISONFUNC) (const CFileItemPtr &pItem1, const CFileItemPtr &pItem2);
typedef void (*FILEITEMFILLFUNC) (CFileItemPtr &item);
/*!
\brief Represents a list of files
\sa CFileItemList, CFileItem
*/
class CFileItemList : public CFileItem
{
public:
enum CACHE_TYPE { CACHE_NEVER = 0, CACHE_IF_SLOW, CACHE_ALWAYS };
CFileItemList();
explicit CFileItemList(const std::string& strPath);
virtual ~CFileItemList();
virtual void Archive(CArchive& ar);
CFileItemPtr operator[] (int iItem);
const CFileItemPtr operator[] (int iItem) const;
CFileItemPtr operator[] (const std::string& strPath);
const CFileItemPtr operator[] (const std::string& strPath) const;
void Clear();
void ClearItems();
void Add(const CFileItemPtr &pItem);
void AddFront(const CFileItemPtr &pItem, int itemPosition);
void Remove(CFileItem* pItem);
void Remove(int iItem);
CFileItemPtr Get(int iItem);
const CFileItemPtr Get(int iItem) const;
const VECFILEITEMS GetList() const { return m_items; }
CFileItemPtr Get(const std::string& strPath);
const CFileItemPtr Get(const std::string& strPath) const;
int Size() const;
bool IsEmpty() const;
void Append(const CFileItemList& itemlist);
void Assign(const CFileItemList& itemlist, bool append = false);
bool Copy (const CFileItemList& item, bool copyItems = true);
void Reserve(int iCount);
void Sort(SortBy sortBy, SortOrder sortOrder, SortAttribute sortAttributes = SortAttributeNone);
/* \brief Sorts the items based on the given sorting options
In contrast to Sort (see above) this does not change the internal
state by storing the sorting method and order used and therefore
will always execute the sorting even if the list of items has
already been sorted with the same options before.
*/
void Sort(SortDescription sortDescription);
void Randomize();
void FillInDefaultIcons();
int GetFolderCount() const;
int GetFileCount() const;
int GetSelectedCount() const;
int GetObjectCount() const;
void FilterCueItems();
void RemoveExtensions();
void SetFastLookup(bool fastLookup);
bool Contains(const std::string& fileName) const;
bool GetFastLookup() const { return m_fastLookup; };
/*! \brief stack a CFileItemList
By default we stack all items (files and folders) in a CFileItemList
\param stackFiles whether to stack all items or just collapse folders (defaults to true)
\sa StackFiles,StackFolders
*/
void Stack(bool stackFiles = true);
SortOrder GetSortOrder() const { return m_sortDescription.sortOrder; }
SortBy GetSortMethod() const { return m_sortDescription.sortBy; }
/*! \brief load a CFileItemList out of the cache
The file list may be cached based on which window we're viewing in, as different
windows will be listing different portions of the same URL (eg viewing music files
versus viewing video files)
\param windowID id of the window that's loading this list (defaults to 0)
\return true if we loaded from the cache, false otherwise.
\sa Save,RemoveDiscCache
*/
bool Load(int windowID = 0);
/*! \brief save a CFileItemList to the cache
The file list may be cached based on which window we're viewing in, as different
windows will be listing different portions of the same URL (eg viewing music files
versus viewing video files)
\param windowID id of the window that's saving this list (defaults to 0)
\return true if successful, false otherwise.
\sa Load,RemoveDiscCache
*/
bool Save(int windowID = 0);
void SetCacheToDisc(CACHE_TYPE cacheToDisc) { m_cacheToDisc = cacheToDisc; }
bool CacheToDiscAlways() const { return m_cacheToDisc == CACHE_ALWAYS; }
bool CacheToDiscIfSlow() const { return m_cacheToDisc == CACHE_IF_SLOW; }
/*! \brief remove a previously cached CFileItemList from the cache
The file list may be cached based on which window we're viewing in, as different
windows will be listing different portions of the same URL (eg viewing music files
versus viewing video files)
\param windowID id of the window whose cache we which to remove (defaults to 0)
\sa Save,Load
*/
void RemoveDiscCache(int windowID = 0) const;
bool AlwaysCache() const;
void Swap(unsigned int item1, unsigned int item2);
/*! \brief Update an item in the item list
\param item the new item, which we match based on path to an existing item in the list
\return true if the item exists in the list (and was thus updated), false otherwise.
*/
bool UpdateItem(const CFileItem *item);
void AddSortMethod(SortBy sortBy, int buttonLabel, const LABEL_MASKS &labelMasks, SortAttribute sortAttributes = SortAttributeNone);
void AddSortMethod(SortBy sortBy, SortAttribute sortAttributes, int buttonLabel, const LABEL_MASKS &labelMasks);
void AddSortMethod(SortDescription sortDescription, int buttonLabel, const LABEL_MASKS &labelMasks);
bool HasSortDetails() const { return m_sortDetails.size() != 0; };
const std::vector<SORT_METHOD_DETAILS> &GetSortDetails() const { return m_sortDetails; };
/*! \brief Specify whether this list should be sorted with folders separate from files
By default we sort with folders listed (and sorted separately) except for those sort modes
which should be explicitly sorted with folders interleaved with files (eg SORT_METHOD_FILES).
With this set the folder state will be ignored, allowing folders and files to sort interleaved.
\param sort whether to ignore the folder state.
*/
void SetSortIgnoreFolders(bool sort) { m_sortIgnoreFolders = sort; };
bool GetReplaceListing() const { return m_replaceListing; };
void SetReplaceListing(bool replace);
void SetContent(const std::string &content) { m_content = content; };
const std::string &GetContent() const { return m_content; };
void ClearSortState();
private:
void Sort(FILEITEMLISTCOMPARISONFUNC func);
void FillSortFields(FILEITEMFILLFUNC func);
std::string GetDiscFileCache(int windowID) const;
/*!
\brief stack files in a CFileItemList
\sa Stack
*/
void StackFiles();
/*!
\brief stack folders in a CFileItemList
\sa Stack
*/
void StackFolders();
VECFILEITEMS m_items;
MAPFILEITEMS m_map;
bool m_fastLookup;
SortDescription m_sortDescription;
bool m_sortIgnoreFolders;
CACHE_TYPE m_cacheToDisc;
bool m_replaceListing;
std::string m_content;
std::vector<SORT_METHOD_DETAILS> m_sortDetails;
CCriticalSection m_lock;
};