aboutsummaryrefslogtreecommitdiff
path: root/src/common.cpp
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2018-06-21 08:39:52 +0100
committerGitHub <noreply@github.com>2018-06-21 08:39:52 +0100
commitcdf873542b60c7e67d388117f96df87e72140651 (patch)
tree7d12d42664be4618ee2055d3ef653dda5e8f336a /src/common.cpp
parent4742690dec0bef8a720131397ad44c919878d3b5 (diff)
Add read_directory for linux
Diffstat (limited to 'src/common.cpp')
-rw-r--r--src/common.cpp64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/common.cpp b/src/common.cpp
index 12c3457ac..ec6ec7798 100644
--- a/src/common.cpp
+++ b/src/common.cpp
@@ -822,7 +822,71 @@ ReadDirectoryError read_directory(String path, Array<FileInfo> *fi) {
return ReadDirectory_None;
}
+#elif defined(GB_SYSTEM_LINUX)
+
+#include <dirent.h>
+
+ReadDirectoryError read_directory(String path, Array<FileInfo> *fi) {
+ GB_ASSERT(fi != nullptr);
+
+ gbAllocator a = heap_allocator();
+
+ char *c_path = alloc_cstring(a, path);
+ defer (gb_free(a, c_path));
+
+ DIR *dir = opendir(c_path);
+ if (!dir) {
+ return ReadDirectory_NotDir;
+ }
+
+ array_init(fi, a, 0, 100);
+ for (;;) {
+ struct dirent *entry = readdir(dir);
+ if (entry == nullptr) {
+ break;
+ }
+
+ String name = make_string_c(entry->d_name);
+ if (name == "." || name == "..") {
+ continue;
+ }
+
+ String filepath = {};
+ filepath.len = path.len+1+name.len;
+ filepath.text = gb_alloc_array(a, u8, filepath.len+1);
+ defer (gb_free(a, filepath.text));
+ gb_memmove(filepath.text, path.text, path.len);
+ gb_memmove(filepath.text+path.len, "/", 1);
+ gb_memmove(filepath.text+path.len+1, name.text, name.len);
+ filepath.text[filepath.len] = 0;
+
+
+ struct stat dir_stat = {};
+
+ if (stat((char *)filepath.text, &dir_stat)) {
+ continue;
+ }
+
+ if (S_ISDIR(dir_stat.st_mode)) {
+ continue;
+ }
+
+ i64 size = dir_stat.st_size;
+
+ FileInfo info = {};
+ info.name = name;
+ info.fullpath = path_to_full_path(a, filepath);
+ info.size = size;
+ array_add(fi, info);
+ }
+
+ if (fi->count == 0) {
+ return ReadDirectory_Empty;
+ }
+
+ return ReadDirectory_None;
+}
#else
#error Implement read_directory
#endif