/usr/include/musicbrainz5/HTTPFetch.h is in libmusicbrainz5-dev 5.1.0+git20150707-7.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 | /* --------------------------------------------------------------------------
libmusicbrainz5 - Client library to access MusicBrainz
Copyright (C) 2012 Andrew Hawkins
This file is part of libmusicbrainz5.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
libmusicbrainz5 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
Lesser General Public License for more details.
You should have received a copy of the GNU General Public License
along with this library. If not, see <http://www.gnu.org/licenses/>.
$Id$
----------------------------------------------------------------------------*/
#ifndef _MUSICBRAINZ5_HTTP_FETCH_
#define _MUSICBRAINZ5_HTTP_FETCH_
#include <string>
#include <vector>
namespace MusicBrainz5
{
class CHTTPFetchPrivate;
class CExceptionBase: public std::exception
{
public:
CExceptionBase(const std::string& ErrorMessage, const std::string& Exception)
: m_ErrorMessage(ErrorMessage),
m_Exception(Exception)
{
m_FullMessage=m_Exception + ": " + m_ErrorMessage;
}
virtual ~CExceptionBase() throw() {};
virtual const char* what() const throw()
{
return m_FullMessage.c_str();
}
private:
std::string m_ErrorMessage;
std::string m_Exception;
std::string m_FullMessage;
};
/**
* Exception thrown when an error occurs connecting to web service
*/
class CConnectionError: public CExceptionBase
{
public:
CConnectionError(const std::string& ErrorMessage)
: CExceptionBase(ErrorMessage,"Connection error")
{
}
};
/**
* Exception thrown when a connection to the web service times out
*/
class CTimeoutError: public CExceptionBase
{
public:
CTimeoutError(const std::string& ErrorMessage)
: CExceptionBase(ErrorMessage,"Timeout error")
{
}
};
/**
* Exception thrown when an authentication error occurs
*/
class CAuthenticationError: public CExceptionBase
{
public:
CAuthenticationError(const std::string& ErrorMessage)
: CExceptionBase(ErrorMessage,"Authentication error")
{
}
};
/**
* Exception thrown when an error occurs fetching data
*/
class CFetchError: public CExceptionBase
{
public:
CFetchError(const std::string& ErrorMessage)
: CExceptionBase(ErrorMessage,"Fetch error")
{
}
};
/**
* Exception thrown when an invalid request is made
*/
class CRequestError: public CExceptionBase
{
public:
CRequestError(const std::string& ErrorMessage)
: CExceptionBase(ErrorMessage,"Request error")
{
}
};
/**
* Exception thrown when the requested resource is not found
*/
class CResourceNotFoundError: public CExceptionBase
{
public:
CResourceNotFoundError(const std::string& ErrorMessage)
: CExceptionBase(ErrorMessage,"Resource not found error")
{
}
};
/**
* @brief Object for make HTTP requests
*
* Object to be used to make HTTP requests
*
*/
class CHTTPFetch
{
public:
/**
* @brief Constructor
*
* Constructor
*
* @param UserAgent User agent string to send
* @param Host Host name to connect to
* @param Port Port to connect to (80 by default)
*/
CHTTPFetch(const std::string& UserAgent, const std::string& Host, int Port=80);
~CHTTPFetch();
/**
* @brief Set the user name to use
*
* Set the user name to use when authenticating with the web server
*
* @param UserName User name to use
*/
void SetUserName(const std::string& UserName);
/**
* @brief Set the password to use
*
* Set the password to use when authenticating with the web server
*
* @param Password Password to use
*/
void SetPassword(const std::string& Password);
/**
* @brief Set the proxy server to use
*
* Set the proxy server to use when connecting with the web server
*
* @param ProxyHost Proxy server to use
*/
void SetProxyHost(const std::string& ProxyHost);
/**
* @brief Set the proxy port to use
*
* Set the proxy server port to use when connecting to the web server
*
* @param ProxyPort Proxy server port to use
*/
void SetProxyPort(int ProxyPort);
/**
* @brief Set the proxy user name to use
*
* Set the user name to use when authenticating with the proxy server
*
* @param ProxyUserName Proxy user name to use
*/
void SetProxyUserName(const std::string& ProxyUserName);
/**
* @brief Set the proxy password to use
*
* Set the password to use when authenticating with the proxy server
*
* @param ProxyPassword Proxy server password to use
*/
void SetProxyPassword(const std::string& ProxyPassword);
/**
* @brief Make a request to the server
*
* Make a request to the server
*
* @param URL URL to request
* @param Request Request type (GET by default)
*
* @return Number of bytes received
*
* @throw CConnectionError An error occurred connecting to the web server
* @throw CTimeoutError A timeout occurred when connecting to the web server
* @throw CAuthenticationError An authentication error occurred
* @throw CFetchError An error occurred fetching data
* @throw CRequestError The request was invalid
* @throw CResourceNotFoundError The requested resource was not found
*/
int Fetch(const std::string& URL, const std::string& Request="GET");
/**
* @brief Get the data receieved
*
* Get the data received from the request
*
* @return Data received
*/
std::vector<unsigned char> Data() const;
/**
* @brief libneon result code from the request
*
* Return the result code from the request
*
* @return libneon result code from the request
*/
int Result() const;
/**
* @brief Status
*
* Return the HTTP status code from the request
*
* @return HTTP status code from the request
*/
int Status() const;
/**
* @brief Return the error message from the request
*
* Return the error message from the request
*
* @return Error message from the request
*/
std::string ErrorMessage() const;
private:
CHTTPFetchPrivate * const m_d;
static int httpAuth(void *userdata, const char *realm, int attempts, char *username, char *password);
static int proxyAuth(void *userdata, const char *realm, int attempts, char *username, char *password);
static int httpResponseReader(void *userdata, const char *buf, size_t len);
};
}
#endif
|