sapling/eden/fs/fuse/DirList.h
Xavier Deguillard a29d465ee8 fs: fix license header
Summary:
With Facebook having been renamed Meta Platforms, we need to change the license
headers.

Reviewed By: fanzeyi

Differential Revision: D33407812

fbshipit-source-id: b11bfbbf13a48873f0cea75f212cc7b07a68fb2e
2022-01-04 15:00:07 -08:00

55 lines
1.2 KiB
C++

/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#pragma once
#include <folly/Range.h>
#include <sys/stat.h>
#include <memory>
#include "eden/fs/utils/DirType.h"
namespace facebook::eden {
/**
* Helper for populating directory listings.
*/
class FuseDirList {
std::unique_ptr<char[]> buf_;
char* end_;
char* cur_;
public:
struct ExtractedEntry {
std::string name;
ino_t inode;
dtype_t type;
off_t offset;
};
explicit FuseDirList(size_t maxSize);
FuseDirList(const FuseDirList&) = delete;
FuseDirList& operator=(const FuseDirList&) = delete;
FuseDirList(FuseDirList&&) = default;
FuseDirList& operator=(FuseDirList&&) = 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);
folly::StringPiece getBuf() const;
/**
* Helper function that parses an accumulated buffer back into its constituent
* parts.
*/
std::vector<ExtractedEntry> extract() const;
};
} // namespace facebook::eden