-
Notifications
You must be signed in to change notification settings - Fork 0
/
pcmcache.cpp
289 lines (226 loc) · 7 KB
/
pcmcache.cpp
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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
/*
This file is part of Waver
Copyright (C) 2021 Peter Papp
Please visit https://launchpad.net/waver for details
*/
#include "pcmcache.h"
PCMCache::PCMCache(QAudioFormat format, long lengthMilliseconds, bool radioStation, QObject *parent) : QObject(parent)
{
this->format = format;
this->lengthMilliseconds = lengthMilliseconds;
this->radioStation = radioStation;
file = nullptr;
memory = nullptr;
memoryRealSize = 0;
maxSize = 0;
readPosition = 0;
radioFakeReadPosition = 0;
unfullfilledRequest = false;
}
PCMCache::~PCMCache()
{
if (file != nullptr) {
if (file->isOpen()) {
mutex.lock();
file->close();
mutex.unlock();
}
file->remove();
delete file;
file = nullptr;
return;
}
if (memory != nullptr) {
mutex.lock();
memory->clear();
mutex.unlock();
delete memory;
memory = nullptr;
}
}
long PCMCache::availableMemory()
{
#if defined (Q_OS_WIN)
MEMORYSTATUSEX memoryStatus;
ZeroMemory(&memoryStatus, sizeof(MEMORYSTATUSEX));
memoryStatus.dwLength = sizeof(MEMORYSTATUSEX);
if (GlobalMemoryStatusEx(&memoryStatus)) {
quint64 availPhys = memoryStatus.ullAvailPhys;
long longMax = (std::numeric_limits<long>::max)();
return (availPhys > static_cast<DWORD>(longMax) ? longMax : static_cast<long>(availPhys));
}
#elif defined (Q_OS_LINUX)
QFile memInfo("/proc/meminfo");
QRegExp availableRegExp("^MemAvailable:\\s+(\\d+)");
if (memInfo.open(QIODevice::ReadOnly | QIODevice::Text)) {
QByteArray memInfoContents = memInfo.readAll();
memInfo.close();
QString availableMemoryString;
foreach (QString line, QString(memInfoContents).split("\n")) {
if (availableRegExp.indexIn(line) >= 0) {
availableMemoryString = availableRegExp.cap(1);
break;
}
}
bool OK = false;
long availableMemoryKB = availableMemoryString.toLong(&OK);
if (OK) {
return availableMemoryKB * 1024;
}
}
#endif
return DEFAULT_PCM_MEMORY;
}
bool PCMCache::isFile()
{
return file != nullptr;
}
qint64 PCMCache::mostSize()
{
return maxSize;
}
void PCMCache::requestNextPCMChunk()
{
if (readPosition >= size()) {
unfullfilledRequest = true;
return;
}
unfullfilledRequest = false;
mutex.lock();
qint64 chunkLength = format.bytesForDuration(BUFFER_CREATE_MILLISECONDS * 1000);
qint64 startMicroseconds = radioStation ? format.durationForBytes(radioFakeReadPosition) : format.durationForBytes(readPosition);
QByteArray PCM;
if (file != nullptr) {
if (file->isOpen()) {
if (file->pos() != readPosition) {
file->seek(readPosition);
}
PCM.append(file->read(chunkLength));
readPosition += PCM.size();
}
}
else if (memory != nullptr) {
if (memoryRealSize < (readPosition + chunkLength)) {
chunkLength = memoryRealSize - readPosition;
}
if (chunkLength > 0) {
PCM.append(memory->constData() + readPosition, chunkLength);
if (radioStation) {
memory->remove(0, chunkLength);
memoryRealSize -= chunkLength;
radioFakeReadPosition += chunkLength;
}
else {
readPosition += PCM.size();
}
}
}
mutex.unlock();
if (PCM.size()) {
emit pcmChunk(PCM, startMicroseconds);
}
}
void PCMCache::requestTimestampPCMChunk(long milliseconds)
{
if (radioStation) {
unfullfilledRequest = true;
return;
}
qint64 currentSize = size();
mutex.lock();
qint64 chunkLength = format.bytesForDuration(BUFFER_CREATE_MILLISECONDS * 1000);
qint64 position = qMin(static_cast<qint64>(format.bytesForDuration(milliseconds * 1000)), currentSize - chunkLength);
if (position < 0) {
position = 0;
}
qint64 startMicroseconds = format.durationForBytes(position);
QByteArray PCM;
if (file != nullptr) {
if (file->isOpen()) {
file->seek(position);
PCM.append(file->read(chunkLength));
readPosition = position + PCM.size();
}
}
else if (memory != nullptr) {
if (memoryRealSize < (position + chunkLength)) {
chunkLength = memoryRealSize - position;
}
if (chunkLength > 0) {
PCM.append(memory->constData() + position, chunkLength);
readPosition = position + PCM.size();
}
}
mutex.unlock();
if (PCM.size()) {
emit pcmChunk(PCM, startMicroseconds);
}
}
void PCMCache::run()
{
qint64 bytesNeeded = format.bytesForDuration((lengthMilliseconds + 1000) * 1000);
long bytesAvailable = availableMemory();
if (((lengthMilliseconds <= 0) && !radioStation) || (bytesNeeded > MAX_PCM_MEMORY) || (bytesNeeded > bytesAvailable)) {
file = new QFile(QString("%1/waver_%2").arg(QStandardPaths::writableLocation(QStandardPaths::TempLocation), QUuid::createUuid().toString(QUuid::Id128)));
if (!file->open(QIODevice::ReadWrite)) {
emit error(tr("Can not create temporary file, using memory"), file->errorString());
delete file;
file = nullptr;
}
}
if (file == nullptr) {
if (radioStation || (lengthMilliseconds <= 0)) {
memory = new QByteArray();
}
else {
memory = new QByteArray(bytesNeeded, 0);
}
}
}
qint64 PCMCache::size()
{
qint64 size = 0;
mutex.lock();
if (file != nullptr) {
size = file->size();
}
else if (memory != nullptr) {
size = memoryRealSize;
}
mutex.unlock();
if (size > maxSize) {
maxSize = size;
}
return size;
}
void PCMCache::storeBuffer(QAudioBuffer *buffer)
{
if (file != nullptr) {
mutex.lock();
if (!file->atEnd()) {
file->seek(file->size());
}
file->write(static_cast<const char*>(buffer->constData()), buffer->byteCount());
mutex.unlock();
if (unfullfilledRequest) {
requestNextPCMChunk();
}
return;
}
if (memory != nullptr) {
mutex.lock();
if (radioStation || (lengthMilliseconds <= 0)) {
memory->append(static_cast<const char*>(buffer->constData()), buffer->byteCount());
}
else {
memory->replace(memoryRealSize, buffer->byteCount(), static_cast<const char*>(buffer->constData()), buffer->byteCount());
}
memoryRealSize += buffer->byteCount();
mutex.unlock();
if (unfullfilledRequest) {
requestNextPCMChunk();
}
return;
}
emit error(tr("Can not cache PCM audio data"), tr("Both file and memory is nullptr"));
}