diff options
author | Devtools Arcadia <arcadia-devtools@yandex-team.ru> | 2022-02-07 18:08:42 +0300 |
---|---|---|
committer | Devtools Arcadia <arcadia-devtools@mous.vla.yp-c.yandex.net> | 2022-02-07 18:08:42 +0300 |
commit | 1110808a9d39d4b808aef724c861a2e1a38d2a69 (patch) | |
tree | e26c9fed0de5d9873cce7e00bc214573dc2195b7 /library/cpp/monlib/service/format.h | |
download | ydb-1110808a9d39d4b808aef724c861a2e1a38d2a69.tar.gz |
intermediate changes
ref:cde9a383711a11544ce7e107a78147fb96cc4029
Diffstat (limited to 'library/cpp/monlib/service/format.h')
-rw-r--r-- | library/cpp/monlib/service/format.h | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/library/cpp/monlib/service/format.h b/library/cpp/monlib/service/format.h new file mode 100644 index 0000000000..0044b586b1 --- /dev/null +++ b/library/cpp/monlib/service/format.h @@ -0,0 +1,86 @@ +#pragma once + +#include <library/cpp/monlib/encode/format.h> + +#include <util/string/ascii.h> +#include <util/generic/yexception.h> +#include <util/generic/typetraits.h> + +namespace NMonitoring { + namespace NPrivate { + Y_HAS_MEMBER(Name, Name); + Y_HAS_MEMBER(second, Second); + } // namespace NPrivate + + template <typename TRequest> + ECompression ParseCompression(const TRequest& req) { + auto&& headers = req.GetHeaders(); + + constexpr auto isPlainPair = NPrivate::THasSecond<std::decay_t<decltype(*headers.begin())>>::value; + + auto it = FindIf(std::begin(headers), std::end(headers), + [=] (const auto& h) { + if constexpr (NPrivate::THasName<std::decay_t<decltype(h)>>::value) { + return AsciiCompareIgnoreCase(h.Name(), TStringBuf("accept-encoding")) == 0; + } else if (isPlainPair) { + return AsciiCompareIgnoreCase(h.first, TStringBuf("accept-encoding")) == 0; + } + }); + + if (it == std::end(headers)) { + return NMonitoring::ECompression::IDENTITY; + } + + NMonitoring::ECompression val{}; + if constexpr (isPlainPair) { + val = CompressionFromAcceptEncodingHeader(it->second); + } else { + val = CompressionFromAcceptEncodingHeader(it->Value()); + } + + return val != NMonitoring::ECompression::UNKNOWN + ? val + : NMonitoring::ECompression::IDENTITY; + } + + template <typename TRequest> + NMonitoring::EFormat ParseFormat(const TRequest& req) { + auto&& formatStr = req.GetParams() + .Get(TStringBuf("format")); + + if (!formatStr.empty()) { + if (formatStr == TStringBuf("SPACK")) { + return EFormat::SPACK; + } else if (formatStr == TStringBuf("TEXT")) { + return EFormat::TEXT; + } else if (formatStr == TStringBuf("JSON")) { + return EFormat::JSON; + } else { + ythrow yexception() << "unknown format: " << formatStr << ". Only spack is supported here"; + } + } + + auto&& headers = req.GetHeaders(); + constexpr auto isPlainPair = NPrivate::THasSecond<std::decay_t<decltype(*headers.begin())>>::value; + + auto it = FindIf(std::begin(headers), std::end(headers), + [=] (const auto& h) { + if constexpr (NPrivate::THasName<std::decay_t<decltype(h)>>::value) { + return AsciiCompareIgnoreCase(h.Name(), TStringBuf("accept")) == 0; + } else if (isPlainPair) { + return AsciiCompareIgnoreCase(h.first, TStringBuf("accept")) == 0; + } + }); + + if (it != std::end(headers)) { + if constexpr (isPlainPair) { + return FormatFromAcceptHeader(it->second); + } else { + return FormatFromAcceptHeader(it->Value()); + } + } + + return EFormat::UNKNOWN; + } + +} // namespace NMonitoring |