portapack-mayhem/firmware/application/capture_thread.hpp

162 lines
3.5 KiB
C++
Raw Normal View History

2016-02-10 01:49:17 +00:00
/*
* Copyright (C) 2016 Jared Boone, ShareBrained Technology, Inc.
*
* This file is part of PortaPack.
*
* 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 2, 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; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street,
* Boston, MA 02110-1301, USA.
*/
#ifndef __CAPTURE_THREAD_H__
#define __CAPTURE_THREAD_H__
2016-02-10 01:49:17 +00:00
#include "ch.h"
#include "file.hpp"
#include "event_m0.hpp"
#include "portapack_shared_memory.hpp"
#include "hackrf_gpio.hpp"
using namespace hackrf::one;
#include <cstring>
class StreamOutput {
public:
StreamOutput(
CaptureConfig* const config
) : config { config }
{
shared_memory.baseband_queue.push_and_wait(
CaptureConfigMessage { config }
);
fifo = config->fifo;
}
~StreamOutput() {
fifo = nullptr;
shared_memory.baseband_queue.push_and_wait(
CaptureConfigMessage { nullptr }
);
2016-02-10 01:49:17 +00:00
}
size_t available() {
return fifo->len();
2016-02-10 01:49:17 +00:00
}
size_t read(void* const data, const size_t length) {
return fifo->out(reinterpret_cast<uint8_t*>(data), length);
2016-02-10 01:49:17 +00:00
}
static FIFO<uint8_t>* fifo;
2016-02-10 01:49:17 +00:00
private:
CaptureConfig* const config;
2016-02-10 01:49:17 +00:00
};
class CaptureThread {
2016-02-10 01:49:17 +00:00
public:
CaptureThread(
std::string file_path,
size_t write_size_log2,
size_t buffer_count_log2
) : config { write_size_log2, buffer_count_log2 },
file_path { std::move(file_path) }
2016-02-10 01:49:17 +00:00
{
// Need significant stack for FATFS
thread = chThdCreateFromHeap(NULL, 1024, NORMALPRIO + 10, CaptureThread::static_fn, this);
2016-02-10 01:49:17 +00:00
}
~CaptureThread() {
if( thread ) {
chThdTerminate(thread);
chEvtSignal(thread, EVT_MASK_CAPTURE_THREAD);
const auto success = chThdWait(thread);
thread = nullptr;
if( !success ) {
led_tx.on();
}
2016-04-06 18:47:25 +00:00
}
2016-02-10 01:49:17 +00:00
}
static void check_fifo_isr() {
// TODO: Prevent over-signalling by transmitting a set of
// flags from the baseband core.
const auto fifo = StreamOutput::fifo;
if( fifo ) {
chEvtSignalI(thread, EVT_MASK_CAPTURE_THREAD);
}
}
2016-02-10 01:49:17 +00:00
private:
CaptureConfig config;
const std::string file_path;
2016-02-10 01:49:17 +00:00
File file;
static Thread* thread;
static msg_t static_fn(void* arg) {
auto obj = static_cast<CaptureThread*>(arg);
2016-04-06 18:47:25 +00:00
return obj->run();
2016-02-10 01:49:17 +00:00
}
2016-04-06 18:47:25 +00:00
msg_t run() {
if( !file.open_for_writing(file_path) ) {
return false;
}
const size_t write_size = 1U << config.write_size_log2;
const auto write_buffer = std::make_unique<uint8_t[]>(write_size);
if( !write_buffer ) {
return false;
}
StreamOutput stream { &config };
2016-02-10 01:49:17 +00:00
2016-04-06 18:52:05 +00:00
while( !chThdShouldTerminate() ) {
if( stream.available() >= write_size ) {
if( !transfer(stream, write_buffer.get(), write_size) ) {
2016-04-06 18:52:05 +00:00
return false;
}
} else {
chEvtWaitAny(EVT_MASK_CAPTURE_THREAD);
}
}
2016-04-06 18:52:05 +00:00
return true;
}
bool transfer(StreamOutput& stream, uint8_t* const write_buffer, const size_t write_size) {
bool success = false;
2016-02-10 01:49:17 +00:00
led_usb.on();
2016-02-10 01:49:17 +00:00
const auto bytes_to_write = stream.read(write_buffer, write_size);
if( bytes_to_write == write_size ) {
if( file.write(write_buffer, write_size) ) {
success = true;
2016-02-10 01:49:17 +00:00
}
}
led_usb.off();
return success;
2016-02-10 01:49:17 +00:00
}
};
#endif/*__CAPTURE_THREAD_H__*/