Merge pull request #5095 from koying/fixdroidappcrash
[vuplus_xbmc] / xbmc / filesystem / SFTPDirectory.cpp
1 /*
2  *      Copyright (C) 2005-2013 Team XBMC
3  *      http://xbmc.org
4  *
5  *  This Program is free software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 2, or (at your option)
8  *  any later version.
9  *
10  *  This Program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with XBMC; see the file COPYING.  If not, see
17  *  <http://www.gnu.org/licenses/>.
18  *
19  */
20
21 #include "SFTPDirectory.h"
22 #ifdef HAS_FILESYSTEM_SFTP
23 #include "utils/log.h"
24 #include "URL.h"
25
26 using namespace XFILE;
27
28 CSFTPDirectory::CSFTPDirectory(void)
29 {
30 }
31
32 CSFTPDirectory::~CSFTPDirectory(void)
33 {
34 }
35
36 bool CSFTPDirectory::GetDirectory(const CStdString& strPath, CFileItemList &items)
37 {
38   CURL url(strPath);
39
40   CSFTPSessionPtr session = CSFTPSessionManager::CreateSession(url);
41   return session->GetDirectory(url.GetWithoutFilename().c_str(), url.GetFileName().c_str(), items);
42 }
43
44 bool CSFTPDirectory::Exists(const char* strPath)
45 {
46   CURL url(strPath);
47
48   CSFTPSessionPtr session = CSFTPSessionManager::CreateSession(url);
49   if (session)
50     return session->DirectoryExists(url.GetFileName().c_str());
51   else
52   {
53     CLog::Log(LOGERROR, "SFTPDirectory: Failed to create session to check exists");
54     return false;
55   }
56 }
57 #endif