tree: ae21ff1271ae852d9c446fd4f8543db8789f1186 [path history] [tgz]
  1. async_callback_helper.h
  2. BUILD.gn
  3. data_transfer_item_file_system.cc
  4. data_transfer_item_file_system.h
  5. data_transfer_item_file_system.idl
  6. dedicated_worker_global_scope_file_system.idl
  7. DEPS
  8. dev_tools_host_file_system.cc
  9. dev_tools_host_file_system.h
  10. dev_tools_host_file_system.idl
  11. directory_entry.cc
  12. directory_entry.h
  13. directory_entry.idl
  14. directory_entry_sync.cc
  15. directory_entry_sync.h
  16. directory_entry_sync.idl
  17. directory_reader.cc
  18. directory_reader.h
  19. directory_reader.idl
  20. directory_reader_base.h
  21. directory_reader_sync.cc
  22. directory_reader_sync.h
  23. directory_reader_sync.idl
  24. dom_file_path.cc
  25. dom_file_path.h
  26. dom_file_system.cc
  27. dom_file_system.h
  28. dom_file_system.idl
  29. dom_file_system_base.cc
  30. dom_file_system_base.h
  31. dom_file_system_base_test.cc
  32. dom_file_system_sync.cc
  33. dom_file_system_sync.h
  34. dom_file_system_sync.idl
  35. dom_window_file_system.cc
  36. dom_window_file_system.h
  37. dragged_isolated_file_system_impl.cc
  38. dragged_isolated_file_system_impl.h
  39. entries_callback.idl
  40. entry.cc
  41. entry.h
  42. entry.idl
  43. entry_base.cc
  44. entry_base.h
  45. entry_callback.idl
  46. entry_heap_vector.h
  47. entry_sync.cc
  48. entry_sync.h
  49. entry_sync.idl
  50. error_callback.idl
  51. file_callback.idl
  52. file_entry.cc
  53. file_entry.h
  54. file_entry.idl
  55. file_entry_sync.cc
  56. file_entry_sync.h
  57. file_entry_sync.idl
  58. file_system_callback.idl
  59. file_system_callbacks.cc
  60. file_system_callbacks.h
  61. file_system_client.h
  62. file_system_dispatcher.cc
  63. file_system_dispatcher.h
  64. file_system_flags.idl
  65. file_writer.cc
  66. file_writer.h
  67. file_writer.idl
  68. file_writer_base.cc
  69. file_writer_base.h
  70. file_writer_callback.idl
  71. file_writer_sync.cc
  72. file_writer_sync.h
  73. file_writer_sync.idl
  74. file_writer_test.cc
  75. html_input_element_file_system.cc
  76. html_input_element_file_system.h
  77. html_input_element_file_system.idl
  78. local_file_system.cc
  79. local_file_system.h
  80. local_file_system_client.cc
  81. local_file_system_client.h
  82. metadata.h
  83. metadata.idl
  84. metadata_callback.idl
  85. OWNERS
  86. README.md
  87. shared_worker_global_scope_file_system.idl
  88. sync_callback_helper.h
  89. window_file_system.idl
  90. worker_global_scope_file_system.cc
  91. worker_global_scope_file_system.h
third_party/blink/renderer/modules/filesystem/README.md

FileSystem API

This directory contains the renderer side implementation of various filesystem related APIs.

Related directories

//storage/browser/fileapi/ contains part of the browser side implementation, while //content/browser/fileapi/ contains the rest of the browser side implementation and blink/public/mojom/filesystem contains the mojom interfaces for these APIs.

APIs In this directory

File and Directory Entries API

First of all this directory contains the implementation of the Entries API. This API consists of types to expose read-only access to file and directory entries to the web, primarily used by drag-and-drop and <input type=file>. Our implementation doesn't match the interface names of the spec, but otherwise should be pretty close to the spec.

TODO(mek): More details

File API: Directories and FileSystem

Secondly this directory contains the implementation of something similar to the deprecated w3c file-system-api. This API is very similar to the previous Entries API, but it also adds support for writing and modifying to files and directories, as well as a way to get access to a origin scoped sandboxed filesystem.

TODO(mek): More details

Writable Files

Finally this directory contains the implementation of the new and still under development Writable Files API. This API is mostly implemented on top of the same backend as the previous two APIs, but hopes to eventually replace both of those, while also adding new functionality.

It consists of the following parts:

  • FileSystemBaseHandle, FileSystemFileHandle and FileSystemDirectoryHandle: these interfaces mimic the old Entry interfaces (and inherit from EntryBase to share as much of the implementation as possible), but expose a more modern promisified API.

  • getSystemDirectory: An entry point (exposed via FileSystemDirectoryHandle) that today only gives access to the same sandboxed filesystem as what was available through the old API. In the future this could get extended to add support for other directories as well.

  • FileSystemWriter: a more modern API with similar functionality to the old FileWriter API. The implementation of this actually does make use of a different mojom interface than the old API. But since the functionality is mostly the same, hopefully we will be able to migrate the old implementation to the new mojom API as well.

  • chooseFileSystemEntries: An entry point, currently on window, that lets a website pop-up a file picker, prompting the user to select one or more files or directories, to which the website than gets access.

Since the Handle interfaces are based on the implementation of the Entry interfaces, internally and across IPC these are still represented by filesystem:// URLs. Hopefully in the future we will be able to change this and turn it into a more capabilities based API (where having a mojo handle gives you access to specific files or directories), as with the current implementation it is very hard to properly support transferring handles to other processes via postMessage (which is something we do want to support in the future).