13#include "azure/core/internal/unique_handle.hpp"
21#pragma warning(disable : 6101)
33namespace Azure {
namespace Core {
41 template <>
struct UniqueHandleHelper<CURL>
43 using type = _internal::BasicUniqueHandle<CURL, curl_easy_cleanup>;
51 constexpr static size_t DefaultUploadChunkSize = 1024 * 64;
52 constexpr static size_t DefaultLibcurlReaderSize = 4 * 1024;
54 constexpr static const char* DefaultFailedToGetNewConnectionTemplate
55 =
"Fail to get a new connection for: ";
56 constexpr static int32_t DefaultMaxOpenNewConnectionIntentsAllowed = 10;
59 constexpr static int32_t RequestPoolResetAfterConnectionFailed = 3;
61 constexpr static int32_t DefaultCleanerIntervalMilliseconds = 1000 * 90;
63 constexpr static int32_t DefaultConnectionExpiredMilliseconds = 1000 * 60;
67 constexpr static int32_t MaxConnectionsPerIndex = 1024;
80 bool m_isShutDown =
false;
144 Azure::Core::_internal::UniqueHandle<CURL> m_handle;
145 curl_socket_t m_curlSocket;
146 std::chrono::steady_clock::time_point m_lastUseTime;
147 std::string m_connectionKey;
149 bool m_enableCrlValidation{
false};
151 bool m_allowFailedCrlRetrieval{
true};
153 static int CurlLoggingCallback(
160 static int CurlSslCtxCallback(CURL* curl,
void* sslctx,
void* parm);
161 int SslCtxCallback(CURL* curl,
void* sslctx);
177 std::string
const& hostDisplayName,
178 std::string
const& connectionPropertiesKey);
194 this->m_lastUseTime = std::chrono::steady_clock::now();
203 auto connectionOnWaitingTimeMs = std::chrono::duration_cast<std::chrono::milliseconds>(
204 std::chrono::steady_clock::now() - this->m_lastUseTime);
205 return connectionOnWaitingTimeMs.count() >= _detail::DefaultConnectionExpiredMilliseconds;
231 CURLcode
SendBuffer(uint8_t
const* buffer,
size_t bufferSize,
Context const& context)
A context is a node within a unidirectional tree that represents deadlines and key/value pairs.
Definition context.hpp:72
CURL HTTP connection.
Definition curl_connection_private.hpp:142
bool IsExpired() override
Checks whether this CURL connection is expired.
Definition curl_connection_private.hpp:201
void UpdateLastUsageTime() override
Update last usage time for the connection.
Definition curl_connection_private.hpp:192
std::string const & GetConnectionKey() const override
Get the Connection Properties Key object.
Definition curl_connection_private.hpp:186
CURLcode SendBuffer(uint8_t const *buffer, size_t bufferSize, Context const &context) override
This method will use libcurl socket to write all the bytes from buffer.
Definition curl.cpp:574
size_t ReadFromSocket(uint8_t *buffer, size_t bufferSize, Context const &context) override
This function is used when working with streams to pull more data from the wire. Function will try to...
Definition curl.cpp:1204
~CurlConnection() override
Destructor.
Definition curl_connection_private.hpp:184
Interface for the connection to the network with Curl.
Definition curl_connection_private.hpp:78
virtual std::string const & GetConnectionKey() const =0
Get the Connection Properties Key object.
virtual void UpdateLastUsageTime()=0
Update last usage time for the connection.
virtual bool IsExpired()=0
Checks whether this CURL connection is expired.
virtual void Shutdown()
Set the connection into an invalid and unusable state.
Definition curl_connection_private.hpp:128
virtual size_t ReadFromSocket(uint8_t *buffer, size_t bufferSize, Context const &context)=0
This function is used when working with streams to pull more data from the wire. Function will try to...
virtual ~CurlNetworkConnection()=default
Allow derived classes calling a destructor.
bool IsShutdown() const
Check if the the connection was shut it down.
Definition curl_connection_private.hpp:135
virtual CURLcode SendBuffer(uint8_t const *buffer, size_t bufferSize, Context const &context)=0
This method will use libcurl socket to write all the bytes from buffer.
A request message from a client to a server.
Definition http.hpp:183
struct x509_store_ctx_st X509_STORE_CTX
From openssl/x509.h. Avoids needing to include openssl headers.
Definition curl_connection_private.hpp:31
HTTP request and response functionality.
Compute the hash value for the input binary data, using SHA256, SHA384 and SHA512.
Definition azure_assert.hpp:57
Set the libcurl connection options like a proxy and CA path.
Definition curl_transport.hpp:78