fs_sys.h 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * Copyright (c) 2020 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_FS_FS_SYS_H_
  7. #define ZEPHYR_INCLUDE_FS_FS_SYS_H_
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. /**
  12. * @ingroup file_system_api
  13. * @{
  14. */
  15. /**
  16. * @brief File System interface structure
  17. *
  18. * @param open Opens or creates a file, depending on flags given
  19. * @param read Reads nbytes number of bytes
  20. * @param write Writes nbytes number of bytes
  21. * @param lseek Moves the file position to a new location in the file
  22. * @param tell Retrieves the current position in the file
  23. * @param truncate Truncates/expands the file to the new length
  24. * @param sync Flushes the cache of an open file
  25. * @param close Flushes the associated stream and closes the file
  26. * @param opendir Opens an existing directory specified by the path
  27. * @param readdir Reads directory entries of an open directory
  28. * @param closedir Closes an open directory
  29. * @param mount Mounts a file system
  30. * @param unmount Unmounts a file system
  31. * @param unlink Deletes the specified file or directory
  32. * @param rename Renames a file or directory
  33. * @param mkdir Creates a new directory using specified path
  34. * @param stat Checks the status of a file or directory specified by the path
  35. * @param statvfs Returns the total and available space on the file system
  36. * volume
  37. */
  38. struct fs_file_system_t {
  39. /* File operations */
  40. int (*open)(struct fs_file_t *filp, const char *fs_path,
  41. fs_mode_t flags);
  42. ssize_t (*read)(struct fs_file_t *filp, void *dest, size_t nbytes);
  43. ssize_t (*write)(struct fs_file_t *filp,
  44. const void *src, size_t nbytes);
  45. int (*lseek)(struct fs_file_t *filp, off_t off, int whence);
  46. off_t (*tell)(struct fs_file_t *filp);
  47. int (*truncate)(struct fs_file_t *filp, off_t length);
  48. int (*sync)(struct fs_file_t *filp);
  49. int (*close)(struct fs_file_t *filp);
  50. /* Directory operations */
  51. int (*opendir)(struct fs_dir_t *dirp, const char *fs_path);
  52. int (*readdir)(struct fs_dir_t *dirp, struct fs_dirent *entry);
  53. int (*closedir)(struct fs_dir_t *dirp);
  54. /* File system level operations */
  55. int (*mount)(struct fs_mount_t *mountp);
  56. int (*unmount)(struct fs_mount_t *mountp);
  57. int (*unlink)(struct fs_mount_t *mountp, const char *name);
  58. int (*rename)(struct fs_mount_t *mountp, const char *from,
  59. const char *to);
  60. int (*mkdir)(struct fs_mount_t *mountp, const char *name);
  61. int (*stat)(struct fs_mount_t *mountp, const char *path,
  62. struct fs_dirent *entry);
  63. int (*statvfs)(struct fs_mount_t *mountp, const char *path,
  64. struct fs_statvfs *stat);
  65. int (*disk_detect)(struct fs_mount_t *mountp, const char *path,
  66. uint8_t *state);
  67. int (*open_cluster)(struct fs_file_t *zfp, char *dir,
  68. uint32_t cluster, uint32_t blk_ofs);
  69. int (*opendir_cluster)(struct fs_dir_t *zdp, const char *path,
  70. uint32_t cluster, uint32_t blk_ofs);
  71. };
  72. /**
  73. * @}
  74. */
  75. #ifdef __cplusplus
  76. }
  77. #endif
  78. #endif /* ZEPHYR_INCLUDE_FS_FS_SYS_H_ */