2016-02-09 20:49:17 -05: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.
|
|
|
|
*/
|
|
|
|
|
2016-04-22 15:15:51 -04:00
|
|
|
#ifndef __CAPTURE_THREAD_H__
|
|
|
|
#define __CAPTURE_THREAD_H__
|
2016-02-09 20:49:17 -05:00
|
|
|
|
|
|
|
#include "ch.h"
|
|
|
|
|
|
|
|
#include "event_m0.hpp"
|
|
|
|
|
2016-05-13 00:57:38 -04:00
|
|
|
#include "file.hpp"
|
|
|
|
#include "optional.hpp"
|
|
|
|
|
2016-05-02 15:34:42 -04:00
|
|
|
#include <cstdint>
|
|
|
|
#include <cstddef>
|
|
|
|
#include <utility>
|
2016-02-09 20:49:17 -05:00
|
|
|
|
2016-04-30 19:34:50 -04:00
|
|
|
class Writer {
|
|
|
|
public:
|
2016-05-01 14:07:50 -04:00
|
|
|
virtual bool write(const void* const buffer, const size_t bytes) = 0;
|
2016-05-13 00:57:38 -04:00
|
|
|
virtual Optional<std::filesystem::filesystem_error> error() const = 0;
|
2016-05-02 14:22:14 -04:00
|
|
|
virtual ~Writer() = default;
|
2016-04-30 19:34:50 -04:00
|
|
|
};
|
|
|
|
|
2016-04-22 15:15:51 -04:00
|
|
|
class CaptureThread {
|
2016-02-09 20:49:17 -05:00
|
|
|
public:
|
2016-04-22 15:15:51 -04:00
|
|
|
CaptureThread(
|
2016-04-30 19:34:50 -04:00
|
|
|
std::unique_ptr<Writer> writer,
|
2016-05-10 17:12:37 -04:00
|
|
|
size_t write_size,
|
|
|
|
size_t buffer_count
|
2016-05-02 15:50:49 -04:00
|
|
|
);
|
|
|
|
~CaptureThread();
|
2016-02-09 20:49:17 -05:00
|
|
|
|
2016-04-27 15:06:47 -04:00
|
|
|
const CaptureConfig& state() const {
|
|
|
|
return config;
|
|
|
|
}
|
|
|
|
|
2016-05-13 00:58:15 -04:00
|
|
|
Optional<std::string> error() const;
|
|
|
|
|
2016-05-02 15:50:49 -04:00
|
|
|
static void check_fifo_isr();
|
2016-03-28 01:49:30 -04:00
|
|
|
|
2016-02-09 20:49:17 -05:00
|
|
|
private:
|
2016-04-27 13:56:50 -04:00
|
|
|
CaptureConfig config;
|
2016-04-30 19:34:50 -04:00
|
|
|
std::unique_ptr<Writer> writer;
|
2016-02-09 20:49:17 -05:00
|
|
|
static Thread* thread;
|
|
|
|
|
|
|
|
static msg_t static_fn(void* arg) {
|
2016-04-22 15:15:51 -04:00
|
|
|
auto obj = static_cast<CaptureThread*>(arg);
|
2016-04-06 14:47:25 -04:00
|
|
|
return obj->run();
|
2016-02-09 20:49:17 -05:00
|
|
|
}
|
|
|
|
|
2016-05-02 15:50:49 -04:00
|
|
|
msg_t run();
|
2016-02-09 20:49:17 -05:00
|
|
|
};
|
|
|
|
|
2016-04-22 15:15:51 -04:00
|
|
|
#endif/*__CAPTURE_THREAD_H__*/
|