blob: 9bab2c88210650e2aaa271a72eb7192cd2f7331b [file] [log] [blame]
Nick Hengeveld29508e12005-11-18 11:02:58 -08001#ifndef HTTP_H
2#define HTTP_H
3
4#include "cache.h"
5
6#include <curl/curl.h>
7#include <curl/easy.h>
8
Mike Hommey028c2972007-12-09 20:30:59 +01009#include "strbuf.h"
10
Junio C Hamano4f5f9982008-01-21 17:34:43 -080011/*
12 * We detect based on the cURL version if multi-transfer is
13 * usable in this implementation and define this symbol accordingly.
14 * This is not something Makefile should set nor users should pass
15 * via CFLAGS.
16 */
17#undef USE_CURL_MULTI
18
Alexandre Julliard9cf04302007-05-02 14:53:23 +020019#if LIBCURL_VERSION_NUM >= 0x071000
Nick Hengeveld29508e12005-11-18 11:02:58 -080020#define USE_CURL_MULTI
21#define DEFAULT_MAX_REQUESTS 5
22#endif
23
24#if LIBCURL_VERSION_NUM < 0x070704
25#define curl_global_cleanup() do { /* nothing */ } while(0)
26#endif
27#if LIBCURL_VERSION_NUM < 0x070800
28#define curl_global_init(a) do { /* nothing */ } while(0)
29#endif
30
Junio C Hamano500ebb02006-12-27 13:59:26 -080031#if (LIBCURL_VERSION_NUM < 0x070c04) || (LIBCURL_VERSION_NUM == 0x071000)
Nick Hengeveld29508e12005-11-18 11:02:58 -080032#define NO_CURL_EASY_DUPHANDLE
33#endif
34
Art Haasc774b2d2006-09-19 07:20:19 -050035#if LIBCURL_VERSION_NUM < 0x070a03
36#define CURLE_HTTP_RETURNED_ERROR CURLE_HTTP_NOT_FOUND
37#endif
38
Nick Hengeveldc8568e12006-01-31 11:06:55 -080039struct slot_results
40{
41 CURLcode curl_result;
42 long http_code;
43};
44
Nick Hengeveld29508e12005-11-18 11:02:58 -080045struct active_request_slot
46{
47 CURL *curl;
48 FILE *local;
49 int in_use;
50 CURLcode curl_result;
51 long http_code;
Nick Hengeveldbaa7b672006-03-10 20:18:01 -080052 int *finished;
Nick Hengeveldc8568e12006-01-31 11:06:55 -080053 struct slot_results *results;
Nick Hengeveld29508e12005-11-18 11:02:58 -080054 void *callback_data;
55 void (*callback_func)(void *data);
56 struct active_request_slot *next;
57};
58
59struct buffer
60{
Mike Hommey028c2972007-12-09 20:30:59 +010061 struct strbuf buf;
62 size_t posn;
Nick Hengeveld29508e12005-11-18 11:02:58 -080063};
64
65/* Curl request read/write callbacks */
66extern size_t fread_buffer(void *ptr, size_t eltsize, size_t nmemb,
67 struct buffer *buffer);
68extern size_t fwrite_buffer(const void *ptr, size_t eltsize,
Mike Hommey028c2972007-12-09 20:30:59 +010069 size_t nmemb, struct strbuf *buffer);
Nick Hengeveld29508e12005-11-18 11:02:58 -080070extern size_t fwrite_null(const void *ptr, size_t eltsize,
Mike Hommey028c2972007-12-09 20:30:59 +010071 size_t nmemb, struct strbuf *buffer);
Nick Hengeveld29508e12005-11-18 11:02:58 -080072
73/* Slot lifecycle functions */
74extern struct active_request_slot *get_active_slot(void);
75extern int start_active_slot(struct active_request_slot *slot);
76extern void run_active_slot(struct active_request_slot *slot);
77extern void finish_all_active_slots(void);
Mark Wooding53f31382006-02-07 10:07:39 +000078extern void release_active_slot(struct active_request_slot *slot);
Nick Hengeveld29508e12005-11-18 11:02:58 -080079
80#ifdef USE_CURL_MULTI
81extern void fill_active_slots(void);
Daniel Barkalowfc57b6a2007-09-10 23:02:34 -040082extern void add_fill_function(void *data, int (*fill)(void *));
Nick Hengeveld29508e12005-11-18 11:02:58 -080083extern void step_active_slots(void);
84#endif
85
86extern void http_init(void);
87extern void http_cleanup(void);
88
89extern int data_received;
90extern int active_requests;
91
Nick Hengeveld29508e12005-11-18 11:02:58 -080092extern char curl_errorstr[CURL_ERROR_SIZE];
93
Mike Hommeye8dc37e2007-12-10 22:36:09 +010094static inline int missing__target(int code, int result)
95{
96 return /* file:// URL -- do we ever use one??? */
97 (result == CURLE_FILE_COULDNT_READ_FILE) ||
98 /* http:// and https:// URL */
99 (code == 404 && result == CURLE_HTTP_RETURNED_ERROR) ||
100 /* ftp:// URL */
101 (code == 550 && result == CURLE_FTP_COULDNT_RETR_FILE)
102 ;
103}
104
105#define missing_target(a) missing__target((a)->http_code, (a)->curl_result)
106
Mike Hommeyd7e92802007-12-11 00:08:25 +0100107extern int http_fetch_ref(const char *base, const char *ref, unsigned char *sha1);
108
Nick Hengeveld29508e12005-11-18 11:02:58 -0800109#endif /* HTTP_H */