Sha256: 607ddb296016983f10facd8ac402ac28b1d6950434a2a6d5d1e11b0386ac070f

Contents?: true

Size: 1.59 KB

Versions: 34

Compression:

Stored size: 1.59 KB

Contents

// Copyright(c) 2015-present, Gabi Melman & spdlog contributors.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)

#pragma once

#include <spdlog/common.h>
#include <tuple>

namespace spdlog {
namespace details {

// Helper class for file sinks.
// When failing to open a file, retry several times(5) with a delay interval(10 ms).
// Throw spdlog_ex exception on errors.

class SPDLOG_API file_helper
{
public:
    explicit file_helper() = default;

    file_helper(const file_helper &) = delete;
    file_helper &operator=(const file_helper &) = delete;
    ~file_helper();

    void open(const filename_t &fname, bool truncate = false);
    void reopen(bool truncate);
    void flush();
    void close();
    void write(const memory_buf_t &buf);
    size_t size() const;
    const filename_t &filename() const;

    //
    // return file path and its extension:
    //
    // "mylog.txt" => ("mylog", ".txt")
    // "mylog" => ("mylog", "")
    // "mylog." => ("mylog.", "")
    // "/dir1/dir2/mylog.txt" => ("/dir1/dir2/mylog", ".txt")
    //
    // the starting dot in filenames is ignored (hidden files):
    //
    // ".mylog" => (".mylog". "")
    // "my_folder/.mylog" => ("my_folder/.mylog", "")
    // "my_folder/.mylog.txt" => ("my_folder/.mylog", ".txt")
    static std::tuple<filename_t, filename_t> split_by_extension(const filename_t &fname);

private:
    const int open_tries_ = 5;
    const int open_interval_ = 10;
    std::FILE *fd_{nullptr};
    filename_t filename_;
};
} // namespace details
} // namespace spdlog

#ifdef SPDLOG_HEADER_ONLY
#include "file_helper-inl.h"
#endif

Version data entries

34 entries across 34 versions & 1 rubygems

Version Path
couchbase-3.2.0-universal-darwin-20 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.2.0 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.1.1 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.1.1-universal-darwin-20 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.1.0 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.0.3 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.0.3-universal-darwin-20 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.0.2 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.0.1-universal-darwin-19 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.0.1 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.0.0-universal-darwin-19 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.0.0 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.0.0.beta.1-universal-darwin-19 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.0.0.beta.1 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.0.0.alpha.5-x86_64-linux ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.0.0.alpha.5-universal-darwin-19 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.0.0.alpha.5-x86_64-darwin-19 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.0.0.alpha.5 ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.0.0.alpha.4-x86_64-linux ext/third_party/spdlog/include/spdlog/details/file_helper.h
couchbase-3.0.0.alpha.4-x86_64-darwin-19 ext/third_party/spdlog/include/spdlog/details/file_helper.h