blob: 452e4ca9565e3face5a6ca5a697465b7e78299dc [file] [log] [blame]
// Copyright 2021 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef F2FS_FILE_H_
#define F2FS_FILE_H_
namespace f2fs {
class File : public VnodeF2fs {
public:
explicit File(F2fs* fs);
explicit File(F2fs* fs, ino_t ino);
~File() = default;
#if 0 // porting needed
// int F2fsVmPageMkwrite(vm_area_struct* vma, vm_fault* vmf);
#endif
int NeedToSyncDir(f2fs_sb_info* sbi, VnodeF2fs* vnode);
zx_status_t SyncFile(loff_t start, loff_t end, int datasync);
#if 0 // porting needed
// int F2fsFileMmap(/*file *file,*/ vm_area_struct* vma);
// void FillZero(pgoff_t index, loff_t start, loff_t len);
// int PunchHole(loff_t offset, loff_t len, int mode);
// int ExpandInodeData(loff_t offset, off_t len, int mode);
// long F2fsFallocate(int mode, loff_t offset, loff_t len);
// uint32_t F2fsMaskFlags(umode_t mode, uint32_t flags);
// long F2fsIoctl(/*file *filp,*/ unsigned int cmd, uint64_t arg);
#endif
zx_status_t Read(void* data, size_t len, size_t off, size_t* out_actual);
zx_status_t Write(const void* data, size_t len, size_t offset, size_t* out_actual);
};
} // namespace f2fs
#endif // F2FS_FILE_H_