2013-08-28 23:04:56 -04:00
|
|
|
/*
|
|
|
|
Minetest
|
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
|
|
|
|
|
|
|
This program 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.
|
|
|
|
|
|
|
|
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 Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HTTPFETCH_HEADER
|
|
|
|
#define HTTPFETCH_HEADER
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2014-06-19 16:00:22 -04:00
|
|
|
#include <map>
|
2013-08-28 23:04:56 -04:00
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
// Can be used in place of "caller" in asynchronous transfers to discard result
|
|
|
|
// (used as default value of "caller")
|
|
|
|
#define HTTPFETCH_DISCARD 0
|
2013-11-09 16:49:27 -05:00
|
|
|
#define HTTPFETCH_SYNC 1
|
2013-08-28 23:04:56 -04:00
|
|
|
|
|
|
|
struct HTTPFetchRequest
|
|
|
|
{
|
|
|
|
std::string url;
|
|
|
|
|
|
|
|
// Identifies the caller (for asynchronous requests)
|
|
|
|
// Ignored by httpfetch_sync
|
|
|
|
unsigned long caller;
|
|
|
|
|
|
|
|
// Some number that identifies the request
|
|
|
|
// (when the same caller issues multiple httpfetch_async calls)
|
|
|
|
unsigned long request_id;
|
|
|
|
|
|
|
|
// Timeout for the whole transfer, in milliseconds
|
|
|
|
long timeout;
|
|
|
|
|
|
|
|
// Timeout for the connection phase, in milliseconds
|
|
|
|
long connect_timeout;
|
|
|
|
|
2014-06-19 16:00:22 -04:00
|
|
|
// Indicates if this is multipart/form-data or
|
|
|
|
// application/x-www-form-urlencoded. POST-only.
|
|
|
|
bool multipart;
|
|
|
|
|
|
|
|
// POST fields. Fields are escaped properly.
|
2013-08-28 23:04:56 -04:00
|
|
|
// If this is empty a GET request is done instead.
|
2014-06-19 16:00:22 -04:00
|
|
|
std::map<std::string, std::string> post_fields;
|
|
|
|
|
|
|
|
// Raw POST data, overrides post_fields.
|
|
|
|
std::string post_data;
|
2013-08-28 23:04:56 -04:00
|
|
|
|
|
|
|
// If not empty, should contain entries such as "Accept: text/html"
|
|
|
|
std::vector<std::string> extra_headers;
|
|
|
|
|
2013-08-28 23:58:13 -04:00
|
|
|
//useragent to use
|
|
|
|
std::string useragent;
|
|
|
|
|
2014-01-06 17:50:45 -05:00
|
|
|
HTTPFetchRequest();
|
2013-08-28 23:04:56 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
struct HTTPFetchResult
|
|
|
|
{
|
|
|
|
bool succeeded;
|
|
|
|
bool timeout;
|
|
|
|
long response_code;
|
|
|
|
std::string data;
|
|
|
|
// The caller and request_id from the corresponding HTTPFetchRequest.
|
|
|
|
unsigned long caller;
|
|
|
|
unsigned long request_id;
|
|
|
|
|
|
|
|
HTTPFetchResult()
|
|
|
|
{
|
|
|
|
succeeded = false;
|
|
|
|
timeout = false;
|
|
|
|
response_code = 0;
|
|
|
|
data = "";
|
|
|
|
caller = HTTPFETCH_DISCARD;
|
|
|
|
request_id = 0;
|
|
|
|
}
|
|
|
|
|
2014-09-14 20:46:45 -04:00
|
|
|
HTTPFetchResult(const HTTPFetchRequest &fetch_request)
|
2013-08-28 23:04:56 -04:00
|
|
|
{
|
|
|
|
succeeded = false;
|
|
|
|
timeout = false;
|
|
|
|
response_code = 0;
|
|
|
|
data = "";
|
2014-09-14 20:46:45 -04:00
|
|
|
caller = fetch_request.caller;
|
|
|
|
request_id = fetch_request.request_id;
|
2013-08-28 23:04:56 -04:00
|
|
|
}
|
2013-11-09 16:49:27 -05:00
|
|
|
|
2013-08-28 23:04:56 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// Initializes the httpfetch module
|
|
|
|
void httpfetch_init(int parallel_limit);
|
|
|
|
|
|
|
|
// Stops the httpfetch thread and cleans up resources
|
|
|
|
void httpfetch_cleanup();
|
|
|
|
|
|
|
|
// Starts an asynchronous HTTP fetch request
|
2014-09-14 20:46:45 -04:00
|
|
|
void httpfetch_async(const HTTPFetchRequest &fetch_request);
|
2013-08-28 23:04:56 -04:00
|
|
|
|
|
|
|
// If any fetch for the given caller ID is complete, removes it from the
|
2014-09-14 20:46:45 -04:00
|
|
|
// result queue, sets the fetch result and returns true. Otherwise returns false.
|
|
|
|
bool httpfetch_async_get(unsigned long caller, HTTPFetchResult &fetch_result);
|
2013-08-28 23:04:56 -04:00
|
|
|
|
|
|
|
// Allocates a caller ID for httpfetch_async
|
|
|
|
// Not required if you want to set caller = HTTPFETCH_DISCARD
|
|
|
|
unsigned long httpfetch_caller_alloc();
|
|
|
|
|
|
|
|
// Frees a caller ID allocated with httpfetch_caller_alloc
|
|
|
|
// Note: This can be expensive, because the httpfetch thread is told
|
|
|
|
// to stop any ongoing fetches for the given caller.
|
|
|
|
void httpfetch_caller_free(unsigned long caller);
|
|
|
|
|
|
|
|
// Performs a synchronous HTTP request. This blocks and therefore should
|
|
|
|
// only be used from background threads.
|
2014-09-14 20:46:45 -04:00
|
|
|
void httpfetch_sync(const HTTPFetchRequest &fetch_request,
|
|
|
|
HTTPFetchResult &fetch_result);
|
2013-08-28 23:04:56 -04:00
|
|
|
|
|
|
|
|
|
|
|
#endif // !HTTPFETCH_HEADER
|