summaryrefslogtreecommitdiff
path: root/src/tangara/lua/file_iterator.hpp
blob: 2d5c2d7dbeac6f15555af6d32584e7b15bb195a9 (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
/*
 * Copyright 2023 ailurux <ailuruxx@gmail.com>
 *
 * SPDX-License-Identifier: GPL-3.0-only
 */

#pragma once 

#include <string>
#include <optional>

#include "ff.h"

namespace lua {

// Note for when reading FILINFO, that we are in LFN mode:
// http://elm-chan.org/fsw/ff/doc/sfileinfo.html
struct FileEntry {
    int index;
    bool isHidden;
    bool isDirectory;
    std::string filepath;
    std::string name;
};

class FileIterator {
 public:
  FileIterator(std::string filepath, bool showHidden);
  ~FileIterator();

  auto value() const -> const std::optional<FileEntry>&;
  auto next() -> void;
  auto prev() -> void;

 private: 
  FF_DIR dir_;
  std::string original_path_;
  bool show_hidden_;

  std::optional<FileEntry> current_;
  int offset_;

  auto iterate(bool reverse = false) -> bool;
};

} // namespace lua