ORE Studio 0.0.4
Loading...
Searching...
No Matches
http_client.hpp
1/* -*- mode: c++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2 *
3 * Copyright (C) 2026 Marco Craveiro <marco.craveiro@gmail.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free Software
7 * Foundation; either version 3 of the License, or (at your option) any later
8 * version.
9 *
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 * details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * this program; if not, write to the Free Software Foundation, Inc., 51
17 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 *
19 */
20#ifndef ORES_COMPUTE_WRAPPER_NET_HTTP_CLIENT_HPP
21#define ORES_COMPUTE_WRAPPER_NET_HTTP_CLIENT_HPP
22
23#include <string>
24#include <filesystem>
25
26namespace ores::compute::wrapper::net {
27
37public:
45 static void download(const std::string& url,
46 const std::filesystem::path& dest);
47
55 static void upload(const std::string& url,
56 const std::filesystem::path& src);
57
58private:
62 struct url_parts {
63 std::string host;
64 std::string port;
65 std::string path;
66 };
67
68 static url_parts parse_url(const std::string& url);
69};
70
71}
72
73#endif
Definition __init__.py:1
Synchronous HTTP client for compute grid file transfers.
Definition http_client.hpp:36
static void upload(const std::string &url, const std::filesystem::path &src)
Uploads a local file to a remote URL via HTTP PUT.
Definition http_client.cpp:96
static void download(const std::string &url, const std::filesystem::path &dest)
Downloads a remote resource to a local file via HTTP GET.
Definition http_client.cpp:56