Ken Van Hoeylandt d0ca3b16f8
GPS refactored (#262)
- Refactored GPS service and HAL: GPS is no longer part of the HAL configuration. You can now add configure new GPS devices from the GPS settings app.
- T-Deck adds a boot hook to check if a GPS configuration exists and adds it when the config is empty.
- Implemented the concept of ObjectFile to read/write arrays of a raw data type (e.g. struct) to disk.
- Implemented more file utils (e.g. to create all directories of a path)
2025-03-30 01:14:22 +01:00

77 lines
1.5 KiB
C++

#pragma once
#include "File.h"
#include <cstdint>
#include <functional>
#include <string>
#include <utility>
namespace tt::file {
class ObjectFileReader {
private:
const std::string filePath;
const uint32_t recordSize = 0;
std::unique_ptr<FILE, FileCloser> file;
uint32_t recordCount = 0;
uint32_t recordVersion = 0;
uint32_t recordsRead = 0;
public:
ObjectFileReader(std::string filePath, uint32_t recordSize) :
filePath(std::move(filePath)),
recordSize(recordSize)
{}
bool open();
void close();
bool hasNext() const { return recordsRead < recordCount; }
bool readNext(void* output);
uint32_t getRecordCount() const { return recordCount; }
uint32_t getRecordSize() const { return recordSize; }
uint32_t getRecordVersion() const { return recordVersion; }
};
class ObjectFileWriter {
private:
const std::string filePath;
const uint32_t recordSize;
const uint32_t recordVersion;
const bool append;
std::unique_ptr<FILE, FileCloser> file;
uint32_t recordsWritten = 0;
public:
ObjectFileWriter(std::string filePath, uint32_t recordSize, uint32_t recordVersion, bool append) :
filePath(std::move(filePath)),
recordSize(recordSize),
recordVersion(recordVersion),
append(append)
{}
~ObjectFileWriter() {
if (file != nullptr) {
close();
}
}
bool open();
void close();
bool write(void* data);
};
}