mirror of https://github.com/trapexit/mergerfs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
849 B
38 lines
849 B
#pragma once
|
|
|
|
#include "follow_symlinks_enum.hpp"
|
|
|
|
#include "fs_path.hpp"
|
|
#include "branches.hpp"
|
|
#include "int_types.h"
|
|
|
|
#include "fuse.h"
|
|
|
|
#include <string_view>
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
|
|
|
|
namespace Func2
|
|
{
|
|
class StatxBase
|
|
{
|
|
public:
|
|
StatxBase() {}
|
|
~StatxBase() {}
|
|
|
|
public:
|
|
virtual std::string_view name() const = 0;
|
|
|
|
public:
|
|
virtual int operator()(const Branches &branches,
|
|
const fs::path &fusepath,
|
|
const u32 flags_,
|
|
const u32 mask_,
|
|
struct fuse_statx *st,
|
|
const FollowSymlinksEnum follow_symlinks,
|
|
const s64 symlinkify_timeout) = 0;
|
|
};
|
|
}
|