2017-02-14 15:20:00 +02:00
|
|
|
#pragma once
|
2023-04-01 06:18:41 +03:00
|
|
|
///@file
|
2017-02-14 15:20:00 +02:00
|
|
|
|
|
|
|
#if ENABLE_S3
|
|
|
|
|
|
|
|
#include "ref.hh"
|
|
|
|
|
2022-01-17 23:20:05 +02:00
|
|
|
#include <optional>
|
2022-04-28 15:37:05 +03:00
|
|
|
#include <string>
|
2022-01-17 23:20:05 +02:00
|
|
|
|
2017-02-14 15:20:00 +02:00
|
|
|
namespace Aws { namespace Client { class ClientConfiguration; } }
|
|
|
|
namespace Aws { namespace S3 { class S3Client; } }
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
struct S3Helper
|
|
|
|
{
|
|
|
|
ref<Aws::Client::ClientConfiguration> config;
|
|
|
|
ref<Aws::S3::S3Client> client;
|
|
|
|
|
2018-12-08 00:38:24 +02:00
|
|
|
S3Helper(const std::string & profile, const std::string & region, const std::string & scheme, const std::string & endpoint);
|
2017-02-14 15:20:00 +02:00
|
|
|
|
2018-12-08 00:38:24 +02:00
|
|
|
ref<Aws::Client::ClientConfiguration> makeConfig(const std::string & region, const std::string & scheme, const std::string & endpoint);
|
2017-02-14 15:20:00 +02:00
|
|
|
|
2020-04-07 00:43:43 +03:00
|
|
|
struct FileTransferResult
|
2017-02-14 15:20:00 +02:00
|
|
|
{
|
2022-01-17 23:20:05 +02:00
|
|
|
std::optional<std::string> data;
|
2017-02-14 15:20:00 +02:00
|
|
|
unsigned int durationMs;
|
|
|
|
};
|
|
|
|
|
2020-04-07 00:43:43 +03:00
|
|
|
FileTransferResult getObject(
|
2017-02-14 15:20:00 +02:00
|
|
|
const std::string & bucketName, const std::string & key);
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|