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
|
/*
* Copyright (C) 2005-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.
*/
// FileShoutcast.cpp: implementation of the CShoutcastFile class.
//
//////////////////////////////////////////////////////////////////////
#include "ShoutcastFile.h"
#include "guilib/GUIWindowManager.h"
#include "URL.h"
#include "utils/RegExp.h"
#include "utils/HTMLUtil.h"
#include "utils/CharsetConverter.h"
#include "messaging/ApplicationMessenger.h"
#include "FileCache.h"
#include "FileItem.h"
#include <climits>
using namespace XFILE;
using namespace MUSIC_INFO;
using namespace KODI::MESSAGING;
CShoutcastFile::CShoutcastFile() :
IFile(), CThread("ShoutcastFile")
{
m_discarded = 0;
m_currint = 0;
m_buffer = NULL;
m_cacheReader = NULL;
m_tagPos = 0;
m_metaint = 0;
}
CShoutcastFile::~CShoutcastFile()
{
StopThread();
Close();
}
int64_t CShoutcastFile::GetPosition()
{
return m_file.GetPosition()-m_discarded;
}
int64_t CShoutcastFile::GetLength()
{
return 0;
}
bool CShoutcastFile::Open(const CURL& url)
{
CURL url2(url);
url2.SetProtocolOptions(url2.GetProtocolOptions()+"&noshout=true&Icy-MetaData=1");
url2.SetProtocol("http");
bool result = m_file.Open(url2);
if (result)
{
m_tag.SetTitle(m_file.GetHttpHeader().GetValue("icy-name"));
if (m_tag.GetTitle().empty())
m_tag.SetTitle(m_file.GetHttpHeader().GetValue("ice-name")); // icecast
m_tag.SetGenre(m_file.GetHttpHeader().GetValue("icy-genre"));
if (m_tag.GetGenre().empty())
m_tag.SetGenre(m_file.GetHttpHeader().GetValue("ice-genre")); // icecast
m_tag.SetLoaded(true);
}
m_fileCharset = m_file.GetProperty(XFILE::FILE_PROPERTY_CONTENT_CHARSET);
m_metaint = atoi(m_file.GetHttpHeader().GetValue("icy-metaint").c_str());
if (!m_metaint)
m_metaint = -1;
m_buffer = new char[16*255];
m_tagPos = 1;
m_tagChange.Set();
Create();
return result;
}
ssize_t CShoutcastFile::Read(void* lpBuf, size_t uiBufSize)
{
if (uiBufSize > SSIZE_MAX)
uiBufSize = SSIZE_MAX;
if (m_currint >= m_metaint && m_metaint > 0)
{
unsigned char header;
m_file.Read(&header,1);
ReadTruncated(m_buffer, header*16);
if ((ExtractTagInfo(m_buffer)
// this is here to workaround issues caused by application posting callbacks to itself (3cf882d9)
// the callback will set an empty tag in the info manager item, while we think we have ours set
|| m_file.GetPosition() < 10*m_metaint) && !m_tagPos)
{
m_tagPos = m_file.GetPosition();
m_tagChange.Set();
}
m_discarded += header*16+1;
m_currint = 0;
}
ssize_t toRead;
if (m_metaint > 0)
toRead = std::min<size_t>(uiBufSize,m_metaint-m_currint);
else
toRead = std::min<size_t>(uiBufSize,16*255);
toRead = m_file.Read(lpBuf,toRead);
if (toRead > 0)
m_currint += toRead;
return toRead;
}
int64_t CShoutcastFile::Seek(int64_t iFilePosition, int iWhence)
{
return -1;
}
void CShoutcastFile::Close()
{
StopThread();
delete[] m_buffer;
m_buffer = NULL;
m_file.Close();
}
bool CShoutcastFile::ExtractTagInfo(const char* buf)
{
std::string strBuffer = buf;
if (!m_fileCharset.empty())
{
std::string converted;
g_charsetConverter.ToUtf8(m_fileCharset, strBuffer, converted);
strBuffer = converted;
}
else
g_charsetConverter.unknownToUTF8(strBuffer);
bool result=false;
std::wstring wBuffer, wConverted;
g_charsetConverter.utf8ToW(strBuffer, wBuffer, false);
HTML::CHTMLUtil::ConvertHTMLToW(wBuffer, wConverted);
g_charsetConverter.wToUTF8(wConverted, strBuffer);
CRegExp reTitle(true);
reTitle.RegComp("StreamTitle=\'(.*?)\';");
if (reTitle.RegFind(strBuffer.c_str()) != -1)
{
std::string newtitle(reTitle.GetMatch(1));
CSingleLock lock(m_tagSection);
result = (m_tag.GetTitle() != newtitle);
m_tag.SetTitle(newtitle);
}
return result;
}
void CShoutcastFile::ReadTruncated(char* buf2, int size)
{
char* buf = buf2;
while (size > 0)
{
int read = m_file.Read(buf,size);
size -= read;
buf += read;
}
}
int CShoutcastFile::IoControl(EIoControl control, void* payload)
{
if (control == IOCTRL_SET_CACHE)
m_cacheReader = (CFileCache*)payload;
return IFile::IoControl(control, payload);
}
void CShoutcastFile::Process()
{
if (!m_cacheReader)
return;
while (!m_bStop)
{
if (m_tagChange.WaitMSec(500))
{
while (!m_bStop && m_cacheReader->GetPosition() < m_tagPos)
Sleep(20);
CSingleLock lock(m_tagSection);
CApplicationMessenger::GetInstance().PostMsg(TMSG_UPDATE_CURRENT_ITEM, 1,-1, static_cast<void*>(new CFileItem(m_tag)));
m_tagPos = 0;
}
}
}
|