sapling/eden/fs/fuse/DirHandle.h
Adam Simpkins a6ae3edab9 move eden/utils and eden/fuse into eden/fs
Summary:
This change makes it so that all of the C++ code related to the edenfs daemon
is now contained in the eden/fs subdirectory.

Reviewed By: bolinfest, wez

Differential Revision: D4889053

fbshipit-source-id: d0bd4774cc0bdb5d1d6b6f47d716ecae52391f37
2017-04-14 11:39:02 -07:00

41 lines
1014 B
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 "DirList.h"
#include "FileHandleBase.h"
namespace facebook {
namespace eden {
namespace fusell {
class DirHandle : public FileHandleBase {
public:
/**
* Read directory
*
* Send a DirList filled using DirList::add().
* Send an empty DirList on end of stream.
*/
virtual folly::Future<DirList> readdir(DirList&& list, off_t off) = 0;
/**
* Synchronize directory contents
*
* If the datasync parameter is non-zero, then only the directory
* contents should be flushed, not the meta data.
*
* @param datasync flag indicating if only data should be flushed
*/
virtual folly::Future<folly::Unit> fsyncdir(bool datasync) = 0;
};
}
}
}