diff options
| author | Carl Hetherington <cth@carlh.net> | 2015-07-17 15:37:23 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2015-07-17 15:40:56 +0100 |
| commit | 1d5462ef8d6a32b964f0335e3dd68aac31075d14 (patch) | |
| tree | 69d94357bbfcc3b194152a6260d3cc450a47e8e9 /src/lib/curl_uploader.h | |
| parent | b6abe4901c7115d37706f52febe0c7caa5d3c258 (diff) | |
Add FTP uploader using curl.
Diffstat (limited to 'src/lib/curl_uploader.h')
| -rw-r--r-- | src/lib/curl_uploader.h | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/lib/curl_uploader.h b/src/lib/curl_uploader.h new file mode 100644 index 000000000..d83c71eec --- /dev/null +++ b/src/lib/curl_uploader.h @@ -0,0 +1,41 @@ +/* + Copyright (C) 2015 Carl Hetherington <cth@carlh.net> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 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 General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include "uploader.h" +#include <curl/curl.h> + +class CurlUploader : public Uploader +{ +public: + CurlUploader (boost::function<void (std::string)> set_status, boost::function<void (float)> set_progress); + ~CurlUploader (); + + size_t read_callback (void* ptr, size_t size, size_t nmemb); + +protected: + virtual void create_directory (boost::filesystem::path directory); + virtual void upload_file (boost::filesystem::path from, boost::filesystem::path to, boost::uintmax_t& transferred, boost::uintmax_t total_size); + +private: + CURL* _curl; + + FILE* _file; + boost::uintmax_t* _transferred; + boost::uintmax_t _total_size; +}; |
