diff options
| author | jacqueline <me@jacqueline.id.au> | 2024-05-02 19:12:26 +1000 |
|---|---|---|
| committer | jacqueline <me@jacqueline.id.au> | 2024-05-02 19:12:26 +1000 |
| commit | 1573a8c4cde1cd9528b422b2dcc598e37ffe94a7 (patch) | |
| tree | d162822b8fd7054f81bace0c7a65ab4d5e6f93ef /src/audio/fatfs_source.cpp | |
| parent | a231fd1c8afedbeb14b0bc77d76bad61db986059 (diff) | |
| download | tangara-fw-1573a8c4cde1cd9528b422b2dcc598e37ffe94a7.tar.gz | |
WIP merge cyclically dependent components into one big component
Diffstat (limited to 'src/audio/fatfs_source.cpp')
| -rw-r--r-- | src/audio/fatfs_source.cpp | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/src/audio/fatfs_source.cpp b/src/audio/fatfs_source.cpp deleted file mode 100644 index dccdd581..00000000 --- a/src/audio/fatfs_source.cpp +++ /dev/null @@ -1,77 +0,0 @@ -/* - * Copyright 2023 jacqueline <me@jacqueline.id.au> - * - * SPDX-License-Identifier: GPL-3.0-only - */ - -#include "fatfs_source.hpp" -#include <sys/_stdint.h> - -#include <cstddef> -#include <cstdint> -#include <memory> - -#include "esp_log.h" -#include "event_queue.hpp" -#include "ff.h" - -#include "audio_source.hpp" -#include "codec.hpp" -#include "spi.hpp" -#include "system_events.hpp" -#include "types.hpp" - -namespace audio { - -[[maybe_unused]] static constexpr char kTag[] = "fatfs_src"; - -FatfsSource::FatfsSource(codecs::StreamType t, std::unique_ptr<FIL> file) - : IStream(t), file_(std::move(file)) {} - -FatfsSource::~FatfsSource() { - auto lock = drivers::acquire_spi(); - f_close(file_.get()); -} - -auto FatfsSource::Read(std::span<std::byte> dest) -> ssize_t { - auto lock = drivers::acquire_spi(); - if (f_eof(file_.get())) { - return 0; - } - UINT bytes_read = 0; - FRESULT res = f_read(file_.get(), dest.data(), dest.size(), &bytes_read); - if (res != FR_OK) { - events::System().Dispatch(system_fsm::StorageError{.error = res}); - return -1; - } - return bytes_read; -} - -auto FatfsSource::CanSeek() -> bool { - return true; -} - -auto FatfsSource::SeekTo(int64_t destination, SeekFrom from) -> void { - auto lock = drivers::acquire_spi(); - switch (from) { - case SeekFrom::kStartOfStream: - f_lseek(file_.get(), destination); - break; - case SeekFrom::kEndOfStream: - f_lseek(file_.get(), f_size(file_.get()) + destination); - break; - case SeekFrom::kCurrentPosition: - f_lseek(file_.get(), f_tell(file_.get()) + destination); - break; - } -} - -auto FatfsSource::CurrentPosition() -> int64_t { - return f_tell(file_.get()); -} - -auto FatfsSource::Size() -> std::optional<int64_t> { - return f_size(file_.get()); -} - -} // namespace audio |
