2005-11-18 20:02:58 +01:00
|
|
|
#ifndef HTTP_H
|
|
|
|
#define HTTP_H
|
|
|
|
|
|
|
|
#include "cache.h"
|
|
|
|
|
|
|
|
#include <curl/curl.h>
|
|
|
|
#include <curl/easy.h>
|
|
|
|
|
2007-12-09 20:30:59 +01:00
|
|
|
#include "strbuf.h"
|
|
|
|
|
2008-01-22 02:34:43 +01:00
|
|
|
/*
|
|
|
|
* We detect based on the cURL version if multi-transfer is
|
|
|
|
* usable in this implementation and define this symbol accordingly.
|
|
|
|
* This is not something Makefile should set nor users should pass
|
|
|
|
* via CFLAGS.
|
|
|
|
*/
|
|
|
|
#undef USE_CURL_MULTI
|
|
|
|
|
2007-05-02 14:53:23 +02:00
|
|
|
#if LIBCURL_VERSION_NUM >= 0x071000
|
2005-11-18 20:02:58 +01:00
|
|
|
#define USE_CURL_MULTI
|
|
|
|
#define DEFAULT_MAX_REQUESTS 5
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if LIBCURL_VERSION_NUM < 0x070704
|
|
|
|
#define curl_global_cleanup() do { /* nothing */ } while(0)
|
|
|
|
#endif
|
|
|
|
#if LIBCURL_VERSION_NUM < 0x070800
|
|
|
|
#define curl_global_init(a) do { /* nothing */ } while(0)
|
|
|
|
#endif
|
|
|
|
|
2006-12-27 22:59:26 +01:00
|
|
|
#if (LIBCURL_VERSION_NUM < 0x070c04) || (LIBCURL_VERSION_NUM == 0x071000)
|
2005-11-18 20:02:58 +01:00
|
|
|
#define NO_CURL_EASY_DUPHANDLE
|
|
|
|
#endif
|
|
|
|
|
2006-09-19 14:20:19 +02:00
|
|
|
#if LIBCURL_VERSION_NUM < 0x070a03
|
|
|
|
#define CURLE_HTTP_RETURNED_ERROR CURLE_HTTP_NOT_FOUND
|
|
|
|
#endif
|
|
|
|
|
2006-01-31 20:06:55 +01:00
|
|
|
struct slot_results
|
|
|
|
{
|
|
|
|
CURLcode curl_result;
|
|
|
|
long http_code;
|
|
|
|
};
|
|
|
|
|
2005-11-18 20:02:58 +01:00
|
|
|
struct active_request_slot
|
|
|
|
{
|
|
|
|
CURL *curl;
|
|
|
|
FILE *local;
|
|
|
|
int in_use;
|
|
|
|
CURLcode curl_result;
|
|
|
|
long http_code;
|
2006-03-11 05:18:01 +01:00
|
|
|
int *finished;
|
2006-01-31 20:06:55 +01:00
|
|
|
struct slot_results *results;
|
2005-11-18 20:02:58 +01:00
|
|
|
void *callback_data;
|
|
|
|
void (*callback_func)(void *data);
|
|
|
|
struct active_request_slot *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct buffer
|
|
|
|
{
|
2007-12-09 20:30:59 +01:00
|
|
|
struct strbuf buf;
|
|
|
|
size_t posn;
|
2005-11-18 20:02:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Curl request read/write callbacks */
|
|
|
|
extern size_t fread_buffer(void *ptr, size_t eltsize, size_t nmemb,
|
|
|
|
struct buffer *buffer);
|
|
|
|
extern size_t fwrite_buffer(const void *ptr, size_t eltsize,
|
2007-12-09 20:30:59 +01:00
|
|
|
size_t nmemb, struct strbuf *buffer);
|
2005-11-18 20:02:58 +01:00
|
|
|
extern size_t fwrite_null(const void *ptr, size_t eltsize,
|
2007-12-09 20:30:59 +01:00
|
|
|
size_t nmemb, struct strbuf *buffer);
|
2005-11-18 20:02:58 +01:00
|
|
|
|
|
|
|
/* Slot lifecycle functions */
|
|
|
|
extern struct active_request_slot *get_active_slot(void);
|
|
|
|
extern int start_active_slot(struct active_request_slot *slot);
|
|
|
|
extern void run_active_slot(struct active_request_slot *slot);
|
|
|
|
extern void finish_all_active_slots(void);
|
2006-02-07 11:07:39 +01:00
|
|
|
extern void release_active_slot(struct active_request_slot *slot);
|
2005-11-18 20:02:58 +01:00
|
|
|
|
|
|
|
#ifdef USE_CURL_MULTI
|
|
|
|
extern void fill_active_slots(void);
|
2007-09-11 05:02:34 +02:00
|
|
|
extern void add_fill_function(void *data, int (*fill)(void *));
|
2005-11-18 20:02:58 +01:00
|
|
|
extern void step_active_slots(void);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern void http_init(void);
|
|
|
|
extern void http_cleanup(void);
|
|
|
|
|
|
|
|
extern int data_received;
|
|
|
|
extern int active_requests;
|
|
|
|
|
|
|
|
extern char curl_errorstr[CURL_ERROR_SIZE];
|
|
|
|
|
2007-12-10 22:36:09 +01:00
|
|
|
static inline int missing__target(int code, int result)
|
|
|
|
{
|
|
|
|
return /* file:// URL -- do we ever use one??? */
|
|
|
|
(result == CURLE_FILE_COULDNT_READ_FILE) ||
|
|
|
|
/* http:// and https:// URL */
|
|
|
|
(code == 404 && result == CURLE_HTTP_RETURNED_ERROR) ||
|
|
|
|
/* ftp:// URL */
|
|
|
|
(code == 550 && result == CURLE_FTP_COULDNT_RETR_FILE)
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
#define missing_target(a) missing__target((a)->http_code, (a)->curl_result)
|
|
|
|
|
2007-12-11 00:08:25 +01:00
|
|
|
extern int http_fetch_ref(const char *base, const char *ref, unsigned char *sha1);
|
|
|
|
|
2005-11-18 20:02:58 +01:00
|
|
|
#endif /* HTTP_H */
|