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
|
/*
* SAP-Announcement Support for XBMC
* Copyright (c) 2008 elupus (Joakim Plate)
* Copyright (C) 2008-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 "SAPFile.h"
#include "SAPDirectory.h"
#include "threads/SingleLock.h"
#include "URL.h"
#include <sys/stat.h>
#include <vector>
#include <limits>
using namespace XFILE;
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CSAPFile::CSAPFile()
: m_len(0)
{}
CSAPFile::~CSAPFile()
{
}
bool CSAPFile::Open(const CURL& url)
{
std::string path = url.Get();
CSingleLock lock(g_sapsessions.m_section);
for(std::vector<CSAPSessions::CSession>::iterator it = g_sapsessions.m_sessions.begin(); it != g_sapsessions.m_sessions.end(); ++it)
{
if(it->path == path)
{
m_len = it->payload.length();
m_stream.str(it->payload);
m_stream.seekg(0);
break;
}
}
if(m_len == 0)
return false;
return true;
}
bool CSAPFile::Exists(const CURL& url)
{
std::string path = url.Get();
CSingleLock lock(g_sapsessions.m_section);
for(std::vector<CSAPSessions::CSession>::iterator it = g_sapsessions.m_sessions.begin(); it != g_sapsessions.m_sessions.end(); ++it)
{
if(it->path == path)
return true;
}
return false;
}
int CSAPFile::Stat(const CURL& url, struct __stat64* buffer)
{
std::string path = url.Get();
if(path == "smb://")
{
if(buffer)
{
memset(buffer, 0, sizeof(struct __stat64));
buffer->st_mode = _S_IFDIR;
}
return 0;
}
CSingleLock lock(g_sapsessions.m_section);
for(std::vector<CSAPSessions::CSession>::iterator it = g_sapsessions.m_sessions.begin(); it != g_sapsessions.m_sessions.end(); ++it)
{
if(it->path == path)
{
if(buffer)
{
memset(buffer, 0, sizeof(*buffer));
buffer->st_size = it->payload.size();
buffer->st_mode = _S_IFREG;
}
return 0;
}
}
return -1;
}
ssize_t CSAPFile::Read(void *lpBuf, size_t uiBufSize)
{
if (uiBufSize > std::numeric_limits<std::streamsize>::max())
uiBufSize = static_cast<size_t>(std::numeric_limits<std::streamsize>::max());
return static_cast<ssize_t>(m_stream.readsome((char*)lpBuf, static_cast<std::streamsize>(uiBufSize)));
}
void CSAPFile::Close()
{
}
//*********************************************************************************************
int64_t CSAPFile::Seek(int64_t iFilePosition, int iWhence)
{
switch (iWhence)
{
case SEEK_SET:
m_stream.seekg((int)iFilePosition, std::ios_base::beg);
break;
case SEEK_CUR:
m_stream.seekg((int)iFilePosition, std::ios_base::cur);
break;
case SEEK_END:
m_stream.seekg((int)iFilePosition, std::ios_base::end);
break;
default:
return -1;
}
return m_stream.tellg();
}
//*********************************************************************************************
int64_t CSAPFile::GetLength()
{
return m_len;
}
//*********************************************************************************************
int64_t CSAPFile::GetPosition()
{
return m_stream.tellg();
}
bool CSAPFile::Delete(const CURL& url)
{
std::string path = url.Get();
CSingleLock lock(g_sapsessions.m_section);
for(std::vector<CSAPSessions::CSession>::iterator it = g_sapsessions.m_sessions.begin(); it != g_sapsessions.m_sessions.end(); ++it)
{
if(it->path == path)
{
g_sapsessions.m_sessions.erase(it);
return true;
}
}
return false;
}
bool CSAPFile::Rename(const CURL& url, const CURL& urlnew)
{
return false;
}
int CSAPFile::IoControl(EIoControl request, void* param)
{
if(request == IOCTRL_SEEK_POSSIBLE)
return 1;
return -1;
}
|