libcurl_wrapper.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. // Copyright (c) 2009, Google Inc.
  2. // All rights reserved.
  3. //
  4. // Redistribution and use in source and binary forms, with or without
  5. // modification, are permitted provided that the following conditions are
  6. // met:
  7. //
  8. // * Redistributions of source code must retain the above copyright
  9. // notice, this list of conditions and the following disclaimer.
  10. // * Redistributions in binary form must reproduce the above
  11. // copyright notice, this list of conditions and the following disclaimer
  12. // in the documentation and/or other materials provided with the
  13. // distribution.
  14. // * Neither the name of Google Inc. nor the names of its
  15. // contributors may be used to endorse or promote products derived from
  16. // this software without specific prior written permission.
  17. //
  18. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  21. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  22. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  23. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  24. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  25. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  26. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  28. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. // A wrapper for libcurl to do HTTP Uploads, to support easy mocking
  30. // and unit testing of the HTTPUpload class.
  31. #ifndef COMMON_LINUX_LIBCURL_WRAPPER_H_
  32. #define COMMON_LINUX_LIBCURL_WRAPPER_H_
  33. #include <string>
  34. #include <map>
  35. #include "common/using_std_string.h"
  36. #include "third_party/curl/curl.h"
  37. namespace google_breakpad {
  38. class LibcurlWrapper {
  39. public:
  40. LibcurlWrapper();
  41. virtual ~LibcurlWrapper();
  42. virtual bool Init();
  43. virtual bool SetProxy(const string& proxy_host,
  44. const string& proxy_userpwd);
  45. virtual bool AddFile(const string& upload_file_path,
  46. const string& basename);
  47. virtual bool SendRequest(const string& url,
  48. const std::map<string, string>& parameters,
  49. long* http_status_code,
  50. string* http_header_data,
  51. string* http_response_data);
  52. bool SendGetRequest(const string& url,
  53. long* http_status_code,
  54. string* http_header_data,
  55. string* http_response_data);
  56. bool SendPutRequest(const string& url,
  57. const string& path,
  58. long* http_status_code,
  59. string* http_header_data,
  60. string* http_response_data);
  61. bool SendSimplePostRequest(const string& url,
  62. const string& body,
  63. const string& content_type,
  64. long* http_status_code,
  65. string* http_header_data,
  66. string* http_response_data);
  67. private:
  68. // This function initializes class state corresponding to function
  69. // pointers into the CURL library.
  70. bool SetFunctionPointers();
  71. bool SendRequestInner(const string& url,
  72. long* http_status_code,
  73. string* http_header_data,
  74. string* http_response_data);
  75. void Reset();
  76. bool CheckInit();
  77. bool init_ok_; // Whether init succeeded
  78. void* curl_lib_; // Pointer to result of dlopen() on
  79. // curl library
  80. string last_curl_error_; // The text of the last error when
  81. // dealing
  82. // with CURL.
  83. CURL *curl_; // Pointer for handle for CURL calls.
  84. CURL* (*easy_init_)(void);
  85. // Stateful pointers for calling into curl_formadd()
  86. struct curl_httppost *formpost_;
  87. struct curl_httppost *lastptr_;
  88. struct curl_slist *headerlist_;
  89. // Function pointers into CURL library
  90. CURLcode (*easy_setopt_)(CURL *, CURLoption, ...);
  91. CURLFORMcode (*formadd_)(struct curl_httppost **,
  92. struct curl_httppost **, ...);
  93. struct curl_slist* (*slist_append_)(struct curl_slist *, const char *);
  94. void (*slist_free_all_)(struct curl_slist *);
  95. CURLcode (*easy_perform_)(CURL *);
  96. const char* (*easy_strerror_)(CURLcode);
  97. void (*easy_cleanup_)(CURL *);
  98. CURLcode (*easy_getinfo_)(CURL *, CURLINFO info, ...);
  99. void (*easy_reset_)(CURL*);
  100. void (*formfree_)(struct curl_httppost *);
  101. };
  102. }
  103. #endif // COMMON_LINUX_LIBCURL_WRAPPER_H_