Loading [MathJax]/extensions/tex2jax.js
azure-storage-common
All Classes Functions Variables Pages
file_io.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#pragma once
5
6#include <azure/core/platform.hpp>
7
8#include <cstdint>
9#include <string>
10
11namespace Azure { namespace Storage { namespace _internal {
12
13#if defined(AZ_PLATFORM_WINDOWS)
14 using FileHandle = void*;
15#elif defined(AZ_PLATFORM_POSIX)
16 using FileHandle = int;
17#endif
18
19 class FileReader final {
20 public:
21 FileReader(const std::string& filename);
22
23 ~FileReader();
24
25 FileHandle GetHandle() const { return m_handle; }
26
27 int64_t GetFileSize() const { return m_fileSize; }
28
29 private:
30 FileHandle m_handle;
31 int64_t m_fileSize;
32 };
33
34 class FileWriter final {
35 public:
36 FileWriter(const std::string& filename);
37
38 ~FileWriter();
39
40 FileHandle GetHandle() const { return m_handle; }
41
42 void Write(const uint8_t* buffer, size_t length, int64_t offset);
43
44 private:
45 FileHandle m_handle;
46 };
47
48}}} // namespace Azure::Storage::_internal