2021-09-13 09:37:49 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2021 Haiku, Inc. All rights reserved.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Niels Sascha Reedijk, niels.reedijk@gmail.com
|
|
|
|
*
|
|
|
|
* Corresponds to:
|
|
|
|
* headers/private/netservices2/NetServicesDefs.h hrev?????
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#if __cplusplus >= 201703L
|
|
|
|
|
|
|
|
namespace BPrivate {
|
|
|
|
|
|
|
|
namespace Network {
|
|
|
|
|
|
|
|
|
2022-03-07 10:59:03 +03:00
|
|
|
/*!
|
|
|
|
\file NetServicesDefs.h
|
|
|
|
\ingroup netservices
|
|
|
|
\brief Various standardized error and notification types used by multiple protocols of the
|
|
|
|
Network Services Kit.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2021-09-13 09:37:49 +03:00
|
|
|
/*!
|
|
|
|
\class BUnsupportedProtocol
|
|
|
|
\ingroup netservices
|
|
|
|
\brief Error that indicates that the protocol is not supported.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn BUnsupportedProtocol::BUnsupportedProtocol(const char* origin,
|
|
|
|
BUrl url, BStringList supportedProtocols)
|
2022-03-07 10:59:03 +03:00
|
|
|
\brief Create a new unsupported protocol error.
|
2021-09-13 09:37:49 +03:00
|
|
|
|
|
|
|
\param origin A string representing where this error occured. It is advised
|
|
|
|
to initialize it to \c __PRETTY_FUNCTION__ by default.
|
|
|
|
\param url The URL object with the unsupported protocol.
|
|
|
|
\param supportedProtocols A list with the supported protocols.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn BUnsupportedProtocol::BUnsupportedProtocol(BString origin, BUrl url,
|
|
|
|
BStringList supportedProtocols)
|
|
|
|
\copydoc BUnsupportedProtocol(const char*, BUrl, BStringList)
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn virtual const char* BUnsupportedProtocol::Message() const noexcept override
|
|
|
|
\brief Access the string representation of the message.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn const BUrl& BUnsupportedProtocol::Url() const
|
|
|
|
\brief The URL that caused the issue.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn const BStringList& BUnsupportedProtocol::SupportedProtocols() const
|
|
|
|
\brief A list of protocols that are supported.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\class BInvalidUrl
|
|
|
|
\ingroup netservices
|
|
|
|
\brief Error that indicates that the URL is not valid.
|
|
|
|
|
|
|
|
This error is raised as an exception when the caller tries to pass a
|
|
|
|
\ref BUrl object that does not contain a valid URL.
|
|
|
|
|
|
|
|
\see \ref BUrl::IsValid()
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn BInvalidUrl::BInvalidUrl(const char* origin, BUrl url)
|
|
|
|
\brief Create a new error invalid URL error.
|
|
|
|
|
|
|
|
\param origin A string representing where this error occured. It is advised
|
|
|
|
to initialize it to \c __PRETTY_FUNCTION__ by default.
|
|
|
|
\param url The URL object that did not contain a valid URL.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn BInvalidUrl::BInvalidUrl(BString origin, BUrl url)
|
|
|
|
\copydoc BInvalidUrl::BInvalidUrl(const char* origin, BUrl url)
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn virtual const char* BInvalidUrl::Message() const noexcept override
|
|
|
|
\brief Access the string representation of the message.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn const BUrl& BInvalidUrl::Url() const
|
|
|
|
\brief The URL that caused the issue.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2022-03-07 10:59:03 +03:00
|
|
|
/*!
|
|
|
|
\class BNetworkRequestError
|
|
|
|
\ingroup netservices
|
|
|
|
\brief Error that indicates there was an issue executing the network request.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\enum BNetworkRequestError::ErrorType
|
|
|
|
\ingroup netservices
|
|
|
|
\brief A list of errors that can occur while executing a network request.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\var BNetworkRequestError::ErrorType BNetworkRequestError::HostnameError
|
|
|
|
\brief Error resolving the hostname.
|
|
|
|
|
|
|
|
\ref ErrorCode() will be set to contain the underlying error code.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\var BNetworkRequestError::ErrorType BNetworkRequestError::NetworkError
|
|
|
|
\brief The request was interrupted due to a network error.
|
|
|
|
|
|
|
|
This may occur when reading or writing fails due to an underlying network error, like an
|
|
|
|
unexpected closed connection.
|
|
|
|
|
|
|
|
\ref ErrorCode() will be set to contain the underlying error code.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\var BNetworkRequestError::ErrorType BNetworkRequestError::ProtocolError
|
|
|
|
\brief The request did not complete because the response did not conform to the protocol.
|
|
|
|
|
|
|
|
The server gave an unexpected or incorrect response. The network request could not complete
|
|
|
|
because of this.
|
|
|
|
|
|
|
|
There will not be any \ref ErrorCode() set.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\var BNetworkRequestError::ErrorType BNetworkRequestError::SystemError
|
|
|
|
\brief Other internal error while handling the request.
|
|
|
|
|
|
|
|
There could have been issues initializing buffers or decompression engines.
|
|
|
|
|
|
|
|
\ref ErrorCode() will be set to contain the underlying error code.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\var BNetworkRequestError::ErrorType BNetworkRequestError::Canceled
|
|
|
|
\brief The request was canceled before it was completed.
|
|
|
|
|
|
|
|
This could either have been done through the API, or because the session that schedules and
|
|
|
|
executes the requests was destroyed.
|
|
|
|
|
|
|
|
There will not be any \ref ErrorCode() set.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn BNetworkRequestError::BNetworkRequestError(const char *origin, ErrorType type,
|
|
|
|
status_t errorCode=B_OK)
|
|
|
|
\brief Create a new network request error.
|
|
|
|
|
|
|
|
\param origin A string representing where this error occured. It is advised
|
|
|
|
to initialize it to \c __PRETTY_FUNCTION__ by default.
|
|
|
|
\param type The error type that describes what the issue was that prevented the completion of
|
|
|
|
the request.
|
|
|
|
\param error Optional underlying system error. See the \ref BNetworkRequestError::ErrorType
|
|
|
|
documentation on which error types expect a system error.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn status_t BNetworkRequestError::ErrorCode() const noexcept
|
|
|
|
\brief Get the underlying system error code.
|
|
|
|
|
|
|
|
\return A \c status_t error code when the associated \ref BNetworkRequestError::ErrorType sets
|
|
|
|
the system error, or \c B_OK if there is no additional error code available.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
\fn ErrorType BNetworkRequestError::Type() const noexcept
|
|
|
|
\brief Get the error type.
|
|
|
|
|
|
|
|
\return Get the \ref BNetworkRequestError::ErrorType that describes the cause for the request
|
|
|
|
to fail.
|
|
|
|
|
|
|
|
\since Haiku R1
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2021-09-13 09:37:49 +03:00
|
|
|
} // namespace Network
|
|
|
|
|
|
|
|
} // namespace BPrivate
|
|
|
|
|
|
|
|
#endif
|