blob: 4fc5adbbe43c5dba7d60fab9b6a3bb29baad54ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/*
* 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 "ff.h"
#include "audio_source.hpp"
#include "codec.hpp"
#include "spi.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(cpp::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) {
ESP_LOGE(kTag, "error reading from file");
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
|