aboutsummaryrefslogtreecommitdiff
path: root/src/Filesystem.cpp
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2021-04-27 15:15:40 +0200
committerToni Uhlig <matzeton@googlemail.com>2021-04-27 15:15:40 +0200
commitc0483779dac4d8fd5fcc736ae5ffa8ddede0e511 (patch)
tree42408069a518e15eb1052cc62a09d6855517cf5b /src/Filesystem.cpp
parent51d779256c74cc541da306db5629ed510df5a944 (diff)
ContentManager / Filesystem classes as preparation for a SimpleBlog.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/Filesystem.cpp')
-rw-r--r--src/Filesystem.cpp61
1 files changed, 61 insertions, 0 deletions
diff --git a/src/Filesystem.cpp b/src/Filesystem.cpp
new file mode 100644
index 0000000..18b8725
--- /dev/null
+++ b/src/Filesystem.cpp
@@ -0,0 +1,61 @@
+#include "Filesystem.hpp"
+
+#include <cstring>
+#include <filesystem>
+#include <fstream>
+#include <iostream>
+
+static std::string make_path_relative(std::string &path, std::string &root) {
+ return std::filesystem::relative(path, root);
+}
+
+bool Filesystem::AddSingleFile(std::string path, std::string root) {
+ std::ifstream ifs(path, std::ios::binary | std::ios::ate);
+
+ if (!ifs) {
+ return false;
+ }
+
+ auto end = ifs.tellg();
+ if (end <= 0) {
+ return false;
+ }
+ if (!ifs.seekg(0, std::ios::beg)) {
+ return false;
+ }
+
+ auto size = std::size_t(end - ifs.tellg());
+
+ if (size == 0) {
+ return false;
+ }
+
+ struct file_data fd = {};
+ try {
+ fd.data.reserve(size);
+ } catch (const std::exception &e) {
+ return false;
+ }
+
+ if (!ifs.read((char *)fd.data.data(), fd.data.size())) {
+ return false;
+ }
+
+ std::string relpath = make_path_relative(path, root);
+ if (files.count(relpath) > 0) {
+ std::cout << "Adding file: " << path << " and overwriting " << relpath
+ << std::endl;
+ } else {
+ std::cout << "Adding file: " << path << " as " << relpath << std::endl;
+ }
+ files[relpath] = fd;
+
+ return true;
+}
+
+bool Filesystem::Scan(std::string root) {
+ for (const auto &entry : std::filesystem::directory_iterator(root)) {
+ AddSingleFile(entry.path(), root);
+ }
+ return true;
+}