Disk ARchive  2.6.8
Full featured and portable backup and archiving tool
mycurl_easyhandle_node.hpp
Go to the documentation of this file.
1 /*********************************************************************/
2 // dar - disk archive - a backup/restoration program
3 // Copyright (C) 2002-2020 Denis Corbin
4 //
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
14 //
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 //
19 // to contact the author : http://dar.linux.free.fr/email.html
20 /*********************************************************************/
21 
25 
26 #ifndef MYCURL_EASYHANDLE_NODE_HPP
27 #define MYCURL_EASYHANDLE_NODE_HPP
28 
29 #include "../my_config.h"
30 
31 extern "C"
32 {
33 #if LIBCURL_AVAILABLE
34 #if HAVE_CURL_CURL_H
35 #include <curl/curl.h>
36 #endif
37 #endif
38 } // end extern "C"
39 
40 #include <string>
41 
42 namespace libdar
43 {
46 
47 #if LIBCURL_AVAILABLE
48 
49 
51 
52  class mycurl_easyhandle_node
53  {
54  public:
56  mycurl_easyhandle_node();
57 
59  mycurl_easyhandle_node(const mycurl_easyhandle_node & ref);
60 
62  mycurl_easyhandle_node(mycurl_easyhandle_node && ref) noexcept;
63 
65  mycurl_easyhandle_node & operator = (const mycurl_easyhandle_node & ref) = delete;
66 
68  mycurl_easyhandle_node & operator = (mycurl_easyhandle_node && ref) noexcept = delete;
69 
71  ~mycurl_easyhandle_node() { if(handle != nullptr) curl_easy_cleanup(handle); };
72 
73  void set_used_mode(bool mode) { used = mode; };
74  bool get_used_mode() const { return used; };
75 
76  CURL *get_handle() const { return handle; };
77 
78  private:
79  CURL *handle;
80  bool used;
81  };
82 
83 #endif
84 
86 
87 } // end of namespace
88 
89 #endif
libdar
libdar namespace encapsulate all libdar symbols
Definition: archive.hpp:46