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
|
/*
* 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 "system.h"
#if defined(TARGET_ANDROID)
#include "AndroidAppDirectory.h"
#include "src/android/activity/XBMCApp.h"
#include "FileItem.h"
#include "File.h"
#include "utils/URIUtils.h"
#include <vector>
#include "utils/log.h"
#include "utils/StringUtils.h"
#include "URL.h"
#include "CompileInfo.h"
using namespace XFILE;
using namespace std;
CAndroidAppDirectory::CAndroidAppDirectory(void)
{
}
CAndroidAppDirectory::~CAndroidAppDirectory(void)
{
}
bool CAndroidAppDirectory::GetDirectory(const CURL& url, CFileItemList &items)
{
std::string dirname = url.GetFileName();
URIUtils::RemoveSlashAtEnd(dirname);
CLog::Log(LOGDEBUG, "CAndroidAppDirectory::GetDirectory: %s",dirname.c_str());
std::string appName = CCompileInfo::GetAppName();
StringUtils::ToLower(appName);
std::string className = "org.xbmc." + appName;
if (dirname == "apps")
{
vector<androidPackage> applications = CXBMCApp::GetApplications();
if (applications.empty())
{
CLog::Log(LOGERROR, "CAndroidAppDirectory::GetDirectory Application lookup listing failed");
return false;
}
for(std::vector<androidPackage>::iterator i = applications.begin(); i != applications.end(); ++i)
{
if ((*i).packageName == className.c_str())
continue;
CFileItemPtr pItem(new CFileItem((*i).packageName));
pItem->m_bIsFolder = false;
std::string path = StringUtils::Format("androidapp://%s/%s/%s", url.GetHostName().c_str(), dirname.c_str(), (*i).packageName.c_str());
pItem->SetPath(path);
pItem->SetLabel((*i).packageLabel);
pItem->SetArt("thumb", path+".png");
items.Add(pItem);
}
return true;
}
CLog::Log(LOGERROR, "CAndroidAppDirectory::GetDirectory Failed to open %s", url.Get().c_str());
return false;
}
#endif
|