~ubuntu-branches/ubuntu/trusty/tomahawk/trusty-proposed

« back to all changes in this revision

Viewing changes to thirdparty/breakpad/common/linux/libcurl_wrapper.h

  • Committer: Package Import Robot
  • Author(s): Harald Sitter
  • Date: 2013-03-07 21:50:13 UTC
  • Revision ID: package-import@ubuntu.com-20130307215013-6gdjkdds7i9uenvs
Tags: upstream-0.6.0+dfsg
ImportĀ upstreamĀ versionĀ 0.6.0+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
30
// A wrapper for libcurl to do HTTP Uploads, to support easy mocking
 
31
// and unit testing of the HTTPUpload class.
 
32
 
 
33
#include <string>
 
34
#include <map>
 
35
 
 
36
#include "third_party/curl/curl.h"
 
37
 
 
38
namespace google_breakpad {
 
39
class LibcurlWrapper {
 
40
 public:
 
41
  LibcurlWrapper();
 
42
  virtual bool Init();
 
43
  virtual bool SetProxy(const std::string& proxy_host,
 
44
                        const std::string& proxy_userpwd);
 
45
  virtual bool AddFile(const std::string& upload_file_path,
 
46
                       const std::string& basename);
 
47
  virtual bool SendRequest(const std::string& url,
 
48
                           const std::map<std::string, std::string>& parameters,
 
49
                           std::string* server_response);
 
50
 private:
 
51
  // This function initializes class state corresponding to function
 
52
  // pointers into the CURL library.
 
53
  bool SetFunctionPointers();
 
54
 
 
55
  bool init_ok_;                 // Whether init succeeded
 
56
  void* curl_lib_;               // Pointer to result of dlopen() on
 
57
                                 // curl library
 
58
  std::string last_curl_error_;  // The text of the last error when
 
59
                                 // dealing
 
60
  // with CURL.
 
61
 
 
62
  CURL *curl_;                   // Pointer for handle for CURL calls.
 
63
 
 
64
  CURL* (*easy_init_)(void);
 
65
 
 
66
  // Stateful pointers for calling into curl_formadd()
 
67
  struct curl_httppost *formpost_;
 
68
  struct curl_httppost *lastptr_;
 
69
  struct curl_slist *headerlist_;
 
70
 
 
71
  // Function pointers into CURL library
 
72
  CURLcode (*easy_setopt_)(CURL *, CURLoption, ...);
 
73
  CURLFORMcode (*formadd_)(struct curl_httppost **,
 
74
                           struct curl_httppost **, ...);
 
75
  struct curl_slist* (*slist_append_)(struct curl_slist *, const char *);
 
76
  void (*slist_free_all_)(struct curl_slist *);
 
77
  CURLcode (*easy_perform_)(CURL *);
 
78
  const char* (*easy_strerror_)(CURLcode);
 
79
  void (*easy_cleanup_)(CURL *);
 
80
  void (*formfree_)(struct curl_httppost *);
 
81
 
 
82
};
 
83
}