mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
#pragma once
|
|
|
|
#include "core/module.h"
|
|
#include <complex>
|
|
#include <thread>
|
|
#include <fstream>
|
|
#include "common/simple_deframer.h"
|
|
#include "common/widgets/constellation.h"
|
|
#include "common/codings/crc/crc_generic.h"
|
|
|
|
namespace geoscan
|
|
{
|
|
class GEOSCANDecoderModule : public ProcessingModule
|
|
{
|
|
protected:
|
|
int8_t *input_buffer;
|
|
|
|
std::ifstream data_in;
|
|
std::ofstream data_out;
|
|
|
|
std::atomic<uint64_t> filesize;
|
|
std::atomic<uint64_t> progress;
|
|
|
|
std::unique_ptr<def::SimpleDeframer> deframer;
|
|
|
|
int frm_cnt = 0;
|
|
|
|
codings::crc::GenericCRC crc_check = codings::crc::GenericCRC(16, 0x8005, 0xFFFF, 0x0000, false, false);
|
|
|
|
public:
|
|
GEOSCANDecoderModule(std::string input_file, std::string output_file_hint, nlohmann::json parameters);
|
|
~GEOSCANDecoderModule();
|
|
void process();
|
|
void drawUI(bool window);
|
|
std::vector<ModuleDataType> getInputTypes();
|
|
std::vector<ModuleDataType> getOutputTypes();
|
|
|
|
public:
|
|
static std::string getID();
|
|
virtual std::string getIDM() { return getID(); };
|
|
static std::vector<std::string> getParameters();
|
|
static std::shared_ptr<ProcessingModule> getInstance(std::string input_file, std::string output_file_hint, nlohmann::json parameters);
|
|
};
|
|
} // namespace noaa
|