Loading [MathJax]/extensions/tex2jax.js
azure-storage-common
All Classes Functions Variables Pages
reliable_stream.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/context.hpp>
9#include <azure/core/io/body_stream.hpp>
10
11#include <algorithm>
12#include <functional>
13#include <memory>
14
15namespace Azure { namespace Storage { namespace _internal {
16
17 AZ_STORAGE_COMMON_DLLEXPORT extern const Azure::Core::Context::Key
18 ReliableStreamClientRequestIdKey;
19
20 // Options used by reliable stream
21 struct ReliableStreamOptions final
22 {
23 // configures the maximun retries to be done.
24 int32_t MaxRetryRequests;
25 };
26
39 class ReliableStream final : public Azure::Core::IO::BodyStream {
40 private:
41 // initial bodyStream.
42 std::unique_ptr<Azure::Core::IO::BodyStream> m_inner;
43 // Configuration for the re-triable stream
44 ReliableStreamOptions const m_options;
45 // callback to get a bodyStream in case Read operation fails
46 std::function<
47 std::unique_ptr<Azure::Core::IO::BodyStream>(int64_t, Azure::Core::Context const&)>
48 m_streamReconnector;
49 // Options to use when getting a new bodyStream like current offset
50 int64_t m_retryOffset;
51
52 size_t OnRead(uint8_t* buffer, size_t count, Azure::Core::Context const& context) override;
53
54 public:
55 explicit ReliableStream(
56 std::unique_ptr<Azure::Core::IO::BodyStream> inner,
57 ReliableStreamOptions const options,
58 std::function<
59 std::unique_ptr<Azure::Core::IO::BodyStream>(int64_t, Azure::Core::Context const&)>
60 streamReconnector)
61 : m_inner(std::move(inner)), m_options(options),
62 m_streamReconnector(std::move(streamReconnector)), m_retryOffset(0)
63 {
64 }
65
66 int64_t Length() const override { return this->m_inner->Length(); }
67 void Rewind() override
68 {
69 // Rewind directly from a transportAdapter body stream (like libcurl) would throw
70 this->m_inner->Rewind();
71 this->m_retryOffset = 0;
72 }
73 };
74
75}}} // namespace Azure::Storage::_internal