Fork of Tangara with customizations
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tangara-fw/src/audio/fatfs_audio_input.cpp

213 lines
5.8 KiB

/*
* Copyright 2023 jacqueline <me@jacqueline.id.au>
*
* SPDX-License-Identifier: GPL-3.0-only
*/
2 years ago
#include "fatfs_audio_input.hpp"
#include <stdint.h>
2 years ago
#include <algorithm>
#include <chrono>
#include <cstddef>
#include <cstdint>
#include <future>
#include <memory>
2 years ago
#include <string>
#include <variant>
#include "arena.hpp"
#include "audio_events.hpp"
#include "audio_fsm.hpp"
#include "esp_heap_caps.h"
#include "esp_log.h"
#include "event_queue.hpp"
#include "ff.h"
2 years ago
#include "freertos/portmacro.h"
#include "audio_element.hpp"
2 years ago
#include "chunk.hpp"
#include "stream_buffer.hpp"
#include "stream_event.hpp"
#include "stream_info.hpp"
#include "stream_message.hpp"
#include "tag_parser.hpp"
2 years ago
#include "track.hpp"
#include "types.hpp"
static const char* kTag = "SRC";
namespace audio {
FatfsAudioInput::FatfsAudioInput()
: IAudioElement(),
pending_path_(),
current_file_(),
is_file_open_(false),
has_prepared_output_(false),
current_container_(),
current_format_() {}
FatfsAudioInput::~FatfsAudioInput() {}
auto FatfsAudioInput::OpenFile(std::future<std::optional<std::string>>&& path)
-> void {
pending_path_ = std::move(path);
}
auto FatfsAudioInput::OpenFile(const std::string& path) -> bool {
current_path_.reset();
if (is_file_open_) {
f_close(&current_file_);
is_file_open_ = false;
has_prepared_output_ = false;
}
if (pending_path_) {
pending_path_ = {};
}
ESP_LOGI(kTag, "opening file %s", path.c_str());
FILINFO info;
if (f_stat(path.c_str(), &info) != FR_OK) {
ESP_LOGE(kTag, "failed to stat file");
}
database::TagParserImpl tag_parser;
2 years ago
database::TrackTags tags;
if (!tag_parser.ReadAndParseTags(path, &tags)) {
ESP_LOGE(kTag, "failed to read tags");
return false;
}
auto stream_type = ContainerToStreamType(tags.encoding());
if (!stream_type.has_value()) {
ESP_LOGE(kTag, "couldn't match container to stream");
return false;
}
current_container_ = tags.encoding();
if (*stream_type == codecs::StreamType::kPcm && tags.channels &&
tags.bits_per_sample && tags.channels) {
// WAV files are a special case bc they contain raw PCM streams. These don't
// need decoding, but we *do* need to parse the PCM format from the header.
// TODO(jacqueline): Maybe we should have a decoder for this just to deal
// with endianness differences?
current_format_ = StreamInfo::Pcm{
.channels = static_cast<uint8_t>(*tags.channels),
.bits_per_sample = static_cast<uint8_t>(*tags.bits_per_sample),
.sample_rate = static_cast<uint32_t>(*tags.sample_rate),
};
} else {
current_format_ = StreamInfo::Encoded{
.type = *stream_type,
.duration_bytes = info.fsize,
};
}
2 years ago
FRESULT res = f_open(&current_file_, path.c_str(), FA_READ);
if (res != FR_OK) {
ESP_LOGE(kTag, "failed to open file! res: %i", res);
return false;
}
events::Dispatch<internal::InputFileOpened, AudioState>({});
current_path_ = path;
is_file_open_ = true;
return true;
}
auto FatfsAudioInput::NeedsToProcess() const -> bool {
return is_file_open_ || pending_path_;
}
auto FatfsAudioInput::Process(const std::vector<InputStream>& inputs,
OutputStream* output) -> void {
// If the next path is being given to us asynchronously, then we need to check
// in regularly to see if it's available yet.
if (pending_path_) {
if (!pending_path_->valid()) {
pending_path_ = {};
} else {
if (pending_path_->wait_for(std::chrono::seconds(0)) ==
std::future_status::ready) {
auto result = pending_path_->get();
if (result && result != current_path_) {
OpenFile(*result);
}
pending_path_ = {};
}
}
}
if (!is_file_open_) {
return;
}
// If the output buffer isn't ready for a new stream, then we need to wait.
if (!has_prepared_output_ && !output->prepare(*current_format_)) {
return;
}
has_prepared_output_ = true;
// Performing many small reads is inefficient; it's better to do fewer, larger
// reads. Try to achieve this by only reading in new bytes if the output
// buffer has been mostly drained.
std::size_t max_size = output->data().size_bytes();
if (max_size < output->data().size_bytes() / 2) {
return;
}
std::size_t size = 0;
FRESULT result =
f_read(&current_file_, output->data().data(), max_size, &size);
if (result != FR_OK) {
ESP_LOGE(kTag, "file I/O error %d", result);
output->mark_producer_finished();
// TODO(jacqueline): Handle errors.
return;
}
output->add(size);
if (size < max_size || f_eof(&current_file_)) {
// HACK: In order to decode the last frame of a file, libmad requires 8
// 0-bytes ( == MAD_GUARD_BYTES) to be appended to the end of the stream.
// It would be better to do this within mad.cpp, but so far it's the only
// decoder that has such a requirement.
if (current_container_ == database::Encoding::kMp3) {
std::fill_n(output->data().begin(), 8, std::byte(0));
output->add(8);
}
f_close(&current_file_);
is_file_open_ = false;
current_path_.reset();
has_prepared_output_ = false;
output->mark_producer_finished();
events::Dispatch<internal::InputFileClosed, AudioState>({});
}
}
auto FatfsAudioInput::ContainerToStreamType(database::Encoding enc)
-> std::optional<codecs::StreamType> {
switch (enc) {
case database::Encoding::kMp3:
return codecs::StreamType::kMp3;
case database::Encoding::kWav:
return codecs::StreamType::kPcm;
case database::Encoding::kFlac:
return codecs::StreamType::kFlac;
case database::Encoding::kOgg: // Misnamed; this is Ogg Vorbis.
return codecs::StreamType::kVorbis;
case database::Encoding::kUnsupported:
default:
return {};
}
}
} // namespace audio