mirror of
https://github.com/facebookincubator/mvfst.git
synced 2025-04-18 17:24:03 +03:00
Summary: As in title. Reviewed By: kvtsoy Differential Revision: D72543602 fbshipit-source-id: 6190b7fa541b1535eab565bac3da159c85781c0e
120 lines
3.0 KiB
C++
120 lines
3.0 KiB
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <folly/Range.h>
|
|
#include <quic/QuicConstants.h>
|
|
#include <quic/common/Optional.h>
|
|
#include <stdexcept>
|
|
#include <string>
|
|
|
|
#include <quic/QuicConstants.h>
|
|
#include <quic/common/Variant.h>
|
|
|
|
namespace quic {
|
|
|
|
#define QUIC_ERROR_CODE(F, ...) \
|
|
F(ApplicationErrorCode, __VA_ARGS__) \
|
|
F(LocalErrorCode, __VA_ARGS__) \
|
|
F(TransportErrorCode, __VA_ARGS__)
|
|
|
|
DECLARE_VARIANT_TYPE(QuicErrorCode, QUIC_ERROR_CODE)
|
|
|
|
struct QuicError {
|
|
QuicError(QuicErrorCode codeIn, std::string&& messageIn)
|
|
: code(codeIn), message(std::move(messageIn)) {}
|
|
|
|
explicit QuicError(QuicErrorCode codeIn) : code(codeIn) {}
|
|
|
|
bool operator==(const QuicError& other) const {
|
|
return code == other.code && message == other.message;
|
|
}
|
|
|
|
QuicErrorCode code;
|
|
std::string message;
|
|
};
|
|
|
|
class QuicTransportException : public std::runtime_error {
|
|
public:
|
|
explicit QuicTransportException(
|
|
const std::string& msg,
|
|
TransportErrorCode errCode);
|
|
|
|
explicit QuicTransportException(const char* msg, TransportErrorCode errCode);
|
|
|
|
TransportErrorCode errorCode() const noexcept {
|
|
return errCode_;
|
|
}
|
|
|
|
private:
|
|
TransportErrorCode errCode_;
|
|
};
|
|
|
|
class QuicInternalException : public std::runtime_error {
|
|
public:
|
|
explicit QuicInternalException(
|
|
const std::string& msg,
|
|
LocalErrorCode errorCode);
|
|
explicit QuicInternalException(const char* msg, LocalErrorCode errCode);
|
|
explicit QuicInternalException(
|
|
folly::StringPiece msg,
|
|
LocalErrorCode errCode);
|
|
|
|
LocalErrorCode errorCode() const noexcept {
|
|
return errorCode_;
|
|
}
|
|
|
|
private:
|
|
LocalErrorCode errorCode_;
|
|
};
|
|
|
|
class QuicApplicationException : public std::runtime_error {
|
|
public:
|
|
explicit QuicApplicationException(
|
|
const std::string& msg,
|
|
ApplicationErrorCode errorCode);
|
|
explicit QuicApplicationException(
|
|
const char* msg,
|
|
ApplicationErrorCode errorCode);
|
|
|
|
ApplicationErrorCode errorCode() const noexcept {
|
|
return errorCode_;
|
|
}
|
|
|
|
private:
|
|
ApplicationErrorCode errorCode_;
|
|
};
|
|
|
|
/**
|
|
* Convert the error code to a string.
|
|
*/
|
|
folly::StringPiece toString(LocalErrorCode code);
|
|
|
|
// TODO: There's some dynamic string construction happening in this (related to
|
|
// CryptoError toString). We should eventually figure out a way to avoid the
|
|
// copy on return here as well.
|
|
std::string toString(TransportErrorCode code);
|
|
std::string toString(QuicErrorCode code);
|
|
std::string toString(const QuicError& error);
|
|
|
|
std::string cryptoErrorToString(TransportErrorCode code);
|
|
std::vector<TransportErrorCode> getAllTransportErrorCodes();
|
|
std::vector<LocalErrorCode> getAllLocalErrorCodes();
|
|
|
|
inline std::ostream& operator<<(std::ostream& os, const QuicErrorCode& error) {
|
|
os << toString(error);
|
|
return os;
|
|
}
|
|
|
|
inline std::ostream& operator<<(std::ostream& os, const QuicError& error) {
|
|
os << toString(error);
|
|
return os;
|
|
}
|
|
|
|
} // namespace quic
|