sapling/eden/fs/fuse/DirList.h
Chad Austin 8b9261f2a1 run clang-format across all C++ files
Summary:
Per discussion with bolinfest, this brings Eden in line with clang-format.

This diff was generated with `find . \( -iname '*.cpp' -o -iname '*.h' \) -exec bash -c "yes | arc lint {}" \;`

Reviewed By: bolinfest

Differential Revision: D6232695

fbshipit-source-id: d54942bf1c69b5b0dcd4df629f1f2d5538c9e28c
2017-11-03 16:02:03 -07:00

52 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 <folly/Range.h>
#include <sys/stat.h>
#include "eden/fs/utils/DirType.h"
namespace facebook {
namespace eden {
namespace fusell {
/**
* Helper for populating directory listings.
*/
class DirList {
std::unique_ptr<char[]> buf_;
char* end_;
char* cur_;
public:
explicit DirList(size_t maxSize);
DirList(const DirList&) = delete;
DirList& operator=(const DirList&) = delete;
DirList(DirList&&) = default;
DirList& operator=(DirList&&) = default;
/**
* Add a new dirent to the list.
* Returns true on success or false if the list is full.
*/
bool add(folly::StringPiece name, ino_t inode, dtype_t type, off_t off);
/**
* Variant of add() which takes a struct stat.
* Only st.st_ino and st.st_mode need be filled out.
*/
bool add(folly::StringPiece name, const struct stat& st, off_t off);
folly::StringPiece getBuf() const;
};
} // namespace fusell
} // namespace eden
} // namespace facebook