2011-10-08 22:50:08 +08:00
|
|
|
/*
|
2021-03-08 18:19:04 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2011-10-08 22:50:08 +08:00
|
|
|
*
|
2018-10-29 11:06:58 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2011-10-08 22:50:08 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2005-02-22 Bernard The first version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __DFS_H__
|
|
|
|
#define __DFS_H__
|
|
|
|
|
2017-10-15 22:44:53 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdlib.h>
|
2011-10-08 22:50:08 +08:00
|
|
|
#include <string.h>
|
2021-09-01 21:28:16 +08:00
|
|
|
#include <dirent.h>
|
2021-09-11 11:07:51 +08:00
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/stat.h>
|
2021-09-12 03:34:59 +08:00
|
|
|
#include <sys/statfs.h>
|
2021-08-31 10:27:09 +08:00
|
|
|
#include <sys/time.h>
|
2017-10-15 22:44:53 +08:00
|
|
|
#include <rtdevice.h>
|
|
|
|
|
2021-08-31 10:27:09 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2017-10-15 22:44:53 +08:00
|
|
|
#ifndef DFS_FILESYSTEMS_MAX
|
2021-09-01 21:28:16 +08:00
|
|
|
#define DFS_FILESYSTEMS_MAX 4
|
2017-10-15 22:44:53 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DFS_FD_MAX
|
2021-09-01 21:28:16 +08:00
|
|
|
#define DFS_FD_MAX 16
|
2017-10-15 22:44:53 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* skip stdin/stdout/stderr normally
|
|
|
|
*/
|
|
|
|
#ifndef DFS_FD_OFFSET
|
|
|
|
#define DFS_FD_OFFSET 3
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DFS_PATH_MAX
|
2021-09-01 21:28:16 +08:00
|
|
|
#define DFS_PATH_MAX DIRENT_NAME_MAX
|
2017-10-15 22:44:53 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef SECTOR_SIZE
|
|
|
|
#define SECTOR_SIZE 512
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DFS_FILESYSTEM_TYPES_MAX
|
|
|
|
#define DFS_FILESYSTEM_TYPES_MAX 2
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define DFS_FS_FLAG_DEFAULT 0x00 /* default flag */
|
|
|
|
#define DFS_FS_FLAG_FULLPATH 0x01 /* set full path to underlaying file system */
|
|
|
|
|
|
|
|
/* File types */
|
|
|
|
#define FT_REGULAR 0 /* regular file */
|
|
|
|
#define FT_SOCKET 1 /* socket file */
|
|
|
|
#define FT_DIRECTORY 2 /* directory */
|
|
|
|
#define FT_USER 3 /* user defined */
|
2020-09-26 09:55:58 +08:00
|
|
|
#define FT_DEVICE 4 /* device */
|
2017-10-15 22:44:53 +08:00
|
|
|
|
|
|
|
/* File flags */
|
|
|
|
#define DFS_F_OPEN 0x01000000
|
|
|
|
#define DFS_F_DIRECTORY 0x02000000
|
|
|
|
#define DFS_F_EOF 0x04000000
|
|
|
|
#define DFS_F_ERR 0x08000000
|
2011-10-08 22:50:08 +08:00
|
|
|
|
2018-06-10 17:57:34 +08:00
|
|
|
struct dfs_fdtable
|
|
|
|
{
|
|
|
|
uint32_t maxfd;
|
|
|
|
struct dfs_fd **fds;
|
|
|
|
};
|
|
|
|
|
2017-10-15 22:44:53 +08:00
|
|
|
/* Initialization of dfs */
|
|
|
|
int dfs_init(void);
|
2013-06-23 07:53:19 +08:00
|
|
|
|
2011-12-23 10:11:55 +08:00
|
|
|
char *dfs_normalize_path(const char *directory, const char *filename);
|
|
|
|
const char *dfs_subdir(const char *directory, const char *filename);
|
2011-10-08 22:50:08 +08:00
|
|
|
|
2017-10-15 22:44:53 +08:00
|
|
|
void dfs_lock(void);
|
|
|
|
void dfs_unlock(void);
|
|
|
|
|
2011-10-08 22:50:08 +08:00
|
|
|
/* FD APIs */
|
|
|
|
int fd_new(void);
|
2011-12-23 10:11:55 +08:00
|
|
|
struct dfs_fd *fd_get(int fd);
|
|
|
|
void fd_put(struct dfs_fd *fd);
|
|
|
|
int fd_is_open(const char *pathname);
|
2011-10-08 22:50:08 +08:00
|
|
|
|
2019-04-03 18:09:52 +08:00
|
|
|
struct dfs_fdtable *dfs_fdtable_get(void);
|
2018-06-10 17:57:34 +08:00
|
|
|
|
2011-10-08 22:50:08 +08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|