diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-04-16 22:20:54 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-05-05 23:38:41 +0200 |
| commit | 8a8c977c12fc65f1f50ea05099387e0fc8840e7d (patch) | |
| tree | 2d2c8663652939d643779d1ab1c18a12813fcbd2 /src/lib/internet.cc | |
| parent | efe153ab23b54cdbf28c653f2ccb0f25ca6bd015 (diff) | |
Use dcp::File in DCP-o-matic (#2231).
Diffstat (limited to 'src/lib/internet.cc')
| -rw-r--r-- | src/lib/internet.cc | 27 |
1 files changed, 14 insertions, 13 deletions
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 <dcp/file.h> #include <curl/curl.h> #include <zip.h> #include <boost/optional.hpp> @@ -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<optional<string if (e) { return e; } - return load (temp.file(), url); + return load (temp.path(), url); } @@ -159,14 +160,14 @@ get_from_zip_url (string url, string file, bool pasv, bool skip_pasv_ip, functio Centos 6, Centos 7, Debian 7 and Debian 8. */ - auto zip_file = fopen_boost (temp_zip.file (), "rb"); + auto& zip_file = temp_zip.open("rb"); if (!zip_file) { - return optional<string> (_("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<string> (_("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<string> (_("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); } |
