sapling/eden/fuse/InodeDispatcher.h

128 lines
4.2 KiB
C
Raw Normal View History

/*
* 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 <folly/FBString.h>
#include <folly/SharedMutex.h>
#include <mutex>
#include <shared_mutex>
#include <unordered_map>
#include "Dispatcher.h"
#include "InodeNameManager.h"
namespace facebook {
namespace eden {
namespace fusell {
class DirInode;
class FileInode;
class InodeBase;
class MountPoint;
/**
* A dispatcher that dispatches to Inode instances
*/
class InodeDispatcher : public Dispatcher {
std::shared_ptr<DirInode> root_;
std::unordered_map<fuse_ino_t, std::shared_ptr<InodeBase>> inodes_;
mutable folly::SharedMutex lock_;
// The MountPoint that owns this InodeDispatcher.
MountPoint* const mountPoint_;
public:
/*
* Create an InodeDispatcher, without a root node yet.
* setRootInode() must be called before using this dispatcher.
*/
explicit InodeDispatcher(MountPoint* mountPoint);
/*
* Create an InodeDispatcher using the specified root inode object.
*/
explicit InodeDispatcher(
MountPoint* mountPoint,
std::shared_ptr<DirInode> rootInode);
std::shared_ptr<InodeBase> getInode(fuse_ino_t, bool mustExist = true) const;
std::shared_ptr<InodeBase> lookupInode(fuse_ino_t) const;
std::shared_ptr<DirInode> getDirInode(fuse_ino_t,
bool mustExist = true) const;
std::shared_ptr<FileInode> getFileInode(fuse_ino_t,
bool mustExist = true) const;
/*
* Set the root inode.
*
* This method should be used to set the root inode on a default-constructed
* InodeDispatcher. It may only be called once, and it must be called before
* using the InodeDispatcher.
*/
void setRootInode(std::shared_ptr<DirInode> inode);
void recordInode(std::shared_ptr<InodeBase> inode);
void initConnection(fuse_conn_info& conn) override;
folly::Future<Attr> getattr(fuse_ino_t ino) override;
folly::Future<Attr> setattr(fuse_ino_t ino,
const struct stat& attr,
int to_set) override;
folly::Future<DirHandle*> opendir(fuse_ino_t ino,
const struct fuse_file_info& fi) override;
folly::Future<fuse_entry_param> lookup(
fuse_ino_t parent,
PathComponentPiece name) override;
folly::Future<folly::Unit> forget(fuse_ino_t ino,
unsigned long nlookup) override;
folly::Future<FileHandle*> open(fuse_ino_t ino,
const struct fuse_file_info& fi) override;
folly::Future<std::string> readlink(fuse_ino_t ino) override;
folly::Future<fuse_entry_param> mknod(
fuse_ino_t parent,
PathComponentPiece name,
mode_t mode,
dev_t rdev) override;
folly::Future<fuse_entry_param>
mkdir(fuse_ino_t parent, PathComponentPiece name, mode_t mode) override;
folly::Future<folly::Unit> unlink(fuse_ino_t parent, PathComponentPiece name)
override;
folly::Future<folly::Unit> rmdir(fuse_ino_t parent, PathComponentPiece name)
override;
folly::Future<fuse_entry_param> symlink(
PathComponentPiece link,
fuse_ino_t parent,
PathComponentPiece name) override;
folly::Future<folly::Unit> rename(
fuse_ino_t parent,
PathComponentPiece name,
fuse_ino_t newparent,
PathComponentPiece newname) override;
folly::Future<fuse_entry_param> link(
fuse_ino_t ino,
fuse_ino_t newparent,
PathComponentPiece newname) override;
folly::Future<Dispatcher::Create> create(
fuse_ino_t parent,
PathComponentPiece name,
mode_t mode,
int flags) override;
folly::Future<std::string> getxattr(fuse_ino_t ino, folly::StringPiece name)
override;
folly::Future<std::vector<std::string>> listxattr(fuse_ino_t ino) override;
/** Compute a fuse_entry_param */
fuse_entry_param computeEntryParam(
const Dispatcher::Attr& attr,
std::shared_ptr<InodeNameManager::Node> node);
};
}
}
}