30 #include <kvikio/error.hpp>
31 #include <kvikio/parallel_operation.hpp>
32 #include <kvikio/posix_io.hpp>
33 #include <kvikio/utils.hpp>
63 virtual std::string
str()
const = 0;
83 std::string
str()
const override;
93 std::string _aws_sigv4;
94 std::string _aws_userpwd;
109 static std::string unwrap_or_default(std::optional<std::string> aws_arg,
110 std::string
const& env_var,
111 std::string
const& err_msg =
"");
130 std::string
const& object_name,
131 std::optional<std::string>
const& aws_region,
132 std::optional<std::string> aws_endpoint_url);
142 [[nodiscard]]
static std::pair<std::string, std::string>
parse_s3_url(std::string
const& s3_url);
158 std::optional<std::string> aws_region = std::nullopt,
159 std::optional<std::string> aws_access_key = std::nullopt,
160 std::optional<std::string> aws_secret_access_key = std::nullopt);
179 std::string
const& object_name,
180 std::optional<std::string> aws_region = std::nullopt,
181 std::optional<std::string> aws_access_key = std::nullopt,
182 std::optional<std::string> aws_secret_access_key = std::nullopt,
183 std::optional<std::string> aws_endpoint_url = std::nullopt);
186 std::string
str()
const override;
195 std::unique_ptr<RemoteEndpoint> _endpoint;
229 [[nodiscard]] std::size_t
nbytes() const noexcept;
250 std::
size_t read(
void* buf, std::
size_t size, std::
size_t file_offset = 0);
264 std::future<std::
size_t>
pread(
void* buf,
266 std::
size_t file_offset = 0,
267 std::
size_t task_size =
defaults::task_size());
Representation of a curl easy handle pointer and its operations.
A remote endpoint using http.
std::string str() const override
Get a description of this remote point instance.
HttpEndpoint(std::string url)
Create an http endpoint from a url.
void setopt(CurlHandle &curl) override
Set needed connection options on a curl handle.
Abstract base class for remote endpoints.
virtual void setopt(CurlHandle &curl)=0
Set needed connection options on a curl handle.
virtual std::string str() const =0
Get a description of this remote point instance.
std::size_t read(void *buf, std::size_t size, std::size_t file_offset=0)
Read from remote source into buffer (host or device memory).
RemoteEndpoint const & endpoint() const noexcept
Get a const reference to the underlying remote endpoint.
std::size_t nbytes() const noexcept
Get the file size.
RemoteHandle(std::unique_ptr< RemoteEndpoint > endpoint)
Create a new remote handle from an endpoint (infers the file size).
std::future< std::size_t > pread(void *buf, std::size_t size, std::size_t file_offset=0, std::size_t task_size=defaults::task_size())
Read from remote source into buffer (host or device memory) in parallel.
RemoteHandle(std::unique_ptr< RemoteEndpoint > endpoint, std::size_t nbytes)
Create a new remote handle from an endpoint and a file size.
A remote endpoint using AWS's S3 protocol.
S3Endpoint(std::string const &bucket_name, std::string const &object_name, std::optional< std::string > aws_region=std::nullopt, std::optional< std::string > aws_access_key=std::nullopt, std::optional< std::string > aws_secret_access_key=std::nullopt, std::optional< std::string > aws_endpoint_url=std::nullopt)
Create a S3 endpoint from a bucket and object name.
static std::string url_from_bucket_and_object(std::string const &bucket_name, std::string const &object_name, std::optional< std::string > const &aws_region, std::optional< std::string > aws_endpoint_url)
Get url from a AWS S3 bucket and object name.
void setopt(CurlHandle &curl) override
Set needed connection options on a curl handle.
S3Endpoint(std::string url, std::optional< std::string > aws_region=std::nullopt, std::optional< std::string > aws_access_key=std::nullopt, std::optional< std::string > aws_secret_access_key=std::nullopt)
Create a S3 endpoint from a url.
static std::pair< std::string, std::string > parse_s3_url(std::string const &s3_url)
Given an url like "s3://<bucket>/<object>", return the name of the bucket and object.
std::string str() const override
Get a description of this remote point instance.
Singleton class of default values used throughout KvikIO.