Loading [MathJax]/extensions/tex2jax.js
azure-core
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
curl_connection_pool_private.hpp
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
10#pragma once
11
12#include "azure/core/dll_import_export.hpp"
15
17
18#include <atomic>
19#include <condition_variable>
20#include <list>
21#include <memory>
22#include <mutex>
23#include <thread>
24#include <unordered_map>
25
26#if defined(_azure_TESTING_BUILD)
27// Define the class name that reads from ConnectionPool private members
28namespace Azure { namespace Core { namespace Test {
29 class CurlConnectionPool_connectionPoolTest_Test;
30 class CurlConnectionPool_uniquePort_Test;
31 class CurlConnectionPool_connectionClose_Test;
32 class SdkWithLibcurl_globalCleanUp_Test;
33}}} // namespace Azure::Core::Test
34#endif
35
36namespace Azure { namespace Core { namespace Http { namespace _detail {
37
45 class CurlConnectionPool final {
46#if defined(_azure_TESTING_BUILD)
47 // Give access to private to this tests class
48 friend class Azure::Core::Test::CurlConnectionPool_connectionPoolTest_Test;
49 friend class Azure::Core::Test::CurlConnectionPool_uniquePort_Test;
50 friend class Azure::Core::Test::CurlConnectionPool_connectionClose_Test;
51 friend class Azure::Core::Test::SdkWithLibcurl_globalCleanUp_Test;
52#endif
53
54 public:
55 ~CurlConnectionPool()
56 {
57 using namespace Azure::Core::Http::_detail;
58 if (m_cleanThread.joinable())
59 {
60 {
61 std::unique_lock<std::mutex> lock(ConnectionPoolMutex);
62 // Remove all connections
63 g_curlConnectionPool.ConnectionPoolIndex.clear();
64 }
65 // Signal clean thread to wake up
66 ConditionalVariableForCleanThread.notify_one();
67 // join thread
68 m_cleanThread.join();
69 }
70 curl_global_cleanup();
71 }
72
85 std::unique_ptr<CurlNetworkConnection> ExtractOrCreateCurlConnection(
86 Request& request,
87 CurlTransportOptions const& options,
88 bool resetPool = false);
89
97 void MoveConnectionBackToPool(
98 std::unique_ptr<CurlNetworkConnection> connection,
99 bool httpKeepAlive);
100
109 std::unordered_map<std::string, std::list<std::unique_ptr<CurlNetworkConnection>>>
110 ConnectionPoolIndex;
111
112 std::mutex ConnectionPoolMutex;
113
114 // This is used to put the cleaning pool thread to sleep and yet to be able to wake it if the
115 // application finishes.
116 std::condition_variable ConditionalVariableForCleanThread;
117
118 AZ_CORE_DLLEXPORT static Azure::Core::Http::_detail::CurlConnectionPool g_curlConnectionPool;
119
120 bool IsCleanThreadRunning = false;
121
122 private:
123 // private constructor to keep this as singleton.
124 CurlConnectionPool() { curl_global_init(CURL_GLOBAL_ALL); }
125
126 // Makes possible to know the number of current connections in the connection pool for an
127 // index
128 size_t ConnectionsOnPool(std::string const& host) { return ConnectionPoolIndex[host].size(); }
129
130 std::thread m_cleanThread;
131 };
132
133}}}} // namespace Azure::Core::Http::_detail
A request message from a client to a server.
Definition http.hpp:183
The libcurl connection keeps the curl handle and performs the data transfer to the network.
Azure::Core::Http::HttpTransport implementation via CURL.
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