sapling/eden/fs/inodes/FileHandle.h
Wez Furlong 9f07485239 add code to serialize FileHandleMap
Summary:
The serialized data for each file handle needs to be enough
to re-construct the handle when we load it into a new process later
on.  We need the inode number, the file handle number that we communicated
to the kernel and a flag to let us know whether it is a file or a dir.

Note that the file handle allocation strategy already accomodates the
idea of migrating to a new process; we don't need to serialize anything
like a next file handle id number.

This doesn't implement instantiating the handles from the loaded state,
it is just the plumbing for saving and loading that state information.

Reviewed By: bolinfest

Differential Revision: D5733079

fbshipit-source-id: 8fb8afb8ae9694d013ce7a4a82c31bc876ed33c9
2017-08-30 19:20:23 -07:00

45 lines
1.3 KiB
C++

/*
* Copyright (c) 2016-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*
*/
#pragma once
#include "eden/fs/fuse/FileHandle.h"
#include "eden/fs/inodes/InodePtr.h"
namespace facebook {
namespace eden {
class Blob;
class FileInode;
class LocalStore;
class FileHandle : public fusell::FileHandle {
public:
explicit FileHandle(FileInodePtr inode);
~FileHandle() override {}
fuse_ino_t getInodeNumber() override;
folly::Future<fusell::Dispatcher::Attr> getattr() override;
folly::Future<fusell::Dispatcher::Attr> setattr(
const struct stat& attr,
int to_set) override;
bool preserveCache() const override;
bool isSeekable() const override;
folly::Future<fusell::BufVec> read(size_t size, off_t off) override;
folly::Future<size_t> write(fusell::BufVec&& buf, off_t off) override;
folly::Future<size_t> write(folly::StringPiece data, off_t off) override;
folly::Future<folly::Unit> flush(uint64_t lock_owner) override;
folly::Future<folly::Unit> fsync(bool datasync) override;
private:
FileInodePtr inode_;
};
}
}