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
|
/*
* Copyright (C) 2011-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "PipeFile.h"
#include "PipesManager.h"
#include "URL.h"
#include <mutex>
using namespace XFILE;
CPipeFile::CPipeFile() : m_pipe(NULL)
{
}
CPipeFile::~CPipeFile()
{
Close();
}
int64_t CPipeFile::GetPosition()
{
return m_pos;
}
int64_t CPipeFile::GetLength()
{
return m_length;
}
void CPipeFile::SetLength(int64_t len)
{
m_length = len;
}
bool CPipeFile::Open(const CURL& url)
{
std::string name = url.Get();
m_pipe = PipesManager::GetInstance().OpenPipe(name);
if (m_pipe)
m_pipe->AddListener(this);
return (m_pipe != NULL);
}
bool CPipeFile::Exists(const CURL& url)
{
std::string name = url.Get();
return PipesManager::GetInstance().Exists(name);
}
int CPipeFile::Stat(const CURL& url, struct __stat64* buffer)
{
return -1;
}
int CPipeFile::Stat(struct __stat64* buffer)
{
if (!buffer)
return -1;
*buffer = {};
buffer->st_size = m_length;
return 0;
}
ssize_t CPipeFile::Read(void* lpBuf, size_t uiBufSize)
{
if (!m_pipe)
return -1;
if (uiBufSize > SSIZE_MAX)
uiBufSize = SSIZE_MAX;
return m_pipe->Read((char *)lpBuf,(int)uiBufSize);
}
ssize_t CPipeFile::Write(const void* lpBuf, size_t uiBufSize)
{
if (!m_pipe)
return -1;
// m_pipe->Write return bool. either all was written or not.
return m_pipe->Write((const char *)lpBuf,uiBufSize) ? uiBufSize : -1;
}
void CPipeFile::SetEof()
{
if (!m_pipe)
return ;
m_pipe->SetEof();
}
bool CPipeFile::IsEof()
{
if (!m_pipe)
return true;
return m_pipe->IsEof();
}
bool CPipeFile::IsEmpty()
{
if (!m_pipe)
return true;
return m_pipe->IsEmpty();
}
int64_t CPipeFile::Seek(int64_t iFilePosition, int iWhence)
{
return -1;
}
void CPipeFile::Close()
{
if (m_pipe)
{
m_pipe->RemoveListener(this);
PipesManager::GetInstance().ClosePipe(m_pipe);
}
m_pipe = NULL;
}
bool CPipeFile::IsClosed()
{
return (m_pipe == NULL);
}
void CPipeFile::Flush()
{
if (m_pipe)
m_pipe->Flush();
}
bool CPipeFile::OpenForWrite(const CURL& url, bool bOverWrite)
{
std::string name = url.Get();
m_pipe = PipesManager::GetInstance().CreatePipe(name);
if (m_pipe)
m_pipe->AddListener(this);
return (m_pipe != NULL);
}
bool CPipeFile::Delete(const CURL& url)
{
return false;
}
bool CPipeFile::Rename(const CURL& url, const CURL& urlnew)
{
return false;
}
int CPipeFile::IoControl(EIoControl, void* param)
{
return -1;
}
std::string CPipeFile::GetName() const
{
if (!m_pipe)
return "";
return m_pipe->GetName();
}
void CPipeFile::OnPipeOverFlow()
{
std::unique_lock<CCriticalSection> lock(m_lock);
for (size_t l=0; l<m_listeners.size(); l++)
m_listeners[l]->OnPipeOverFlow();
}
int64_t CPipeFile::GetAvailableRead()
{
return m_pipe->GetAvailableRead();
}
void CPipeFile::OnPipeUnderFlow()
{
for (size_t l=0; l<m_listeners.size(); l++)
m_listeners[l]->OnPipeUnderFlow();
}
void CPipeFile::AddListener(IPipeListener *l)
{
std::unique_lock<CCriticalSection> lock(m_lock);
for (size_t i=0; i<m_listeners.size(); i++)
{
if (m_listeners[i] == l)
return;
}
m_listeners.push_back(l);
}
void CPipeFile::RemoveListener(IPipeListener *l)
{
std::unique_lock<CCriticalSection> lock(m_lock);
std::vector<XFILE::IPipeListener *>::iterator i = m_listeners.begin();
while(i != m_listeners.end())
{
if ( (*i) == l)
i = m_listeners.erase(i);
else
++i;
}
}
void CPipeFile::SetOpenThreshold(int threshold)
{
m_pipe->SetOpenThreshold(threshold);
}
|