Restructure the azure inc folder (#514)
* Restructure the azure inc folder
This commit is contained in:
parent
ae6ada5cfb
commit
c5438d623b
@ -3,7 +3,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <internal/contract.hpp>
|
||||
#include <azure/core/internal/contract.hpp>
|
||||
#include <string>
|
||||
|
||||
#define AZURE_UNREFERENCED_PARAMETER(x) ((void)(x));
|
||||
@ -3,7 +3,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <context.hpp>
|
||||
#include "azure/core/context.hpp"
|
||||
|
||||
#include <chrono>
|
||||
#include <memory>
|
||||
@ -3,8 +3,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <credentials/credentials.hpp>
|
||||
#include <http/policy.hpp>
|
||||
#include <azure/core/credentials/credentials.hpp>
|
||||
#include <azure/core/http/policy.hpp>
|
||||
#include <memory>
|
||||
#include <mutex>
|
||||
#include <string>
|
||||
@ -15,8 +15,9 @@
|
||||
#include <Windows.h>
|
||||
#endif // Windows
|
||||
|
||||
#include <azure/core/context.hpp>
|
||||
|
||||
#include <algorithm>
|
||||
#include <context.hpp>
|
||||
#include <cstdint>
|
||||
#include <cstdio>
|
||||
#include <cstring>
|
||||
@ -5,8 +5,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "http/http.hpp"
|
||||
#include "http/policy.hpp"
|
||||
#include "azure/core/http/http.hpp"
|
||||
#include "azure/core/http/policy.hpp"
|
||||
|
||||
#include <curl/curl.h>
|
||||
#include <list>
|
||||
@ -3,10 +3,10 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "body_stream.hpp"
|
||||
#include "azure/core/http/body_stream.hpp"
|
||||
#include "azure/core/internal/contract.hpp"
|
||||
|
||||
#include <algorithm>
|
||||
#include <internal/contract.hpp>
|
||||
#include <map>
|
||||
#include <memory>
|
||||
#include <stdexcept>
|
||||
@ -3,10 +3,10 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "context.hpp"
|
||||
#include "http.hpp"
|
||||
#include "policy.hpp"
|
||||
#include "transport.hpp"
|
||||
#include "azure/core/context.hpp"
|
||||
#include "azure/core/http/http.hpp"
|
||||
#include "azure/core/http/policy.hpp"
|
||||
#include "azure/core/http/transport.hpp"
|
||||
|
||||
#include <vector>
|
||||
|
||||
@ -3,12 +3,12 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "azure.hpp"
|
||||
#include "context.hpp"
|
||||
#include "http.hpp"
|
||||
#include "logging/logging.hpp"
|
||||
#include "transport.hpp"
|
||||
#include "uuid.hpp"
|
||||
#include "azure/core/azure.hpp"
|
||||
#include "azure/core/context.hpp"
|
||||
#include "azure/core/http/http.hpp"
|
||||
#include "azure/core/http/transport.hpp"
|
||||
#include "azure/core/logging/logging.hpp"
|
||||
#include "azure/core/uuid.hpp"
|
||||
|
||||
#include <chrono>
|
||||
#include <utility>
|
||||
@ -3,8 +3,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "context.hpp"
|
||||
#include "http.hpp"
|
||||
#include "azure/core/context.hpp"
|
||||
#include "azure/core/http/http.hpp"
|
||||
|
||||
namespace Azure { namespace Core { namespace Http {
|
||||
|
||||
@ -5,8 +5,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "http/http.hpp"
|
||||
#include "http/policy.hpp"
|
||||
#include "azure/core/http/http.hpp"
|
||||
#include "azure/core/http/policy.hpp"
|
||||
|
||||
#include <type_traits>
|
||||
#include <vector>
|
||||
@ -3,7 +3,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "logging/logging.hpp"
|
||||
#include "azure/core/logging/logging.hpp"
|
||||
|
||||
namespace Azure { namespace Core { namespace Logging { namespace Details {
|
||||
bool ShouldWrite(LogClassification const& classification);
|
||||
@ -3,7 +3,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "azure.hpp"
|
||||
#include "azure/core/azure.hpp"
|
||||
|
||||
#include <functional>
|
||||
#include <initializer_list>
|
||||
@ -3,7 +3,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <http/http.hpp>
|
||||
#include <azure/core/http/http.hpp>
|
||||
|
||||
namespace Azure { namespace Core {
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include <context.hpp>
|
||||
#include <azure/core/context.hpp>
|
||||
|
||||
using namespace Azure::Core;
|
||||
using time_point = std::chrono::system_clock::time_point;
|
||||
|
||||
@ -1,11 +1,11 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include <credentials/credentials.hpp>
|
||||
#include <http/body_stream.hpp>
|
||||
#include <http/curl/curl.hpp>
|
||||
#include <http/http.hpp>
|
||||
#include <http/pipeline.hpp>
|
||||
#include <azure/core/credentials/credentials.hpp>
|
||||
#include <azure/core/http/body_stream.hpp>
|
||||
#include <azure/core/http/curl/curl.hpp>
|
||||
#include <azure/core/http/http.hpp>
|
||||
#include <azure/core/http/pipeline.hpp>
|
||||
|
||||
#include <cstdlib>
|
||||
#include <iomanip>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include <credentials/policy/policies.hpp>
|
||||
#include <azure/core/credentials/policy/policies.hpp>
|
||||
|
||||
using namespace Azure::Core::Credentials::Policy;
|
||||
|
||||
|
||||
@ -12,12 +12,13 @@
|
||||
#include <Windows.h>
|
||||
#endif // Windows
|
||||
|
||||
#include <azure/core/context.hpp>
|
||||
#include <azure/core/http/body_stream.hpp>
|
||||
|
||||
#include <algorithm>
|
||||
#include <context.hpp>
|
||||
#include <cstdint>
|
||||
#include <cstdio>
|
||||
#include <cstring>
|
||||
#include <http/body_stream.hpp>
|
||||
#include <memory>
|
||||
#include <stdexcept>
|
||||
#include <vector>
|
||||
|
||||
@ -1,8 +1,9 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "http/curl/curl.hpp"
|
||||
|
||||
#include "azure.hpp"
|
||||
#include "http/http.hpp"
|
||||
#include "azure/core/azure.hpp"
|
||||
#include "azure/core/http/curl/curl.hpp"
|
||||
#include "azure/core/http/http.hpp"
|
||||
|
||||
#include <string>
|
||||
|
||||
|
||||
@ -1,9 +1,8 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include <http/policy.hpp>
|
||||
|
||||
#include <internal/log.hpp>
|
||||
#include <azure/core/http/policy.hpp>
|
||||
#include <azure/core/internal/log.hpp>
|
||||
|
||||
#include <chrono>
|
||||
#include <sstream>
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include <http/http.hpp>
|
||||
#include <http/policy.hpp>
|
||||
#include <azure/core/http/http.hpp>
|
||||
#include <azure/core/http/policy.hpp>
|
||||
|
||||
using namespace Azure::Core::Http;
|
||||
|
||||
|
||||
@ -1,9 +1,8 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include <azure.hpp>
|
||||
#include <cctype>
|
||||
#include <http/http.hpp>
|
||||
#include <azure/core/azure.hpp>
|
||||
#include <azure/core/http/http.hpp>
|
||||
|
||||
#include <cctype>
|
||||
#include <map>
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include <azure.hpp>
|
||||
#include <http/http.hpp>
|
||||
#include <azure/core/azure.hpp>
|
||||
#include <azure/core/http/http.hpp>
|
||||
#include <map>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include <http/policy.hpp>
|
||||
#include <azure/core/http/policy.hpp>
|
||||
|
||||
#include <internal/log.hpp>
|
||||
#include <azure/core/internal/log.hpp>
|
||||
|
||||
#include <algorithm>
|
||||
#include <cstdlib>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include <http/policy.hpp>
|
||||
#include <azure/core/http/policy.hpp>
|
||||
|
||||
#include <sstream>
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include <http/policy.hpp>
|
||||
#include <azure/core/http/policy.hpp>
|
||||
|
||||
using namespace Azure::Core::Http;
|
||||
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include <http/http.hpp>
|
||||
#include <azure/core/http/http.hpp>
|
||||
|
||||
using namespace Azure::Core::Http;
|
||||
|
||||
|
||||
@ -1,9 +1,9 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "azure.hpp"
|
||||
#include "http/http.hpp"
|
||||
#include "http/winhttp/win_http_client.hpp"
|
||||
#include "azure/core/azure.hpp"
|
||||
#include "azure/core/http/http.hpp"
|
||||
#include "azure/core/http/winhttp/win_http_client.hpp"
|
||||
|
||||
#include <string>
|
||||
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "logging/logging.hpp"
|
||||
#include "internal/log.hpp"
|
||||
#include "azure/core/logging/logging.hpp"
|
||||
#include "azure/core/internal/log.hpp"
|
||||
|
||||
#include <mutex>
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include <algorithm>
|
||||
#include <azure.hpp>
|
||||
#include <azure/core/azure.hpp>
|
||||
|
||||
namespace {
|
||||
// The locale invariant case table is generated with the following program
|
||||
|
||||
@ -1,11 +1,11 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "http/pipeline.hpp"
|
||||
#include "azure/core/http/http.hpp"
|
||||
#include "azure/core/http/pipeline.hpp"
|
||||
#include "azure/core/http/curl/curl.hpp"
|
||||
|
||||
#include <array>
|
||||
#include <http/curl/curl.hpp>
|
||||
#include <http/http.hpp>
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
@ -5,11 +5,11 @@
|
||||
#define _CRT_SECURE_NO_WARNINGS
|
||||
#endif
|
||||
|
||||
#include "http/pipeline.hpp"
|
||||
#include "azure/core/http/http.hpp"
|
||||
#include "azure/core/http/pipeline.hpp"
|
||||
#include "azure/core/http/curl/curl.hpp"
|
||||
|
||||
#include <array>
|
||||
#include <http/curl/curl.hpp>
|
||||
#include <http/http.hpp>
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "http/pipeline.hpp"
|
||||
#include "azure/core/http/pipeline.hpp"
|
||||
|
||||
#ifdef POSIX
|
||||
#include <fcntl.h>
|
||||
@ -18,8 +18,9 @@
|
||||
#include <Windows.h>
|
||||
#endif // Windows
|
||||
|
||||
#include <http/curl/curl.hpp>
|
||||
#include <http/http.hpp>
|
||||
#include <azure/core/http/curl/curl.hpp>
|
||||
#include <azure/core/http/http.hpp>
|
||||
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
|
||||
|
||||
@ -7,11 +7,11 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#include "http/pipeline.hpp"
|
||||
#include "azure/core/http/pipeline.hpp"
|
||||
#include <azure/core/http/curl/curl.hpp>
|
||||
#include <azure/core/http/http.hpp>
|
||||
|
||||
#include <array>
|
||||
#include <http/curl/curl.hpp>
|
||||
#include <http/http.hpp>
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
#include "context.hpp"
|
||||
#include "azure/core/context.hpp"
|
||||
|
||||
#include <chrono>
|
||||
#include <memory>
|
||||
|
||||
@ -11,9 +11,10 @@
|
||||
#include <Windows.h>
|
||||
#endif // Windows
|
||||
|
||||
#include "azure/core/http/http.hpp"
|
||||
|
||||
#include "transport_adapter.hpp"
|
||||
//#include <iostream>
|
||||
#include <response.hpp>
|
||||
|
||||
#include <string>
|
||||
|
||||
namespace Azure { namespace Core { namespace Test {
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include <http/http.hpp>
|
||||
#include <azure/core/http/http.hpp>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
|
||||
@ -2,9 +2,9 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include <http/pipeline.hpp>
|
||||
#include <internal/log.hpp>
|
||||
#include <logging/logging.hpp>
|
||||
#include <azure/core/http/pipeline.hpp>
|
||||
#include <azure/core/internal/log.hpp>
|
||||
#include <azure/core/logging/logging.hpp>
|
||||
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include <nullable.hpp>
|
||||
#include <azure/core/nullable.hpp>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include <azure.hpp>
|
||||
#include <azure/core/azure.hpp>
|
||||
#include <string>
|
||||
|
||||
TEST(String, invariantCompare)
|
||||
|
||||
@ -2,8 +2,8 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include <http/pipeline.hpp>
|
||||
#include <http/policy.hpp>
|
||||
#include <azure/core/http/pipeline.hpp>
|
||||
#include <azure/core/http/policy.hpp>
|
||||
|
||||
using namespace Azure::Core;
|
||||
using namespace Azure::Core::Http;
|
||||
|
||||
@ -2,8 +2,8 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "transport_adapter.hpp"
|
||||
#include <context.hpp>
|
||||
#include <response.hpp>
|
||||
#include <azure/core/context.hpp>
|
||||
#include <azure/core/response.hpp>
|
||||
#include <string>
|
||||
#include <thread>
|
||||
|
||||
|
||||
@ -2,10 +2,10 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include <http/body_stream.hpp>
|
||||
#include <http/curl/curl.hpp>
|
||||
#include <http/http.hpp>
|
||||
#include <http/pipeline.hpp>
|
||||
#include <azure/core/http/body_stream.hpp>
|
||||
#include <azure/core/http/curl/curl.hpp>
|
||||
#include <azure/core/http/http.hpp>
|
||||
#include <azure/core/http/pipeline.hpp>
|
||||
|
||||
#include <memory>
|
||||
#include <vector>
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "gtest/gtest.h"
|
||||
#include <uuid.hpp>
|
||||
#include <azure/core/uuid.hpp>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
#include "blob_options.hpp"
|
||||
#include "blobs/blob_client.hpp"
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "credentials/credentials.hpp"
|
||||
#include "azure/core/credentials/credentials.hpp"
|
||||
#include "protocol/blob_rest_client.hpp"
|
||||
|
||||
#include <string>
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
#include "blob_responses.hpp"
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "common/storage_uri_builder.hpp"
|
||||
#include "credentials/credentials.hpp"
|
||||
#include "azure/core/credentials/credentials.hpp"
|
||||
#include "protocol/blob_rest_client.hpp"
|
||||
|
||||
#include <map>
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
#include "blobs/blob_client.hpp"
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "common/storage_uri_builder.hpp"
|
||||
#include "credentials/credentials.hpp"
|
||||
#include "azure/core/credentials/credentials.hpp"
|
||||
#include "protocol/blob_rest_client.hpp"
|
||||
|
||||
#include <map>
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
#include "blobs/blob_responses.hpp"
|
||||
#include "blobs/protocol/blob_rest_client.hpp"
|
||||
#include "common/account_sas_builder.hpp"
|
||||
#include "nullable.hpp"
|
||||
#include "azure/core/nullable.hpp"
|
||||
|
||||
namespace Azure { namespace Storage { namespace Blobs {
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
#include "blobs/blob_container_client.hpp"
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "common/storage_uri_builder.hpp"
|
||||
#include "credentials/credentials.hpp"
|
||||
#include "azure/core/credentials/credentials.hpp"
|
||||
#include "protocol/blob_rest_client.hpp"
|
||||
|
||||
#include <memory>
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
#include "blob_options.hpp"
|
||||
#include "blobs/blob_client.hpp"
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "credentials/credentials.hpp"
|
||||
#include "azure/core/credentials/credentials.hpp"
|
||||
#include "protocol/blob_rest_client.hpp"
|
||||
|
||||
#include <map>
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
#include "blob_responses.hpp"
|
||||
#include "blobs/blob_client.hpp"
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "credentials/credentials.hpp"
|
||||
#include "azure/core/credentials/credentials.hpp"
|
||||
#include "protocol/blob_rest_client.hpp"
|
||||
|
||||
#include <string>
|
||||
|
||||
@ -6,11 +6,11 @@
|
||||
#include "common/storage_common.hpp"
|
||||
#include "common/storage_error.hpp"
|
||||
#include "common/xml_wrapper.hpp"
|
||||
#include "context.hpp"
|
||||
#include "http/http.hpp"
|
||||
#include "http/pipeline.hpp"
|
||||
#include "nullable.hpp"
|
||||
#include "response.hpp"
|
||||
#include "azure/core/context.hpp"
|
||||
#include "azure/core/http/http.hpp"
|
||||
#include "azure/core/http/pipeline.hpp"
|
||||
#include "azure/core/nullable.hpp"
|
||||
#include "azure/core/response.hpp"
|
||||
|
||||
#include <cstring>
|
||||
#include <limits>
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "nullable.hpp"
|
||||
#include "azure/core/nullable.hpp"
|
||||
|
||||
#include <string>
|
||||
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
#include "common/constants.hpp"
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "nullable.hpp"
|
||||
#include "azure/core/nullable.hpp"
|
||||
|
||||
namespace Azure { namespace Storage {
|
||||
|
||||
|
||||
@ -1,8 +1,8 @@
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "context.hpp"
|
||||
#include "http/body_stream.hpp"
|
||||
#include "azure/core/context.hpp"
|
||||
#include "azure/core/http/body_stream.hpp"
|
||||
|
||||
#include <algorithm>
|
||||
#include <functional>
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "http/policy.hpp"
|
||||
#include "azure/core/http/policy.hpp"
|
||||
|
||||
namespace Azure { namespace Storage {
|
||||
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "http/http.hpp"
|
||||
#include "azure/core/http/http.hpp"
|
||||
|
||||
#include <map>
|
||||
#include <stdexcept>
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "http/policy.hpp"
|
||||
#include "azure/core/http/policy.hpp"
|
||||
|
||||
namespace Azure { namespace Storage {
|
||||
|
||||
|
||||
@ -5,13 +5,13 @@
|
||||
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "common/storage_uri_builder.hpp"
|
||||
#include "credentials/credentials.hpp"
|
||||
#include "azure/core/credentials/credentials.hpp"
|
||||
#include "datalake/datalake_path_client.hpp"
|
||||
#include "datalake_options.hpp"
|
||||
#include "datalake_responses.hpp"
|
||||
#include "http/pipeline.hpp"
|
||||
#include "azure/core/http/pipeline.hpp"
|
||||
#include "protocol/datalake_rest_client.hpp"
|
||||
#include "response.hpp"
|
||||
#include "azure/core/response.hpp"
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
@ -6,13 +6,13 @@
|
||||
#include "blobs/block_blob_client.hpp"
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "common/storage_uri_builder.hpp"
|
||||
#include "credentials/credentials.hpp"
|
||||
#include "azure/core/credentials/credentials.hpp"
|
||||
#include "datalake/datalake_path_client.hpp"
|
||||
#include "datalake_options.hpp"
|
||||
#include "datalake_responses.hpp"
|
||||
#include "http/pipeline.hpp"
|
||||
#include "azure/core/http/pipeline.hpp"
|
||||
#include "protocol/datalake_rest_client.hpp"
|
||||
#include "response.hpp"
|
||||
#include "azure/core/response.hpp"
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
@ -6,13 +6,13 @@
|
||||
#include "blobs/blob_container_client.hpp"
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "common/storage_uri_builder.hpp"
|
||||
#include "credentials/credentials.hpp"
|
||||
#include "azure/core/credentials/credentials.hpp"
|
||||
#include "datalake/datalake_service_client.hpp"
|
||||
#include "datalake_options.hpp"
|
||||
#include "datalake_responses.hpp"
|
||||
#include "http/pipeline.hpp"
|
||||
#include "azure/core/http/pipeline.hpp"
|
||||
#include "protocol/datalake_rest_client.hpp"
|
||||
#include "response.hpp"
|
||||
#include "azure/core/response.hpp"
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
|
||||
#include "blobs/blob_options.hpp"
|
||||
#include "common/access_conditions.hpp"
|
||||
#include "nullable.hpp"
|
||||
#include "azure/core/nullable.hpp"
|
||||
#include "protocol/datalake_rest_client.hpp"
|
||||
|
||||
#include <map>
|
||||
|
||||
@ -6,13 +6,13 @@
|
||||
#include "blobs/blob_client.hpp"
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "common/storage_uri_builder.hpp"
|
||||
#include "credentials/credentials.hpp"
|
||||
#include "azure/core/credentials/credentials.hpp"
|
||||
#include "datalake/datalake_file_system_client.hpp"
|
||||
#include "datalake_options.hpp"
|
||||
#include "datalake_responses.hpp"
|
||||
#include "http/pipeline.hpp"
|
||||
#include "azure/core/http/pipeline.hpp"
|
||||
#include "protocol/datalake_rest_client.hpp"
|
||||
#include "response.hpp"
|
||||
#include "azure/core/response.hpp"
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
@ -6,12 +6,12 @@
|
||||
#include "blobs/blob_service_client.hpp"
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "common/storage_uri_builder.hpp"
|
||||
#include "credentials/credentials.hpp"
|
||||
#include "azure/core/credentials/credentials.hpp"
|
||||
#include "datalake_options.hpp"
|
||||
#include "datalake_responses.hpp"
|
||||
#include "http/pipeline.hpp"
|
||||
#include "azure/core/http/pipeline.hpp"
|
||||
#include "protocol/datalake_rest_client.hpp"
|
||||
#include "response.hpp"
|
||||
#include "azure/core/response.hpp"
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
@ -6,11 +6,11 @@
|
||||
|
||||
#include "common/storage_common.hpp"
|
||||
#include "common/storage_error.hpp"
|
||||
#include "http/http.hpp"
|
||||
#include "http/pipeline.hpp"
|
||||
#include "azure/core/http/http.hpp"
|
||||
#include "azure/core/http/pipeline.hpp"
|
||||
#include "json.hpp"
|
||||
#include "nullable.hpp"
|
||||
#include "response.hpp"
|
||||
#include "azure/core/nullable.hpp"
|
||||
#include "azure/core/response.hpp"
|
||||
|
||||
#include <functional>
|
||||
#include <iostream>
|
||||
|
||||
@ -7,11 +7,11 @@
|
||||
#include "common/storage_common.hpp"
|
||||
#include "common/storage_error.hpp"
|
||||
#include "common/xml_wrapper.hpp"
|
||||
#include "http/http.hpp"
|
||||
#include "http/pipeline.hpp"
|
||||
#include "azure/core/http/http.hpp"
|
||||
#include "azure/core/http/pipeline.hpp"
|
||||
#include "json.hpp"
|
||||
#include "nullable.hpp"
|
||||
#include "response.hpp"
|
||||
#include "azure/core/nullable.hpp"
|
||||
#include "azure/core/response.hpp"
|
||||
|
||||
#include <functional>
|
||||
#include <iostream>
|
||||
|
||||
@ -5,10 +5,10 @@
|
||||
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "common/storage_uri_builder.hpp"
|
||||
#include "credentials/credentials.hpp"
|
||||
#include "http/pipeline.hpp"
|
||||
#include "azure/core/credentials/credentials.hpp"
|
||||
#include "azure/core/http/pipeline.hpp"
|
||||
#include "protocol/share_rest_client.hpp"
|
||||
#include "response.hpp"
|
||||
#include "azure/core/response.hpp"
|
||||
#include "share_options.hpp"
|
||||
#include "share_responses.hpp"
|
||||
#include "shares/share_service_client.hpp"
|
||||
|
||||
@ -5,10 +5,10 @@
|
||||
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "common/storage_uri_builder.hpp"
|
||||
#include "credentials/credentials.hpp"
|
||||
#include "http/pipeline.hpp"
|
||||
#include "azure/core/credentials/credentials.hpp"
|
||||
#include "azure/core/http/pipeline.hpp"
|
||||
#include "protocol/share_rest_client.hpp"
|
||||
#include "response.hpp"
|
||||
#include "azure/core/response.hpp"
|
||||
#include "share_client.hpp"
|
||||
#include "share_options.hpp"
|
||||
#include "share_responses.hpp"
|
||||
|
||||
@ -5,10 +5,10 @@
|
||||
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "common/storage_uri_builder.hpp"
|
||||
#include "credentials/credentials.hpp"
|
||||
#include "http/pipeline.hpp"
|
||||
#include "azure/core/credentials/credentials.hpp"
|
||||
#include "azure/core/http/pipeline.hpp"
|
||||
#include "protocol/share_rest_client.hpp"
|
||||
#include "response.hpp"
|
||||
#include "azure/core/response.hpp"
|
||||
#include "share_client.hpp"
|
||||
#include "share_directory_client.hpp"
|
||||
#include "share_options.hpp"
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "common/access_conditions.hpp"
|
||||
#include "nullable.hpp"
|
||||
#include "azure/core/nullable.hpp"
|
||||
#include "protocol/share_rest_client.hpp"
|
||||
#include "share_responses.hpp"
|
||||
|
||||
|
||||
@ -5,10 +5,10 @@
|
||||
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "common/storage_uri_builder.hpp"
|
||||
#include "credentials/credentials.hpp"
|
||||
#include "http/pipeline.hpp"
|
||||
#include "azure/core/credentials/credentials.hpp"
|
||||
#include "azure/core/http/pipeline.hpp"
|
||||
#include "protocol/share_rest_client.hpp"
|
||||
#include "response.hpp"
|
||||
#include "azure/core/response.hpp"
|
||||
#include "share_options.hpp"
|
||||
#include "share_responses.hpp"
|
||||
|
||||
|
||||
@ -14,8 +14,8 @@
|
||||
#include "common/storage_common.hpp"
|
||||
#include "common/storage_per_retry_policy.hpp"
|
||||
#include "common/storage_version.hpp"
|
||||
#include "credentials/policy/policies.hpp"
|
||||
#include "http/curl/curl.hpp"
|
||||
#include "azure/core/credentials/policy/policies.hpp"
|
||||
#include "azure/core/http/curl/curl.hpp"
|
||||
|
||||
namespace Azure { namespace Storage { namespace Blobs {
|
||||
|
||||
|
||||
@ -11,8 +11,8 @@
|
||||
#include "common/storage_common.hpp"
|
||||
#include "common/storage_per_retry_policy.hpp"
|
||||
#include "common/storage_version.hpp"
|
||||
#include "credentials/policy/policies.hpp"
|
||||
#include "http/curl/curl.hpp"
|
||||
#include "azure/core/credentials/policy/policies.hpp"
|
||||
#include "azure/core/http/curl/curl.hpp"
|
||||
|
||||
namespace Azure { namespace Storage { namespace Blobs {
|
||||
|
||||
|
||||
@ -8,8 +8,8 @@
|
||||
#include "common/storage_common.hpp"
|
||||
#include "common/storage_per_retry_policy.hpp"
|
||||
#include "common/storage_version.hpp"
|
||||
#include "credentials/policy/policies.hpp"
|
||||
#include "http/curl/curl.hpp"
|
||||
#include "azure/core/credentials/policy/policies.hpp"
|
||||
#include "azure/core/http/curl/curl.hpp"
|
||||
|
||||
namespace Azure { namespace Storage { namespace Blobs {
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "common/reliable_stream.hpp"
|
||||
#include "http/http.hpp"
|
||||
#include "azure/core/http/http.hpp"
|
||||
|
||||
using Azure::Core::Context;
|
||||
using Azure::Core::Http::BodyStream;
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
|
||||
#include "common/storage_common.hpp"
|
||||
|
||||
#include "uuid.hpp"
|
||||
#include "azure/core/uuid.hpp"
|
||||
|
||||
namespace Azure { namespace Storage {
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@
|
||||
#include "common/constants.hpp"
|
||||
#include "common/storage_common.hpp"
|
||||
#include "common/xml_wrapper.hpp"
|
||||
#include "http/policy.hpp"
|
||||
#include "azure/core/http/policy.hpp"
|
||||
#include "json.hpp"
|
||||
|
||||
#include <type_traits>
|
||||
|
||||
@ -9,10 +9,10 @@
|
||||
#include "common/storage_common.hpp"
|
||||
#include "common/storage_per_retry_policy.hpp"
|
||||
#include "common/storage_version.hpp"
|
||||
#include "credentials/policy/policies.hpp"
|
||||
#include "azure/core/credentials/policy/policies.hpp"
|
||||
#include "datalake/datalake_file_client.hpp"
|
||||
#include "datalake/datalake_utilities.hpp"
|
||||
#include "http/curl/curl.hpp"
|
||||
#include "azure/core/http/curl/curl.hpp"
|
||||
|
||||
#include <limits>
|
||||
#include <utility> //std::pair
|
||||
|
||||
@ -9,9 +9,9 @@
|
||||
#include "common/storage_common.hpp"
|
||||
#include "common/storage_per_retry_policy.hpp"
|
||||
#include "common/storage_version.hpp"
|
||||
#include "credentials/policy/policies.hpp"
|
||||
#include "azure/core/credentials/policy/policies.hpp"
|
||||
#include "datalake/datalake_utilities.hpp"
|
||||
#include "http/curl/curl.hpp"
|
||||
#include "azure/core/http/curl/curl.hpp"
|
||||
|
||||
#include <limits>
|
||||
#include <utility> //std::pair
|
||||
|
||||
@ -10,12 +10,12 @@
|
||||
#include "common/storage_common.hpp"
|
||||
#include "common/storage_per_retry_policy.hpp"
|
||||
#include "common/storage_version.hpp"
|
||||
#include "credentials/policy/policies.hpp"
|
||||
#include "azure/core/credentials/policy/policies.hpp"
|
||||
#include "datalake/datalake_directory_client.hpp"
|
||||
#include "datalake/datalake_file_client.hpp"
|
||||
#include "datalake/datalake_path_client.hpp"
|
||||
#include "datalake/datalake_utilities.hpp"
|
||||
#include "http/curl/curl.hpp"
|
||||
#include "azure/core/http/curl/curl.hpp"
|
||||
|
||||
namespace Azure { namespace Storage { namespace Files { namespace DataLake {
|
||||
namespace {
|
||||
|
||||
@ -9,9 +9,9 @@
|
||||
#include "common/storage_common.hpp"
|
||||
#include "common/storage_per_retry_policy.hpp"
|
||||
#include "common/storage_version.hpp"
|
||||
#include "credentials/policy/policies.hpp"
|
||||
#include "azure/core/credentials/policy/policies.hpp"
|
||||
#include "datalake/datalake_utilities.hpp"
|
||||
#include "http/curl/curl.hpp"
|
||||
#include "azure/core/http/curl/curl.hpp"
|
||||
|
||||
#include <limits>
|
||||
#include <utility> //std::pair
|
||||
|
||||
@ -10,10 +10,10 @@
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "common/storage_per_retry_policy.hpp"
|
||||
#include "common/storage_version.hpp"
|
||||
#include "credentials/policy/policies.hpp"
|
||||
#include "azure/core/credentials/policy/policies.hpp"
|
||||
#include "datalake/datalake_file_system_client.hpp"
|
||||
#include "datalake/datalake_utilities.hpp"
|
||||
#include "http/curl/curl.hpp"
|
||||
#include "azure/core/http/curl/curl.hpp"
|
||||
|
||||
namespace Azure { namespace Storage { namespace Files { namespace DataLake {
|
||||
namespace {
|
||||
|
||||
@ -9,8 +9,8 @@
|
||||
#include "common/storage_common.hpp"
|
||||
#include "common/storage_per_retry_policy.hpp"
|
||||
#include "common/storage_version.hpp"
|
||||
#include "credentials/policy/policies.hpp"
|
||||
#include "http/curl/curl.hpp"
|
||||
#include "azure/core/credentials/policy/policies.hpp"
|
||||
#include "azure/core/http/curl/curl.hpp"
|
||||
#include "shares/share_directory_client.hpp"
|
||||
#include "shares/share_file_client.hpp"
|
||||
|
||||
|
||||
@ -9,8 +9,8 @@
|
||||
#include "common/storage_common.hpp"
|
||||
#include "common/storage_per_retry_policy.hpp"
|
||||
#include "common/storage_version.hpp"
|
||||
#include "credentials/policy/policies.hpp"
|
||||
#include "http/curl/curl.hpp"
|
||||
#include "azure/core/credentials/policy/policies.hpp"
|
||||
#include "azure/core/http/curl/curl.hpp"
|
||||
#include "shares/share_file_client.hpp"
|
||||
|
||||
namespace Azure { namespace Storage { namespace Files { namespace Shares {
|
||||
|
||||
@ -12,8 +12,8 @@
|
||||
#include "common/storage_common.hpp"
|
||||
#include "common/storage_per_retry_policy.hpp"
|
||||
#include "common/storage_version.hpp"
|
||||
#include "credentials/policy/policies.hpp"
|
||||
#include "http/curl/curl.hpp"
|
||||
#include "azure/core/credentials/policy/policies.hpp"
|
||||
#include "azure/core/http/curl/curl.hpp"
|
||||
#include "shares/share_constants.hpp"
|
||||
|
||||
namespace Azure { namespace Storage { namespace Files { namespace Shares {
|
||||
|
||||
@ -9,8 +9,8 @@
|
||||
#include "common/storage_credential.hpp"
|
||||
#include "common/storage_per_retry_policy.hpp"
|
||||
#include "common/storage_version.hpp"
|
||||
#include "credentials/policy/policies.hpp"
|
||||
#include "http/curl/curl.hpp"
|
||||
#include "azure/core/credentials/policy/policies.hpp"
|
||||
#include "azure/core/http/curl/curl.hpp"
|
||||
#include "shares/share_client.hpp"
|
||||
|
||||
namespace Azure { namespace Storage { namespace Files { namespace Shares {
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
// SPDX-License-Identifier: MIT
|
||||
|
||||
#include "blobs/blob.hpp"
|
||||
#include "credentials/credentials.hpp"
|
||||
#include "azure/core/credentials/credentials.hpp"
|
||||
#include "test_base.hpp"
|
||||
|
||||
namespace Azure { namespace Storage { namespace Test {
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "http/body_stream.hpp"
|
||||
#include "azure/core/http/body_stream.hpp"
|
||||
|
||||
#include "common/constants.hpp"
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user