160 CURLcode
perform(CURL* handle);
221 std::string
prepareLogMessage(std::string host_url, std::string userAgent,
const std::string&
path,
long ts,
const std::map<std::string, std::string>* headers,
long httpCode)
const;
226 std::string
trimHostUrl(std::string full_host_url)
const;
232 std::string prepareRedirectedURL(std::string
address, std::string potentialHost)
const;
241 void updateLocations(std::multimap<std::string, std::string>* headerMap, std::vector<std::string>*
locations,
int* locIndex)
const;
243 std::string mUserAgentId =
"CCDBDownloader";
247 void setupInternalUVLoop();
252 int mHandlesInUse = 0;
257 CURLM* mCurlMultiHandle =
nullptr;
267 std::vector<CURL*> mHandlesToBeAdded;
280 typedef struct curl_context_s {
282 curl_socket_t sockfd = -1;
289 typedef struct DataForSocket {
294 DataForSocket mSocketData;
296#if !defined(__CINT__) && !defined(__MAKECINT__) && !defined(__ROOTCLING__) && !defined(__CLING__)
300 typedef struct PerformData {
301 CURLcode* codeDestination;
302 size_t* requestsLeft;
306 DownloaderRequestData* requestData;
307 curl_slist** options;
317 static void closesocketCallback(
void* clientp, curl_socket_t item);
319#if !defined(__CINT__) && !defined(__MAKECINT__) && !defined(__ROOTCLING__) && !defined(__CLING__)
321 std::string getNewLocation(PerformData* performData, std::vector<std::string>&
locations)
const;
324 void tryNewHost(PerformData* performData, CURL* easy_handle);
327 void getLocalContent(PerformData* performData, std::string& newLocation,
bool& contentRetrieved, std::vector<std::string>&
locations);
330 void httpRedirect(PerformData* performData, std::string& newLocation, CURL* easy_handle);
333 void followRedirect(PerformData* performData, CURL* easy_handle, std::vector<std::string>&
locations,
bool& rescheduled,
bool& contentRetrieved);
343 static void curlPerform(
uv_poll_t* handle,
int status,
int events);
348 static int handleSocket(CURL* easy, curl_socket_t s,
int action,
void* userp,
void* socketp);
355 static void closeSocketByTimer(
uv_timer_t* handle);
376 static void destroyCurlContext(curl_context_t* context);
385 static int startTimeout(CURLM* multi,
long timeout_ms,
void* userp);
390 void initializeMultiHandle();
398 void transferFinished(CURL* handle, CURLcode curlCode);
403 void checkMultiInfo();
405#if !defined(__CINT__) && !defined(__MAKECINT__) && !defined(__ROOTCLING__) && !defined(__CLING__)
409 void setHandleOptions(CURL* handle, PerformData*
data);
417 curl_context_t* createCurlContext(curl_socket_t sockfd);
422 void checkHandleQueue();
std::string prepareLogMessage(std::string host_url, std::string userAgent, const std::string &path, long ts, const std::map< std::string, std::string > *headers, long httpCode) const