|
| | Posix_File (int fd, Open_Mode mode) |
| |
| | Posix_File (const char *file_name, Open_Mode mode) |
| |
| | Posix_File (const std::string &file_name, Open_Mode mode) |
| |
| | Posix_FD (int fd, Open_Mode mode) |
| |
| | Posix_FD (const char *file_name, Open_Mode mode) |
| |
| | Posix_FD (const Posix_FD &)=delete |
| |
| Posix_FD & | operator= (const Posix_FD &)=delete |
| |
| int64_t | get_size () const override |
| | Get the size of the file, or -1 if it is unknown.
|
| |
| size_t | pread (char *buffer, size_t size, int64_t offset) const override |
| | Read a range of bytes.
|
| |
| void | pwrite (const char *buffer, size_t size, int64_t offset) override |
| | Write a range of bytes. Extend file size if necessary.
|
| |
| void | sync () override |
| | Write data durably (including file-size change)
|
| |
| void | shared_lock (int64_t start, int64_t size) override |
| | Lock a range of bytes for reading (prevents writes, not reads)
|
| |
| void | exclusive_lock (int64_t start, int64_t size) override |
| | Lock a range of bytes for writing (prevents both writes and reads)
|
| |
| void | unlock (int64_t start, int64_t size) noexcept override |
| | Remove a lock. The range should match the range of a corresponding lock.
|
| |
| | ~Posix_FD () override |
| |
| | Abstract_File (Open_Mode mode) |
| |
| bool | is_shared () const noexcept |
| |
| bool | is_readonly () const noexcept |
| |
| Open_Mode | get_mode () const noexcept |
| |
| virtual void | datasync () |
| | Write data durably (no file-size change)
|
| |
| void | exclusive_lock_tail () |
| |
| void | unlock_tail () noexcept |
| |
| void | exclusive_lock_head () |
| |
| void | shared_lock_head () |
| |
| void | unlock_head () noexcept |
| |
| std::string | read_blob (Blob blob) const |
| |
| virtual void | copy_to (Abstract_File &destination, int64_t start, int64_t size) const |
| |
| virtual bool | equal_to (const Abstract_File &destination, int64_t from, int64_t until) const |
| |
| void | copy_to (Abstract_File &destination) const |
| |
| virtual | ~Abstract_File ()=default |
| |
Definition at line 58 of file Posix_File.h.