From 98b55c3a1d17ac0558331e21a394681299d4e230 Mon Sep 17 00:00:00 2001 From: eldritch horrors Date: Sat, 26 Oct 2024 14:51:55 +0200 Subject: [PATCH] libstore: move FileTransferRequest::verb to TransferItem this function is only used internally by curl wrapper. Change-Id: I71d4c430cb069e2c949be769c17fede8dd04d480 --- src/libstore/filetransfer.cc | 15 ++++++++++----- src/libstore/filetransfer.hh | 5 ----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/libstore/filetransfer.cc b/src/libstore/filetransfer.cc index 4a0638dc6..c086911b0 100644 --- a/src/libstore/filetransfer.cc +++ b/src/libstore/filetransfer.cc @@ -79,6 +79,11 @@ struct curlFileTransfer : public FileTransfer return httpStatus; } + std::string verb() const + { + return request.data ? "upload" : "download"; + } + TransferItem(curlFileTransfer & fileTransfer, const FileTransferRequest & request, std::invocable auto callback, @@ -332,7 +337,7 @@ struct curlFileTransfer : public FileTransfer result.effectiveUri = effectiveUriCStr; debug("finished %s of '%s'; curl status = %d, HTTP status = %d, body = %d bytes", - request.verb(), request.uri, code, httpStatus, result.bodySize); + verb(), request.uri, code, httpStatus, result.bodySize); // this has to happen here until we can return an actual future. // wrapping user `callback`s instead is not possible because the @@ -410,17 +415,17 @@ struct curlFileTransfer : public FileTransfer response = std::move(result.data); auto exc = code == CURLE_ABORTED_BY_CALLBACK && _isInterrupted - ? FileTransferError(Interrupted, std::move(response), "%s of '%s' was interrupted", request.verb(), request.uri) + ? FileTransferError(Interrupted, std::move(response), "%s of '%s' was interrupted", verb(), request.uri) : httpStatus != 0 ? FileTransferError(err, std::move(response), "unable to %s '%s': HTTP error %d (%s)%s", - request.verb(), request.uri, httpStatus, statusMsg, + verb(), request.uri, httpStatus, statusMsg, code == CURLE_OK ? "" : fmt(" (curl error: %s)", curl_easy_strerror(code))) : FileTransferError(err, std::move(response), "unable to %s '%s': %s (%d)", - request.verb(), request.uri, curl_easy_strerror(code), code); + verb(), request.uri, curl_easy_strerror(code), code); /* If this is a transient error, then maybe retry the download after a while. If we're writing to a @@ -586,7 +591,7 @@ struct curlFileTransfer : public FileTransfer } for (auto & item : incoming) { - debug("starting %s of %s", item->request.verb(), item->request.uri); + debug("starting %s of %s", item->verb(), item->request.uri); item->init(); curl_multi_add_handle(curlm, item->req); item->active = true; diff --git a/src/libstore/filetransfer.hh b/src/libstore/filetransfer.hh index 534b4b104..db441d6ef 100644 --- a/src/libstore/filetransfer.hh +++ b/src/libstore/filetransfer.hh @@ -66,11 +66,6 @@ struct FileTransferRequest FileTransferRequest(std::string_view uri) : uri(uri), parentAct(getCurActivity()) { } - - std::string verb() - { - return data ? "upload" : "download"; - } }; struct FileTransferResult