/* * Copyright (C) 2015, Mike Walters * Copyright (C) 2015, Jared Boone * * This file is part of inspectrum. * * 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 3 of the License, 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 this program. If not, see . */ #include "inputsource.h" #include #include #include #include #include #include class ComplexF32SampleAdapter : public SampleAdapter { public: size_t sampleSize() override { return sizeof(std::complex); } void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) override { auto s = reinterpret_cast*>(src); std::copy(&s[start], &s[start + length], dest); } }; class ComplexS16SampleAdapter : public SampleAdapter { public: size_t sampleSize() override { return sizeof(std::complex); } void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) override { auto s = reinterpret_cast*>(src); std::transform(&s[start], &s[start + length], dest, [](const std::complex& v) -> std::complex { const float k = 1.0f / 32768.0f; return { v.real() * k, v.imag() * k }; } ); } }; class ComplexS8SampleAdapter : public SampleAdapter { public: size_t sampleSize() override { return sizeof(std::complex); } void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) override { auto s = reinterpret_cast*>(src); std::transform(&s[start], &s[start + length], dest, [](const std::complex& v) -> std::complex { const float k = 1.0f / 128.0f; return { v.real() * k, v.imag() * k }; } ); } }; class ComplexU8SampleAdapter : public SampleAdapter { public: size_t sampleSize() override { return sizeof(std::complex); } void copyRange(const void* const src, size_t start, size_t length, std::complex* const dest) override { auto s = reinterpret_cast*>(src); std::transform(&s[start], &s[start + length], dest, [](const std::complex& v) -> std::complex { const float k = 1.0f / 128.0f; return { (v.real() - 127.4f) * k, (v.imag() - 127.4f) * k }; } ); } }; InputSource::InputSource() { } InputSource::~InputSource() { cleanup(); } void InputSource::cleanup() { if (mmapData != nullptr) { inputFile->unmap(mmapData); mmapData = nullptr; } if (inputFile != nullptr) { delete inputFile; inputFile = nullptr; } } void InputSource::openFile(const char *filename) { QFileInfo fileInfo(filename); const auto suffix = fileInfo.suffix().toLower(); if ((suffix == "cfile") || (suffix == "cf32") || (suffix == "fc32")) { sampleAdapter = std::unique_ptr(new ComplexF32SampleAdapter()); } else if ((suffix == "cs16") || (suffix == "sc16") || (suffix == "c16")) { sampleAdapter = std::unique_ptr(new ComplexS16SampleAdapter()); } else if ((suffix == "cs8") || (suffix == "sc8") || (suffix == "c8")) { sampleAdapter = std::unique_ptr(new ComplexS8SampleAdapter()); } else if ((suffix == "cu8") || (suffix == "uc8")) { sampleAdapter = std::unique_ptr(new ComplexU8SampleAdapter()); } else { sampleAdapter = std::unique_ptr(new ComplexF32SampleAdapter()); } std::unique_ptr file(new QFile(filename)); if (!file->open(QFile::ReadOnly)) { throw std::runtime_error(file->errorString().toStdString()); } auto size = file->size(); sampleCount = size / sampleAdapter->sampleSize(); auto data = file->map(0, size); if (data == nullptr) throw std::runtime_error("Error mmapping file"); cleanup(); inputFile = file.release(); mmapData = data; invalidate(); } void InputSource::setSampleRate(size_t rate) { sampleRate = rate; invalidate(); } size_t InputSource::rate() { return sampleRate; } std::unique_ptr[]> InputSource::getSamples(size_t start, size_t length) { if (inputFile == nullptr) return nullptr; if (mmapData == nullptr) return nullptr; if(start < 0 || length < 0) return nullptr; if (start + length > sampleCount) return nullptr; std::unique_ptr[]> dest(new std::complex[length]); sampleAdapter->copyRange(mmapData, start, length, dest.get()); return dest; }