//===--- A platform independent Dir class ---------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLVM_LIBC_SRC___SUPPORT_FILE_DIR_H #define LLVM_LIBC_SRC___SUPPORT_FILE_DIR_H #include "src/__support/CPP/span.h" #include "src/__support/error_or.h" #include "src/__support/macros/config.h" #include "src/__support/threads/mutex.h" #include <dirent.h> #include <stdlib.h> namespace LIBC_NAMESPACE_DECL { // Platform specific function which will open the directory |name| // and return its file descriptor. Upon failure, the error value is returned. ErrorOr<int> platform_opendir(const char *name); // Platform specific function which will close the directory with // file descriptor |fd|. Returns 0 on success, or the error number on failure. int platform_closedir(int fd); // Platform specific function which will fetch dirents in to buffer. // Returns the number of bytes written into buffer or the error number on // failure. ErrorOr<size_t> platform_fetch_dirents(int fd, cpp::span<uint8_t> buffer); // This class is designed to allow implementation of the POSIX dirent.h API. // By itself, it is platform independent but calls platform specific // functions to perform OS operations. class Dir { … }; } // namespace LIBC_NAMESPACE_DECL #endif // LLVM_LIBC_SRC___SUPPORT_FILE_DIR_H