X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Finternet.cc;h=a9c30611df49d89f065cd04ee525f1b2bdf3ab72;hb=dba7e1137282b52a1bd6ad1d56fe6371a8c97e30;hp=c0c8232eef6b13e3c3f843f0c28e451dcf6ff1cf;hpb=d311043bf3c1e3e7f41b314f7ab7c91ed7e5aa7f;p=dcpomatic.git diff --git a/src/lib/internet.cc b/src/lib/internet.cc index c0c8232ee..a9c30611d 100644 --- a/src/lib/internet.cc +++ b/src/lib/internet.cc @@ -24,6 +24,7 @@ #include "exceptions.h" #include "scoped_temporary.h" #include "util.h" +#include #include #include #include @@ -98,9 +99,9 @@ get_from_url (string url, bool pasv, bool skip_pasv_ip, ScopedTemporary& temp) auto curl = curl_easy_init (); curl_easy_setopt (curl, CURLOPT_URL, url.c_str()); - auto f = temp.open ("wb"); + auto& f = temp.open ("wb"); curl_easy_setopt (curl, CURLOPT_WRITEFUNCTION, get_from_url_data); - curl_easy_setopt (curl, CURLOPT_WRITEDATA, f); + curl_easy_setopt (curl, CURLOPT_WRITEDATA, f.get()); curl_easy_setopt (curl, CURLOPT_FTP_USE_EPSV, 0); curl_easy_setopt (curl, CURLOPT_FTP_USE_EPRT, 0); if (skip_pasv_ip) { @@ -115,7 +116,7 @@ get_from_url (string url, bool pasv, bool skip_pasv_ip, ScopedTemporary& temp) auto const cr = curl_easy_perform (curl); - temp.close (); + f.close(); curl_easy_cleanup (curl); if (cr != CURLE_OK) { return String::compose (_("Download failed (%1 error %2)"), url, (int) cr); @@ -133,7 +134,7 @@ get_from_url (string url, bool pasv, bool skip_pasv_ip, function (_("Could not open downloaded ZIP file")); + return string(_("Could not open downloaded ZIP file")); } - auto zip_source = zip_source_filep_create (zip_file, 0, -1, 0); + auto zip_source = zip_source_filep_create (zip_file.take(), 0, -1, 0); if (!zip_source) { - return optional (_("Could not open downloaded ZIP file")); + return string(_("Could not open downloaded ZIP file")); } zip_error_t error; @@ -182,22 +183,22 @@ get_from_zip_url (string url, string file, bool pasv, bool skip_pasv_ip, functio struct zip_file* file_in_zip = zip_fopen (zip, file.c_str(), 0); if (!file_in_zip) { - return optional (_("Unexpected ZIP file contents")); + return string(_("Unexpected ZIP file contents")); } ScopedTemporary temp_cert; - auto f = temp_cert.open ("wb"); + auto& f = temp_cert.open ("wb"); char buffer[4096]; while (true) { int const N = zip_fread (file_in_zip, buffer, sizeof (buffer)); - checked_fwrite (buffer, N, f, temp_cert.file()); + f.checked_write(buffer, N); if (N < int (sizeof (buffer))) { break; } } zip_fclose (file_in_zip); zip_close (zip); - temp_cert.close (); + f.close (); - return load (temp_cert.file(), url); + return load (temp_cert.path(), url); }