fs_data.cpp 4.31 KiB
Newer Older
  Copyright 2018-2022, Barcelona Supercomputing Center (BSC), Spain
  Copyright 2015-2022, Johannes Gutenberg Universitaet Mainz, Germany

  This software was partially supported by the
  EC H2020 funded project NEXTGenIO (Project ID: 671951, www.nextgenio.eu).

  This software was partially supported by the
  ADA-FS project under the SPPEXA project funded by the DFG.

  This file is part of GekkoFS.

  GekkoFS is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  GekkoFS is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with GekkoFS.  If not, see <https://www.gnu.org/licenses/>.

  SPDX-License-Identifier: GPL-3.0-or-later
*/

#include <daemon/backend/metadata/db.hpp>

Marc Vef's avatar
Marc Vef committed

Marc Vef's avatar
Marc Vef committed
namespace gkfs::daemon {
Marc Vef's avatar
Marc Vef committed
// getter/setter

const std::shared_ptr<spdlog::logger>&
FsData::spdlogger() const {
Marc Vef's avatar
Marc Vef committed
    return spdlogger_;
}

void
FsData::spdlogger(const std::shared_ptr<spdlog::logger>& spdlogger) {
Marc Vef's avatar
Marc Vef committed
}

const std::shared_ptr<gkfs::metadata::MetadataDB>&
FsData::mdb() const {
void
FsData::mdb(const std::shared_ptr<gkfs::metadata::MetadataDB>& mdb) {
void
FsData::close_mdb() {
const std::shared_ptr<gkfs::data::ChunkStorage>&
FsData::storage() const {
    return storage_;
}

void
FsData::storage(const std::shared_ptr<gkfs::data::ChunkStorage>& storage) {
    storage_ = storage;
}

const std::string&
FsData::rootdir() const {
Marc Vef's avatar
Marc Vef committed
    return rootdir_;
}

void
FsData::rootdir(const std::string& rootdir) {
Marc Vef's avatar
Marc Vef committed
}

const std::string&
FsData::rootdir_suffix() const {
    return rootdir_suffix_;
}

void
FsData::rootdir_suffix(const std::string& rootdir_suffix) {
    FsData::rootdir_suffix_ = rootdir_suffix;
}

const std::string&
FsData::mountdir() const {
void
FsData::mountdir(const std::string& mountdir) {
const std::string&
FsData::metadir() const {
void
FsData::metadir(const std::string& metadir) {
    FsData::metadir_ = metadir;
}

Ramon Nou's avatar
Ramon Nou committed
std::string_view
FsData::dbbackend() const {
    return dbbackend_;
}

void
FsData::dbbackend(const std::string& dbbackend) {
    FsData::dbbackend_ = dbbackend;
}

const std::string&
FsData::rpc_protocol() const {
void
FsData::rpc_protocol(const std::string& rpc_protocol) {
const std::string&
FsData::bind_addr() const {
    return bind_addr_;
Marc Vef's avatar
Marc Vef committed
}

void
FsData::bind_addr(const std::string& addr) {
    bind_addr_ = addr;
const std::string&
FsData::hosts_file() const {
    return hosts_file_;
void
FsData::hosts_file(const std::string& lookup_file) {
    hosts_file_ = lookup_file;
bool
FsData::use_auto_sm() const {
void
FsData::use_auto_sm(bool use_auto_sm) {
bool
FsData::atime_state() const {
void
FsData::atime_state(bool atime_state) {
    FsData::atime_state_ = atime_state;
}

bool
FsData::mtime_state() const {
void
FsData::mtime_state(bool mtime_state) {
    FsData::mtime_state_ = mtime_state;
}

bool
FsData::ctime_state() const {
void
FsData::ctime_state(bool ctime_state) {
    FsData::ctime_state_ = ctime_state;
}

bool
FsData::link_cnt_state() const {
void
FsData::link_cnt_state(bool link_cnt_state) {
    FsData::link_cnt_state_ = link_cnt_state;
}

bool
FsData::blocks_state() const {
void
FsData::blocks_state(bool blocks_state) {
    FsData::blocks_state_ = blocks_state;
}

Ramon Nou's avatar
Ramon Nou committed
unsigned long long
FsData::parallax_size_md() const {
    return parallax_size_md_;
FsData::parallax_size_md(unsigned int size_md) {
    FsData::parallax_size_md_ = static_cast<unsigned long long>(
            size_md * 1024ull * 1024ull * 1024ull);
Marc Vef's avatar
Marc Vef committed
} // namespace gkfs::daemon