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
|
/*
* Copyright (C) 2012-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 "PVRDirectory.h"
#include "FileItem.h"
#include "Util.h"
#include "URL.h"
#include "utils/log.h"
#include "utils/URIUtils.h"
#include "guilib/LocalizeStrings.h"
#include "pvr/PVRManager.h"
#include "pvr/channels/PVRChannelGroupsContainer.h"
#include "pvr/channels/PVRChannelGroup.h"
#include "pvr/recordings/PVRRecordings.h"
#include "pvr/timers/PVRTimers.h"
using namespace std;
using namespace XFILE;
using namespace PVR;
CPVRDirectory::CPVRDirectory()
{
}
CPVRDirectory::~CPVRDirectory()
{
}
bool CPVRDirectory::Exists(const CURL& url)
{
return (url.IsProtocol("pvr") && url.GetHostName() == "recordings");
}
bool CPVRDirectory::GetDirectory(const CURL& url, CFileItemList &items)
{
std::string base(url.Get());
URIUtils::RemoveSlashAtEnd(base);
std::string fileName = url.GetFileName();
URIUtils::RemoveSlashAtEnd(fileName);
CLog::Log(LOGDEBUG, "CPVRDirectory::GetDirectory(%s)", base.c_str());
items.SetCacheToDisc(CFileItemList::CACHE_NEVER);
if (!g_PVRManager.IsStarted())
return false;
if (fileName == "")
{
CFileItemPtr item;
item.reset(new CFileItem(base + "channels/", true));
item->SetLabel(g_localizeStrings.Get(19019));
item->SetLabelPreformated(true);
items.Add(item);
item.reset(new CFileItem(base + "recordings/", true));
item->SetLabel(g_localizeStrings.Get(19017));
item->SetLabelPreformated(true);
items.Add(item);
// Sort by name only. Labels are preformated.
items.AddSortMethod(SortByLabel, 551 /* Name */, LABEL_MASKS("%L", "", "%L", ""));
return true;
}
else if (StringUtils::StartsWith(fileName, "recordings"))
{
const std::string pathToUrl(url.Get());
return g_PVRRecordings->GetDirectory(pathToUrl, items);
}
else if (StringUtils::StartsWith(fileName, "channels"))
{
const std::string pathToUrl(url.Get());
return g_PVRChannelGroups->GetDirectory(pathToUrl, items);
}
else if (StringUtils::StartsWith(fileName, "timers"))
{
const std::string pathToUrl(url.Get());
return g_PVRTimers->GetDirectory(pathToUrl, items);
}
return false;
}
bool CPVRDirectory::SupportsWriteFileOperations(const std::string& strPath)
{
CURL url(strPath);
std::string filename = url.GetFileName();
return URIUtils::IsPVRRecording(filename);
}
bool CPVRDirectory::IsLiveTV(const std::string& strPath)
{
CURL url(strPath);
std::string filename = url.GetFileName();
return URIUtils::IsLiveTV(filename);
}
bool CPVRDirectory::HasRecordings()
{
return g_PVRRecordings->GetNumRecordings() > 0;
}
|