1 #ifndef NDNPH_PORT_FS_LINUX_HPP
2 #define NDNPH_PORT_FS_LINUX_HPP
4 #include "../../core/common.hpp"
12 namespace port_fs_linux {
18 size_t pathLen = strlen(path);
19 if (pathLen <= 1 || pathLen >=
sizeof(m_path) - 1 || path[pathLen - 1] ==
'/') {
22 return createDir(path, 0);
26 bool createDir(
const char* path,
int up) {
27 const char* dir = toDirname(path, up);
28 if (::stat(dir, &m_stat) == 0) {
29 return S_ISDIR(m_stat.st_mode);
30 }
else if (errno == ENOENT) {
31 bool ok = createDir(path, up + 1);
37 dir = toDirname(path, up);
38 return ::mkdir(dir, 0700) == 0;
41 const char* toDirname(
const char* path,
int up) {
42 strncpy(m_path, path,
sizeof(m_path));
44 for (
int i = 0; i < up; ++i) {
51 char m_path[PATH_MAX];
72 operator int()
const {
96 bool open(
const char* path) {
101 m_dfd =
::open(path, O_RDONLY | O_DIRECTORY);
109 int read(
const char* filename, uint8_t* buffer,
size_t count) {
112 if (errno == ENOENT) {
118 ssize_t nRead =
::read(fd, buffer, count);
122 if (
static_cast<size_t>(nRead) == count) {
123 return ::lseek(fd, 0, SEEK_END);
125 return static_cast<int>(nRead);
132 bool write(
const char* filename,
const uint8_t* buffer,
size_t count) {
134 ssize_t nWrite =
::write(fd, buffer, count);
135 return static_cast<size_t>(nWrite) == count;
143 int res = ::unlinkat(m_dfd, filename, 0);
144 return res == 0 || errno == ENOENT;
153 #ifdef NDNPH_PORT_FS_LINUX
File storage on Linux filesystem.
Definition: linux.hpp:90
bool open(const char *path)
Open path directory as FileStore, creating directories as necessary.
Definition: linux.hpp:96
int read(const char *filename, uint8_t *buffer, size_t count)
Read content of filename file into buffer .
Definition: linux.hpp:109
bool write(const char *filename, const uint8_t *buffer, size_t count)
Write buffer into filename file.
Definition: linux.hpp:132
bool unlink(const char *filename)
Delete filename file.
Definition: linux.hpp:142
~FdCloser()
Definition: linux.hpp:60
FdCloser(int fd=-1)
Definition: linux.hpp:57
void close()
Definition: linux.hpp:76
FdCloser & operator=(int fd)
Definition: linux.hpp:64
bool create(const char *path)
Definition: linux.hpp:17
esp8266ndn::ndnph_port::FileStore FileStore
Definition: fs.hpp:35