summaryrefslogtreecommitdiff
path: root/lib/HttpClient.cc
blob: cc636edd52020fb4fadd320a6022e2a2199d0677 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
#include <TaskMan.h>
#include <HttpClient.h>
#include <BRegex.h>
#include <CopyJob.h>
#include <ReadJob.h>

t_headers no_headers;

const timeval timeout = { 8, 0 };

HttpClient::HttpClient(const String & _url, Handle * _out, const String & _fake_host, t_headers _headers) : url(_url), out(_out), fake_host(_fake_host), headers(_headers), host(""), uri("") {
    DecodeURL();
    
    Client.SetNonBlock();
    Client.Connect(fake_host == "" ? host : fake_host, 80);
    
    if (Client.IsConnected()) {
        SetBurst();
    } else {
        WaitFor(timeout);
        WaitFor(&Client, W4_WRITING);
    }
}

HttpClient::~HttpClient() {
}

int HttpClient::Do() throw (GeneralException) {
    t_headers::iterator i;
    String t;
    int l;
    Regex h_reply("^HTTP/1.1 ");
    Regex chunked_header("^Transfer-Encoding: chunked$");
    
    switch (current) {
    case 0:
        if (Client.IsConnecting() && (TaskMan::Event() == Task::EVT_HANDLE)) {
            Client.FinalizeConnect();
        }
        if (TaskMan::Event() == Task::EVT_TIMEOUT) {
            status = "Connection timeout.";
            return TASK_DONE;
        }
        if (!Client.IsConnected()) {
            return TASK_DONE;
        }
        RemoveTimeout(); WaitFor(timeout);

        b << "GET " + uri + " HTTP/1.1\r\n"
             "Host: " + host + "\r\n"
             "Connection: close\r\n";
        
        for (i = headers.begin(); i != headers.end(); i++) {
            b << *i + "\r\n";
        }
        
        b << "\r\n";
        
        c = new CopyJob(&b, &Client);
        WaitFor(c);
        current = 1;
        Suspend(TASK_ON_HOLD);
    
    case 1:
        delete c;

        if (TaskMan::Event() == Task::EVT_TIMEOUT) {
            status = "Connection timeout.";
            return TASK_DONE;
        }
        RemoveTimeout(); WaitFor(timeout);

        c = new ReadJob(&Client, &b);
        WaitFor(c);
        current = 2;
        Suspend(TASK_ON_HOLD);
    
    case 2:
        delete c;
        
        if (TaskMan::Event() == Task::EVT_TIMEOUT) {
            status = "Connection timeout.";
            return TASK_DONE;
        }
        RemoveTimeout(); WaitFor(timeout);
                
        b >> t;
        if (!h_reply.Match(t)) {
            http_code = 0;
            status = "Invalid answer from HTTP server.";
            return TASK_DONE;
        }
        reply = t.extract(9);
        chunked = false;
        
        while (t.strlen()) {
            b >> t;
            reply_headers.push_back(t);
            if (chunked_header.Match(t)) {
                chunked = true;
            }
        }
        
        http_code = reply.to_int();
        
        if (http_code != 200) {
            status = "Reply code != 200.";
            return TASK_DONE;
        }
        
        status = "Downloading.";
        
        if (!chunked) {
            current = 5;
            c = new CopyJob(&Client, out);
            WaitFor(c);
            Suspend(TASK_ON_HOLD);
        }
        
        c = 0;

    case 3:
        if (c)
            delete c;

        if (TaskMan::Event() == Task::EVT_TIMEOUT) {
            status = "Connection timeout.";
            return TASK_DONE;
        }
        RemoveTimeout(); WaitFor(timeout);

        c = new ReadJob(&Client, &b, any);
        WaitFor(c);
        current = 4;
        Suspend(TASK_ON_HOLD);
    
    case 4:
        delete c;

        if (TaskMan::Event() == Task::EVT_TIMEOUT) {
            status = "Connection timeout.";
            return TASK_DONE;
        }
        RemoveTimeout(); WaitFor(timeout);


        b >> t;
        if (t.strlen() == 0) {
            current = 3;
            c = 0;
            Suspend(TASK_BURST);
        }
        
        l = t.to_int("%x");
        if (l == 0) {
            status = "Downloaded.";
            return TASK_DONE;
        }        
        
        c = new CopyJob(&Client, out, l);
        WaitFor(c);
        current = 3;
        Suspend(TASK_ON_HOLD);

    case 5:
        delete c;
        
        status = "Downloaded.";
        return TASK_DONE;
    }
    
    return TASK_ON_HOLD;
}

String HttpClient::GetStatus() {
    return status;
}

void HttpClient::DecodeURL() throw (GeneralException) {
    int p;

    static const Regex isURLValid("^http://[^/]");
    
    if (!isURLValid.Match(url))
        throw GeneralException("Invalid URL.");
    
    String tmp = url.extract(7);
    p = tmp.strchr('/');
    
    if (p < 0) {
        host = tmp;
        return;
    }
    
    host = tmp.extract(0, p - 1);
    uri = tmp.extract(p);
}