Loading [MathJax]/extensions/tex2jax.js
azure-storage-common
All Classes Functions Variables Pages
storage_switch_to_secondary_policy.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#pragma once
5
6#include "azure/storage/common/dll_import_export.hpp"
7
8#include <azure/core/http/policies/policy.hpp>
9
10#include <memory>
11#include <string>
12
13namespace Azure { namespace Storage { namespace _internal {
14
15 AZ_STORAGE_COMMON_DLLEXPORT extern const Azure::Core::Context::Key SecondaryHostReplicaStatusKey;
16
17 inline Azure::Core::Context WithReplicaStatus(const Azure::Core::Context& context)
18 {
19 return context.WithValue(SecondaryHostReplicaStatusKey, std::make_shared<bool>(true));
20 }
21
22 class StorageSwitchToSecondaryPolicy final : public Azure::Core::Http::Policies::HttpPolicy {
23 public:
24 explicit StorageSwitchToSecondaryPolicy(std::string primaryHost, std::string secondaryHost)
25 : m_primaryHost(std::move(primaryHost)), m_secondaryHost(std::move(secondaryHost))
26 {
27 }
28
29 std::unique_ptr<Azure::Core::Http::Policies::HttpPolicy> Clone() const override
30 {
31 return std::make_unique<StorageSwitchToSecondaryPolicy>(*this);
32 }
33
34 std::unique_ptr<Azure::Core::Http::RawResponse> Send(
35 Azure::Core::Http::Request& request,
36 Azure::Core::Http::Policies::NextHttpPolicy nextPolicy,
37 const Azure::Core::Context& context) const override;
38
39 private:
40 std::string m_primaryHost;
41 std::string m_secondaryHost;
42 };
43
44}}} // namespace Azure::Storage::_internal