Drop the AGPL license in favor of a source-available license. See the blog post [1] for details. [1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
31 lines
972 B
C++
31 lines
972 B
C++
/*
|
|
* Modified by ScyllaDB.
|
|
* Copyright 2015-present ScyllaDB.
|
|
*/
|
|
|
|
/*
|
|
* SPDX-License-Identifier: (LicenseRef-ScyllaDB-Source-Available-1.0 and Apache-2.0)
|
|
*/
|
|
|
|
#include "streaming/stream_session_state.hh"
|
|
#include <map>
|
|
#include "seastarx.hh"
|
|
|
|
namespace streaming {
|
|
|
|
static const std::map<stream_session_state, std::string_view> stream_session_state_names = {
|
|
{stream_session_state::INITIALIZED, "INITIALIZED"},
|
|
{stream_session_state::PREPARING, "PREPARING"},
|
|
{stream_session_state::STREAMING, "STREAMING"},
|
|
{stream_session_state::WAIT_COMPLETE, "WAIT_COMPLETE"},
|
|
{stream_session_state::COMPLETE, "COMPLETE"},
|
|
{stream_session_state::FAILED, "FAILED"},
|
|
};
|
|
|
|
}
|
|
|
|
auto fmt::formatter<streaming::stream_session_state>::format(streaming::stream_session_state s, fmt::format_context& ctx) const
|
|
-> decltype(ctx.out()) {
|
|
return fmt::format_to(ctx.out(), "{}", streaming::stream_session_state_names.at(s));
|
|
}
|