sapling/eden/fs/inodes/TreeInodeDirHandle.h
Facebook Github Bot 5 2eeea32117 Initial commit
fbshipit-source-id: 2bcefbd0cd127cc5ea982e074ea6819d7aac3d7a
2016-05-12 14:09:13 -07:00

35 lines
929 B
C++

/*
* Copyright (c) 2016, 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 "TreeInode.h"
#include "eden/fuse/DirHandle.h"
namespace facebook {
namespace eden {
class TreeInodeDirHandle : public fusell::DirHandle {
public:
explicit TreeInodeDirHandle(std::shared_ptr<TreeInode> inode);
folly::Future<fusell::DirList> readdir(fusell::DirList&& list, off_t off)
override;
folly::Future<fusell::Dispatcher::Attr> setattr(
const struct stat& attr,
int to_set) override;
folly::Future<folly::Unit> fsyncdir(bool datasync) override;
folly::Future<fusell::Dispatcher::Attr> getattr() override;
private:
std::shared_ptr<TreeInode> inode_;
};
}
}