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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
|
/**
* @file llhttpclient.cpp
* @brief Implementation of classes for making HTTP requests.
*
* Copyright (c) 2006-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#include "linden_common.h"
#include "llhttpclient.h"
#include "llassetstorage.h"
#include "lliopipe.h"
#include "llurlrequest.h"
#include "llbufferstream.h"
#include "llsdserialize.h"
#include "llvfile.h"
#include "llvfs.h"
static const F32 HTTP_REQUEST_EXPIRY_SECS = 60.0f;
static std::string gCABundle;
LLHTTPClient::Responder::Responder()
: mReferenceCount(0)
{
}
LLHTTPClient::Responder::~Responder()
{
}
// virtual
void LLHTTPClient::Responder::error(U32 status, const std::string& reason)
{
llinfos << "LLHTTPClient::Responder::error "
<< status << ": " << reason << llendl;
}
// virtual
void LLHTTPClient::Responder::result(const LLSD& content)
{
}
// virtual
void LLHTTPClient::Responder::completed(U32 status, const std::string& reason, const LLSD& content)
{
if (200 <= status && status < 300)
{
result(content);
}
else
{
error(status, reason);
}
}
namespace
{
class LLHTTPClientURLAdaptor : public LLURLRequestComplete
{
public:
LLHTTPClientURLAdaptor(LLHTTPClient::ResponderPtr responder)
: mResponder(responder),
mStatus(499), mReason("LLURLRequest complete w/no status")
{
}
~LLHTTPClientURLAdaptor()
{
}
virtual void httpStatus(U32 status, const std::string& reason)
{
mStatus = status;
mReason = reason;
}
virtual void complete(const LLChannelDescriptors& channels,
const buffer_ptr_t& buffer)
{
LLBufferStream istr(channels, buffer.get());
LLSD content;
if (200 <= mStatus && mStatus < 300)
{
LLSDSerialize::fromXML(content, istr);
}
if (mResponder.get())
{
mResponder->completed(mStatus, mReason, content);
}
}
private:
LLHTTPClient::ResponderPtr mResponder;
U32 mStatus;
std::string mReason;
};
class Injector : public LLIOPipe
{
public:
virtual const char* contentType() = 0;
};
class LLSDInjector : public Injector
{
public:
LLSDInjector(const LLSD& sd) : mSD(sd) {}
virtual ~LLSDInjector() {}
const char* contentType() { return "application/xml"; }
virtual EStatus process_impl(const LLChannelDescriptors& channels,
buffer_ptr_t& buffer, bool& eos, LLSD& context, LLPumpIO* pump)
{
LLBufferStream ostream(channels, buffer.get());
LLSDSerialize::toXML(mSD, ostream);
eos = true;
return STATUS_DONE;
}
const LLSD mSD;
};
class FileInjector : public Injector
{
public:
FileInjector(const std::string& filename) : mFilename(filename) {}
virtual ~FileInjector() {}
const char* contentType() { return "application/octet-stream"; }
virtual EStatus process_impl(const LLChannelDescriptors& channels,
buffer_ptr_t& buffer, bool& eos, LLSD& context, LLPumpIO* pump)
{
LLBufferStream ostream(channels, buffer.get());
llifstream fstream(mFilename.c_str(), std::iostream::binary | std::iostream::out);
fstream.seekg(0, std::ios::end);
U32 fileSize = fstream.tellg();
fstream.seekg(0, std::ios::beg);
char* fileBuffer;
fileBuffer = new char [fileSize];
fstream.read(fileBuffer, fileSize);
ostream.write(fileBuffer, fileSize);
fstream.close();
eos = true;
return STATUS_DONE;
}
const std::string mFilename;
};
class VFileInjector : public Injector
{
public:
VFileInjector(const LLUUID& uuid, LLAssetType::EType asset_type) : mUUID(uuid), mAssetType(asset_type) {}
virtual ~VFileInjector() {}
const char* contentType() { return "application/octet-stream"; }
virtual EStatus process_impl(const LLChannelDescriptors& channels,
buffer_ptr_t& buffer, bool& eos, LLSD& context, LLPumpIO* pump)
{
LLBufferStream ostream(channels, buffer.get());
LLVFile vfile(gVFS, mUUID, mAssetType, LLVFile::READ);
S32 fileSize = vfile.getSize();
U8* fileBuffer;
fileBuffer = new U8 [fileSize];
vfile.read(fileBuffer, fileSize);
ostream.write((char*)fileBuffer, fileSize);
eos = true;
return STATUS_DONE;
}
const LLUUID mUUID;
LLAssetType::EType mAssetType;
};
LLPumpIO* theClientPump = NULL;
}
static void request(const std::string& url, LLURLRequest::ERequestAction method,
Injector* body_injector, LLHTTPClient::ResponderPtr responder)
{
if (!LLHTTPClient::hasPump())
{
responder->completed(U32_MAX, "No pump", LLSD());
return;
}
LLPumpIO::chain_t chain;
LLURLRequest *req = new LLURLRequest(method, url);
req->requestEncoding("");
if (!gCABundle.empty())
{
req->checkRootCertificate(true, gCABundle.c_str());
}
req->setCallback(new LLHTTPClientURLAdaptor(responder));
if (method == LLURLRequest::HTTP_PUT || method == LLURLRequest::HTTP_POST)
{
req->addHeader(llformat("Content-Type: %s", body_injector->contentType()).c_str());
chain.push_back(LLIOPipe::ptr_t(body_injector));
}
chain.push_back(LLIOPipe::ptr_t(req));
theClientPump->addChain(chain, HTTP_REQUEST_EXPIRY_SECS);
}
void LLHTTPClient::get(const std::string& url, ResponderPtr responder)
{
request(url, LLURLRequest::HTTP_GET, NULL, responder);
}
void LLHTTPClient::put(const std::string& url, const LLSD& body, ResponderPtr responder)
{
request(url, LLURLRequest::HTTP_PUT, new LLSDInjector(body), responder);
}
void LLHTTPClient::post(const std::string& url, const LLSD& body, ResponderPtr responder)
{
request(url, LLURLRequest::HTTP_POST, new LLSDInjector(body), responder);
}
void LLHTTPClient::del(const std::string& url, ResponderPtr responder)
{
request(url, LLURLRequest::HTTP_DELETE, NULL, responder);
}
#if 1
void LLHTTPClient::postFile(const std::string& url, const std::string& filename, ResponderPtr responder)
{
request(url, LLURLRequest::HTTP_POST, new FileInjector(filename), responder);
}
void LLHTTPClient::postFile(const std::string& url, const LLUUID& uuid,
LLAssetType::EType asset_type, ResponderPtr responder)
{
request(url, LLURLRequest::HTTP_POST, new VFileInjector(uuid, asset_type), responder);
}
#endif
void LLHTTPClient::setPump(LLPumpIO& pump)
{
theClientPump = &pump;
}
bool LLHTTPClient::hasPump()
{
return theClientPump != NULL;
}
void LLHTTPClient::setCABundle(const std::string& caBundle)
{
gCABundle = caBundle;
}
namespace boost
{
void intrusive_ptr_add_ref(LLHTTPClient::Responder* p)
{
++p->mReferenceCount;
}
void intrusive_ptr_release(LLHTTPClient::Responder* p)
{
if(0 == --p->mReferenceCount)
{
delete p;
}
}
};
|