mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-26 19:35:12 +00:00
before this change, we rely on the default-generated fmt::formatter
created from operator<<, but fmt v10 dropped the default-generated
formatter.
in this change, `fmt::formatter<T>` is added for classes derived from
`malformed_sstable_exception`, where `T` is the class type derived from
`malformed_sstable_exception`.
this change is implemented to be backward compatible with {fmt} < 10.
Refs #13245
Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>
72 lines
2.1 KiB
C++
72 lines
2.1 KiB
C++
/*
|
|
* Copyright (C) 2015-present ScyllaDB
|
|
*
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <concepts>
|
|
#include <seastar/core/print.hh>
|
|
|
|
#include "seastarx.hh"
|
|
|
|
namespace sstables {
|
|
class malformed_sstable_exception : public std::exception {
|
|
sstring _msg;
|
|
public:
|
|
malformed_sstable_exception(sstring msg, sstring filename)
|
|
: malformed_sstable_exception{format("{} in sstable {}", msg, filename)}
|
|
{}
|
|
malformed_sstable_exception(sstring s) : _msg(s) {}
|
|
const char *what() const noexcept {
|
|
return _msg.c_str();
|
|
}
|
|
};
|
|
|
|
struct bufsize_mismatch_exception : malformed_sstable_exception {
|
|
bufsize_mismatch_exception(size_t size, size_t expected) :
|
|
malformed_sstable_exception(format("Buffer improperly sized to hold requested data. Got: {:d}. Expected: {:d}", size, expected))
|
|
{}
|
|
};
|
|
|
|
class compaction_job_exception : public std::exception {
|
|
sstring _msg;
|
|
public:
|
|
compaction_job_exception(sstring msg) noexcept : _msg(std::move(msg)) {}
|
|
const char *what() const noexcept {
|
|
return _msg.c_str();
|
|
}
|
|
};
|
|
|
|
// Indicates that compaction was stopped via an external event,
|
|
// E.g. shutdown or api call.
|
|
class compaction_stopped_exception : public compaction_job_exception {
|
|
public:
|
|
compaction_stopped_exception(sstring ks, sstring cf, sstring reason)
|
|
: compaction_job_exception(format("Compaction for {}/{} was stopped due to: {}", ks, cf, reason)) {}
|
|
};
|
|
|
|
// Indicates that compaction hit an unrecoverable error
|
|
// and should be aborted.
|
|
class compaction_aborted_exception : public compaction_job_exception {
|
|
public:
|
|
compaction_aborted_exception(sstring ks, sstring cf, sstring reason)
|
|
: compaction_job_exception(format("Compaction for {}/{} was aborted due to: {}", ks, cf, reason)) {}
|
|
};
|
|
|
|
}
|
|
|
|
#if FMT_VERSION < 100000
|
|
// fmt v10 introduced formatter for std::exception
|
|
template <std::derived_from<sstables::malformed_sstable_exception> T>
|
|
struct fmt::formatter<T> : fmt::formatter<std::string_view> {
|
|
auto format(const T& e, fmt::format_context& ctx) const {
|
|
return fmt::format_to(ctx.out(), "{}", e.what());
|
|
}
|
|
};
|
|
#endif
|