1
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
41
42
43
47
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
93
94
98
102
106
110
114
118
122
126
130
134
138
142
146
150
154
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
183
184
188
192
196
200
204
208
212
213
214
215
216
217
218
219
220
221
222
223
224
225
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
278
279
283
287
291
295
299
303
307
311
315
319
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
373
374
375
378
379
380
383
384
385
386
387
/* ... */
#pragma once
#include <stdint.h>
#include <stddef.h>
#include <stdarg.h>
#include <unistd.h>
#include <utime.h>
#include "freertos/FreeRTOS.h"
#include "freertos/semphr.h"
#include "esp_err.h"
#include <sys/types.h>
#include <sys/reent.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/termios.h>
#include <sys/poll.h>14 includes
#ifdef __clang__
#include <sys/dirent.h>
#else
#include <dirent.h>
#endif
#include <string.h>
#include "sdkconfig.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifndef _SYS_TYPES_FD_SET
#error "VFS should be used with FD_SETSIZE and FD_SET from sys/types.h"
#endif
/* ... */
typedef int esp_vfs_id_t;
/* ... */
typedef struct
{
bool is_sem_local;
void *sem;
}{ ... } esp_vfs_select_sem_t;
#ifdef CONFIG_VFS_SUPPORT_DIR
typedef int (*esp_vfs_stat_ctx_op_t) (void *ctx, const char *path, struct stat *st);
typedef int (*esp_vfs_stat_op_t) ( const char *path, struct stat *st);
typedef int (*esp_vfs_link_ctx_op_t) (void *ctx, const char *n1, const char *n2);
typedef int (*esp_vfs_link_op_t) ( const char *n1, const char *n2);
typedef int (*esp_vfs_unlink_ctx_op_t) (void *ctx, const char *path);
typedef int (*esp_vfs_unlink_op_t) ( const char *path);
typedef int (*esp_vfs_rename_ctx_op_t) (void *ctx, const char *src, const char *dst);
typedef int (*esp_vfs_rename_op_t) ( const char *src, const char *dst);
typedef DIR* (*esp_vfs_opendir_ctx_op_t) (void *ctx, const char *name);
typedef DIR* (*esp_vfs_opendir_op_t) ( const char *name);
typedef struct dirent* (*esp_vfs_readdir_ctx_op_t) (void *ctx, DIR *pdir);
typedef struct dirent* (*esp_vfs_readdir_op_t) ( DIR *pdir);
typedef int (*esp_vfs_readdir_r_ctx_op_t) (void *ctx, DIR *pdir, struct dirent *entry, struct dirent **out);
typedef int (*esp_vfs_readdir_r_op_t) ( DIR *pdir, struct dirent *entry, struct dirent **out);
typedef long (*esp_vfs_telldir_ctx_op_t) (void *ctx, DIR *pdir);
typedef long (*esp_vfs_telldir_op_t) ( DIR *pdir);
typedef void (*esp_vfs_seekdir_ctx_op_t) (void *ctx, DIR *pdir, long offset);
typedef void (*esp_vfs_seekdir_op_t) ( DIR *pdir, long offset);
typedef int (*esp_vfs_closedir_ctx_op_t) (void *ctx, DIR *pdir);
typedef int (*esp_vfs_closedir_op_t) ( DIR *pdir);
typedef int (*esp_vfs_mkdir_ctx_op_t) (void *ctx, const char *name, mode_t mode);
typedef int (*esp_vfs_mkdir_op_t) ( const char *name, mode_t mode);
typedef int (*esp_vfs_rmdir_ctx_op_t) (void *ctx, const char *name);
typedef int (*esp_vfs_rmdir_op_t) ( const char *name);
typedef int (*esp_vfs_access_ctx_op_t) (void *ctx, const char *path, int amode);
typedef int (*esp_vfs_access_op_t) ( const char *path, int amode);
typedef int (*esp_vfs_truncate_ctx_op_t) (void *ctx, const char *path, off_t length);
typedef int (*esp_vfs_truncate_op_t) ( const char *path, off_t length);
typedef int (*esp_vfs_ftruncate_ctx_op_t) (void *ctx, int fd, off_t length);
typedef int (*esp_vfs_ftruncate_op_t) ( int fd, off_t length);
typedef int (*esp_vfs_utime_ctx_op_t) (void *ctx, const char *path, const struct utimbuf *times);
typedef int (*esp_vfs_utime_op_t) ( const char *path, const struct utimbuf *times);
/* ... */
typedef struct {
union {
const esp_vfs_stat_ctx_op_t stat_p;
const esp_vfs_stat_op_t stat;
}{ ... };
union {
const esp_vfs_link_ctx_op_t link_p;
const esp_vfs_link_op_t link;
}{ ... };
union {
const esp_vfs_unlink_ctx_op_t unlink_p;
const esp_vfs_unlink_op_t unlink;
}{ ... };
union {
const esp_vfs_rename_ctx_op_t rename_p;
const esp_vfs_rename_op_t rename;
}{ ... };
union {
const esp_vfs_opendir_ctx_op_t opendir_p;
const esp_vfs_opendir_op_t opendir;
}{ ... };
union {
const esp_vfs_readdir_ctx_op_t readdir_p;
const esp_vfs_readdir_op_t readdir;
}{ ... };
union {
const esp_vfs_readdir_r_ctx_op_t readdir_r_p;
const esp_vfs_readdir_r_op_t readdir_r;
}{ ... };
union {
const esp_vfs_telldir_ctx_op_t telldir_p;
const esp_vfs_telldir_op_t telldir;
}{ ... };
union {
const esp_vfs_seekdir_ctx_op_t seekdir_p;
const esp_vfs_seekdir_op_t seekdir;
}{ ... };
union {
const esp_vfs_closedir_ctx_op_t closedir_p;
const esp_vfs_closedir_op_t closedir;
}{ ... };
union {
const esp_vfs_mkdir_ctx_op_t mkdir_p;
const esp_vfs_mkdir_op_t mkdir;
}{ ... };
union {
const esp_vfs_rmdir_ctx_op_t rmdir_p;
const esp_vfs_rmdir_op_t rmdir;
}{ ... };
union {
const esp_vfs_access_ctx_op_t access_p;
const esp_vfs_access_op_t access;
}{ ... };
union {
const esp_vfs_truncate_ctx_op_t truncate_p;
const esp_vfs_truncate_op_t truncate;
}{ ... };
union {
const esp_vfs_ftruncate_ctx_op_t ftruncate_p;
const esp_vfs_ftruncate_op_t ftruncate;
}{ ... };
union {
const esp_vfs_utime_ctx_op_t utime_p;
const esp_vfs_utime_op_t utime;
}{ ... };
}{ ... } esp_vfs_dir_ops_t;
/* ... */
#endif
#ifdef CONFIG_VFS_SUPPORT_TERMIOS
typedef int (*esp_vfs_tcsetattr_ctx_op_t) (void *ctx, int fd, int optional_actions, const struct termios *p);
typedef int (*esp_vfs_tcsetattr_op_t) ( int fd, int optional_actions, const struct termios *p);
typedef int (*esp_vfs_tcgetattr_ctx_op_t) (void *ctx, int fd, struct termios *p);
typedef int (*esp_vfs_tcgetattr_op_t) ( int fd, struct termios *p);
typedef int (*esp_vfs_tcdrain_ctx_op_t) (void *ctx, int fd);
typedef int (*esp_vfs_tcdrain_op_t) ( int fd);
typedef int (*esp_vfs_tcflush_ctx_op_t) (void *ctx, int fd, int select);
typedef int (*esp_vfs_tcflush_op_t) ( int fd, int select);
typedef int (*esp_vfs_tcflow_ctx_op_t) (void *ctx, int fd, int action);
typedef int (*esp_vfs_tcflow_op_t) ( int fd, int action);
typedef pid_t (*esp_vfs_tcgetsid_ctx_op_t) (void *ctx, int fd);
typedef pid_t (*esp_vfs_tcgetsid_op_t) ( int fd);
typedef int (*esp_vfs_tcsendbreak_ctx_op_t) (void *ctx, int fd, int duration);
typedef int (*esp_vfs_tcsendbreak_op_t) ( int fd, int duration);
/* ... */
typedef struct {
union {
const esp_vfs_tcsetattr_ctx_op_t tcsetattr_p;
const esp_vfs_tcsetattr_op_t tcsetattr;
}{ ... };
union {
const esp_vfs_tcgetattr_ctx_op_t tcgetattr_p;
const esp_vfs_tcgetattr_op_t tcgetattr;
}{ ... };
union {
const esp_vfs_tcdrain_ctx_op_t tcdrain_p;
const esp_vfs_tcdrain_op_t tcdrain;
}{ ... };
union {
const esp_vfs_tcflush_ctx_op_t tcflush_p;
const esp_vfs_tcflush_op_t tcflush;
}{ ... };
union {
const esp_vfs_tcflow_ctx_op_t tcflow_p;
const esp_vfs_tcflow_op_t tcflow;
}{ ... };
union {
const esp_vfs_tcgetsid_ctx_op_t tcgetsid_p;
const esp_vfs_tcgetsid_op_t tcgetsid;
}{ ... };
union {
const esp_vfs_tcsendbreak_ctx_op_t tcsendbreak_p;
const esp_vfs_tcsendbreak_op_t tcsendbreak;
}{ ... };
}{ ... } esp_vfs_termios_ops_t;
/* ... */
#endif
#ifdef CONFIG_VFS_SUPPORT_SELECT
typedef esp_err_t (*esp_vfs_start_select_op_t) (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, esp_vfs_select_sem_t sem, void **end_select_args);
typedef int (*esp_vfs_socket_select_op_t) (int nfds, fd_set *readfds, fd_set *writefds, fd_set *errorfds, struct timeval *timeout);
typedef void (*esp_vfs_stop_socket_select_op_t) (void *sem);
typedef void (*esp_vfs_stop_socket_select_isr_op_t) (void *sem, BaseType_t *woken);
typedef void* (*esp_vfs_get_socket_select_semaphore_op_t) (void);
typedef esp_err_t (*esp_vfs_end_select_op_t) (void *end_select_args);
/* ... */
typedef struct {
const esp_vfs_start_select_op_t start_select;
const esp_vfs_socket_select_op_t socket_select;
const esp_vfs_stop_socket_select_op_t stop_socket_select;
const esp_vfs_stop_socket_select_isr_op_t stop_socket_select_isr;
const esp_vfs_get_socket_select_semaphore_op_t get_socket_select_semaphore;
const esp_vfs_end_select_op_t end_select;
}{ ... } esp_vfs_select_ops_t;
/* ... */
#endif
typedef ssize_t (*esp_vfs_write_ctx_op_t) (void *ctx, int fd, const void *data, size_t size);
typedef ssize_t (*esp_vfs_write_op_t) ( int fd, const void *data, size_t size);
typedef off_t (*esp_vfs_lseek_ctx_op_t) (void *ctx, int fd, off_t size, int mode);
typedef off_t (*esp_vfs_lseek_op_t) ( int fd, off_t size, int mode);
typedef ssize_t (*esp_vfs_read_ctx_op_t) (void *ctx, int fd, void *dst, size_t size);
typedef ssize_t (*esp_vfs_read_op_t) ( int fd, void *dst, size_t size);
typedef ssize_t (*esp_vfs_pread_ctx_op_t) (void *ctx, int fd, void *dst, size_t size, off_t offset);
typedef ssize_t (*esp_vfs_pread_op_t) ( int fd, void *dst, size_t size, off_t offset);
typedef ssize_t (*esp_vfs_pwrite_ctx_op_t) (void *ctx, int fd, const void *src, size_t size, off_t offset);
typedef ssize_t (*esp_vfs_pwrite_op_t) ( int fd, const void *src, size_t size, off_t offset);
typedef int (*esp_vfs_open_ctx_op_t) (void *ctx, const char *path, int flags, int mode);
typedef int (*esp_vfs_open_op_t) ( const char *path, int flags, int mode);
typedef int (*esp_vfs_close_ctx_op_t) (void *ctx, int fd);
typedef int (*esp_vfs_close_op_t) ( int fd);
typedef int (*esp_vfs_fstat_ctx_op_t) (void *ctx, int fd, struct stat *st);
typedef int (*esp_vfs_fstat_op_t) ( int fd, struct stat *st);
typedef int (*esp_vfs_fcntl_ctx_op_t) (void *ctx, int fd, int cmd, int arg);
typedef int (*esp_vfs_fcntl_op_t) ( int fd, int cmd, int arg);
typedef int (*esp_vfs_ioctl_ctx_op_t) (void *ctx, int fd, int cmd, va_list args);
typedef int (*esp_vfs_ioctl_op_t) ( int fd, int cmd, va_list args);
typedef int (*esp_vfs_fsync_ctx_op_t) (void *ctx, int fd);
typedef int (*esp_vfs_fsync_op_t) ( int fd);
/* ... */
typedef struct {
union {
const esp_vfs_write_ctx_op_t write_p;
const esp_vfs_write_op_t write;
}{ ... };
union {
const esp_vfs_lseek_ctx_op_t lseek_p;
const esp_vfs_lseek_op_t lseek;
}{ ... };
union {
const esp_vfs_read_ctx_op_t read_p;
const esp_vfs_read_op_t read;
}{ ... };
union {
const esp_vfs_pread_ctx_op_t pread_p;
const esp_vfs_pread_op_t pread;
}{ ... };
union {
const esp_vfs_pwrite_ctx_op_t pwrite_p;
const esp_vfs_pwrite_op_t pwrite;
}{ ... };
union {
const esp_vfs_open_ctx_op_t open_p;
const esp_vfs_open_op_t open;
}{ ... };
union {
const esp_vfs_close_ctx_op_t close_p;
const esp_vfs_close_op_t close;
}{ ... };
union {
const esp_vfs_fstat_ctx_op_t fstat_p;
const esp_vfs_fstat_op_t fstat;
}{ ... };
union {
const esp_vfs_fcntl_ctx_op_t fcntl_p;
const esp_vfs_fcntl_op_t fcntl;
}{ ... };
union {
const esp_vfs_ioctl_ctx_op_t ioctl_p;
const esp_vfs_ioctl_op_t ioctl;
}{ ... };
union {
const esp_vfs_fsync_ctx_op_t fsync_p;
const esp_vfs_fsync_op_t fsync;
}{ ... };
#ifdef CONFIG_VFS_SUPPORT_DIR
const esp_vfs_dir_ops_t *const dir;
#endif
#ifdef CONFIG_VFS_SUPPORT_TERMIOS
const esp_vfs_termios_ops_t *const termios;
#endif
#if CONFIG_VFS_SUPPORT_SELECT || defined __DOXYGEN__
const esp_vfs_select_ops_t *const select;
#endif
}{ ... } esp_vfs_fs_ops_t;
/* ... */
esp_err_t esp_vfs_register_fs(const char *base_path, const esp_vfs_fs_ops_t *vfs, int flags, void *ctx);
/* ... */
esp_err_t esp_vfs_register_fs_with_id(const esp_vfs_fs_ops_t *vfs, int flags, void *ctx, esp_vfs_id_t *id);
/* ... */
esp_err_t esp_vfs_unregister_fs(const char *base_path);
/* ... */
esp_err_t esp_vfs_unregister_fs_with_id(esp_vfs_id_t id);
#ifdef __cplusplus
}{...}
#endif