-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dfb3059
commit dc62680
Showing
6 changed files
with
255 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
# | ||
/* | ||
* Copyright (C) 2013 .. 2017 | ||
* Jan van Katwijk ([email protected]) | ||
* Lazy Chair Programming | ||
* | ||
* This file is part of the DAB library | ||
* DAB library 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 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* DAB library 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 DAB library; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
*/ | ||
#include <stdio.h> | ||
#include <unistd.h> | ||
#include <stdlib.h> | ||
#include <fcntl.h> | ||
#include <sys/time.h> | ||
#include <time.h> | ||
#include <cstring> | ||
#include "wavfiles.h" | ||
|
||
static inline | ||
int64_t getMyTime (void) { | ||
struct timeval tv; | ||
|
||
gettimeofday (&tv, NULL); | ||
return ((int64_t)tv. tv_sec * 1000000 + (int64_t)tv. tv_usec); | ||
} | ||
|
||
#define __BUFFERSIZE 8 * 32768 | ||
|
||
wavFiles::wavFiles (std::string f) { | ||
SF_INFO *sf_info; | ||
|
||
fileName = f; | ||
_I_Buffer = new RingBuffer<std::complex<float>>(__BUFFERSIZE); | ||
|
||
sf_info = (SF_INFO *)alloca (sizeof (SF_INFO)); | ||
sf_info -> format = 0; | ||
filePointer = sf_open (f. c_str (), SFM_READ, sf_info); | ||
if (filePointer == NULL) { | ||
fprintf (stderr, "file %s no legitimate sound file\n", | ||
f. c_str ()); | ||
throw (24); | ||
} | ||
if ((sf_info -> samplerate != 2048000) || | ||
(sf_info -> channels != 2)) { | ||
fprintf (stderr, "This is not a recorded dab file, sorry\n"); | ||
sf_close (filePointer); | ||
throw (25); | ||
} | ||
currPos = 0; | ||
} | ||
|
||
wavFiles::~wavFiles (void) { | ||
if (running) | ||
workerHandle. join (); | ||
running = false; | ||
sf_close (filePointer); | ||
delete _I_Buffer; | ||
} | ||
|
||
bool wavFiles::restartReader (void) { | ||
workerHandle = std::thread (wavFiles::run, this); | ||
running = true; | ||
return true; | ||
} | ||
|
||
void wavFiles::stopReader (void) { | ||
if (running) | ||
workerHandle. join (); | ||
running = false; | ||
} | ||
// | ||
// size is in I/Q pairs | ||
int32_t wavFiles::getSamples (std::complex<float> *V, int32_t size) { | ||
int32_t amount; | ||
if (filePointer == NULL) | ||
return 0; | ||
|
||
while (_I_Buffer -> GetRingBufferReadAvailable () < (uint32_t)size) | ||
usleep (100); | ||
|
||
amount = _I_Buffer -> getDataFromBuffer (V, size); | ||
return amount; | ||
} | ||
|
||
int32_t wavFiles::Samples (void) { | ||
return _I_Buffer -> GetRingBufferReadAvailable (); | ||
} | ||
|
||
void wavFiles::run (wavFiles *p) { | ||
int32_t t, i; | ||
std::complex<float> *bi; | ||
int32_t bufferSize = 32768; | ||
int64_t period; | ||
int64_t nextStop; | ||
|
||
p -> running = true; | ||
period = (32768 * 1000) / 2048; // full IQś read | ||
fprintf (stderr, "Period = %ld\n", period); | ||
bi = new std::complex<float> [bufferSize]; | ||
nextStop = getMyTime (); | ||
while (p -> running) { | ||
while (p -> _I_Buffer -> WriteSpace () < bufferSize) { | ||
if (!p -> running) | ||
break; | ||
usleep (100); | ||
} | ||
|
||
nextStop += period; | ||
t = p -> readBuffer (bi, bufferSize); | ||
if (t < bufferSize) { | ||
for (i = t; i < bufferSize; i ++) | ||
bi [i] = 0; | ||
t = bufferSize; | ||
} | ||
p -> _I_Buffer -> putDataIntoBuffer (bi, bufferSize); | ||
if (nextStop - getMyTime () > 0) | ||
usleep (nextStop - getMyTime ()); | ||
} | ||
fprintf (stderr, "taak voor replay eindigt hier\n"); | ||
delete [] bi; | ||
} | ||
/* | ||
* length is number of uints that we read. | ||
*/ | ||
int32_t wavFiles::readBuffer (std::complex<float> *data, int32_t length) { | ||
int32_t i, n; | ||
float temp [2 * length]; | ||
|
||
n = sf_readf_float (filePointer, temp, length); | ||
if (n < length) { | ||
sf_seek (filePointer, 0, SEEK_SET); | ||
fprintf (stderr, "End of file, restarting\n"); | ||
} | ||
for (i = 0; i < n; i ++) | ||
data [i] = std::complex<float> (temp [2 * i], temp [2 * i + 1]); | ||
return n & ~01; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# | ||
/* | ||
* Copyright (C) 2013 .. 2017 | ||
* Jan van Katwijk ([email protected]) | ||
* Lazy Chair Computing | ||
* | ||
* This file is part of the Qt-DAB program | ||
* Qt-DAB 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 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* Qt-DAB 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 Qt-DAB; if not, write to the Free Software | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
*/ | ||
#ifndef __WAV_FILES__ | ||
#define __WAV_FILES__ | ||
|
||
#include <sndfile.h> | ||
#include "ringbuffer.h" | ||
#include "device-handler.h" | ||
#include <thread> | ||
|
||
class wavFiles: public deviceHandler { | ||
public: | ||
wavFiles (std::string); | ||
~wavFiles (void); | ||
int32_t getSamples (std::complex<float> *, int32_t); | ||
uint8_t myIdentity (void); | ||
int32_t Samples (void); | ||
bool restartReader (void); | ||
void stopReader (void); | ||
|
||
private: | ||
std::string fileName; | ||
static void run (wavFiles *); | ||
int32_t readBuffer (std::complex<float> *, int32_t); | ||
RingBuffer<std::complex<float>> *_I_Buffer; | ||
std::thread workerHandle; | ||
int32_t bufferSize; | ||
SNDFILE *filePointer; | ||
bool running; | ||
int64_t currPos; | ||
}; | ||
|
||
#endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters