Mercurial > hg > orthanc-transfers
view Framework/PullMode/BucketPullQuery.h @ 85:b1d9e2310431
cppcheck
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 20 May 2025 10:07:01 +0200 |
parents | 72c75a0eff24 |
children |
line wrap: on
line source
/** * Transfers accelerator plugin for Orthanc * Copyright (C) 2018-2023 Osimis S.A., Belgium * Copyright (C) 2024-2025 Orthanc Team SRL, Belgium * Copyright (C) 2021-2025 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program is free software: you can redistribute it and/or * modify it under the terms of the GNU Affero General Public License * as published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. **/ #pragma once #include "../HttpQueries/IHttpQuery.h" #include "../DownloadArea.h" #include <Compatibility.h> namespace OrthancPlugins { class BucketPullQuery : public IHttpQuery { private: DownloadArea& area_; TransferBucket bucket_; std::string peer_; std::string uri_; BucketCompression compression_; public: BucketPullQuery(DownloadArea& area, const TransferBucket& bucket, const std::string& peer, BucketCompression compression); virtual Orthanc::HttpMethod GetMethod() const ORTHANC_OVERRIDE { return Orthanc::HttpMethod_Get; } virtual const std::string& GetPeer() const ORTHANC_OVERRIDE { return peer_; } virtual const std::string& GetUri() const ORTHANC_OVERRIDE { return uri_; } virtual void ReadBody(std::string& body) const ORTHANC_OVERRIDE; virtual void HandleAnswer(const void* answer, size_t size) ORTHANC_OVERRIDE; virtual void GetHttpHeaders(std::map<std::string, std::string>& headers) const ORTHANC_OVERRIDE { } }; }