Restructure the azure inc folder (#514)

* Restructure the azure inc folder
This commit is contained in:
Rick Winter 2020-08-25 20:08:34 -07:00 committed by GitHub
parent ae6ada5cfb
commit c5438d623b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
91 changed files with 178 additions and 175 deletions

View File

@ -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));

View File

@ -3,7 +3,7 @@
#pragma once
#include <context.hpp>
#include "azure/core/context.hpp"
#include <chrono>
#include <memory>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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 {

View File

@ -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>

View File

@ -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);

View File

@ -3,7 +3,7 @@
#pragma once
#include "azure.hpp"
#include "azure/core/azure.hpp"
#include <functional>
#include <initializer_list>

View File

@ -3,7 +3,7 @@
#pragma once
#include <http/http.hpp>
#include <azure/core/http/http.hpp>
namespace Azure { namespace Core {

View File

@ -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;

View File

@ -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>

View File

@ -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;

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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;

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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;

View File

@ -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;

View File

@ -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>

View File

@ -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>

View File

@ -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

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -3,7 +3,7 @@
#include "gtest/gtest.h"
#include "context.hpp"
#include "azure/core/context.hpp"
#include <chrono>
#include <memory>

View File

@ -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 {

View File

@ -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>

View File

@ -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>

View File

@ -2,7 +2,7 @@
// SPDX-License-Identifier: MIT
#include "gtest/gtest.h"
#include <nullable.hpp>
#include <azure/core/nullable.hpp>
#include <string>
#include <vector>

View File

@ -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)

View File

@ -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;

View File

@ -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>

View File

@ -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>

View File

@ -2,7 +2,7 @@
// SPDX-License-Identifier: MIT
#include "gtest/gtest.h"
#include <uuid.hpp>
#include <azure/core/uuid.hpp>
#include <string>
#include <vector>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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 {

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -3,7 +3,7 @@
#pragma once
#include "nullable.hpp"
#include "azure/core/nullable.hpp"
#include <string>

View File

@ -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 {

View File

@ -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>

View File

@ -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 {

View File

@ -3,7 +3,7 @@
#pragma once
#include "http/http.hpp"
#include "azure/core/http/http.hpp"
#include <map>
#include <stdexcept>

View File

@ -3,7 +3,7 @@
#pragma once
#include "http/policy.hpp"
#include "azure/core/http/policy.hpp"
namespace Azure { namespace Storage {

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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;

View File

@ -3,7 +3,7 @@
#include "common/storage_common.hpp"
#include "uuid.hpp"
#include "azure/core/uuid.hpp"
namespace Azure { namespace Storage {

View File

@ -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>

View File

@ -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

View File

@ -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

View File

@ -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 {

View File

@ -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

View File

@ -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 {

View File

@ -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"

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -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 {

View File

@ -3,7 +3,7 @@
#pragma once
#include "http/body_stream.hpp"
#include "azure/core/http/body_stream.hpp"
#include "common/constants.hpp"