Loading [MathJax]/extensions/tex2jax.js
azure-identity
All Classes Files Functions Variables Typedefs Pages
chained_token_credential_impl.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#pragma once
5
7
8#include <atomic>
9#include <limits>
10#include <mutex>
11
12#if defined(_azure_TESTING_BUILD)
13class DefaultAzureCredential_CachingCredential_Test;
14#endif
15
16namespace Azure { namespace Identity { namespace _detail {
17
18 class ChainedTokenCredentialImpl final {
19
20#if defined(_azure_TESTING_BUILD)
21 // make tests classes friends to validate caching
22 friend class ::DefaultAzureCredential_CachingCredential_Test;
23#endif
24
25 public:
26 ChainedTokenCredentialImpl(
27 std::string const& credentialName,
29 bool reuseSuccessfulSource = false);
30
31 Core::Credentials::AccessToken GetToken(
32 std::string const& credentialName,
33 Core::Credentials::TokenRequestContext const& tokenRequestContext,
34 Core::Context const& context) const;
35
36 private:
38 mutable std::mutex m_sourcesMutex;
39 // Used as a sentinel value to indicate that the index of the source being used for future calls
40 // hasn't been found yet.
41 constexpr static std::size_t SuccessfulSourceNotSet = (std::numeric_limits<std::size_t>::max)();
42 // This needs to be atomic so that sentinel comparison is thread safe.
43 mutable std::atomic<std::size_t> m_successfulSourceIndex = {SuccessfulSourceNotSet};
44 bool m_reuseSuccessfulSource;
45 };
46
47}}} // namespace Azure::Identity::_detail
Chained Token Credential.
std::vector< std::shared_ptr< Core::Credentials::TokenCredential > > Sources
A container type to store the ordered chain of credentials.
Definition chained_token_credential.hpp:34