sapling/eden/fs/inodes/FileHandle.h
Adam Simpkins 251da81f36 update all copyright statements to "2016-present"
Summary:
Update copyright statements to "2016-present".  This makes our updated lint
rules happy and complies with the recommended license header statement.

Reviewed By: wez, bolinfest

Differential Revision: D4433594

fbshipit-source-id: e9ecb1c1fc66e4ec49c1f046c6a98d425b13bc27
2017-01-20 22:03:02 -08:00

50 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/inodes/InodePtr.h"
#include "eden/fuse/FileHandle.h"
namespace facebook {
namespace eden {
class Blob;
class FileData;
class FileInode;
class LocalStore;
class FileHandle : public fusell::FileHandle {
public:
explicit FileHandle(
FileInodePtr inode,
std::shared_ptr<FileData> data,
int flags);
~FileHandle();
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_;
std::shared_ptr<FileData> data_;
int openFlags_;
};
}
}