summaryrefslogtreecommitdiff
path: root/linux/request.hpp
blob: ae673e0da7b246ab556b0225e8629ca81e8316b7 (plain)
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
#ifndef LLMR_LINUX_REQUEST
#define LLMR_LINUX_REQUEST

#include <string>
#include <functional>
#include <curl/curl.h>


namespace llmr {
namespace platform {

struct Response;

class Request {
public:
    Request(std::string url, std::function<void(platform::Response&)> bg, std::function<void()> fg);

    static void initialize();
    static void finish();

    void cancel();

private:
    static void request(void *);
    static size_t curl_write_callback(void *, size_t, size_t, void *);
    static int curl_progress_callback(void *, double, double, double, double);
    static void curl_share_lock(CURL *, curl_lock_data, curl_lock_access, void *);
    static void curl_share_unlock(CURL *, curl_lock_data, void *);

public:
    std::atomic<bool> done;
    std::atomic<bool> cancelled;
    const std::string url;
    const std::function<void(platform::Response&)> background_function;
    const std::function<void()> foreground_callback;

private:
    static CURLSH *curl_share;
    static pthread_mutex_t curl_share_mutex;
};

}
}

#endif