mergerfs/src/enum.hpp
Antonio SJ Musumeci 07e7d76b7c Add support for file io passthrough
If using Linux 6.9 or above and enabled (passthrough=true) files
opened or created will use the FUSE passthrough feature.

If direct-io=true / cache.files=off it will override passthrough. If
direct-io-allow-mmap is enabled only mmap will passthrough.

HANDLE_KILLPRIV and V2 are enabled now by default to remove the
kernel's need to issue getattr and getxattr requests.

moveonenospc will not work when leveraging passthrough.
2024-04-09 20:11:00 -05:00

88 lines
1.6 KiB
C++

/*
ISC License
Copyright (c) 2019, Antonio SJ Musumeci <trapexit@spawn.link>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#pragma once
#include "tofrom_string.hpp"
#include <string>
template<typename E>
class Enum : public ToFromString
{
public:
typedef E ENUM;
public:
Enum<ENUM>()
{
}
Enum<ENUM>(const ENUM data_)
: _data(data_)
{
}
public:
Enum<ENUM>&
operator=(const ENUM data_)
{
_data = data_;
return *this;
}
Enum<ENUM>&
operator=(const std::string &s_)
{
from_string(s_);
return *this;
}
public:
operator ENUM() const
{
return _data;
}
ENUM
operator+() const
{
return _data;
}
public:
bool operator==(const ENUM data_) const
{
return (_data == data_);
}
public:
std::string to_string() const final;
int from_string(const std::string &) final;
public:
int to_int() const
{
return (int)_data;
}
private:
ENUM _data;
};